:root{
    --primary: #183B4E;
    --secondary: #27548A;
    --accent: #DDA853;
    --green: #2E7D5A;

    --text: #1f2937;
    --muted: #6b7280;

    --bg: #F5F7FA;
    --white: #ffffff;

    --border: rgba(0,0,0,0.08);

    --shadow:
    0 10px 30px rgba(0,0,0,0.08);

    --radius: 22px;

    --container: 1200px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(92%, var(--container));
    margin:auto;
}

section{
    padding:100px 0;
}
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
}
.section-title{
    font-size:clamp(2rem, 5vw, 3rem);
    line-height:1.15;
    margin-bottom:20px;
    color:var(--primary);
    font-weight:800;
    letter-spacing:-1px;
}

.section-subtitle{
    color:var(--muted);
    max-width:700px;
    font-size:1.05rem;
}

/* =========================
    NAVBAR
==========================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    backdrop-filter: blur(12px);
    background:rgba(255,255,255,0.88);
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.nav-wrapper{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo h2{
    font-size:1.4rem;
    color:var(--primary);
    font-weight:800;
    line-height:1;
}

.logo span{
    font-size:.8rem;
    color:var(--muted);
}

.nav-menu{
    display:flex;
    gap:34px;
    align-items:center;
}

.nav-menu a{
    color:#374151;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--secondary);
}

.nav-btn{
    padding:12px 20px;
    border-radius:999px;
    background:var(--primary);
    color:white !important;
    font-weight:600;
}

/* =========================
    HERO
==========================*/
/*
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(11,22,34,0.92),
        rgba(11,22,34,0.60)
    ),
    url('https://pukatmalut.org/wp-content/uploads/2026/05/hero.jpg');

    background-size:cover;
    background-position:center;
    transform:scale(1.05);
}
*/
.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:760px;
    animation:fadeUp 1s ease;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);

    padding:10px 18px;
    border-radius:999px;

    margin-bottom:24px;

    font-size:.92rem;
    backdrop-filter: blur(8px);
}

.hero h1{
    font-size:clamp(3rem, 8vw, 5.6rem) !important;
    line-height:1.05;
    font-weight:800;
    margin-bottom:28px;
    letter-spacing:-2px;
    margin-left: 0 !important;
}

.hero p{
    font-size:1.15rem;
    color:rgba(255,255,255,0.88);
    max-width:650px;
    margin-bottom:40px;
    margin-left: 0 !important;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin: 0 !important;
}

.btn{
    padding:16px 26px;
    border-radius:999px;
    font-weight:600;
    transition:.35s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.btn-primary{
    background:var(--accent);
    color:#111827;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.3);
    color:white;
    backdrop-filter: blur(6px);
}

.btn-outline:hover{
    background:white;
    color:var(--primary);
}

/* =========================
    STATS
==========================*/

.stats{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:white;
    padding:40px 30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    text-align:center;
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-number{
    font-size:2.5rem;
    font-weight:800;
    color:var(--primary);
    margin-bottom:8px;
}

.stat-text{
    color:var(--muted);
    font-weight:500;
}

/* =========================
    ABOUT
==========================*/

.about-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:28px;
    box-shadow:var(--shadow);
    height:100%;
    object-fit:cover;
}

.info-grid{
    margin-top:34px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.info-card{
    background:white;
    padding:24px;
    border-radius:20px;
    border:1px solid var(--border);
}

.info-card h4{
    font-size:.95rem;
    color:var(--muted);
    margin-bottom:6px;
}

.info-card p{
    font-weight:700;
    color:var(--primary);
    margin-bottom: 0;
}

/* =========================
    FOCUS
==========================*/

.focus{
    background:white;
}

.focus-grid{
    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.focus-card{
    padding:38px;
    border-radius:28px;
    background:var(--bg);
    transition:.4s;
    border:1px solid transparent;
}

.focus-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,0,0,0.08);
    background:white;
    box-shadow:var(--shadow);
}

.focus-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(39,84,138,0.1);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.8rem;

    margin-bottom:24px;
}

.focus-card h3{
    margin-bottom:12px;
    color:var(--primary);
}

.focus-card p{
    color:var(--muted);
}

/* =========================
    VISION MISSION
==========================*/

.vision{
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #102838
    );

    color:white;
}

.vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.vision-box{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);

    padding:40px;
    border-radius:28px;

    backdrop-filter:blur(10px);
}

.vision-box h3{
    margin-bottom:20px;
    font-size:1.6rem;
}

.mission-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mission-item{
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
}

/* =========================
    TIMELINE
==========================*/

.timeline{
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:3px;
    height:100%;
    background:rgba(0,0,0,0.08);
}

.timeline-item{
    width:50%;
    padding:20px 50px;
    position:relative;
    margin-bottom:60px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-card{
    background:white;
    padding:36px;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.year{
    display:inline-block;
    padding:8px 16px;
    background:rgba(39,84,138,0.1);
    border-radius:999px;
    color:var(--secondary);
    font-weight:700;
    margin-bottom:16px;
}

.timeline-card h3{
    margin-bottom:14px;
    color:var(--primary);
}

.timeline-card p{
    color:var(--muted);
}

/* =========================
    CTA
==========================*/

.cta{
    position:relative;
    overflow:hidden;
}

.cta-box{
    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:white;

    padding:80px 60px;
    border-radius:40px;

    text-align:center;

    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);

    top:-120px;
    right:-120px;
}

.cta h2{
    font-size:clamp(2rem, 5vw, 3.5rem);
    margin-bottom:20px;
    line-height:1.15;
}

.cta p{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,0.85);
    margin-bottom:40px;
}

/* =========================
    FOOTER
==========================*/

footer{
    background:#0F172A;
    color:white;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-brand h2{
    margin-bottom:14px;
}

.footer-brand p{
    color:rgba(255,255,255,0.7);
    max-width:420px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links h4{
    margin-bottom:10px;
}

.footer-links a{
    color:rgba(255,255,255,0.7);
    transition:.3s;
}

.footer-links a:hover{
    color:white;
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:24px;
    color:rgba(255,255,255,0.5);
    text-align:center;
    font-size:.95rem;
}

/* =========================
    ANIMATION
==========================*/

@keyframes fadeUp{
    from{
    opacity:0;
    transform:translateY(40px);
    }
    to{
    opacity:1;
    transform:translateY(0);
    }
}

/* =========================
    RESPONSIVE
==========================*/

@media(max-width:992px){

    .nav-menu{
    display:none;
    }

    .stats-grid,
    .focus-grid,
    .vision-grid,
    .footer-grid,
    .about-grid{
    grid-template-columns:1fr;
    }

    .timeline::before{
    left:20px;
    }

    .timeline-item{
    width:100%;
    left:0 !important;
    padding-left:60px;
    padding-right:0;
    text-align:left !important;
    }

    .hero{
    padding-top:120px;
    }

    .hero h1{
    font-size:3.5rem;
    }
}

@media(max-width:768px){

    section{
    padding:80px 0;
    }

    .hero h1{
    font-size:2.8rem;
    }

    .hero p{
    font-size:1rem;
    }

    .stats-grid{
    grid-template-columns:1fr 1fr;
    }

    .focus-grid{
    grid-template-columns:1fr;
    }

    .info-grid{
    grid-template-columns:1fr;
    }

    .cta-box{
    padding:60px 30px;
    }

}

@media(max-width:520px){

    .stats-grid{
    grid-template-columns:1fr;
    }

    .hero-buttons{
    flex-direction:column;
    }

    .btn{
    width:100%;
    justify-content:center;
    }

    .hero h1{
    font-size:2.3rem;
    }

}