.treatment-section {
  background-color: #eaf8fd;
  padding: 40px 40px;
  margin-left: 40px;
  margin-right: 40px;
  height: 100%;
}
 .navbar {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.navbar .left img {
  height: 60px;
}

.center-wrapper {
  background-color: white;
  padding: 16px 44px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .center {
  display: flex;
  gap: 30px;
}

.navbar .center a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.navbar .center a:hover {
  color: #27897A;
}

.navbar .right button {
  background-color: #27897A;
  color: white;
  border: none;
  padding: 16px 34px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
}

.treatment-container {
  display: flex;

  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  max-width: 1400px;
  margin-top: 100px;
  flex-wrap: wrap;
  
}

/* Left Form */
.treatment-form {
  
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.treatment-form h3 {
  font-size: 28px;
  
  font-weight: 700;
  color: #007a73;
}

.treatment-form input {
  margin-top: -10px;
  padding: 16px 16px;
  padding-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.primary-btn {
  background-color: #007a73;
  color: white;
  border: none;
  padding: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.secondary-btn {
  background-color: #d9f3ef;
  color: #007a73;
  border: 1px solid #007a73;
  padding: 10px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 10px;
}

/* Center Text Content */
.treatment-content {
  flex: 1;
  width: 100%;
}

.treatment-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-top: -6px;
  /* margin-bottom: 15px; */
  line-height: 1.4;
}

.treatment-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cta-buttons button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  min-width: 160px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary button - solid green */
.primary-btn {
  background-color: #36b2a8;
  color: #fff;
  border: none;
}

/* Secondary button - outline green */
.secondary-btn {
  background-color: transparent;
  color: #36b2a8;
  border: 2px solid #36b2a8;
}

/* Optional: Hover Effects */
.primary-btn:hover {
  background-color: #2e9e95;
}

.secondary-btn:hover {
  background-color: #e6f9f7;
}


/* Right Image */
.treatment-image img {
  width: 280px;
  border-radius: 8px;
  object-fit: cover;
}

.info-section {
  background-color: #fff;
  margin-top: 40px;  
  margin-left: -200px;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-content {
  max-width: 800px;
}

.info-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 20px;
}

.info-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


.specialist-section {
  padding: 80px 40px;
  text-align: center;
  background-color: #fff;
}

.specialist-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.specialist-section p {
  font-size: 16px;
  color: #888;
  margin-bottom: 40px;
}

.specialist-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;     
  max-width: 1200px;         
  margin: 0 auto;              
  padding: 0 20px;
}


.specialist-cards {
  display: flex;
  gap: 20px;
  /* overflow-x: auto; */
  scroll-behavior: smooth;
  padding: 20px 0;
}

.specialist-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  min-width: 250px;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.specialist-card img {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #b2f1e2;
}

.specialist-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.specialist-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.call-btn {
  background-color: #007a73;
  color: #fff;
  border: none;
  padding: 10px 50px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.call-btn:hover {
  background-color: #005f56;
}

.arrow {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: #007a73;
  transition: color 0.3s;
}

.arrow:hover {
  color: #004e48;
}

.roadmap-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.main-footer {
  background-color: #01201C;
  color: white;
  padding: 60px 40px 30px;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-left: 100px;
  margin-right: 100px;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 15px;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
}

.email-form {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.email-form input {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 180px;
}

.email-form button {
  padding: 8px 16px;
  background-color: #4dd8ac;
  color: #01201C;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.email-form button:hover {
  background-color: #3bbd97;
}

hr {
  margin-top: 40px;
  border: none;
  height: 1px;
  background-color: white;
  opacity: 0.2;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
}


.call-btn_1 {
  background: #fff;
  color: #27897A;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: solid 2px #005f56;
}



/* =========================
   RESPONSIVE DESIGN START
   ========================= */

/* Tablet View: 1024px and below */
@media (max-width: 1024px) {
  .navbar {
    width: 90%;
    flex-direction: column;
    top: 20px;
    padding: 0 10px;
    gap:10px;
  }

  .treatment-section {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .treatment-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .treatment-form,
  .treatment-image img {
    margin-top: 10%;
    width: 100%;
    max-width: 350px;
  }

  .info-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .info-content h2 {
    font-size: 32px;
  }

  .info-content p {
    font-size: 16px;
  }

  .specialist-section {
    padding: 60px 20px;
  }

  .specialist-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-content {
    margin-left: 60px;
    margin-right: 60px;
  }
}

/* Medium Screens: 768px and below */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 10px;
  }

  .center-wrapper {
    padding: 10px 20px;
    border-radius: 20px;
  }

  .navbar .center {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .navbar .right button {
    padding: 12px 24px;
    margin-top: 10px;
  }

  .treatment-section {
    padding: 20px;
    margin: 0 10px;
  }

  .treatment-container {
    flex-direction: column;
    align-items: stretch;
  }

  .treatment-content h2 {
    font-size: 22px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons button {
    width: 100%;
  }

  .info-section {
    margin-left: 0;
  }

  .info-image img {
    width: 100%;
    max-width: 300px;
  }

  .specialist-cards {
    gap: 15px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 30px;
  }

  .email-form {
    flex-direction: column;
    width: 100%;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }
}

/* Small Screens: 480px and below */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .center-wrapper {
    padding: 8px 16px;
  }

  .navbar .right button {
    width: 100%;
    font-size: 13px;
  }

  .treatment-section {
    padding: 25px;
    margin: 0 10px;
  }

  .treatment-form {
    padding: 20px;
    margin-top: 65%;
    width: 90%;
  }

  .treatment-form h3 {
    font-size: 20px;
  }

  .treatment-content h2 {
    font-size: 20px;
  }

  .cta-buttons button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .info-content h2 {
    font-size: 24px;
  }

  .info-content p {
    font-size: 15px;
  }

  .specialist-section h2 {
    font-size: 22px;
  }

  .specialist-section p {
    font-size: 14px;
  }

  .call-btn {
    width: 100%;
    padding: 10px;
  }

  .specialist-card {
    min-width: 100%;
  }

  .footer-content {
    margin: 0 20px;
    gap: 20px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-left p,
  .footer-links a,
  .footer-contact p {
    font-size: 13px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  .email-form input {
    padding: 10px;
  }

  .email-form button {
    padding: 10px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}
.blinking-banner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.blink-banner {
  max-width: 45%;
  width: 100%;
  border-radius: 12px;
  animation: blinkEffect 1.5s infinite;
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 212, 160, 0.3);
}

.blink-banner:hover {
  transform: scale(1.05);
}

@keyframes blinkEffect {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blink-banner {
    max-width: 90%;
  }
}
.card-banner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.card-banner {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-banner {
    max-width: 90%;
  }
}
.card-banner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.card-banner {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-banner {
    max-width: 90%;
  }
}
.card-banner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.card-banner {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-banner {
    max-width: 90%;
  }
}

.dropdown-content,
.sub-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
}

/* Position main dropdown below parent */
.dropdown-content {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
}

/* Position sub-dropdown to the right */
.sub-dropdown-content {
  top: 0;
  left: 100%;
  margin-left: 6px;
  z-index: 1100;
}


.call-btn {
  background: #00d4a0;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}




.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 6px;
}


.dropdown-content.show {
  display: block;
}



.dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Position to the right of the parent */
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  margin-left: 6px;
  z-index: 1100;
}


.sub-dropdown-content {
  display: none;
  
}

.sub-dropdown-content.show {
  display: block !important;
}

.sub-dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.sub-dropdown-content a:hover {
  background-color: #f1f1f1;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}



    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .popup-box {
      background: white;
      padding: 25px 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      position: relative;
      text-align: center;
    }
    .popup-box input {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .popup-box button {
      background: #3b0a77;
      color: white;
      padding: 10px;
      border: none;
      width: 100%;
      border-radius: 6px;
    }
    .popup-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }
    .error-message {
      color: red;
      font-size: 14px;
    }
    .faq-section details {
      margin-bottom: 10px;
    }
    .faq-section summary {
      font-weight: bold;
      cursor: pointer;
    }
    .faq-section p {
      margin: 5px 0 15px;
    }




  .dropdown-content,
.sub-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
}

/* Position main dropdown below parent */
.dropdown-content {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
}

/* Position sub-dropdown to the right */
.sub-dropdown-content {
  top: 0;
  left: 100%;
  margin-left: 6px;
  z-index: 1100;
}


.call-btn {
  background: #00d4a0;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}





.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 6px;
}


.dropdown-content.show {
  display: block;
}



.dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Position to the right of the parent */
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  margin-left: 6px;
  z-index: 1100;
}


.sub-dropdown-content {
  display: none;
  
}

.sub-dropdown-content.show {
  display: block !important;
}

.sub-dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.sub-dropdown-content a:hover {
  background-color: #f1f1f1;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}


      .faq-item {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      .faq-item summary {
        cursor: pointer;
        padding: 18px 24px;
        font-size: 20px;
        font-weight: 600;
        background: #eef4f8;
        color: #00384e;
        list-style: none;
        position: relative;
      }
      .faq-item summary::marker {
        display: none;
      }
      .faq-item summary::after {
        content: "+";
        position: absolute;
        right: 24px;
        font-size: 22px;
        transition: transform 0.3s;
      }
      .faq-item[open] summary::after {
        transform: rotate(45deg);
      }
      .faq-item p {
        padding: 0 24px 20px;
        font-size: 16.5px;
        line-height: 2.1;
        color: #444;
        margin-top: -01px;
      }
  


.whatsapp-link {
  position: fixed;
  top: 86%;
  left: 20px;
  transform: translateY(-50%);
  padding: 10px;
  z-index: 9999;
  text-decoration: none;
  background-color: transparent;
  border-radius: 0 5px 5px 0;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  fill: #25D366;
}


.whatsapp-link:hover {
  text-decoration: underline;
}

.icon-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.icon-label i {
  color: #00d4a0;
}

.fa-phone:before {
    content: "\f095";
}

.blinking-border {
    padding: 8px 16px;
    border: 1px solid transparent; /* Needed for gradient border */
    border-radius: 30px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #00ff99, #0066ff) border-box;
    box-shadow: 0 0 12px 2px rgba(0, 255, 153, 0.6);
    animation: blink-border 3s ease-in-out infinite;
    display: inline-block;
    color: #000;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

/* Animation for glowing effect */
@keyframes blink-border {
    0%, 100% {
        box-shadow: 0 0 12px 2px rgba(0, 255, 153, 0.6);
    }
    50% {
        box-shadow: 0 0 18px 4px rgba(0, 102, 255, 0.7);
    }
}


/* Animation keyframes */
@keyframes blink-border {
    0%, 100% {
        border-color: green;
    }
    50% {
        border-color: transparent;
    }
}
.booking-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  background: #e8f7fa;
}

.left-form, .right-content {
  flex: 1;
  min-width: 300px;
}

.treatment-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.book-now-btn {
  background: #2e9c91;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.hidden {
  display: none !important;
}
