/* =========================
   RESET
========================= */

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'poppins', sans-serif;
}

/* =========================
   HEADER
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* =========================
   NAVBAR LAYOUT
========================= */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SLOT */
.logo img {
  height: 40px;
}

/* CENTER SLOT */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #003366; /* deep blue tone */
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline */
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  transition: width 0.3s ease;
}
nav ul li a:hover {
  color: #004aad;
}

nav ul li a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
nav ul li a.active {
  color: #004aad;
}
nav ul li a.active::after {
  width: 100%;
}

/* =========================
   CTA BUTTON
========================= */
.btn-primary {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #e69500;
}

/* CTA ZONE */
.cta-zone {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: left 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    gap: 40px;
  }

  nav.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  nav ul li a {
    font-size: 20px;
  }

  /* Smaller CTA on mobile */
  .btn-primary {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Page Background */
body {
  background-color: #f4f6f8;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Section spacing */
.section {
  padding: 8px 20px;
  display: flex;
  justify-content: center;
}

/* Card-style container */
.section-card {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 8px;
  
  /* Soft professional shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.section-card {
  padding: 60px;
}

@media (max-width: 768px) {
  .section-card {
    padding: 30px 20px;
  }
}

/* Section heading */
.section-card h2 {
  margin-top: 0;
  font-size: px;
  margin-bottom: 2px;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 10px rgba(0, 74, 173, 0.15);
    text-align: center;
}

/* Paragraph styling */
.section-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}


/* HOME SECTION WITH BACKGROUND IMAGE */
.home-section {
  position: relative;
  padding: 160px 20px 120px;
  text-align: center;
  color: white;

  background: url('photos/hero.png') 
              no-repeat center center / cover;
}

/* Dark overlay for readability */
.home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

/* Make content sit above overlay */
.home-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.7;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;
}


/* BUTTON*/
.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: white;

  background: linear-gradient(90deg, #5fd1c4, #1e5bb8);
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* SECTION */
.benefits-section {
  padding: 100px 20px;
  background: #f3f4f6;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 48px;
  margin-bottom: 70px;
  background: linear-gradient(90deg, #5fd1c4, #1e5bb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* GRID */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.benefit-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  width: 300px;

  /* PROFESSIONAL DEPTH SHADOW */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.10);
}

/* IMAGE AREA */
.benefit-image {
  height: 230px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.benefit-content {
  padding: 30px 25px 40px;
}

.benefit-content h3 {
  font-size: 24px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #5fd1c4, #1e5bb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

/* Container styling */
.target-section {
  padding: 60px 20px;
  text-align: center;
}

.target-title {
  color: #3498db; /* Adjust to match your blue precisely */
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Flex layout for the staggered effect */
.target-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px; /* Space for the bottom staggered card */
}

/* The Cards */
.target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

/* The Image Boxes with the requested Soft Shadows */
.target-image-box {
  width: 100%;
  aspect-ratio: 1 / 1.2; /* Matches the rectangular shape in your image */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  /* Soft, heavy blur shadow as requested */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.target-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.target-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
}

/* Staggered Positioning (Strictly following the photo) */
.card-top {
  transform: translateY(0);
}

.card-middle {
  transform: translateY(80px); /* Pushes second card down */
}

.card-bottom {
  transform: translateY(160px); /* Pushes third card further down */
}



 .features-section .section-card{
  /* Use your background image here */
 background: url('photos/shit.png') 
              no-repeat center center / cover;
  padding: 80px 20px;
  min-height: 400px; /* Adjust based on your content */
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#features .feature-card p {
  color: #ffffff;
}

.feature-card {
  /* The Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(15px);           /* The blur that creates the glass look */
  -webkit-backdrop-filter: blur(15px);   /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: #419ff7; /* White text for contrast */
  width: 250px; /* Adjust width as needed */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}


/* SECTION */
.pricing-section {
  padding: 110px 20px;
  background: #f8fafc;
  text-align: center;
}

.pricing-title {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 70px;
}

/* GRID */
.pricing-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.pricing-card {
  background: white;
  width: 340px;
  padding: 45px 30px;
  border-radius: 24px;
  text-align: left;
  position: relative;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.07);

  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* FEATURED CARD */
.featured {
  border: 2px solid #1e5bb8;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #5fd1c4, #1e5bb8);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
}

/* TEXT */
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #777;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

/* BUTTON */
.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(90deg, #5fd1c4, #1e5bb8);
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* NOTE */
.pricing-note {
  margin-top: 50px;
  font-size: 15px;
  color: #444;
}


.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.curriculum-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.3s;
}

.curriculum-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close-btn { position: absolute; top: 20px; right: 20px; cursor: pointer; border: none; background: none; font-size: 24px; }



/* SECTION */
.faq-section {
  padding: 110px 20px;
  background: #f8fafc;
  text-align: center;
}

.faq-title {
  font-size: 46px;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

/* CONTAINER */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ ITEM */
.faq-item {
  background: white;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;

  box-shadow:
    0 6px 15px rgba(0,0,0,0.04),
    0 12px 30px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 25px;
  font-size: 17px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  color: #1e5bb8;
  transition: 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}



.tools-section {
  padding: 120px 20px;
  background: #ffffff;
  text-align: center;
}

.tools-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tools-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 70px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-box {
  padding: 40px 25px;
  border-radius: 20px;
  background: #f8fafc;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.04),
    0 18px 40px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.tool-box:hover {
  transform: translateY(-6px);
}

.tool-box i {
  font-size: 42px;
  color: #1e5bb8;
  margin-bottom: 20px;
}

.tool-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-box p {
  font-size: 14px;
  color: #666;
}


.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #2ecc71;
}

/* Social Icons */
.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 12px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #2ecc71;
  transform: translateY(-3px);
}

/* Form */
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.footer-form button {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #2ecc71;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-form button:hover {
  background: #27ae60;
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 13px;
  color: #94a3b8;
}
/* ========================= */
/* FLOATING WHATSAPP BUTTON */
/* ========================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ============================= */
/* SCROLL FADE IN ANIMATION */
/* ============================= */

.fade-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}



/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about-section {
  background: #f8fafc;
}

.about-card {
  padding: 80px 60px;
}

/* Layout */
.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

/* Mission Title */
.about-mission {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Impact Box */
.impact-box {
  background: linear-gradient(135deg, #004aad, #1e5bb8);
  padding: 40px;
  border-radius: 24px;
  color: white;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 20px 50px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

/* Soft Glow Accent */
.impact-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(93, 224, 230, 0.25);
  border-radius: 50%;
  filter: blur(60px);
}

/* Impact Title */
.impact-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Highlight Statement */
.impact-highlight {
  font-weight: 600;
  margin: 20px 0;
  color: #5de0e6;
}

/* Quote */
.impact-quote {
  margin-top: 25px;
  font-style: italic;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 60px 30px;
  }

  .impact-box {
    margin-top: 30px;
  }
}

.impact-box p {
  color: #ffffff;
}

/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */

.testimonials-section {
  background: #f4f6f8;
}

.testimonials-card {
  padding: 80px 60px;
  text-align: center;
}

.testimonials-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* Slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Individual Slide */
.testimonial-item {
  min-width: 100%;
  padding: 40px;
}

/* Glass Card */
.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: #003366;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.05),
    0 20px 50px rgba(0,0,0,0.08);
}

/* Author */
.testimonial-author {
  margin-top: 25px;
}

.author-name {
  font-weight: 600;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dots */
.testimonial-dots {
  margin-top: 30px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s ease;
}

.testimonial-dots button.active {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-card {
    padding: 60px 30px;
  }

  .testimonial-text {
    font-size: 17px;
    padding: 30px;
  }
}

/* ========================= */
/* AUTO IMAGE SLIDER */
/* ========================= */

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 25px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 20px 50px rgba(0,0,0,0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Caption */
.slide-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 25px;
  font-size: 20px;
  font-weight: 600;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots button.active {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .slide img {
    height: 300px;
  }
}



