:root {
  --primary: #4294ce;
  --primary-dark: #2ac3a5;
  --secondary: #e9c46a;
  --accent: #f4a261;
  --dark: #074763;
  --light: #f8f9fa;
  --text: #333333;
  --text-light: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
  margin: 15px auto;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

/* Header */
header {
  background: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  margin-right: 10px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu ul li a {
  font-weight: 500;
  color: var(--text);
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  background: var(--light);
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Banner */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1615366105533-5b8f3255ea5d?q=80&w=1167&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* About Section */
.about {
  background: white;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.about-content h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.about-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Education */
.education {
  background: var(--light);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.education-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.education-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}


/* Certificates */
.certificates {
  background: white;
}

.certificates-slider {
  margin: 0 auto;
  max-width: 1300px;
}

.certificate-item {
  padding: 0 15px;
  outline: none;
}

.certificate-item a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certificate-item a:hover {
  transform: scale(1.05);
}

.certificate-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slick-dots {
  bottom: -40px;
  right: 5px;
  left: 5px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: var(--primary);
}

.slick-dots li.slick-active button:before {
  color: var(--primary);
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary);

}
/* LightGallery custom card for captions */
.lg-card {
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px; /* keeps gap between title and image */
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  text-align: center;
}

.lg-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* Gallery */
.gallery{
      background: #fff;
  padding: 80px 0;
}
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: flex-start; /* align at top so scrolling works naturally */
  z-index: 1000;
  overflow: auto; /* scrollbars for both axes */
}

.popup-content {
  position: relative;
  margin: 20px auto;
}


.popup-content img {
  display: block;
  margin: 0 auto;
  width: 600px !important;   /* keep natural width */
  height: auto;  /* keep natural height */
  max-width: none; 
  max-height: none;
}


/* Services */
.services {
  background: white;
  padding: 80px 0;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 1000px;
  padding: 0 20px;
}

/* Card wrapper */
.service-card {
  background: transparent;
  width: 100%;
  height: 260px;
  cursor: pointer;
}

/* Inner card that flips */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip on hover */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: all 0.4s ease;
}

/* Front */
.card-front {
  background: #fff;
  text-align: center;
}

/* Back */
.card-back {
  color: #fff;
  transform: rotateY(180deg);
  text-align: center;
  opacity: 0.95;
  background-size: cover;
  background-position: center;
}

.card-back-1 { background-image: url("../images/IMG-20250901-WA0004.jpg"); }
.card-back-2 { background-image: url("../images/IMG-20250901-WA0001.jpg"); }
.card-back-3 { background-image: url("../images/healthy-lifestyle-running-outdoors.jpg"); }
.card-back-4 { background-image: url("../images/person-s-hand-writing-spiral-notepad-near-vegetables-spices-black-wooden-surface.jpg"); }
.card-back-5 { background-image: url("../images/IMG-20250901-WA0002.jpg"); }
.card-back-6 { background-image: url("../images/woman-lotus-pose-park.jpg"); }

.card-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.09);
  border-radius: 15px;
}

/* Icon Circle */
.service-icon {
  width: 70px;
  height: 70px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  animation: floatIcon 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* Icon inside */
.service-icon i {
  font-size: 30px;
  color: var(--primary);
  transition: transform 0.4s ease, color 0.3s ease;
}

/* Hover Effect */
/* .service-card:hover .service-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scale(1.1);
}

.service-card:hover .service-icon i {
  color: #fff;
  transform: rotate(10deg) scale(1.1);
} */

/* Floating Animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Text */
.card-front h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.card-front p {
  font-size: 1rem;
  line-height: 1.4;
}

.card-back p {
  font-size: 1rem;
  line-height: 1.4;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Choose */
    /* Why Choose Us Section */
    .choose {
      background: white;
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 50px;
      font-weight: bold;
    }

    /* Grid */
    .choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      perspective: 1000px; /* enables 3D flip */
      padding: 0 20px;
    }

    /* Card wrapper */
    .choose-card {
      background: transparent;
      width: 100%;
      height: 260px;
      cursor: pointer;
    }

    /* Inner card that flips */
    .card-inner-choose {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    /* Flip on hover */
    .choose-card:hover .card-inner-choose {
      transform: rotateY(180deg);
    }

    /* Front & Back */
    .card-front-choose, .card-back-choose {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      backface-visibility: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      transition: all 0.4s ease;
    }

    /* Front */
    .card-front-choose {
      background: #fff;
      text-align: center;
    }

    /* Back (default style) */
    .card-back-choose {
      color: #fff;
      transform: rotateY(180deg);
      text-align: center;
      opacity: 0.95;
      background-size: cover;
      background-position: center;
    }

     /* Custom backgrounds */
    .card-back-1-choose { background-image: url("../images/choose1.jpg");}
    .card-back-2-choose { background-image: url("../images/choose2.jpg"); }
    .card-back-3-choose { background-image: url("../images/choose3.jpeg"); }
    .card-back-4-choose { background-image: url("../images/choose4.jpg"); }
    .card-back-5-choose { background-image: url("../images/choose5.jpg"); }
    .card-back-6-choose { background-image: url("../images/choose6.jpg"); }

    /* Dark overlay for text readability */
    .card-back-choose::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.09);
      border-radius: 15px;
    }
    .card-back-choose p {
      position: relative;
      z-index: 1;
      font-size: 1rem;
      line-height: 1.4;
      animation: fadeIn 0.8s ease;
    }

    /* Icon wrapper like Health Concerns */
.icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* Font Awesome icons inside */
.icon-wrap i {
  font-size: 28px;
  color: var(--primary);
  transition: transform 0.4s ease, color 0.3s ease;
}

/* Hover Effects */
/* .choose-card:hover .icon-wrap {
  transform: scale(1.1);
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.choose-card:hover .icon-wrap i {
  color: #fff;
  transform: rotate(10deg) scale(1.1);
} */

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}


    .card-front h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
      font-weight: 600;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }


/* Quote */
.quote {
  background: var(--dark);
  color: white;
  height: 150px;
  padding: 50px 0 20px;
  text-align: center;
}

.quote-title {
  color: var(--light);
}

@media (max-width: 768px) {
  .quote {
    padding: 30px 15px;
    /* reduce padding on mobile */
    min-height: auto;
    /* allow content to decide height */
  }

  .quote-title {
    font-size: 1.4rem;
    /* slightly smaller */
  }
  
  /* Custom backgrounds */
    .card-back-1 { background-image: url("../images/IMG-20250901-WA0004.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-2 { background-image: url("../images/IMG-20250901-WA0001.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat; }
    .card-back-3 { background-image: url("../images/healthy-lifestyle-running-outdoors.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat; }
    .card-back-4 { background-image: url("../images/person-s-hand-writing-spiral-notepad-near-vegetables-spices-black-wooden-surface.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
    .card-back-5 { background-image: url("../images/IMG-20250901-WA0002.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
    .card-back-6 { background-image: url("../images/woman-lotus-pose-park.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
  
  .card-back-1-choose { background-image: url("../images/choose1.jpg");
      background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
  }
    .card-back-2-choose { background-image: url("../images/choose2.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-3-choose { background-image: url("../images/choose3.jpeg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-4-choose { background-image: url("../images/choose4.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-5-choose { background-image: url("../images/choose5.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-6-choose { background-image: url("../images/choose6.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }

}

@media (max-width: 480px) {
  .quote-title {
    font-size: 1.2rem;
  }
  /* Custom backgrounds */
    .card-back-1 { background-image: url("../images/IMG-20250901-WA0004.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-2 { background-image: url("../images/IMG-20250901-WA0001.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat; }
    .card-back-3 { background-image: url("../images/healthy-lifestyle-running-outdoors.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat; }
    .card-back-4 { background-image: url("../images/person-s-hand-writing-spiral-notepad-near-vegetables-spices-black-wooden-surface.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
    .card-back-5 { background-image: url("../images/IMG-20250901-WA0002.jpg"); 
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
    .card-back-6 { background-image: url("../images/woman-lotus-pose-park.jpg");
    background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;}
  
  .card-back-1-choose { background-image: url("../images/choose1.jpg");
      background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
  }
    .card-back-2-choose { background-image: url("../images/choose2.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-3-choose { background-image: url("../images/choose3.jpeg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-4-choose { background-image: url("../images/choose4.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-5-choose { background-image: url("../images/choose5.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }
    .card-back-6-choose { background-image: url("../images/choose6.jpg"); 
        background-size: contain;     /* keep full image visible */
  background-position: center;  /* center it in the card */
  background-repeat: no-repeat;
    }

}

/* Journey Section */
.journey-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  text-align: center;
  overflow: hidden;
}

.journey-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #074763;
  position: relative;
  display: inline-block;
}



/* Journey Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  animation: fadeInUp 1.2s ease both;
}

/* Journey Card */
.journey-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  width: 100%;
  
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: perspective(600px) rotateX(0deg);
}

/* Glow border effect */
.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Icon Style */
.journey-card .icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  font-size: 28px;
  color: #074763;
}

.journey-card h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Hover Effects */
.journey-card:hover {
  transform: perspective(600px) rotateX(5deg) scale(1.05);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.journey-card:hover::before {
  opacity: 1;
}

.journey-card:hover .icon-wrap {
  transform: scale(1.1);
  background: #e6f0ff;
  color: #fff;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}



/* WhatsApp Testimonials */
.whatsapp-slider {
  max-width: 1400px;
  margin: 0 auto;
}

.whatsapp-item {
  padding: 0 15px;
  outline: none;
}

.whatsapp-item a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background: white;
  padding: 10px;
}

.whatsapp-item a:hover {
  transform: scale(1.03);
}

.whatsapp-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  border-radius: 5px;
}

.ppt-link {
  position: relative;
  display: inline-block;
}

.ppt-icon {
  position: absolute;
  bottom: 8px;
  /* move to corner */
  right: 8px;
  background: rgba(255, 87, 34, 0.9);
  /* orange ppt color */
  color: white;
  font-size: 20px;
  padding: 6px 8px;
  border-radius: 50%;
  pointer-events: none;
  /* click goes to link, not icon */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-item img {
    height: 300px;
  }

  .whatsapp-slider {
    padding: 0 20px;
  }

  .slick-dots {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .whatsapp-item img {
    height: 250px;
  }

  .slick-dots {
    display: none !important;
  }

}

/* Testimonials */
.testimonials {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: white;
  background-attachment: fixed;
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-title:after {
  background: white;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 15px;
  outline: none;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

/* Approach */
.approach {
  background: white;
}

.approach-container {
  display: flex;
  gap: 50px;
}

.approach-content {
  flex: 1;
}

.approach-content h3 {
  margin-bottom: 40px;
}

.approach-content ul li {
  margin-bottom: 20px;
}

.approach-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  /* makes both fields equal width */
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    /* stack on mobile */
  }
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 50px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  padding: 0 20px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Lightbox Override */
.lg-backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {

  .about-container,
  .approach-container,
  .contact-container {
    flex-direction: column;
  }

  .about-img,
  .approach-img {
    margin-bottom: 30px;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .footer-col {
    flex: 0 0 100%;
  }

  .certificates-slider,
  .testimonial-slider {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .education-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .certificate-item img {
    height: 150px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}


#formResponse {
  padding: 10px;
  border-radius: 4px;
  margin-top: 15px;
}

#formResponse.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formResponse.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.health-concerns {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
 
.health-concerns .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #074763;
  position: relative;
  display: inline-block;
}
 

 
.concerns-grid {
  display: grid;
  display: -ms-grid; /* fallback */
  display: -webkit-grid; /* Safari fallback */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  animation: fadeInUp 1.2s ease both;
}
 
/* Concern Card */
.concern-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 240px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: perspective(600px) rotateX(0deg);
}
 
/* Glow border effect on hover */
.concern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
 
/* Icon floating animation */
.icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}
 
.icon-wrap img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
 
.concern-card h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.3px;
}
 
/* Hover effects */
.concern-card:hover {
  transform: perspective(600px) rotateX(5deg) scale(1.05);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}
 
.concern-card:hover::before {
  opacity: 1;
}
 
.concern-card:hover .icon-wrap {
  transform: scale(1.1);
}
 
/* Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
 
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
 
/* Responsive Grid */
@media (min-width: 1200px) {
  .concerns-grid { grid-template-columns: repeat(5, 1fr); }
}
 
@media (min-width: 768px) and (max-width: 1199px) {
  .concerns-grid { grid-template-columns: repeat(3, 1fr); }
}
 
@media (max-width: 767px) {
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
}
