/* =========================
       BASE (KEEP ONLY ONCE)
    ========================== */
    :root{
      --blue:#1e6fa8;
      --green:#49a942;

      --bg:#f6fbff;
      --text:#0f172a;
      --muted:#64748b;

      --border: rgba(15, 23, 42, 0.10);
      --shadow: 0 10px 30px rgba(2, 35, 60, 0.10);

      --radius: 16px;

      --bg-dark:#050607;
      --white:#ffffff;

      --hero-dark:#07121f;
    }

/* BRAND LOGO */
.brand-logo{
  height: 90px;          /* 🔥 LARGE logo */
  width: auto;
  max-width: 100%;
  display: block;
  transition: transform .2s ease;
}

/* subtle hover */
.brand-logo:hover{
  transform: scale(1.04);
}
/* Tablet */
@media (max-width: 992px){
  .brand-logo{
    height: 70px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .brand-logo{
    height: 56px;
  }
}



.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;                 /* ✅ better than grid */
  align-items: center;           /* ✅ vertical center */
  justify-content: center;       /* ✅ horizontal center */
  font-size: 26px;
  line-height: 1;                /* ✅ IMPORTANT */
  overflow: visible;             /* ✅ prevent clipping */
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* ICON FIX */
.whatsapp-float i{
  line-height: 1;                /* ✅ prevents cut */
  display: block;
}

/* Hover */
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 24px 55px rgba(0,0,0,.4);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px){
  .whatsapp-float{
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 18px;
    bottom: 18px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px){
  .whatsapp-float{
    width: 48px;
    height: 48px;
    font-size: 22px;
    right: 14px;
    bottom: 14px;
  }
}

/* =========================
   VERY SMALL PHONES
========================= */
@media (max-width: 400px){
  .whatsapp-float{
    width: 44px;
    height: 44px;
    font-size: 20px;
    right: 12px;
    bottom: 12px;
  }
}



    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(1200px 500px at 10% 0%, rgba(73,169,66,.12), transparent 55%),
        radial-gradient(1000px 500px at 90% 10%, rgba(30,111,168,.12), transparent 55%),
        var(--bg);
      overflow-x:hidden;
    }
    img, video{ max-width:100%; height:auto; display:block; }

   
    .container{ width:min(1120px, 92%); margin:0 auto; }
    .section{ padding: 40px 0; }
    .section-head{ margin-bottom: 22px; }
    .section-head h2{
      margin: 0 0 6px;
      font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
    }
    .muted{ color: var(--muted); }

  
.title-green{
  color: #49a942;
}

    /* =========================
       NAVBAR (RESPONSIVE)
    ========================== */
    .site-header{
      position: sticky;
      top: 0;
      z-index: 999;
      backdrop-filter: blur(10px);
      background: rgba(246, 251, 255, 0.78);
      border-bottom: 1px solid var(--border);
    }
    .navbar{
      min-height: 80px;
      padding: 10px 0;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 16px;
      position: relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap: 10px;
      text-decoration:none;
    }
    .brand-logo{
      height: 68px;
      max-width: 200px;
      object-fit: contain;
      transition: transform .2s ease;
    }
    .brand-logo:hover{ transform: scale(1.03); }

    .nav-toggle{ display:none; }
    .hamburger{
      display:none;
      cursor:pointer;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border);
      align-items:center;
      justify-content:center;
      gap: 6px;
    }
    .hamburger span{
      display:block;
      width: 20px;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      border-radius: 6px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap: 26px;
      list-style:none;
      margin:0;
      padding:0;
      
    }
    .nav-links a{
      text-decoration:none;
      color: var(--text);
      font-weight: 700;
      font-size: 0.95rem;
      position: relative;
      padding: 10px 2px;
    }
    .nav-links a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:4px;
      width:0%;
      height:3px;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      transition: width .25s ease;
    }
    .nav-links a:hover::after{ width: 100%; }

    .btn-nav{
      padding: 10px 14px !important;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--green));
      color:#fff !important;
      box-shadow: 0 10px 20px rgba(30,111,168,.18);
    }
    .btn-nav::after{ display:none; }

    /* =========================
       HERO (LIKE YOUR SCREENSHOT)
    ========================== */
    .hero-pro{
      position: relative;
      min-height: 520px;
      height: clamp(520px, 70vh, 680px);
      width: 100%;
      overflow: hidden;
      display: grid;
      align-items: center;
    }
    .hero-bg{
      position:absolute; inset:0;
      background-size:cover;
      background-position:center;
      transform: scale(1.02);
    }
    .hero-overlay{
      position:absolute; inset:0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%,
                             rgba(0,0,0,.58) 45%,
                             rgba(0,0,0,.25) 70%,
                             rgba(0,0,0,.05) 100%),
        radial-gradient(900px 520px at 18% 40%, rgba(7,18,31,.75), transparent 60%),
        radial-gradient(900px 520px at 85% 30%, rgba(4,8,14,.65), transparent 65%);
    }
    .hero-accent{
      position:absolute; left:0; top:0; bottom:0;
      width: 8px;
      background: linear-gradient(180deg, var(--blue), var(--green));
      opacity: .95;
    }
    .hero-pro-inner{
      position: relative;
      z-index: 2;
      padding: 40px 0;
    }
    .hero-title{
      margin: 0 0 18px;
      color: #fff;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: .95;
      font-size: clamp(2.2rem, 2rem + 2.2vw, 4.1rem);
    }
    .hero-title .outline{
      color: transparent;
      -webkit-text-stroke: 2px rgba(255,255,255,.92);
      letter-spacing: 1.5px;
    }
    .hero-desc{
      max-width: 560px;
      margin: 0 0 26px;
      color: rgba(255,255,255,.88);
      font-size: 1.05rem;
      line-height: 1.8;
    }
    .hero-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 34px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: .8px;
      text-decoration: none;
      color: #07121f;
      background: linear-gradient(90deg, rgba(30,111,168,.95), rgba(73,169,66,.95));
      box-shadow: 0 18px 35px rgba(0,0,0,.35);
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .hero-btn:hover{
      transform: translateY(-2px);
      filter: brightness(1.03);
      box-shadow: 0 22px 45px rgba(0,0,0,.45);
    }




   

/* =========================
   HERO (Like Screenshot)
   ========================= */
.hero-clean{
  padding: 0;
  background: #f7fbff;
}

.hero-clean-wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 520px;
}

/* LEFT */
.hero-clean-left{
  padding: 70px 10px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .9rem;
  /* your brand colors */
  color: var(--green);
}

.hero-clean-title{
  margin: 0 0 18px;
  font-weight: 950;
  letter-spacing: -0.8px;
  line-height: 1.05;
  font-size: clamp(2.1rem, 1.4rem + 2.3vw, 3.4rem);
  color: var(--text);
}

.hero-grad{
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-clean-text{
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 640px;
}

/* button like sample (dark-ish, but using your colors) */
.hero-clean-btn{
  width: fit-content;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 35px rgba(2,35,60,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-clean-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(2,35,60,.24);
}

/* RIGHT IMAGE */
.hero-clean-right{
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-left: 1px solid rgba(15,23,42,.08);
}

/* HERO section spacing so image won't touch navbar */
.hero-clean{
  padding: 60px 0;   /* ✅ creates top + bottom gap */
  background: #f7fbff;
}

/* make hero height flexible (not full screen) */
.hero-clean-wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;          /* ✅ center vertically */
  gap: 26px;                    /* ✅ space between text and image */
  min-height: auto;             /* ✅ remove big height */
}

/* left content padding adjusted */
.hero-clean-left{
  padding: 0;                   /* ✅ controlled by section padding now */
}

/* RIGHT IMAGE BOX -> medium height card */
.hero-clean-right{
  border-left: 0;               /* ✅ remove frame border */
  border-radius: 22px;          /* ✅ card look */
  overflow: hidden;
  height: 360px;                /* ✅ medium image height */
  box-shadow: 0 18px 45px rgba(2,35,60,.14);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
}

/* image inside */
.hero-clean-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay stays inside the image card */
.hero-clean-right::after{
  border-radius: 22px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
  .hero-clean{
    padding: 45px 0;
  }

  .hero-clean-wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-clean-right{
    height: 320px;  /* medium on tablet */
  }
}

@media (max-width: 576px){
  .hero-clean{
    padding: 38px 0;
  }

  .hero-clean-right{
    height: 260px;  /* medium on mobile */
    border-radius: 18px;
  }

  .hero-clean-right::after{
    border-radius: 18px;
  }
}

/* subtle overlay glow (brand themed) */
.hero-clean-right::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 20% 20%, rgba(73,169,66,.18), transparent 60%),
    radial-gradient(700px 420px at 80% 25%, rgba(30,111,168,.18), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18));
  pointer-events:none;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px){
  .hero-clean-wrap{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-clean-left{
    padding: 60px 0 24px;
  }

  .hero-clean-right{
    border-left: 0;
    border-top: 1px solid rgba(15,23,42,.08);
    height: 360px;
  }
}

@media (max-width: 576px){
  .hero-clean-left{
    padding: 50px 0 18px;
  }

  .hero-clean-right{
    height: 280px;
  }

  .hero-clean-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }
}


    /* =========================
       COUNTDOWN (RESPONSIVE)
    ========================== */
    .countdown-wrap{
      padding: 70px 0;
      background:
        radial-gradient(900px 420px at 20% 10%, rgba(73,169,66,.12), transparent 60%),
        radial-gradient(900px 420px at 80% 10%, rgba(30,111,168,.14), transparent 60%),
        var(--bg-dark);
      color: var(--white);
    }
    .cd-title{
      text-align:center;
      font-weight: 800;
      letter-spacing: 2px;
      margin: 0 0 26px;
      font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
      text-transform: uppercase;
      opacity: .95;
    }
    .cd-box{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 34px 16px;
      border-radius: 22px;
      position: relative;
      background: rgba(0,0,0,.55);
      overflow: hidden;
    }
    .cd-box::before{
      content:"";
      position:absolute; inset:0;
      padding: 1px;
      border-radius: 22px;
      background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .85;
    }
    .cd-item{
      text-align:center;
      padding: 18px 6px;
      position: relative;
      z-index: 1;
    }
    .cd-item:not(:last-child)::after{
      content:"";
      position:absolute;
      top: 25%;
      right: 0;
      width: 1px;
      height: 50%;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,.10), transparent);
    }
    .cd-num{
      font-size: clamp(3rem, 2.2rem + 4vw, 6.2rem);
      line-height: 1;
      font-weight: 600;
      letter-spacing: 2px;
      background: linear-gradient(180deg, rgba(30,111,168,1), rgba(73,169,66,.95));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 18px rgba(30,111,168,.18))
              drop-shadow(0 0 20px rgba(73,169,66,.14));
    }
    .cd-label{
      margin-top: 14px;
      font-size: .95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: .9;
    }

    /* =========================
       ABOUT + MISSION (IN SAME CARD)
    ========================== */
    .about-wrap{
      padding: 70px 0;
      background:
        radial-gradient(1200px 600px at 10% 20%, rgba(73,169,66,.10), transparent 60%),
        radial-gradient(1200px 600px at 90% 10%, rgba(30,111,168,.12), transparent 60%),
        #f7fbff;
    }
    .about-shell{
      position: relative;
      background: rgba(255,255,255,.92);
      border-radius: 26px;
      box-shadow: 0 18px 45px rgba(2,35,60,.10);
      overflow: hidden;
      padding: 56px 34px 34px; /* extra top space */
    }
    .about-shell::before{
      content:"";
      position:absolute; inset:0;
      padding:1px;
      border-radius: 26px;
      background: linear-gradient(90deg, rgba(141, 231, 123, 0.65), rgba(73,169,66,.65));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .9;
    }
    .about-shell::after{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(30,111,168,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(30,111,168,.06) 1px, transparent 1px);
      background-size: 90px 60px;
      opacity: .55;
      pointer-events:none;
    }
    .about-pill{
      position:absolute;
      top: 8px;
      left: 34px;
      display:flex;
      align-items:center;
      gap: 18px;
      padding: 14px 22px;
      border-radius: 999px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--blue), var(--green));
      box-shadow: 0 18px 35px rgba(30,111,168,.18);
      z-index: 2;
    }
    .about-pill .arrow,
    .mission-pill .arrow{
      width: 34px;
      height: 34px;
      display:grid;
      place-items:center;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.25);
    }

    .about-inner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items:center;
      position: relative;
      z-index: 1;
    }
    .about-left p{
      margin: 0 0 14px;
      font-size: 1.08rem;
      line-height: 1.75;
      color: var(--text);
    }
    .about-img{
      border-radius: 18px;
      overflow:hidden;
      background: #fff;
      border: 1px solid rgba(5, 238, 102, 0.18);
      box-shadow: 0 18px 45px rgba(2,35,60,.10);
      position: relative;
    }
    .about-img img{ height: 260px; object-fit:cover; width:100%; }

    .about-divider{
      height: 1px;
      margin: 28px 0 34px;
      background: linear-gradient(90deg, transparent, rgba(74, 168, 30, 0.25), rgba(73,169,66,.25), transparent);
      position: relative;
      z-index: 1;
    }

    .about-mission{ position: relative; z-index: 1; padding-top: 12px; }
    .mission-pill{
      position:absolute;
      top:-18px;
      right: 0;
      display:flex;
      align-items:center;
      gap: 18px;
      padding: 14px 22px;
      border-radius: 999px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--blue), var(--green));
      box-shadow: 0 18px 35px rgba(30,111,168,.18);
    }
    .mission-inner{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items:center;
      padding-top: 26px;
    }
    .mission-media{
      border-radius: 18px;
      overflow:hidden;
      background: #fff;
      border: 1px solid rgba(30,111,168,.18);
      box-shadow: 0 18px 45px rgba(2,35,60,.10);
    }
    .mission-media img{ height: 260px; object-fit:cover; width:100%; }
    .mission-text p{
      margin: 0 0 14px;
      font-size: 1.08rem;
      line-height: 1.75;
    }
    .mission-strong{
      font-weight: 900;
      background: linear-gradient(90deg, var(--blue), var(--green));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }



    /* =========================
   ABOUT + MISSION RESPONSIVE
   (ADD ONLY – NO CHANGES ABOVE)
========================= */

/* Tablet */
@media (max-width: 992px){

  .about-shell{
    padding: 62px 22px 26px; /* keep extra top space for pill */
  }

  .about-pill{
    left: 18px;
    top: 10px;
    padding: 12px 18px;
    gap: 14px;
    font-size: .95rem;
  }

  .about-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-img img{
    height: 240px;
  }

  .about-divider{
    margin: 22px 0 28px;
  }

  .mission-inner{
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 46px; /* space for mission pill */
  }

  .mission-pill{
    position: absolute;
    top: 6px;
    right: 0;
    padding: 12px 18px;
    gap: 14px;
    font-size: .95rem;
  }

  .mission-media img{
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 576px){

  .about-wrap{
    padding: 54px 0;
  }

  .about-shell{
    padding: 68px 16px 20px;
    border-radius: 20px;
  }

  .about-pill{
    left: 12px;
    top: 10px;
    padding: 10px 14px;
    gap: 10px;
    font-size: .9rem;
  }

  .about-pill .arrow,
  .mission-pill .arrow{
    width: 30px;
    height: 30px;
  }

  .about-left p,
  .mission-text p{
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-img,
  .mission-media{
    border-radius: 16px;
  }

  .about-img img,
  .mission-media img{
    height: 210px;
  }

  .mission-pill{
    left: 0;
    right: auto;
    top: 6px;
    padding: 10px 14px;
    gap: 10px;
    font-size: .9rem;
  }

  .mission-inner{
    padding-top: 52px;
  }
}

/* Very small phones */
@media (max-width: 400px){

  .about-shell{
    padding: 72px 14px 18px;
  }

  .about-pill,
  .mission-pill{
    max-width: calc(100% - 24px);
    white-space: nowrap;
  }

  .about-img img,
  .mission-media img{
    height: 190px;
  }
}

    /* =========================
       GALLERY + MODAL (ZOOM)
    ========================== */
    .gallery-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .g-img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 16px;
      cursor: pointer;
      transition: transform .35s ease, box-shadow .35s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,.15);
    }
    .g-img:hover{
      transform: scale(1.05);
      box-shadow: 0 18px 40px rgba(0,0,0,.25);
    }
    .img-modal{
      display:none;
      position: fixed;
      inset:0;
      z-index:9999;
      background: rgba(0,0,0,.88);
      backdrop-filter: blur(4px);
      align-items:center;
      justify-content:center;
      animation: fadeIn .25s ease;
    }
    .img-modal-content{
      max-width: 90%;
      max-height: 85vh;
      border-radius: 14px;
      animation: zoomIn .35s ease;
      box-shadow: 0 25px 60px rgba(0,0,0,.5);
    }
    .img-close{
      position:absolute;
      top: 26px;
      right: 34px;
      color:#fff;
      font-size: 42px;
      font-weight: 300;
      cursor:pointer;
      transition: transform .2s ease, opacity .2s ease;
    }
    .img-close:hover{ transform: scale(1.1); opacity:.8; }

    @keyframes zoomIn{
      from{ transform: scale(.75); opacity: 0; }
      to{ transform: scale(1); opacity: 1; }
    }
    @keyframes fadeIn{
      from{ opacity:0; }
      to{ opacity:1; }
    }

    /* =========================
       VIDEO (NEXT SECTION)
    ========================== */
    .video-section{
      background: linear-gradient(180deg, #dff1e5, #80c77b);
    }
    .video-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }
    .video-card{
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 18px 45px rgba(0,0,0,.15);
      transition: transform .35s ease, box-shadow .35s ease;
    }
    .video-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(0,0,0,.25);
    }
    .video-card video{
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
    .video-overlay{
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
      display:grid;
      place-items:center;
    }
    .play-btn{
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--green));
      color: #fff;
      font-size: 26px;
      display: grid;
      place-items: center;
      box-shadow: 0 15px 40px rgba(0,0,0,.35);
      transition: transform .25s ease;
    }
    .video-card:hover .play-btn{ transform: scale(1.1); }

    .video-modal{
      display:none;
      position:fixed;
      inset:0;
      background: rgba(0,0,0,.9);
      backdrop-filter: blur(6px);
      z-index:9999;
      align-items:center;
      justify-content:center;
    }
    #videoPlayer{
      max-width: 90%;
      max-height: 85vh;
      border-radius: 14px;
      box-shadow: 0 25px 70px rgba(0,0,0,.6);
      background:#000;
    }
    .video-close{
      position:absolute;
      top: 24px;
      right: 32px;
      font-size: 42px;
      color: #fff;
      cursor:pointer;
      transition: transform .2s ease;
    }
    .video-close:hover{ transform: scale(1.15); }

    /* =========================
       CONTACT (RESPONSIVE)
    ========================== */
    .contact-grid{
      display:grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 16px;
      align-items:start;
    }
    .contact-card, .contact-form{
      background: rgba(255,255,255,.85);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      border-color: #49a942;
      padding: 18px;
      box-shadow: 0 8px 24px rgba(2, 35, 60, 0.06);
    }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .contact-form input,
    .contact-form textarea{
      width: 100%;
      padding: 12px 12px;
      margin-top: 12px;
      border-radius: 12px;
      border: 1px solid rgba(15, 23, 42, 0.14);
      outline: none;
      font-size: 0.95rem;
      background: rgba(255,255,255,.9);
    }
    .contact-form input:focus,
    .contact-form textarea:focus{
      border-color: rgba(30, 168, 111, 0.45);
      box-shadow: 0 0 0 4px rgba(62, 168, 30, 0.12);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: linear-gradient(135deg, var(--blue), var(--green));
      color: #fff;
      font-weight: 800;
      text-decoration:none;
      box-shadow: 0 12px 25px rgba(30,111,168,.18);
      transition: transform .15s ease, box-shadow .15s ease;
      cursor:pointer;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(30,111,168,.22);
    }

    /* =========================
       FOOTER (RESPONSIVE)
    ========================== */
    .site-footer{
      background:
        radial-gradient(900px 300px at 20% 0%, rgba(73,169,66,.15), transparent 60%),
        radial-gradient(900px 300px at 80% 0%, rgba(218, 228, 235, 0.18), transparent 60%),
        #050b14;
      color: #e5eef7;
      margin-top: 80px;
    }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 28px;
      padding: 70px 0 50px;
    }
    .footer-brand img{ height: 58px; margin-bottom: 14px; margin-top: 50px; }
    .footer-text{ color: rgba(255,255,255,.75); line-height: 1.7; font-size: .95rem; }

    .site-footer h4{
      margin-bottom: 16px;
      font-size: 1.05rem;
      font-weight: 900;
      position: relative;
    }
    .site-footer h4::after{
      content:"";
      display:block;
      width: 34px;
      height: 3px;
      margin-top: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--green));
    }
    .footer-links, .footer-contact{ list-style:none; padding:0; margin:0; }
    .footer-links li, .footer-contact li{ margin-bottom: 10px; }
    .footer-links a{
      color: rgba(255,255,255,.8);
      text-decoration:none;
      transition: color .2s ease, padding-left .2s ease;
    }
    .footer-links a:hover{ color:#fff; padding-left:6px; }
    .footer-contact li{ font-size: .95rem; color: rgba(255,255,255,.8); }

    .footer-social{ display:flex; gap:12px; }
    .footer-social a{
      width: 42px; height: 42px;
      border-radius: 50%;
      display:grid; place-items:center;
      text-decoration:none;
      color:#fff;
      background: linear-gradient(135deg, var(--blue), var(--green));
      box-shadow: 0 12px 30px rgba(0,0,0,.35);
      transition: transform .2s ease;
    }
    .footer-social a:hover{ transform: translateY(-4px); }
    .footer-social a i{ font-size: 18px; line-height: 1; }

    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,.12);
      padding: 18px 0;
      text-align:center;
      font-size: .9rem;
      color: rgba(255,255,255,.7);
    }


















    /* =========================
   FOOTER WAVY TOP
========================= */
/* make wave visible by using page bg color */
.site-footer{
  position: relative;
  overflow: hidden;
}

/* wave uses your page bg (#f6fbff) so it contrasts with dark footer */
.site-footer::before{
  content:"";
  position:absolute;
  top:-1px;
  left:0;
  width:100%;
  height:130px;
  z-index:1;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140'%3E%3Cpath fill='%23f6fbff' d='M0,64L48,74.7C96,85,192,107,288,101.3C384,96,480,64,576,53.3C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L0,0Z'/%3E%3C/svg%3E") no-repeat top center;

  background-size: cover;
}

/* keep footer content above wave */
.site-footer .footer-top,
.site-footer .footer-bottom{
  position: relative;
  z-index: 2;
}



    /* =========================
       RESPONSIVE BREAKPOINTS
    ========================== */
    @media (max-width: 1024px){
      .footer-top{ grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 20px 40px; }
    }

    @media (max-width: 980px){
      .contact-grid{ grid-template-columns: 1fr; }
      .cd-box{ grid-template-columns: repeat(2, 1fr); }
      .cd-item:not(:last-child)::after{ display:none; }
      .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
      .about-inner{ grid-template-columns: 1fr; }
      .mission-inner{ grid-template-columns: 1fr; }
    }

    @media (max-width: 820px){
      .hamburger{ display:flex; }

      .nav-links{
        position:absolute;
        left:0; right:0;
        top: 80px;
        padding: 14px;
        background: rgba(246, 251, 255, 0.95);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(10px);
        display:grid;
        gap: 8px;

        transform: translateY(-12px);
        opacity: 0;
        pointer-events:none;
        transition: all .2s ease;
      }
      .nav-links li a{
        display:block;
        padding: 12px 12px;
        border-radius: 12px;
        border: 1px solid transparent;
      }
      .nav-links li a:hover{
        border-color: rgba(30,111,168,.22);
        background: rgba(255,255,255,.7);
      }
      .nav-toggle:checked ~ .nav-links{
        transform: translateY(0);
        opacity: 1;
        pointer-events:auto;
      }

      .brand-logo{ height: 52px; max-width: 170px; }
      .hero-desc{ max-width: 100%; }
      .hero-title .outline{ -webkit-text-stroke: 1.5px rgba(255,255,255,.92); }
      .form-row{ grid-template-columns: 1fr; }
    }

    @media (max-width: 560px){
      .gallery-grid{ grid-template-columns: 1fr; }
      .cd-box{ grid-template-columns: 1fr; }
      .site-footer{ margin-top: 60px; }
      .footer-top{
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 16px 36px;
        text-align:center;
      }
      .footer-brand img{ margin: 0 auto 12px; height: 52px; }
      .site-footer h4::after{ margin-left:auto; margin-right:auto; }
      .footer-social{ justify-content:center; }
      .footer-links a:hover{ padding-left:0; }
      .footer-bottom{ padding: 16px 12px; font-size: .85rem; }
      .about-pill{ left: 18px; }
    }




  
    /* =========================
   SCROLL REVEAL ANIMATION
========================= */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* optional: slight delay variations */
.reveal.delay-1{ transition-delay: .10s; }
.reveal.delay-2{ transition-delay: .20s; }
.reveal.delay-3{ transition-delay: .30s; }

/* reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.show{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
















/* modal */
.img-modal{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

/* image */
.img-modal-content{
  max-width: 90%;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

/* ✅ CLOSE BUTTON */
.img-close{
  position: fixed;          /* fixed so it stays top-right */
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;           /* above modal image */
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.img-close:hover{
  transform: scale(1.08);
  background: rgba(255,255,255,.2);
  opacity: .95;
}
