.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  justify-content: center;
  background: #fff9f5;
}
.hero-left {
    flex: 1;
   
    text-align: center;
}
.hero-left h1 {
  color: #18191f;
  font-size: 42px;
  font-weight: 700;
  line-height: 50.4px;
  margin-bottom: 30px;
}
.hero-left h1 span {
  color: #009E5C !important;
}
.hero-left h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: .5px;
  margin-bottom: 15px;
}
.hero-left p {
  font-size: 1rem;
  color: #333;
  margin-top: 12px;
}
.included {
  font-weight: bold;
  color: #009E5C;
  margin-top: 20px;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin-top: 15px;
  padding-left: 0;
}
.features li {
  list-style: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.features li i {
  color: #007bff;
  margin-right: 8px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  white-space: nowrap;
  margin-top: 25px;
}
.trust img {
  height: 24px;
}
.btn-call {
  background: #002e6d;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.call-trust-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: nowrap;
}
.hero-form {
  flex: 1;
  max-width: 400px;
  background: linear-gradient(135deg, #0046d5, #ffa000);
  color: white;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #522de2;
  padding: 6px 14px;
  color: #fff;
  border-radius: 0 0 15px 0;
  font-weight: 600;
  font-size: 0.85rem;
}
.hero-form h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
.whatsapp {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.whatsapp input {
  margin-left: 10px;
  accent-color: #25D366;
  transform: scale(1.2);
}
.hero-form button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background: #ff5b00;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-form button:hover {
  background: #e04d00;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  position: sticky;
  top: var(--tab-top, 80px);
  z-index: 1000;
  padding: 12px 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar {
  display: none;
}
.tab-nav .tab-link {
  flex: 0 0 auto;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.tab-nav .tab-link:hover,
.tab-nav .tab-link.active {
  background-color: #ff9800;
  color: #fff;
  border-color: #ff9800;
}

/* Sections */
section {
  padding: 40px 20px;
  animation: fadeIn 0.6s ease;
}
.section-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.section-text {
  flex: 1;
}
.section-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.section-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.section-image {
  flex: 1;
  min-width: 300px;
}
.section-image img {
  width: 100%;
  max-width: 500px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px 15px;
	  width;100%;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-left h3 {
    font-size: 20px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .call-trust-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-call {
    width: 100%;
  }

  .trust {
    font-size: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-form {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
  }

  .tab-nav {
    top: 60px;
    overflow-x: auto;
    justify-content: start;
    padding: 10px;
  }

  .section-wrapper {
    flex-direction: column;
    
  }

  .section-text h2 {
    font-size: 1.5rem;
  }

  .section-text p {
    font-size: 0.95rem;
  }
}



section:nth-child(even) {
  background-color: #f9f9f9;
}

section:nth-child(odd) {
  background-color: #ffffff;
}

section {
  padding: 60px 10%;
  transition: background-color 0.3s ease;
}




.section-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.section-image {
  flex: 1 1 40%;
  text-align: center;
}

.section-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section-text {
  flex: 1 1 55%;
}

.section-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0a2342;
  position: relative;
}

.section-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffa500;
  margin-top: 8px;
  border-radius: 4px;
}

.section-text ul {
  padding-left: 0;
  list-style: none;
}

.section-text ul li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.section-text ul li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
  top: 0;
}




.faq-section {
  background-color: #f0f4f8;
  padding: 60px 10%;
}

.faq-container h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #0a2342;
  text-align: center;
}

.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  padding: 16px;
  cursor: pointer;
  color: #1a202c;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #e6f7ff;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  font-size: 16px;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}




.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* max height should be enough to fit the longest answer */
  padding: 16px;
}

