/* ==========================================================
   SPORTS CAMP INFRA — ABOUT US PAGE
   Tokens match homepage: White / Grey / Green #00C853
   ========================================================== */

:root{
  --white:#ffffff;
  --grey-50:#fafbfc;
  --grey-100:#f2f4f6;
  --grey-200:#e7eaee;
  --grey-400:#9aa3ad;
  --grey-600:#5c6570;
  --ink:#111111;
  --green:#00c853;
  --green-dark:#00953d;
  --green-light:#e6faec;
  --shadow-sm: 0 4px 14px rgba(17,17,17,0.06);
  --shadow-md: 0 14px 40px rgba(17,17,17,0.09);
  --shadow-lg: 0 30px 70px rgba(17,17,17,0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,1,.36,1);
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  line-height:1.65;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
:focus-visible{ outline:2.5px solid var(--green); outline-offset:3px; }

h1,h2,h3{ font-family:'Poppins',sans-serif; font-weight:800; letter-spacing:-0.02em; margin:0; color:var(--ink); }
em{ font-style:normal; color:var(--green); }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 32px; }
section{ padding:110px 0; position:relative; }
@media (max-width:900px){ section{ padding:74px 0; } }

.eyebrow{ display:block; font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:14px; font-family:'Poppins',sans-serif; }
.eyebrow.center{ text-align:center; }
.section-title{ font-size:clamp(28px,3.6vw,44px); line-height:1.14; max-width:680px; }
.section-title.center{ max-width:720px; margin-left:auto; margin-right:auto; text-align:center; }
.section-sub{ color:var(--grey-600); font-size:16.5px; max-width:560px; margin-top:14px; }
.section-sub.center{ margin-left:auto; margin-right:auto; text-align:center; }
.center{ text-align:center; }

.reveal-up{ opacity:0; transform:translateY(36px); filter:blur(5px); transition:opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal-up.in-view{ opacity:1; transform:translateY(0); filter:blur(0); }
.reveal-scale{ opacity:0; transform:scale(.94); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-scale.in-view{ opacity:1; transform:scale(1); }
.reveal-up:nth-child(2){ transition-delay:.08s; }
.reveal-up:nth-child(3){ transition-delay:.16s; }
.reveal-up:nth-child(4){ transition-delay:.24s; }
@media (prefers-reduced-motion:reduce){ *{ animation-duration:.001ms !important; transition-duration:.001ms !important; } }

.scroll-progress{ position:fixed; top:0; left:0; height:3px; width:0%; background:linear-gradient(90deg,var(--green),var(--green-dark)); z-index:999; transition:width .1s linear; }

/* ---------------- Buttons ---------------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; padding:15px 30px; border-radius:100px; font-weight:600; font-size:14.5px; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.btn-primary{ background:var(--green); color:#fff; box-shadow:0 14px 34px rgba(0,200,83,.28); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 40px rgba(0,200,83,.36); }
.btn-outline{ border:1.5px solid var(--ink); color:var(--ink); background:transparent; }
.btn-outline:hover{ background:var(--ink); color:#fff; transform:translateY(-3px); }
.nav-cta{ padding:12px 24px; font-size:13.5px; }

/* ---------------- Navbar ---------------- */

.navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:900;
    padding:18px 0;
    background:#171d28; /* Dark Navbar */
    backdrop-filter:blur(14px);
    box-shadow:0 6px 26px rgba(0,0,0,.15);
}

.nav-container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav-link{
    position:relative;
    font-size:14.5px;
    font-weight:600;
    color:#ffffff;              /* White Text */
    padding:6px 0;
    transition:.3s;
}

.nav-link:hover{
    color:#10d45c;
}

.nav-link.active{
    color:#10d45c;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#10d45c;
    transition:.35s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-burger{
    display:none;
    flex-direction:column;
    gap:5px;
    width:26px;
    background:none;
    border:none;
    cursor:pointer;
}

.nav-burger span{
    height:2px;
    background:#ffffff; /* White Hamburger */
    border-radius:2px;
}

@media (max-width:900px){

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:78%;
        max-width:340px;
        height:100vh;
        background:#171d28;   /* Dark Mobile Menu */
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        padding:40px;
        gap:24px;
        transition:right .4s;
    }

    .nav-menu.open{
        right:0;
    }

    .nav-cta{
        display:none;
    }

    .nav-burger{
        display:flex;
    }
}

/* ---------------- Hero ---------------- */
.about-hero{ padding:190px 0 90px; background:linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%); overflow:hidden; }
.hero-shape{ position:absolute; top:-120px; right:-160px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(0,200,83,0.16), transparent 70%); }
.hero-inner{ position:relative; z-index:1; }
.breadcrumb{ display:inline-block; font-size:13.5px; color:var(--grey-600); margin-bottom:22px; }
.breadcrumb a{ color:var(--grey-600); }
.breadcrumb a:hover{ color:var(--green); }
.breadcrumb span{ margin:0 6px; }
.hero-title{ font-size:clamp(36px,6vw,66px); line-height:1.05; max-width:820px; margin-bottom:20px; }
.hero-sub{ font-size:clamp(15px,1.6vw,18.5px); color:var(--grey-600); max-width:600px; }

/* ---------------- Stats ---------------- */
.stats-bar{ background:var(--ink); padding:56px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-number, .stat-static{ font-family:'Poppins',sans-serif; font-weight:900; font-size:clamp(30px,4vw,50px); color:var(--green); }
.stat-item p{ margin:6px 0 0; color:rgba(255,255,255,0.7); font-size:13.5px; }
@media (max-width:700px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px 20px; } }

/* ---------------- About Story ---------------- */
.story-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:70px; align-items:center; }
.story-media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.story-media img{ width:100%; height:540px; object-fit:cover; transition:transform .8s var(--ease); }
.story-media:hover img{ transform:scale(1.06); }
.story-badge{ position:absolute; left:22px; bottom:22px; background:#fff; padding:16px 20px; border-radius:var(--radius-md); box-shadow:var(--shadow-md); }
.story-badge strong{ display:block; font-family:'Poppins',sans-serif; font-weight:800; font-size:16px; color:var(--green-dark); }
.story-badge span{ font-size:12px; color:var(--grey-600); }
.story-content p{ color:var(--grey-600); font-size:16px; margin:0 0 18px; max-width:560px; }
.story-content strong{ color:var(--ink); }
@media (max-width:900px){ .story-grid{ grid-template-columns:1fr; gap:40px; } .story-media img{ height:380px; } }

/* ---------------- Mission & Vision ---------------- */
.mission-vision{ background:var(--grey-50); }
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.mv-card{ background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:42px 38px; box-shadow:var(--shadow-sm); transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.mv-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.mv-icon{ width:52px; height:52px; border-radius:15px; background:var(--green-light); color:var(--green-dark); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.mv-icon svg{ width:24px; height:24px; }
.mv-card h3{ font-size:22px; margin-bottom:14px; }
.mv-card p{ color:var(--grey-600); font-size:15.5px; margin:0; }
.mv-mission ul{ margin:0; padding-left:20px; display:flex; flex-direction:column; gap:12px; }
.mv-mission li{ color:var(--grey-600); font-size:15px; }
@media (max-width:900px){ .mv-grid{ grid-template-columns:1fr; } }

/* ---------------- Offerings ---------------- */
.offer-grid{ margin-top:52px; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.offer-card{ background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-md); padding:30px 26px; transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.offer-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:rgba(0,200,83,.35); }
.offer-icon{ width:50px; height:50px; border-radius:14px; background:var(--green-light); color:var(--green-dark); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.offer-icon svg{ width:23px; height:23px; }
.offer-card h4{ font-family:'Poppins',sans-serif; font-weight:700; font-size:16.5px; margin-bottom:8px; }
.offer-card p{ font-size:13.8px; color:var(--grey-600); margin:0; }
@media (max-width:900px){ .offer-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .offer-grid{ grid-template-columns:1fr; } }

/* ---------------- Accreditation ---------------- */
.accreditation{ background:var(--grey-50); }
.accred-grid{ margin-top:50px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.accred-chip{ background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-md); padding:22px 16px; text-align:center; transition:transform .4s var(--ease), box-shadow .4s; }
.accred-chip:hover{ transform:translateY(-5px); box-shadow:var(--shadow-sm); }
.accred-chip strong{ display:block; font-family:'Poppins',sans-serif; font-weight:800; font-size:14.5px; color:var(--ink); }
.accred-chip span{ font-size:11.5px; color:var(--grey-600); }
@media (max-width:900px){ .accred-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .accred-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------------- Brands Marquee ---------------- */
.brands{ padding-bottom:70px; }
.marquee{ overflow:hidden; border-top:1px solid var(--grey-200); border-bottom:1px solid var(--grey-200); padding:34px 0; margin-top:20px; }
.marquee-track{ display:flex; gap:56px; width:max-content; animation:marquee-scroll 28s linear infinite; }
.marquee-track span{ font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; color:var(--grey-400); white-space:nowrap; }
@keyframes marquee-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------------- Visit / Contact ---------------- */
.visit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:stretch; }
.visit-card{ background:var(--grey-50); border-radius:var(--radius-lg); padding:48px 42px; border:1px solid var(--grey-200); }
.visit-card p{ color:var(--grey-600); margin:14px 0 30px; max-width:400px; }
.visit-list{ list-style:none; margin:0 0 30px; padding:0; display:flex; flex-direction:column; gap:16px; }
.visit-label{ display:block; font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--grey-400); font-weight:700; margin-bottom:2px; }
.visit-list a:hover{ color:var(--green); }
.visit-map{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); min-height:340px; }
.visit-map iframe{ width:100%; height:100%; min-height:340px; border:0; }
@media (max-width:900px){ .visit-grid{ grid-template-columns:1fr; } }

/* ---------------- Footer ---------------- */
.footer{ background:var(--ink); color:#fff; padding-top:76px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand p{ color:rgba(255,255,255,0.55); font-size:14px; margin-top:16px; max-width:280px; }
.footer-col h5{ font-family:'Poppins',sans-serif; font-size:12.5px; text-transform:uppercase; letter-spacing:.1em; color:var(--green); margin-bottom:18px; }
.footer-col a{ display:block; color:rgba(255,255,255,0.68); font-size:14px; margin-bottom:12px; transition:color .3s; }
.footer-col a:hover{ color:var(--green); }
.footer-bottom-inner{ display:flex; align-items:center; justify-content:space-between; padding:24px 0; flex-wrap:wrap; gap:12px; }
.footer-bottom p{ color:rgba(255,255,255,0.5); font-size:13px; margin:0; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; font-size:11px; color:#fff; transition:background .3s, border-color .3s; }
.footer-social a:hover{ background:var(--green); border-color:var(--green); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
/* Navbar */
.navbar{
    height:70px;
    min-height:70px;
    padding:0;
    background:#131a26;
}

/* Container */
.nav-container{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

/* Logo */
.logo-img{
    width:145px;
    height:auto;
    display:block;
}

/* Logo wrapper */
.nav-logo{
    display:flex;
    align-items:center;
    height:70px;
}

/* Menu button */
.nav-burger{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}
/* ==============================
   ABOUT HERO - REDUCE TOP SPACE
   ============================== */

.about-hero {
    padding-top: 80px;
    padding-bottom: 70px;
}

.about-hero .hero-inner {
    padding-top: 0;
}

/* Desktop */
@media (min-width: 992px) {
    .about-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 70px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .about-hero {
        padding-top: 60px;
        padding-bottom: 55px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-hero {
        padding-top: 45px;
        padding-bottom: 40px;
    }
}
