/* =====================================================
   GLOBAL
===================================================== */
:root{
  --blue:#017ff7;
  --yellow:#FFBE3B;
  --accent:#FFBE3B;
  --text-dark:#022a57;
  --muted:#555;
  --bg:#f6fbff;
  --page-max:1200px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Poppins,sans-serif;
  background:#f6fbff;
  color:#222;
}

main.container{
  max-width:var(--page-max);
  margin:0 auto;
  padding:0 18px 80px;
}

/* =====================================================
   HERO — FULL SCREEN (FINAL)
===================================================== */
#hero{
  width:100vw;
  height:100vh;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  background:#000;
}

.hero-slider,
.slides,
.slide.hero-bg{
  width:100%;
  height:100%;
  position:relative;
}

.slides{
  display:flex;
  transition:transform .6s ease;
}

.slide{
  flex:0 0 100%;
  height:100%;
  position:relative;
}

/* IMAGE FULL FIT */
.slide.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* OVERLAY */
.slide.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.30),
    rgba(0,0,0,.15),
    rgba(0,0,0,.05)
  );
  z-index:1;
}

/* TEXT */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 8vw;
  color:#fff;
}

.hero-overlay h1{
  font-size:clamp(42px,5vw,68px);
  line-height:1.1;
  margin-bottom:24px;
  max-width:650px;
}

.hero-cta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn-yellow{
  background:var(--yellow);
  color:#000;
  padding:14px 26px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
  padding:12px 24px;
  border-radius:10px;
  text-decoration:none;
}

/* NAV */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.45);
  border:none;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:8px;
  font-size:22px;
  cursor:pointer;
  z-index:5;
}
.prev{left:20px}
.next{right:20px}

/* DOTS */
.dots{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:6;
}
.dots div{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
}
.dots .active{
  background:var(--accent);
}
/* =====================================================
   HERO — MOBILE VISUAL FIX (FINAL & CORRECT)
===================================================== */
@media (max-width: 768px){

  /* HERO HEIGHT */
  #hero{
    height: 100svh;
    min-height: 100svh;
  }

  .hero-slider,
  .slides,
  .slide.hero-bg{
    height: 100%;
  }

  /* ✅ IMAGE — NO BLACK GAP, FULL HERO */
 .slide.hero-bg img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 65% center;   /* 👈 MAGIC VALUE */
}

  /* DARK GRADIENT FOR TEXT READABILITY */
  .slide.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.75)
    );
    z-index:1;
  }

  /* TEXT OVERLAY */
  .hero-overlay{
    z-index:2;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    padding:0 20px 90px;
  }

  .hero-overlay h1{
    font-size: clamp(26px, 6.5vw, 36px);
    line-height:1.2;
    margin-bottom:18px;
    max-width:100%;
  }

  /* CTA */
  .hero-cta{
    flex-direction:column;
    width:100%;
    gap:12px;
    align-items:center;
  }

  .hero-cta a{
    width:100%;
    max-width:280px;
    padding:14px 0;
    text-align:center;
  }

  /* ARROWS */
  .nav{
    width:34px;
    height:34px;
    font-size:18px;
  }

  /* DOTS */
  .dots{
    bottom:16px;
  }
}


/* =====================================================
   WHY CHOOSE US — INLINE
===================================================== */
.why-section-full{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:60px 30px;
  background:var(--bg);
  text-align:center;
}

.why-section-full h3{
  font-size:28px;
  margin-bottom:40px;
  color:var(--text-dark);
}

.why-inline-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.why-card{
 
  border-radius:16px;
  padding:25px 20px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
  transition:.25s;
}
.why-card:hover{transform:translateY(-6px)}

.why-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:15px;
}

.why-card h4{
  font-size:16px;
  margin-bottom:8px;
  color:var(--text-dark);
}
.why-card p{
  font-size:14px;
  color:var(--muted);
}
/* WHY CHOOSE US — ONE LINE FINAL */

.why-images-only{
  display:grid;
  grid-template-columns:repeat(4,1fr);   /* ✅ ONE LINE */
  gap:32px;
  max-width:1200px;
  margin:50px auto 80px;
  padding:0 24px;
}

.why-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

.why-image img{
  width:100%;
  max-width:300px;   /* 👌 PERFECT SIZE FOR ONE ROW */
  height:auto;
  display:block;
}



/* Responsive */
@media(max-width:900px){
  .why-images-only{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .why-images-only{
    grid-template-columns:1fr;
  }
}

.why-clean{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  max-width:1100px;
  margin:40px auto 70px;
  padding:0 24px;
}

.why-card.clean{
  background:transparent;     /* ❌ no card */
  box-shadow:none;            /* ❌ no shadow */
  border:none;                /* ❌ no border */
  padding:0;
  text-align:center;
}

.why-card.clean img{
  width:300px;
  height:auto;
  margin:0 auto 14px;
  display:block;
}

.why-card.clean h4{
  font-size:15px;
  font-weight:700;
  color:#0a5275;
  margin-bottom:6px;
}

.why-card.clean p{
  font-size:14px;
  color:#555;
  line-height:1.5;
  max-width:220px;
  margin:0 auto;
}

/* Responsive */
@media(max-width:900px){
  .why-clean{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .why-clean{
    grid-template-columns:1fr;
  }
}

/* =====================================================
   SHOP BY CATEGORY
===================================================== */
.category-section{
  margin-top:70px;
  background:#eef5ff;
  padding:60px 0;
}

.category-section h3{
  max-width:var(--page-max);
  margin:0 auto 30px;
  padding:0 18px;
  font-size:28px;
  font-weight:800;
  color:var(--text-dark);
}

.category-grid{
  max-width:var(--page-max);
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.category-card{

  border-radius:22px;
  padding:26px;
  text-align:center;
  text-decoration:none;
  color:var(--text-dark);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:.25s;
}
.category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 60px rgba(0,0,0,.12);
}

.cat-img{
  background:#f9fbff;
  border-radius:16px;
  padding:18px;
  margin-bottom:16px;
  display:flex;
  justify-content:center;
}
.cat-img img{
  max-width:220px;
  height:160px;
  object-fit:contain;
}

/* =====================================================
   BENEFITS OF DIY KITS
===================================================== */
.benefits-section{
  margin-top:70px;
  background:var(--bg);
  padding:60px 0;
}

.benefits-inner{
  max-width:var(--page-max);
  margin:auto;
  padding:0 18px;
  text-align:center;
}

.benefits-inner h3{
  font-size:30px;
  font-weight:800;
  margin-bottom:30px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

.benefit-card{
 
  padding:22px 18px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  font-weight:600;
}

/* =====================================================
   LEARN WITH FUN
===================================================== */
/* =====================================================
   LEARN WITH FUN — FULL WIDTH FIX (FINAL)
===================================================== */
.learn-section{
  width:100vw;                             /* ✅ full screen */
  margin-left:calc(50% - 50vw);            /* ✅ break container */
  background:var(--blue);
  color:#fff;
  padding:70px 18px 80px;                  /* balanced spacing */
}

/* CENTER CONTENT INSIDE */
.learn-section h3{
  max-width:1200px;
  margin:0 auto 40px;
  font-size:34px;
  font-weight:800;
}

.learn-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


/* =====================================================
   TESTIMONIALS — FULL WIDTH BLUE (FINAL)
===================================================== */

.impact-testimonials{
  width:100vw;
  margin-left:calc(50% - 50vw);
/* 🔵 BLUE BACKGROUND */
  padding:80px 20px;
}

/* WRAPPER */
.testimonials-wrapper{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* HEADING */
.testimonials-wrapper h3{
  font-size:32px;
  font-weight:800;
  margin-bottom:40px;
   color:#022a57;
                 /* WHITE HEADING */
}

/* GRID */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

/* CARD */
.testimonial-box{
  background:#ffffff;              /* 🤍 WHITE CARD */
  border-radius:20px;
  padding:30px 26px;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  color:#000000;                   /* 🖤 BLACK TEXT */
  transition:transform .25s ease;
}

.testimonial-box:hover{
  transform:translateY(-6px);
}

/* STARS */
.testimonial-box .stars{
  color:#FFBE3B;                   /* ⭐ GOLD */
  font-size:18px;
  margin-bottom:14px;
}

/* TEXT */
.testimonial-box .review-text{
  font-size:15px;
  line-height:1.6;
  color:#000000;
  margin-bottom:16px;
}

/* NAME */
.testimonial-box .reviewer{
  font-weight:700;
  font-size:14px;
  color:#022a57;
}

/* RESPONSIVE */
@media(max-width:980px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}
/* =========================================



/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:980px){
  .why-inline-grid,
  .category-grid,
  .benefits-grid,
  .learn-grid,
  .impact-cards,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}/* =====================================================
   HERO — MOBILE RESPONSIVE FIX (FINAL)
===================================================== */
@media (max-width: 768px){

  #hero{
    height: 100svh;
  }

  .hero-slider,
  .slides,
  .slide.hero-bg{
    height:100%;
  }

  .slide.hero-bg img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: 65% center; /* ✅ correct framing */
  }

  .hero-overlay{
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    padding:0 20px 90px;
  }

  .hero-overlay h1{
    font-size: clamp(26px, 6.5vw, 36px);
    line-height:1.2;
  }
}

@media (max-width: 900px){

  /* HERO HEIGHT */
  #hero{
    height:100vh;
  }

  .hero-slider,
  .slides,
  .slide.hero-bg{
    height:100vh;
  }


  /* TEXT CONTAINER */
  .hero-overlay{
    justify-content:flex-end;   /* move text lower */
    padding:0 20px 90px;        /* bottom spacing */
    text-align:center;
    align-items:center;
  }

  /* HEADING */
  .hero-overlay h1{
    font-size:clamp(28px, 6vw, 38px);
    line-height:1.15;
    max-width:100%;
    margin-bottom:18px;
  }

  /* CTA BUTTONS */
  .hero-cta{
    flex-direction:column;
    width:100%;
    gap:12px;
  }

  .hero-cta a{
    width:100%;
    max-width:320px;
    text-align:center;
    padding:14px 0;
  }

  /* SLIDER NAV */
  .nav{
    width:36px;
    height:36px;
    font-size:20px;
  }

  /* DOTS */
  .dots{
    bottom:14px;
  }
}
/* =====================================================
   BENEFITS OF DIY KITS — RESTORED
===================================================== */

.why-section{
  background:var(--bg);
  padding:60px 0;
}

.why-inner{
  max-width:var(--page-max);
  margin:auto;
  padding:0 18px;
}

.why-item{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:48px;
}

.feature-copy h4{
  font-size:22px;
  margin-bottom:12px;
  color:var(--text-dark);
}

.feature-copy p{
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
}

.feature-img{
  display:flex;
  justify-content:center;
}

.feature-img img{
  max-width:420px;
  width:100%;
  height:auto;
  object-fit:contain;
}

/* Alternate layout */
.why-item:nth-child(even){
  direction:rtl;
}
.why-item:nth-child(even) > *{
  direction:ltr;
}

/* Mobile */
@media(max-width:900px){
  .why-item{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* =====================================================
   LEARN WITH FUN — RESTORED
===================================================== */

.step-icon{
  width:64px;
  height:64px;
  object-fit:contain;
  margin-bottom:10px;
}

.step-card h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.step-card p{
  font-size:15px;
  color:#444;
  line-height:1.5;
}

/* Video card */
.video-thumb{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:12px;
}

.video-thumb img{
  width:100%;
  display:block;
}

.play-btn{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:42px;
  transition:.25s;
}

.video-thumb:hover .play-btn{
  background:rgba(0,0,0,.55);
}

/* =====================================================


/* =====================================================
   FIX GAP BETWEEN OUR IMPACT & TESTIMONIALS
===================================================== */

/* Reduce space after Our Impact */
.impact{
  margin-bottom:60px !important;
}

/* Pull Testimonials closer */
.testimonials-wrapper{
  margin-top:40px !important;
}

/* =====================================================
   FORCE TESTIMONIALS — MIDDLE CARD BLUE
===================================================== */

section .testimonials-wrapper{
  max-width:1100px !important;
  margin:100px auto 0 !important;
  text-align:center !important;
}

/* GRID */
section .testimonial-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:32px !important;
}

/* BASE CARD */
section .testimonial-box{
  background:#ffffff !important;
  border-radius:22px !important;
  padding:30px 24px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.08) !important;
  color:#222 !important;
}




@media(max-width:980px){
  .impact-cards{
    grid-template-columns:1fr;
  }

  .impact-card:nth-child(2){
    order:-1;
  }
}

/* =====================================================
   SHOP BY CATEGORY — IMAGE OVERLAY STYLE
===================================================== */
.category-section-new{
  margin-top:80px;
  padding:60px 18px;
  background:#f6fbff;
}

.category-section-new h3{
  max-width:1200px;
  margin:0 auto 40px;
  font-size:28px;
  font-weight:800;
  color:#022a57;
}

.category-grid-new{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.category-card-new{
  position:relative;
  height:300px;              /* 👈 SAME HEIGHT FOR ALL */
  border-radius:20px;
  overflow:hidden;

  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* IMAGE — SAME LOOK AS MATHS KIT */
.category-card-new img{
  width:100%;
  height:100%;
  object-fit:cover;          /* 👈 THIS IS WHAT MATHS KIT IS DOING */
  object-position:center;
  display:block;
}


/* CARD */
/* =====================================================
   SHOP BY CATEGORY — FULL WIDTH
===================================================== */
.category-section-new{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:70px 60px;
  background:#f6fbff;
}


/* IMAGE */
.category-card-new img{
  width:100%;
  height:100%;
  object-fit:contain;      /* 👈 prevents cutting */
  background:#fff;         /* fills empty space cleanly */
  padding:12px;
  transition:transform .4s ease;
}

.category-card-new:hover img{
  transform:scale(1.06);
}

/* DARK OVERLAY */
.category-card-new::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
}


/* CONTENT */
.cat-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
}

.cat-overlay h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}

.cat-overlay p{
  font-size:14px;
  line-height:1.4;
  margin-bottom:14px;
  opacity:.9;
}

/* BUTTON */
.cat-overlay a{
  background:#017ff7;
  color:#fff;
  padding:8px 16px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  width:max-content;
}

.cat-overlay a:hover{
  background:#015fc0;
}

@media(max-width:900px){
  .category-section-new{
    padding:50px 18px;
  }

  .category-grid-new{
    grid-template-columns:1fr;
  }

  .category-card-new{
    height:240px;
  }
}
/* ==========================================
   FIX SCIENCE & COMBO IMAGE LIKE MATH KIT
========================================== */
/* =========================================
   SHOP BY CATEGORY — HOVER FIX (FINAL)
========================================= */

.category-card-new{
  transition:transform .4s ease, box-shadow .4s ease;
}

/* IMAGE */
.category-card-new img{
  transition:transform .45s ease;
}

/* 🔥 HOVER EFFECT */
.category-card-new:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 60px rgba(0,0,0,.22);
}

.category-card-new:hover img{
  transform:scale(1.15);   /* ✅ VISIBLE ZOOM */
}


/* Responsive */
@media(max-width:1200px){
  .benefits-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .benefits-grid{
    grid-template-columns:1fr;
  }
}



/* =========================================
   LEARN WITH FUN — FORCE WHITE CARDS
========================================= */

.learn-section .step-card{
  background:#ffffff !important;   /* 🤍 white card */
  color:#222 !important;           /* dark text */
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* Headings */
.learn-section .step-card h4{
  color:#022a57 !important;
}

/* Text */
.learn-section .step-card p{
  color:#444 !important;
}
/* =========================================

/* =========================================
   WHY CHOOSE US — CLEAN HOVER (NO COLOR)
========================================= */

.why-image{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  transition:transform .35s ease, box-shadow .35s ease;
}

.why-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  transition:transform .45s ease;
}

/* HOVER EFFECT */
.why-image:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(0,0,0,.18);
}

/* 🔥 INCREASE IMAGE SIZE */
.why-image:hover img{
  transform:scale(1.18);   /* ⬅ increased from 1.08 */
}

/* ❌ REMOVE ANY OVERLAY */
.why-image::after{
  display:none !important;
}
/* =========================================
   BENEFITS OF DIY KITS — FORCE ONE ROW
/* =========================================
   BENEFITS — FORCE ONE ROW (DESKTOP)
========================================= */

/* =========================================
   BENEFITS — SAME HOVER AS WHY CHOOSE US
========================================= */

.benefits-full .benefit-card{
  position:relative;
  overflow:hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* IMAGE */
.benefits-full .benefit-card img{
  transition:transform .45s ease;
  display:block;
}

/* 🔥 HOVER EFFECT */
.benefits-full .benefit-card:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(0,0,0,.18);
}

/* 🔍 IMAGE ZOOM */
.benefits-full .benefit-card:hover img{
  transform:scale(1.18);
}


@media (max-width:1200px){
  .benefits-full .benefits-grid{
    grid-template-columns:repeat(3,1fr) !important;
  }
}

@media (max-width:768px){
  .benefits-full .benefits-grid{
    grid-template-columns:1fr !important;
  }
}
/* =========================================
   BENEFITS — 3D HOVER EFFECT (FINAL)
========================================= */

.benefits-full .benefit-card{

  display:flex;
  align-items:center;
  justify-content:center;
 
  transition:
    transform .45s ease,
    box-shadow .45s ease;

}

/* IMAGE */
.benefits-full .benefit-card img{
  width:100%;
  max-width:220px;
  height:auto;
  transition:transform .45s ease;
  transform:translateZ(0);
}





/* 💡 SMOOTH ON MOBILE (DISABLE TILT) */
@media (max-width:768px){
  .benefits-full .benefit-card:hover{
    transform:translateY(-8px);
  }
}
/* ===============================
   LEARN WITH FUN — IMAGE (MATCHED)
================================ */
.learn-image-section{
  padding:70px 0;   /* same vertical spacing as before */

}

.learn-image-wrap{
  max-width:1000px;  /* SAME feel as learn-grid */
  margin:auto;
  padding:0 24px;
}

.learn-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Mobile — same behaviour as cards */
@media(max-width:768px){
  .learn-image-wrap{
    max-width:100%;
  }
}
/* =====================================================
   BENEFITS OF DIY KITS — IMAGE ONLY (FINAL)
===================================================== */

.benefits-full{
  background:var(--bg);
  padding:60px 0;
  text-align:center;
}

.benefits-full h3{
  font-size:30px;
  font-weight:800;
  margin-bottom:40px;
  color:#022a57;
}

/* GRID — ONE ROW */
.benefits-full .benefits-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:32px;
}

/* ❌ NO CARD */
.benefits-full .benefit-card{
  background:transparent !important;
  padding:0 !important;
  box-shadow:none !important;
  border:none !important;

  display:flex;
  justify-content:center;
  align-items:center;

  transition:transform .35s ease;
}

/* IMAGE */
.benefits-full .benefit-card img{
  width:100%;
  max-width:220px;
  height:auto;
  transition:transform .45s ease;
}

/* ✅ SIMPLE HOVER (LIKE WHY CHOOSE US) */
.benefits-full .benefit-card:hover{
  transform:translateY(-10px);
}

.benefits-full .benefit-card:hover img{
  transform:scale(1.15);
}

/* RESPONSIVE */
@media(max-width:1200px){
  .benefits-full .benefits-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .benefits-full .benefits-grid{
    grid-template-columns:1fr;
  }
}

/* =====================================================
   OUR IMPACT — SAME AS WHY CHOOSE US (FINAL & CLEAN)
===================================================== */

.impact{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:80px 30px;
  background:#f6fbff;
  text-align:center;
}

.impact h3{
  font-size:32px;
  font-weight:800;
  margin-bottom:50px;
  color:#022a57;
}

.impact-cards{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.impact-card{
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  border:none !important;

  display:flex;
  flex-direction:column;
  align-items:center;

  transition:transform .35s ease;
}

.impact-card img{
  width:100%;
  max-width:300px;
  border-radius:16px;
  transition:transform .45s ease;
}

.impact-card h2{
  margin-top:14px;
  font-size:28px;
  font-weight:800;
  color:#022a57;
}

.impact-card p{
  font-size:15px;
  color:#555;
}

.impact-card:hover{
  transform:translateY(-10px);
}

.impact-card:hover img{
  transform:scale(1.18);
}

@media(max-width:900px){
  .impact-cards{
    grid-template-columns:1fr;
  }
}

/* =========================================
   HERO — MOBILE HARD FIX (FINAL)
========================================= */
@media (max-width: 768px){

  #hero{
    height: 100svh !important;
    min-height: 100svh !important;
  }

  .hero-slider,
  .slides,
  .slide.hero-bg{
    height: 100% !important;
  }

  /* 🔥 FORCE IMAGE POSITION */
  .slide.hero-bg img{
    width:100% !important;
    height:100% !important;
    object-fit: cover !important;
    object-position: 82% center !important; /* 👈 KEY FIX */
  }

  /* TEXT AT BOTTOM */
  .hero-overlay{
    justify-content:flex-end !important;
    align-items:center !important;
    text-align:center !important;
    padding:0 18px 90px !important;
  }

  .hero-overlay h1{
    font-size: clamp(26px, 6.5vw, 36px) !important;
    line-height:1.2 !important;
    max-width:100% !important;
  }

  .hero-cta{
    width:100% !important;
    flex-direction:column !important;
    gap:12px !important;
    align-items:center !important;
  }

  .hero-cta a{
    width:100% !important;
    max-width:280px !important;
  }
}/* =====================================================
   TESTIMONIALS — FORCE ONE BY ONE (MOBILE FINAL FIX)
===================================================== */
@media (max-width: 768px){

  /* FORCE SECTION WIDTH */
  .impact-testimonials{
    padding:60px 16px !important;
  }

  /* BREAK GRID COMPLETELY */
  section .testimonial-grid{
    display:flex !important;
    flex-direction:column !important;
    grid-template-columns:none !important;
    gap:22px !important;
  }

  /* FULL WIDTH CARD */
  section .testimonial-box{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;

    padding:24px 20px !important;
    border-radius:18px !important;
    box-shadow:0 10px 28px rgba(0,0,0,.12) !important;
  }

}


