
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownFade {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Navbar Base */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: fadeSlideIn 0.5s ease-out both;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 200px;
}
.navbar-left img {
  width: 200px;
}

.logo {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1976d2;
  text-decoration: none;
  display: flex;
  align-items: center;
  user-select: none;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 200px;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.menu-toggle:focus {
  outline: none;
}
.hamburger {
  width: 28px;
  height: 3px;
  background-color: #1976d2;
  border-radius: 2px;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  /* background-color: #e3f2fd; */
  padding: 8px 20px;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15); */
  user-select: none;
  height: 60px;

  /* REMOVE the animation delay */
  opacity: 0;
  animation: fadeSlideIn 0.5s ease-out forwards;

  width: auto;
  margin-left: 20px;
}


.nav-menu li a {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  padding: 10px 12px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-menu li a:hover,
.nav-menu li a:focus {
  color: #1976d2;
  outline: none;
}

/* Appointment Button */
.btn-appointment {
  background-color: #ffa726;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 40px;
  transition: background-color 0.3s ease;
}
.btn-appointment:hover,
.btn-appointment:focus {
  background-color: #ff9800;
  outline: none;
}

/* Dropdown */
.nav-menu .dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  width: 200px;
  text-align: left;
}
.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
}
.dropdown-menu li a:hover {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* Tablet Responsive */
@media (max-width: 1000px) {
  .navbar-container {
    padding: 10px 15px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-left: -25px;
  }

  .logo {
    font-size: 1.8rem;
  }

  .btn-appointment {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .nav-menu {
    padding: 8px 12px;
    gap: 8px;
  }
}

/* Mobile Responsive */
@media (max-width: 1000px) {
  .navbar-container {
    padding: 10px 15px;
  }

  .navbar-left,
  .navbar-right {
    flex: none;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 168px;
}

  .menu-toggle {
    display: flex;
    margin-left: -25px;
    align-self: center;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    gap: 15px;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    padding: 20px 0;
    align-items: center;
    z-index: 999;
    
  transition: opacity 0.3s ease;
  animation: none; /* Important: disables delayed load animation */


  }

  .nav-menu.nav-menu-active {
    display: flex;
    opacity: 1;
    height: auto;
    margin-left: 0px;
  }

  .nav-menu li {
    width: 100%;
    justify-content: center;
  }

  .nav-menu li a {
    padding: 12px 30px;
    text-align: center;
  }

  .btn-appointment {
    padding: 12px 30px;
    margin: 0;
    border-radius: 25px;
    font-weight: 700;
  }

  .dropdown-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    width: 100%;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .dropdown.nav-open .dropdown-menu {
    max-height: 1000px;
    opacity: 1;
    padding: 10px 0;
    animation: slideDownFade 0.3s ease forwards;
    align-items: center;
  }

  .dropdown-menu li {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu li a {
    background: white;
    color: #333;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .dropdown-menu li a:hover {
    background-color: #e3f2fd;
    color: #1976d2;
  }
}
/* navbar end */
/* hero section start */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.hero-image {
  height: 380px; /* Adjust as needed */
  background: url('assets/banner_international.jpg') no-repeat center center / cover;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
}
  
.hero-text {
  background-color: #fff;
  padding: 4px 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.hero-text p {
  max-width: 830px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
.hero-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #ffa726; /* Gold */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #e6c200;
}

/* herro section end */

/* <!-- our hospital section start  -->*/
/*@keyframes fadeInUp {*/
/*  0% {*/
/*    opacity: 0;*/
/*    transform: translateY(50px);*/
/*  }*/
/*  100% {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*.hospital-highlight-section {*/
/*  background: #f9f9f9;*/
/*  padding: 70px 0;*/
/*  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*  color: #1b4332;*/
/*}*/

/*.hospital-highlight-container {*/
/*  max-width: 1200px;*/
/*  margin: auto;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  border-radius: 18px;*/
/*  overflow: hidden;*/
/*  background: #f2fff6;*/
/*  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);*/
/*  animation: fadeInUp 1s ease forwards;*/
/*}*/

/*.hospital-image {*/
/*  flex: 1 1 40%;*/
/*  min-width: 300px;*/
/*}*/

/*.hospital-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*}*/

/*.hospital-content {*/
/*  flex: 1 1 60%;*/
/*  padding: 40px 50px;*/
/*}*/

/*.hospital-content h2,*/
/*.hospital-content h3,*/
/*.hospital-content p,*/
/*.hospital-content ul,*/
/*.hospital-content li {*/
/*  color: #2d6a4f;*/
/*}*/

/*.hospital-content h2 {*/
/*  font-size: 34px;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.hospital-content h3 {*/
/*  font-size: 24px;*/
/*  margin-bottom: 20px;*/
/*  color: #40916c;*/
/*}*/

/*.hospital-content p {*/
/*  font-size: 16px;*/
/*  line-height: 1.7;*/
/*  margin-bottom: 25px;*/
/*}*/

/*.hospital-content ul {*/
/*  list-style: square;*/
/*  padding-left: 20px;*/
/*  margin-bottom: 30px;*/
/*}*/

/*.hospital-content ul li {*/
/*  margin-bottom: 8px;*/
/*}*/

/*.hospital-cta {*/
/*  display: flex;*/
/*  gap: 20px;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.btn-primary,*/
/*.btn-secondary {*/
/*  padding: 12px 26px;*/
/*  font-weight: bold;*/
/*  text-decoration: none;*/
/*  border-radius: 10px;*/
/*  transition: 0.3s ease;*/
/*}*/

/*.btn-primary {*/
/*  background-color: #74c69d;*/
/*  color: #fff;*/
/*  border: none;*/
/*}*/

/*.btn-primary:hover {*/
/*  background-color: #95d5b2;*/
/*}*/

/*.btn-secondary {*/
/*  background-color: transparent;*/
/*  color: #40916c;*/
/*  border: 2px solid #40916c;*/
/*}*/

/*.btn-secondary:hover {*/
/*  background-color: rgba(64, 145, 108, 0.1);*/
/*}*/

/*.reveal {*/
/*  opacity: 0;*/
/*  transform: translateY(50px);*/
/*  transition: all 1s ease;*/
/*}*/

/*.reveal.active {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

 /* <!-- our hospital section ended  --> */
 /* oncology-section started  */
.oncology-clone-section {
  background: linear-gradient(135deg, #f8f9f5 0%, #f0f5e9 50%, #ffffff 100%);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2f3e2e;
}

.oncology-clone-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-oncology-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #354f32;
}

.section-oncology-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #5d6e48;
}

.highlight-btn {
  background-color: #d4e09b;
  color: #2f3e2e;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
  border: 1px solid #bcd47e;
}

.oncology-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.services-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  color: #2f3e2e;
}

.service-card h3 {
  color: #4a633e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #5d6e48;
}

.oncology-image {
  flex: 0 0 360px;
  max-width: 100%;
}

.oncology-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stats {
  display: flex;
  justify-content: space-around;
  margin: 50px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  background-color: #f1f7e9;
  padding: 25px;
  border-radius: 12px;
  flex: 1 1 250px;
  color: #2f3e2e;
}

.count {
  font-size: 2rem;
  font-weight: 700;
  color: #4a633e;
}

.stat p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #6d7f59;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #d4e09b;
  color: #2f3e2e;
  border: none;
}

.btn.secondary {
  background-color: transparent;
  color: #4a633e;
  border: 2px solid #4a633e;
}

.btn:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 576px) {
  .oncology-clone-section {
    padding: 40px 15px;
  }

  .section-oncology-title {
    font-size: 1.8rem;
  }

  .section-oncology-subtitle {
    font-size: 1rem;
  }

  .highlight-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 15px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .oncology-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }

  .stat {
    padding: 72px;
    text-align: center;
  }

  .count {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
}

 /* oncology-section ended  */
 /* ivf section started  */

    .ivf-section {
      background: linear-gradient(to right, #fdfefc, #f3fcf6, #eafaf0);
      padding: 60px 20px;
    }

    .ivf-container {
      background: linear-gradient(135deg, #edfbee 0%, #dff5e6 50%, #cbeedb 100%);
      color: #1e3d2f;
      display: flex;
      flex-wrap: wrap;
      border-radius: 16px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      opacity: 1; /* directly visible */
      transform: translateY(0); /* no animation */
    }

    .ivf-text {
      flex: 1 1 50%;
      padding: 40px;
    }

   .ivf-text h2 {
  font-size: 1.7rem; /* slightly larger than p */
  margin-bottom: 20px;
  color: #3b6650; /* same as p */
  font-weight: 600; /* subtle boldness */
}

.ivf-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #3b6650; /* same color */
}

/* Make <strong> text darker and bold */
.ivf-text strong {
  color: #1e3d2f; /* darker shade for emphasis */
  font-weight: 700;
}


    .ivf-text img {
      max-width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      margin-top: 20px;
    }

    .ivf-video {
      flex: 1 1 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .ivf-video video {
      max-width: 500px;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      outline: none;
    }

    @media (max-width: 768px) {
      .ivf-container {
        flex-direction: column;
      }

      .ivf-text,
      .ivf-video {
        flex: 1 1 100%;
        text-align: center;
        padding: 20px;
      }

      .ivf-text h2 {
        font-size: 1.5rem;
      }

      .ivf-text p {
        font-size: 0.95rem;
      }
    } 

 /* ivf section ended  */
 /* JAIPUR SECTION started */
.jaipur-section {
  text-align: center;
  background: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jaipur-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.jaipur-header .hashtags {
  font-size: 18px;
  color: #444;
}

.jaipur-header .hashtags span {
  color: #d63c3c;
  font-weight: 600;
}

.jaipur-images {
  
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.jaipur-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .jaipur-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jaipur-images {
    grid-template-columns: 1fr;
  }

  .jaipur-header h1 {
    font-size: 20px;
  }

  .jaipur-header .hashtags {
    font-size: 16px;
  }
}

/* jaipur section ended */
/* why choose us section started */
.why-choose-us {
  padding: 60px 20px;
  background: #f9f9f9;
  position: relative;
}

.why-container {
  max-width:100%;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-circle {
  position: absolute;
  left: 20px;
  background: linear-gradient(145deg, #033113, #033113);
  color: white;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
}

.center-circle {
  position: absolute;
  left: 180px;
  background: #eaeaea;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1;
}

.points-container {
  margin-left: 480px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.purple { background: #7f00ff; }
.blue { background: #4facfe; }
.teal { background: #43e97b; }
.gray { background: #4b4b4b; }
.red { background: red; }
.text h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.text p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    align-items: center;
  }

  .left-circle, .center-circle {
    position: static;
    margin-bottom: 20px;
  }

  .center-circle {
   width: 300px;
  height: 300px;
  border-radius: 50%;
            margin-top: -54px;

  }

  .points-container {
    margin-left: 0;
    width: 100%;
  }
}
/* why choose us section ended */
/* show case section started  */


.international-hero {
  background: linear-gradient(135deg, #0b3d1a 0%, #062511 50%, #041b0e 100%);
  color: #b4e4c7;
  padding: 80px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.international-text {
  flex: 1;
  max-width: 60%;
}

.international-text h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.international-text h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.international-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn-link {
  background: transparent;
  color: #b4e4c7;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.btn-link::after {
  content: '➔';
  margin-left: 6px;
}

.btn-primary {
  background-color: #b4e4c7;
  color: #0b3d1a;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

.international-map {
  flex: 1;
  max-width: 55%;
  text-align: center;
}

.international-map img {
  max-width: 100%;
  height: auto;
}

.international-counters {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 60px;
  flex-wrap: wrap;
}

.counter-box {
  text-align: center;
}

.counter-box h2 {
  font-size: 30px;
  margin: 0;
  color: #b4e4c7;
}

.counter-box p {
  font-size: 12px;
  margin-top: 6px;
  text-transform: uppercase;
  color: #b4e4c7;
}

/* Scroll Animation Classes */
.hidden-left, .hidden-right, .hidden-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.show-left {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInLeft 1s ease-out forwards;
}

.show-right {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRight 1s ease-out forwards;
}

.show-up {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1.5s ease-out forwards;
}

/* Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .international-hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .international-text,
  .international-map {
    max-width: 100%;
    text-align: center;
  }

  .international-text h1 {
    font-size: 24px;
  }
}


/* show case section ended  */
/* affordable-treatments started */
  .affordable-treatments {
       background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f4fdf8 25%,
    #e9f8f2 50%,
    #d9f4ec 75%,
    #f9f9f9 100%
  );
      padding: 60px 20px;
      text-align: center;
    }

    .section-title {
      font-size: 36px;
      color: #002F6C;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .section-underline {
      width: 200px;
      height: 3px;
      background-color: #8BC53F;
      margin: 10px auto 30px;
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 18px;
      color: #555;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .slider-wrapper {
      position: relative;
      overflow: hidden;
    }

    .treatments-slider {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
    }

    .treatments-slider::-webkit-scrollbar {
      display: none;
    }

    .treatments-slider.active {
      cursor: grabbing;
    }

    .treatment-card {
      flex: 0 0 280px;
      background-color: white;
      border: 2px solid #8BC53F;
      padding: 20px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 8px 20px rgba(0, 47, 108, 0.08);
      transition: transform 0.3s;
    }

    .treatment-card h3 {
      color: #002F6C;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .treatment-card p {
      color: #444;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .treatment-card .price {
      color: #8BC53F;
      font-weight: bold;
      font-size: 16px;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #002F6C;
      color: white;
      border: none;
      font-size: 24px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .slider-btn:hover {
      background-color: #8BC53F;
    }

    .slider-btn.left {
      left: 10px;
    }

    .slider-btn.right {
      right: 10px;
    }
/* affordable-treatments ended */
/* home stay started  */
/* ====== Core Layout ====== */
.medzuro-home-stay {
  background-color: #f9f9f9;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.medzuro-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

/* ====== Left Column ====== */
.medzuro-content {
  flex: 1 1 45%;
}

.medzuro-content h2 {
  color: #b4e4c7;
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.medzuro-underline {
  width: 60px;
  height: 4px;
  background-color: #91c788;
  margin-bottom: 20px;
}

.medzuro-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #d3f5df;
  margin-bottom: 20px;
}

.medzuro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 1rem;
}

.medzuro-features p {
  color: #c8f2d4;
  font-size: 1rem;
  margin: 0;
}

.medzuro-btn {
  margin-top: 85px;
  display: inline-block;
  background-color: #6ea93e;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.medzuro-btn:hover {
  background-color: #5d912f;
}

/* ====== Right Visual Blocks ====== */
.medzuro-hex-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  margin-top: 0rem;
}

.medzuro-hex-row {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: nowrap; /* prevent wrapping for horizontal scroll */
  /* overflow-x: auto;  enable horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.medzuro-hex-item {
  text-align: center;
  color: #033113;
  min-width: 185px; /* keep minimum width for hex items */
  flex-shrink: 0;   /* prevent shrinking */
}

.medzuro-hex-img {
  width: 185px;
  height: 159px;
  object-fit: cover;
  clip-path: polygon(
     50% 0%, 
     93% 25%, 
     93% 75%, 
     50% 100%, 
     7% 75%, 
     7% 25%
  );
  background: #062511;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(3, 49, 19, 0.3);
}

.medzuro-hex-img:hover {
  transform: scale(1.08);
}

.medzuro-hex-item strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #c0f0d1;
}

.medzuro-hex-item span {
  font-size: 1rem;
  color: #dffbee;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  @media (max-width: 768px) {
  .medzuro-container {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  /* Center only the title on mobile */
  .medzuro-content h2 {
    text-align: center;
  }
}

  .medzuro-content {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .medzuro-features {
    grid-template-columns: 1fr; /* single column on mobile */
  }

  .medzuro-content h2 {
    font-size: 2.2rem;
  }

  .medzuro-content p {
    font-size: 1.1rem;
  }

  .medzuro-btn {
  display: block;
  margin: 50px auto 0 auto; /* top auto bottom */
  text-align: center;
}

  .medzuro-hex-row {
    gap: 1.5rem;
  }

  .medzuro-hex-img {
    width: 140px;
    height: 120px;
  }

  .medzuro-hex-item {
    min-width: 140px;
  }
  .medzuro-underline {
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
  .medzuro-hex-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .medzuro-hex-row {
    justify-content: center !important;
    margin: 0 auto;
    width: 100%;
    overflow-x: auto;
    padding: 0 10px;
  }

  .medzuro-hex-item {
    margin: 0 auto;
  }
}


}
.medzuro-home-stay {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background-color: #f9f9f9;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.medzuro-home-stay.visible {
  opacity: 1;
  transform: translateY(0);
}
.medzuro-home-stay {
  background: linear-gradient(135deg, #0b3d1a 0%, #062511 50%, #041b0e 100%);
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e6f2ea; /* soft light greenish-white for contrast */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.medzuro-home-stay.visible {
  opacity: 1;
  transform: translateY(0);
}
/* home stay ended  */
/* transportation section started  */
.transport-section {
  background: #f8fdf8;
  color: #234734;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.transport-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.transport-header h2 {
  font-size: 2.5rem;
  color: #215e37;
  margin-bottom: 10px;
}

.transport-header p {
  font-size: 1.1rem;
  color: #3b5d4c;
}

.transport-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}
.transport-cards-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1000px; /* ✅ Restricts total width for center alignment */
  margin: 0 auto;     /* ✅ Centers the grid horizontally */
  padding: 0 20px;    /* ✅ Padding on both sides for mobile view */
}


.left-large {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.left-large img {
  width: 100%;
  height: 500px; /* Reel-like height */
  object-fit: cover;
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  color: #1e5235;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-content p {
  color: #446953;
  font-size: 0.95rem;
}

.right-half-stack {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.half-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.half-card img {
  width: 100%;
  height: 240px; /* Half of 500px */
  object-fit: cover;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  color: #1e5235;
  font-size: 1.3rem;
  margin: 15px 0 10px;
}

.card p {
  padding: 0 15px 20px;
  color: #446953;
  font-size: 0.95rem;
}

.fleet-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
   background: linear-gradient(to right, #f4fdf8, #e9f8f2, #d9f4ec);
  padding: 40px;
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
}

.fleet-text {
  flex: 1 1 300px;
}

.fleet-text h3 {
  color: #215e37;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.fleet-text p {
  color: #215e37;
  margin-bottom: 15px;
}

.fleet-text ul {
  padding-left: 20px;
  color: #215e37;
  font-size: 0.95rem;
}

.fleet-text li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.fleet-text li::before {
  /* content: "✔"; */
  color: #2a7a4f;
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.fleet-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 12px;
  flex: 1 1 300px;
}

.fleet-images img {
  width: 100%;
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
}
.fleet-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fleet-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* transportation section ended  */
/* success cases section start  */
/* Section Wrapper */
.cases-section {
  background-color: #f9fafc;
  padding: 80px 20px;
  text-align: center;
}

/* Title and Subtitle */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c2340;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #586069;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Grid Layout */
.cases-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual Case Card */
.case-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* Fade-In Animation */
.case-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect */
.case-card:hover {
  transform: translateY(-10px);
}

/* Before/After Images */
.case-images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.case-images img {
  width: 45%;
  border-radius: 8px;
  object-fit: cover;
}
/* 
.arrow {
  font-size: 24px;
  color: #34a853;
  font-weight: bold;
} */

/* Card Text */
.case-card h3 {
  font-size: 20px;
  color: #00509e;
  margin-bottom: 5px;
}

.case-card .location {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.case-card .description {
  font-size: 15px;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cases-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* success cases section end  */
/* doctos section start  */
.doctor-section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #031e13;
  text-align: center;
}

.doctor-section h2 {
  font-size: 2.5rem;
  color: #00ff99;
  margin-bottom: 10px;
}

.doctor-section .subtitle {
  font-size: 1.1rem;
  color: #b2f0c8;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Doctor Gallery */
.doctor-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 60px;
  margin-bottom: 50px;
  overflow-x: auto;
  height: 250px;
}

.doctor-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ff99;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.doctor-thumb:hover {
  transform: scale(1.1);
  border-color: #ffffff;
}

.doctor-main {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #00ff99;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.3);
  transform: scale(1.05);
}

.doctor-thumb img,
.doctor-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Doctor Details Box */
.doctor-details {
  background-color: #eafff5;
  color: #000;
  padding: 35px 30px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 25px rgba(0, 255, 153, 0.1);
}

.doctor-details h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #033113;
}

.doctor-details h4 {
  font-size: 1.3rem;
  color: #055534;
  margin-bottom: 15px;
}

.doctor-details p {
  font-size: 1.05rem;
  margin: 8px 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .doctor-gallery {
    flex-wrap: wrap;
    gap: 30px;
    height: 500px;

  }

  .doctor-main {
    width: 150px;
    height: 150px;
  }

  .doctor-thumb {
    width: 100px;
    height: 100px;
  }

  .doctor-details {
    padding: 25px 20px;
    text-align: center;
  }

  .doctor-details h3,
  .doctor-details h4 {
    text-align: center;
  }
}
/* doctors section end  */
/* Medzuro Pharmaceutical started  */
/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Section Wrapper */
.pharma-section {
  background: linear-gradient(to right, #fdfefc, #f3fcf6, #eafaf0);
  padding: 60px 20px;
  overflow-x: hidden;
}

/* Main Container */
.pharma-container {
  background: linear-gradient(135deg, #edfbee 0%, #dff5e6 50%, #cbeedb 100%);
  color: #1e3d2f;
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

/* Visible Animation */
.pharma-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text Area */
.pharma-text {
  flex: 1 1 50%;
  padding: 40px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.pharma-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2f5d45;
}

.pharma-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #3b6650;
}

.pharma-text ul {
  list-style: none;
  padding-left: 0;
}

.pharma-text ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
  color: #3b6650;
}

.pharma-text ul li::before {
  /* content: '✔'; */ /* Uncomment if you want icons */
  position: absolute;
  left: 0;
  color: #2f5d45;
}

/* Button */
.pharma-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2f5d45;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pharma-button:hover {
  background-color: #457b60;
}

/* Image Area */
.pharma-images {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease-out 0.5s;
  max-width: 100%;
}

.pharma-images.visible {
  opacity: 1;
  transform: scale(1);
}

.pharma-images img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pharma-container {
    flex-direction: column;
  }

  .pharma-text,
  .pharma-images {
    flex: 1 1 100%;
    text-align: center;
    padding: 20px;
  }

  .pharma-text h2 {
    font-size: 1.5rem;
  }

  .pharma-text p,
  .pharma-text ul li {
    font-size: 0.95rem;
  }
}

/* Medzuro Pharmaceutical section ended  */
/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Herbal Section Wrapper */
.herbal-section {
  background: linear-gradient(to right, #fdfefc, #f3fcf6, #eafaf0);
  padding: 60px 20px;
  overflow-x: hidden;
}

/* Herbal Main Container */
.herbal-container {
  background: linear-gradient(135deg, #edfbee 0%, #dff5e6 50%, #cbeedb 100%);
  color: #1e3d2f;
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

/* Visibility Animation */
.herbal-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text Column */
.herbal-text {
  flex: 1 1 50%;
  padding: 40px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.herbal-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2f5d45;
}

.herbal-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #3b6650;
}

.herbal-text ul {
  list-style: none;
  padding-left: 0;
}

.herbal-text ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
  color: #3b6650;
}

.herbal-text ul li::before {
  /* content: '✔'; */ /* Optional icon */
  position: absolute;
  left: 0;
  color: #2f5d45;
}

/* Button Styling */
.herbal-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2f5d45;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.herbal-button:hover {
  background-color: #457b60;
}

/* Image Column */
.herbal-images {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease-out 0.5s;
  max-width: 100%;
}

.herbal-images.visible {
  opacity: 1;
  transform: scale(1);
}

.herbal-images img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .herbal-container {
    flex-direction: column;
  }

  .herbal-text,
  .herbal-images {
    flex: 1 1 100%;
    text-align: center;
    padding: 20px;
  }

  .herbal-text h2 {
    font-size: 1.5rem;
  }

  .herbal-text p,
  .herbal-text ul li {
    font-size: 0.95rem;
  }
}

/* herbal section ended  */
.medzuro-contact-section {
  background: #f8fff8;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.medzuro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.medzuro-left {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.medzuro-left h2 {
  font-size: 2rem;
  color: #155724;
  margin-bottom: 10px;
}

.medzuro-left h3 {
  font-size: 1.3rem;
  color: #117a65;
  margin-bottom: 20px;
}

.medzuro-left p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.medzuro-left ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.medzuro-left ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #222;
}

.medzuro-left a {
  color: #007b5e;
  text-decoration: underline;
  font-weight: 600;
}

.medzuro-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.medzuro-right img {
  width: 500px;
  height: 500px;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .medzuro-container {
    flex-direction: column;
  }
  .medzuro-left, .medzuro-right {
    padding-right: 0;
    text-align: left;
  }
  .medzuro-right img {
    margin-top: 20px;
  }
}
/* herbal section started  */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 20px;
}

.partner-card {
  width: 100%;
  max-width: 150px; /* Controls size of the card */
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.partner-card img {
  width: 500px;
  height: 500px;
  object-fit: contain; /* Keeps proportions without distortion */
}

/* insurance section start  */
.insurance-section {
  background: #f6fff9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #033113;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-underline {
  width: 60px;
  height: 4px;
  background: #00ff99;
  margin: 0 auto 25px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #0b3d26;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.insurance-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.insurance-info {
  flex: 1 1 45%;
  color: #033113;
}

.insurance-info h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  font-size: 1.5rem;
}

.inquiry-box {
  background-color: #e6fff3;
  border-left: 5px solid #00cc88;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
}

.inquiry-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #033113;
}

.inquiry-box a {
  color: #007755;
  font-weight: 600;
  text-decoration: none;
}

.inquiry-box a:hover {
  text-decoration: underline;
}

.insurance-grid {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #b2e0c2;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 500;
  color: #044c2a;
  box-shadow: 0 0 10px rgba(0, 64, 32, 0.05);
  transition: 0.3s ease;
}

.partner-card:hover {
  background: #dafbe8;
  border-color: #00cc88;
}

@media (max-width: 576px) {
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .partner-card {
    padding: 12px;
    max-width: 100%;
  }

  .partner-card img {
    max-height: 60px;
  }
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
  align-items: center;
  justify-items: center;
}

.partner-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: scale(1.05);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* insaurance section end  */
/* wellness-centre-section started  */
.wellness-centre-section {
  background: linear-gradient(135deg, #062511, #033113);
  color: #e6fff5;
  padding: 60px 30px;
  text-align: center;
  max-width:100%;
  margin: auto;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.wellness-centre-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.wellness-centre-section .coming-soon {
  font-size: 0.9rem;
  color: #00ff99;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.wellness-centre-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.wellness-centre-section .intro {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #c2eccc;
  line-height: 1.6;
}

.wellness-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}

.wellness-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 255, 153, 0.1);
}

.wellness-details {
  max-width: 500px;
  text-align: left;
}

.wellness-details h3 {
  font-size: 1.3rem;
  color: #00ff99;
  margin-bottom: 15px;
}

.wellness-details ul {
  list-style: none;
  padding-left: 0;
}

.wellness-details li {
  margin-bottom: 15px;
  padding-left: 24px;
  position: relative;
  color: #c2eccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.wellness-details li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ff99;
  font-size: 0.9rem;
}

.wellness-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  background: rgba(3, 49, 19, 0.8);
  padding: 40px 30px;
  border-radius: 12px;
}

.feature-card {
  background: #052015;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 255, 153, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card img {
  width: 36px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(17%) saturate(1000%) hue-rotate(90deg);
}

.feature-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: #b2d8b2;
}

.update-note {
  margin-top: 40px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.update-note span {
  color: #00ff99;
  font-weight: 600;
}
/* wellness-centre-section  ended  */
/* carrer section started  */
.career-section {
  padding: 60px 20px;
  background-color: #e8f5ec;
  font-family: 'Segoe UI', sans-serif;
}

.career-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.career-content {
  flex: 1;
  min-width: 320px;
}

.career-content h2 {
  font-size: 36px;
  color: #0b3d26;
  margin-bottom: 15px;
}

.mission-text {
  font-size: 18px;
  color: #215e37;
  margin-bottom: 20px;
}

.career-info h3 {
  font-size: 24px;
  color: #0b3d26;
  margin-bottom: 10px;
}

.career-info p {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.6;
}

.career-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.career-listings h4 {
  font-size: 18px;
  color: #215e37;
  margin-bottom: 10px;
}

.career-listings ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.apply-btn {
  background-color: #215e37;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background-color: #0b3d26;
}

.career-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.career-mask-svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .career-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .career-image {
    max-width: 90%;
  }

  .career-listings {
    justify-content: center;
  }
}
/* carrer section ended  */
/* success stories started */
.success-stories {
  background: linear-gradient(135deg, #0b3d1a 0%, #062511 50%, #041b0e 100%);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #b4e4c7;
}

.success-stories h2,
.success-stories .subtitle {
  text-align: center;
  color: #b4e4c7;
  margin-bottom:24px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}


.video-container {
  width: 100%; /* Let it take full width of card */
  height: auto;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: contain; /* maintains aspect ratio */
  border-bottom: 1px solid #ccc;
}





/* success stories ended  */
/* Our Offices started  */
.offices-section {
  background: linear-gradient(to right, #f4fdf8, #e9f8f2, #d9f4ec);
  padding: 60px 20px;
  text-align: center;
  color: #033113;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #033113;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.office-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.office-card {
  background: #ffffff;
  border-left: 4px solid #033113;
  border-radius: 12px;
  max-width: 340px;
  flex: 1 1 300px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.office-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.office-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.office-content {
  padding: 20px;
      width: 278px;

}

.office-card h3 {
  margin-top: 0;
  color: #033113;
}

.office-card p {
  font-size: 0.95rem;
  margin: 8px 0;
}

.office-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background-color: #033113;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.office-btn:hover {
  background-color: #064921;
}

/* Responsive */
@media (max-width: 768px) {
  .office-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Our Offices section ended  */
/* footer section started  */
.medzuro-footer {
  background: linear-gradient(135deg, #0b3d1a 0%, #062511 50%, #041b0e 100%);
  color: #b4e4c7;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 30px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li:hover {
  color: #ffffff;
  cursor: pointer;
}

.footer-col a {
  color: #b4e4c7;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.social-icons a {
  margin-right: 15px;
  font-size: 18px;
  color: #b4e4c7;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.contact-info li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  min-width: 16px;
  color: #b4e4c7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #b4e4c7;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.footer-bottom a{
  color: #b4e4c7;
  text-decoration: none;
}
.footer-links a {
  color: #b4e4c7;
  text-decoration: none;
}
.footer-bottom a:hover{
  text-decoration: underline;
}
.footer-links a:hover {
  text-decoration: underline;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
