/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fbfd;
  color: #222;
}

/* Header */
.top-header {
  background: #ffffff;
  border-bottom: 1px solid #e0ebf5;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
  padding: 12px 20px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* aligns to the left, change to center if needed */
  padding: 10px 20px;
}

/* Logo Image */
.logo img {
  height: 45px;         /* adjust height as needed */
  width: auto;          /* maintain aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.logo img:hover {
  transform: scale(1.05); /* slightly enlarges on hover */
}



/* Contact Info */
.contact-info {
  display: flex;
  gap: 28px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  font-size: 1.2rem;
  color: #0099ff;
  background: #f0f8ff;
  padding: 8px;
  border-radius: 50%;
}

.info-box h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0066cc;
}

.info-box p {
  font-size: 0.78rem;
  color: #555;
}

/* Button */
.appointment-btn {
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
  text-decoration: none; /* remove underline */
  display: inline-block; /* ensures proper button sizing */
  text-align: center;    /* centers text if it’s a link */
}


.appointment-btn:hover {
  background: linear-gradient(135deg, #0066cc, #004c99);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-info {
    display: none;
  }

  .header-container {
    max-width: 100%;
  }

  .logo {
    font-size: 1.4rem;
  }

  .appointment-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}



  .second-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
  }

  .second-header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Nav Links */
  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #0ea5e9;
  }

  /* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffffeb;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  color: #000;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

  /* Social Media Icons */
  .social-icons {
    display: flex;
    gap: 0.8rem;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #0ea5e9;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: background 0.3s;
  }

  .social-icons a:hover {
    background: #1e3a8a;
  }

  /* Mobile */
  .menu-icon {
    display: none;
    font-size: 1.6rem;
    color: #0ea5e9;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background: #ffffff;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
      display: flex;
    }

  .dropdown-content {
    position: static;
  }

    .menu-icon {
      display: block;
    }
  }

/* about us */

.abouts-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("images/maternity-specialist-pregnant-woman-with-face-mask-checkup-visit-meeting-talk-about-pregnancy-future-mother-with-baby-bump-asking-medical-advice-from-physician-cabinet-desk.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align content left */
  color: #fff;
  text-align: left; /* align text to left */
  overflow: hidden;
  padding-left: 8%; /* give breathing space from edge */
}

.abouts-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.6); /* calming blue overlay */
  z-index: 1;
}

.abouts-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.abouts-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.abouts-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.abouts-btn {
  padding: 12px 30px;
  background: #00bcd4;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.abouts-btn:hover {
  background: #008c9e;
}




.abouts-us {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.abouts-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.abouts-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a; /* Deep blue */
  position: relative;
}

.abouts-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #3b82f6; /* Accent blue */
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.abouts-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.abouts-text .highlight {
  font-weight: bold;
  color: #2563eb; /* Bright blue */
}

.abouts-text .tagline {
  font-style: italic;
  color: #16a34a; /* Green for healing vibe */
  font-weight: 600;
}

.abouts-image img {
  width: 100%;
  height: 460px; /* Adjust height as needed */
  border-radius: 16px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}


.about-image img:hover {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .abouts-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abouts-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


.vision-mission {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
  color: #333;
}

.vision-mission .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.vision-mission i {
  font-size: 50px;
  color: #4cafef; /* calming blue */
  margin-bottom: 15px;
}

.vision-mission h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
}

.vision-mission p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
  .vision-mission .container {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .vision,
  .mission {
    flex: 1;
    padding: 0 20px;
  }

  .vision p,
  .mission p {
    margin: 0;
  }
}



/* Core Values Section */
.core-values {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafc;
  color: #333;
}

.core-values h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value {
  text-align: center;
  padding: 20px;
}

.value i {
  font-size: 2.5rem;
  color: #4a90e2; /* Modern blue tone */
  margin-bottom: 15px;
}

.value h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.value p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}




  /* Commitment Section */
.commitment-section {
  background: #f9fafb;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
}

.commitment-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: bold;
}

.commitment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.commitment-text p,
.commitment-extra p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.05rem;
}

.commitment-text span,
.commitment-extra span {
  font-weight: bold;
  color: #005f73;
}

.commitment-text strong,
.commitment-extra strong {
  color: #222;
}

.commitment-text em,
.commitment-extra em {
  font-style: italic;
  color: #0077b6;
}

.tagline {
  margin-top: 25px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #e63946;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-content {
    grid-template-columns: 1fr;
  }
  .tagline {
    text-align: center;
  }
}


/* services */

/* Services Hero Section */
.services-hero {
  background: url("https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") 
              no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 10%;
  position: relative;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 76, 129, 0.6); /* dark overlay */
}



.services-hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  text-align: left;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-services {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-services:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    height: auto;
    padding: 60px 5% 80px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

  .services-hero p {
    font-size: 1rem;
  }
}


.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #0077b6;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

/* Container with max-width */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px; /* optional padding */
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 5 columns desktop */
  gap: 20px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* tablets */
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr); /* mobile */
  }
}

/* Service Card */
.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Dark overlay using pseudo-element */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  transition: background 0.3s ease;
}

/* Service content above overlay */
.service-card .service-content {
  position: relative;
  padding: 20px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

/* Hover effects */
.service-card:hover {
  transform: scale(1.05);
}

.service-card:hover::before {
  background: rgba(0,0,0,0.4);
}

.service-card:hover .service-content {
  transform: translateY(-10px);
}




.commitment-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.commitment-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.commitment-left,
.commitment-right {
  flex: 1;
  min-width: 300px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.overlay-title {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(30, 144, 255, 0.85);
  padding: 10px 20px;
  border-radius: 6px;
}

.overlay-title h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.commitment-right h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.commitment-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.btn-appointment {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-appointment:hover {
  background: #005bb5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .commitment-container {
    flex-direction: column;
  }
  
  .overlay-title {
    top: 10px;
    left: 10px;
    padding: 8px 16px;
    font-size: 1rem;
  }
}


.online-call-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.online-call-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.online-call-left {
  flex: 1;
  min-width: 300px;
}

.online-call-left h2 {
  color: #1e90ff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.online-call-left p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.schedule-call-btn {
  padding: 12px 25px;
  background: #4e73df;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.schedule-call-btn:hover {
  background: #3653b3;
}

.online-call-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.online-call-right img {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .online-call-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .online-call-left {
    margin-bottom: 30px;
  }
}




/* contact us */


/* ✅ Claim Damage Section */
.claim-damage {
  background: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.cd-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

/* Image Styling */
.cd-image {
  flex: 1;
  position: relative;
}
.cd-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.cd-image img:hover {
  transform: scale(1.05);
}

/* Content Styling */
.cd-content {
  flex: 1;
}
.cd-mini {
  font-size: 15px;
  color: #0066cc;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cd-mini i {
  color: #0066cc;
}
.cd-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 15px;
}
.cd-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Learn More Link */
.cd-learn {
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.cd-learn:hover {
  gap: 15px;
  color: #e67600;
}

/* ✅ Mobile Responsive */
@media (max-width: 900px) {
  .cd-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cd-content h2 {
    font-size: 26px;
  }
}



/* ✅ Contact Us Section */
.contact-today {
  background: #fff;
  padding: 80px 20px;
}

/* Container for Main Content */
.ct-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* ✅ Left Image */
.ct-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.ct-image img:hover { transform: scale(1.03); }

/* ✅ Right Content */
.ct-content {
  max-width: 500px;
}
.ct-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 15px;
}
.ct-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}
.ct-link {
  font-size: 16px;
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ct-link:hover {
  gap: 15px;
  color: #e67600;
}

/* ✅ Smaller Arrows */
.ct-link i,
.ct-info-block a i {
  font-size: 13px; 
  transition: transform 0.3s ease;
}
.ct-link:hover i,
.ct-info-block a:hover i {
  transform: translateX(3px);
}

/* ✅ Info Row */
.ct-info-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ✅ Info Block */
.ct-info-block {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0 20px;
  min-width: 250px;
}
.ct-info-block i {
  font-size: 28px; /* Reduced slightly for balance */
  color: #0066cc;
  min-width: 28px;
}
.ct-info-block h4 {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 5px;
}
.ct-info-block p {
  font-size: 15px;
  color: #555;
  margin-bottom: 5px;
}
.ct-info-block a {
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ct-info-block a:hover {
  gap: 12px;
  color: #e67600;
}

/* ✅ Divider */
.ct-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 5px;
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .ct-container { 
    flex-direction: column-reverse; 
    text-align: center; 
  }
  .ct-info-row { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .ct-divider { display: none; }
  .ct-info-block { 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    padding-bottom: 15px; 
    margin-bottom: 15px; 
  }
}

/* Section with background image */
.location-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background: url("https://i.ibb.co/ds5r9H9F/Screenshot-2025-08-31-at-23-00-40-Ramani-za-Google.png") no-repeat center/cover;
  overflow: hidden;
}

/* Dark overlay */
.section-overlays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7); /* dark navy overlay */
  z-index: 1;
}

/* Info card */
.location-info {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  max-width: 600px;
}

.location-info h2 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.location-info p {
  margin-bottom: 1.5rem;
  color: #dbeafe; /* soft blue */
}

#showMapBtn {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#showMapBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

/* Overlay for outside click */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Map container */
.map-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 0 20px rgba(0,0,0,0.4);
  transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.map-container.active {
  left: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2.2rem;
  cursor: pointer;
  color: #374151;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #ef4444;
}


/* FAQ Modern Section */
.faq-modern {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

/* Title */
.faq-title {
  grid-column: span 2;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #003366;
}

/* FAQ Container */
.faq-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e0e7ff;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #1e3a8a;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #2563eb;
}

/* Icon */
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 15px;
  color: #374151;
  padding-left: 5px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #2563eb;
}

/* Ask Box */
.ask-box {
  background: linear-gradient(135deg, #f0f7ff, #e8efff);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ask-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #003366;
}

.ask-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ask-box input,
.ask-box textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.ask-box input:focus,
.ask-box textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 6px rgba(59,130,246,0.3);
}

.ask-box button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.ask-box button:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-modern {
    grid-template-columns: 1fr;
  }

  .faq-title {
    grid-column: span 1;
  }
}


/* ✅ Feedback Section */
.feedback-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.fb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* ✅ Left Content */
.fb-left {
  flex: 1;
  max-width: 500px;
}
.fb-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #062c49;
  margin-bottom: 15px;
}
.fb-left h2 span {
  color: #0066cc;
}
.fb-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ✅ Reasons */
.fb-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fb-reason {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.fb-reason i {
  font-size: 30px;
  color: #0066cc;
}
.fb-reason h4 {
  font-size: 18px;
  color: #062c49;
  margin-bottom: 5px;
}
.fb-reason p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ✅ Feedback Form */
.fb-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.fb-form input,
.fb-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}
.fb-form textarea {
  min-height: 100px;
  resize: none;
}
.fb-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.fb-btn:hover {
  background: #e67600;
  transform: scale(1.05);
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .fb-container {
    flex-direction: column;
    text-align: center;
  }
  .fb-left {
    max-width: 100%;
  }
  .fb-reason {
    justify-content: center;
    text-align: left;
  }
  .fb-form {
    width: 100%;
  }
}



/* Appointment Section */
.appointment-section {
  padding: 60px 20px;
  background: #f9fafc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.appointment-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.appointment-left,
.appointment-right {
  flex: 1;
  min-width: 300px;
}

.appointment-left h2,
.appointment-right h3 {
  color: #0f4c81;
  margin-bottom: 20px;
}

.appointment-left form label,
.appointment-right label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.appointment-left input,
.appointment-left select,
.appointment-right select,
.appointment-right input[type="datetime-local"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.appointment-left input:focus,
.appointment-left select:focus,
.appointment-right select:focus,
.appointment-right input:focus {
  border-color: #4e73df;
  box-shadow: 0 0 5px rgba(78, 115, 223, 0.5);
}

.appointment-btn {
  padding: 14px 30px;
  background: #4e73df;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
  float: right;
}

.appointment-btn:hover {
  background: #3653b3;
}

@media (max-width: 900px) {
  .appointment-container {
    flex-direction: column;
  }

  .appointment-btn {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
}




/* Online Call Booking Form */
.online-call-booking {
  padding: 60px 20px;
  background: #f4f8fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.online-call-booking h2 {
  color: #0f4c81;
  font-size: 2rem;
  margin-bottom: 15px;
}

.online-call-booking p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.online-call-booking label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.online-call-booking input,
.online-call-booking select,
.online-call-booking textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.online-call-booking input:focus,
.online-call-booking select:focus,
.online-call-booking textarea:focus {
  border-color: #4e73df;
  box-shadow: 0 0 5px rgba(78, 115, 223, 0.5);
}

.booking-btn {
  padding: 14px 30px;
  background: #4e73df;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-btn:hover {
  background: #3653b3;
}

@media (max-width: 600px) {
  .booking-container {
    padding: 0 10px;
  }
}





.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px; /* distance from button */
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}



.adhd-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("images/maternity-specialist-pregnant-woman-with-face-mask-checkup-visit-meeting-talk-about-pregnancy-future-mother-with-baby-bump-asking-medical-advice-from-physician-cabinet-desk.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align content left */
  color: #fff;
  text-align: left; /* align text left */
  overflow: hidden;
  padding-left: 8%; /* breathing space */
}

.adhd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.6); /* calming blue overlay */
  z-index: 1;
}

.adhd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.adhd-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.adhd-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-btn {
  padding: 12px 30px;
  background: #00bcd4;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.about-btn:hover {
  background: #008c9e;
}

/* Responsive */
@media (max-width: 768px) {
  .adhd-hero-content h1 {
    font-size: 2.2rem;
  }
  .adhd-hero-content p {
    font-size: 1rem;
  }
  .about-btn {
    margin-top: 10px;
    display: block;
  }
}


/* About - compact & thin */
.about {
  padding: 2.25rem 1rem;        
  background: #fff;
}

.about-container {
  max-width: 1200px;            
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;  /* image | text */
  gap: 1.5rem;
  align-items: center;
}

/* Image with overlay */
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;                 
  max-height: 360px;            
  object-fit: cover;            
  object-position: center;
  display: block;
  border-radius: 10px;
}
.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);  /* subtle dark overlay */
  border-radius: 10px;
}

/* Text column */
.about-content { color: #1b2a3a; }

.about-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0099ff;               
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.about-title {
  font-size: 1.75rem;           
  line-height: 1.25;
  margin: 0 0 0.6rem 0;
  font-weight: 600;             
  letter-spacing: -0.2px;
  color: #0f3352;
}

.about-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4b5b6b;
  margin-bottom: 0.9rem;
  max-width: 52ch;              
}

/* Points */
.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.55rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: #2c3e50;
}

.point-icon {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;           
  background: #e8f5ff;          
  box-shadow: inset 0 0 0 1px #cfeaff;
}

.point-icon i {
  font-size: 0.95rem;
  color: #0066cc;
}

/* Learn more links */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  margin-right: 1rem;
}

.about-link:hover {
  color: #004c99;
  border-color: #b8dbff;
  transform: translateX(2px);
}

/* Mobile */
@media (max-width: 768px) {
  .about {
    padding: 1.75rem 1rem;
  }

  .about-container {
    grid-template-columns: 1fr; /* stack image & text */
    gap: 1rem;
    text-align: left;
  }

  .about-title {
    font-size: 1.45rem;
  }

  .about-desc {
    font-size: 0.95rem;
  }

  .about-points li {
    font-size: 0.95rem;
  }

  .about-image img {
    max-height: 280px;
  }
}


/* Bipolar Section */
.bipolar-section {
  padding: 2.25rem 1rem;
  background: #fff;
}

.bipolar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* image | text */
  gap: 1.5rem;
  align-items: center;
}

.bipolar-image {
  position: relative;
}

.bipolar-image img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.bipolar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.bipolar-content {
  color: #1b2a3a;
}

.bipolar-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0099ff;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.bipolar-title {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0f3352;
}

.bipolar-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4b5b6b;
  margin-bottom: 0.9rem;
  max-width: 52ch;
}

.bipolar-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.55rem;
}

.bipolar-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: #2c3e50;
}

.point-icon {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5ff;
  box-shadow: inset 0 0 0 1px #cfeaff;
}

.point-icon i {
  font-size: 0.95rem;
  color: #0066cc;
}

.bipolar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-right: 1rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.bipolar-link:hover {
  color: #004c99;
  border-color: #b8dbff;
  transform: translateX(2px);
}

/* Mobile */
@media (max-width: 768px) {
  .bipolar-container {
    grid-template-columns: 1fr; /* stack */
    gap: 1rem;
    text-align: left;
  }

  .bipolar-title {
    font-size: 1.45rem;
  }

  .bipolar-desc {
    font-size: 0.95rem;
  }

  .bipolar-points li {
    font-size: 0.95rem;
  }

  .bipolar-image img {
    max-height: 280px;
  }
}



/* PTSD Section */
.ptsd-section {
  padding: 2.25rem 1rem;
  background: #fff;
}

.ptsd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* image | text */
  gap: 1.5rem;
  align-items: center;
}

.ptsd-image {
  position: relative;
}

.ptsd-image img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.ptsd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.ptsd-content {
  color: #1b2a3a;
}

.ptsd-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0099ff;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.ptsd-title {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0f3352;
}

.ptsd-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4b5b6b;
  margin-bottom: 0.9rem;
  max-width: 52ch;
}

.ptsd-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.55rem;
}

.ptsd-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: #2c3e50;
}

.point-icon {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5ff;
  box-shadow: inset 0 0 0 1px #cfeaff;
}

.point-icon i {
  font-size: 0.95rem;
  color: #0066cc;
}

.ptsd-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-right: 1rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.ptsd-link:hover {
  color: #004c99;
  border-color: #b8dbff;
  transform: translateX(2px);
}

/* Mobile */
@media (max-width: 768px) {
  .ptsd-container {
    grid-template-columns: 1fr; /* stack */
    gap: 1rem;
    text-align: left;
  }

  .ptsd-title {
    font-size: 1.45rem;
  }

  .ptsd-desc {
    font-size: 0.95rem;
  }

  .ptsd-points li {
    font-size: 0.95rem;
  }

  .ptsd-image img {
    max-height: 280px;
  }
}



/* Wellness Cards Section */
.wellness-cards {
  padding: 3rem 1rem;
  background: #f9faff;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: #0f3352;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: #4b5b6b;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f3352;
}

.card-content p {
  font-size: 0.95rem;
  color: #4b5b6b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background: #00bcd4;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: #008c9e;
  transform: translateY(-2px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Substance Section */
.substance-section {
  padding: 3rem 1rem;
  background: #f9fafd;
}

.substance-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.substance-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.substance-content {
  color: #1b2a3a;
}

.substance-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f3352;
}

.substance-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #4b5b6b;
  max-width: 55ch;
}

.substance-btn {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 12px 28px;
  background: #00bcd4;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.substance-btn:hover {
  background: #008c9e;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .substance-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .substance-image img {
    max-height: 280px;
  }

  .substance-btn {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}





.curative-section {
  padding: 3rem 1rem;
  background: #f8f9fa;
}

.curative-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.curative-content {
  color: #1b2a3a;
}

.curative-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f3352;
}

.curative-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: #0066cc;
}

.curative-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #4b5b6b;
}

.curative-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.7rem;
}

.curative-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  color: #2c3e50;
}

.point-icon {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5ff;
  box-shadow: inset 0 0 0 1px #cfeaff;
}

.point-icon i {
  font-size: 0.95rem;
  color: #0066cc;
}

.curative-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .curative-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .curative-title {
    font-size: 1.75rem;
  }

  .curative-subtitle {
    font-size: 1.1rem;
  }

  .curative-desc {
    font-size: 0.95rem;
  }

  .curative-points li {
    font-size: 0.95rem;
  }

  .curative-image img {
    max-height: 300px;
  }
}


.treatment-section {
  padding: 3rem 1rem;
  background: #f8faff;
  color: #1b2a3a;
}

.treatment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.treatment-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0066cc;
  font-weight: 700;
}

.treatment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.treatment-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px; /* responsive width */
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.treatment-icon {
  font-size: 2.5rem;
  color: #0099ff;
  margin-bottom: 1rem;
}

.treatment-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #0f3352;
}

.treatment-card p {
  font-size: 0.95rem;
  color: #4b5b6b;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .treatment-grid {
    flex-direction: column;
    align-items: center;
  }
}



.consultation-section {
  padding: 3rem 1rem;
  background: #f3f7fb;
}

.consultation-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.consultation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3352;
  margin-bottom: 0.5rem;
  text-align: center;
}

.consultation-desc {
  font-size: 1rem;
  color: #4b5b6b;
  margin-bottom: 3rem;
  line-height: 1.6;
  text-align: center;
}

/* Vertical Process */
.process-vertical {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
  border-left: 3px solid #0066cc; /* vertical line */
}

.process-step {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 50px;
}

.step-number {
  position: absolute;
  left: -45px;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #e8f5ff;
  color: #0066cc;
  font-weight: 700;
  text-align: center;
  font-size: 1.25rem;
  border: 2px solid #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f3352;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #2c3e50;
  font-size: 0.95rem;
}

.step-details li {
  margin-bottom: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .consultation-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .process-vertical {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 3px solid #0066cc;
  }
  
  .process-step {
    padding-left: 45px;
    margin-bottom: 2.5rem;
  }
  
  .step-number {
    left: -40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
}




.cta-section {
  background: linear-gradient(135deg, #0066cc, #00bcd4);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 900px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.cta-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: #fff;
  color: #0066cc;
}

.primary-btn:hover {
  background: #e0f7ff;
  color: #004c99;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
  
/* Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.7rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

.partners {
  padding: 60px 20px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.partners-header h2 {
  color: #0f4c81;
  font-size: 2rem;
  margin-bottom: 10px;
}

.partners-header p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.partners-container {
  display: flex;
  width: 100%;
}

.partners-wrapper {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
}

.partners-wrapper img {
  height: 80px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-wrapper img {
    height: 60px;
  }
}



/* Disorders Section */
.disorders-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
  color: #1b2a3a;
}

.disorders-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.disorder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.disorder-icon {
  font-size: 2.5rem;
  color: #0099ff;
  margin-bottom: 0.75rem;
}

.disorder-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f3352;
}

.disorder-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5b6b;
}

/* Responsive */
@media (max-width: 1024px) {
  .disorders-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .disorders-container {
    grid-template-columns: 1fr;
  }
}


/* Therapies Section */
.therapies-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
  color: #1b2a3a;
}

.therapies-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.therapy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.therapy-icon {
  font-size: 2.5rem;
  color: #0099ff;
  margin-bottom: 0.75rem;
}

.therapy-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f3352;
}

.therapy-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5b6b;
}

/* Responsive */
@media (max-width: 1024px) {
  .therapies-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .therapies-container {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: #0d1b2a;
  color: #fff;
  padding: 50px 20px;
  min-height: 70vh;
  display: flex;
  flex-direction: column; /* stack content vertically */
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column; /* stack about + links + social vertically */
  flex: 1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* About section */
.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Links section */
.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: flex-start; /* horizontal row */
  flex-wrap: wrap;
  gap: 40px;
}

.link-group h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffcc70;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 8px;
}

.link-group ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.link-group ul li a:hover {
  color: #ffcc70;
}

/* Social icons at bottom */
.footer-social {
  margin-top: auto; /* push to bottom */
}

.footer-social h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffcc70;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc70;
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
