*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    background:#ffffff;
    color:#111827;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:absolute;
    top:0;
    left:0;

    width:100%;

    padding:30px 80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:100;
}

.logo{
    background:none;
    padding:0;
}

.logo img{
    height:70px;
    width:auto;
}

nav ul{
    display:flex;
    gap:40px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#4b5563;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#c9a227;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background:linear-gradient(
        135deg,
        #f8fafc,
        #e2e8f0
    );
}

.hero-container{
    position:relative;
    z-index:5;
}


.hero-content{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color: #555;

    max-width:900px;

    z-index:10;
}

.tagline{
    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    backdrop-filter:blur(10px);

    margin-bottom:30px;

    color: #555
}

.hero-content h1{
    font-size:5rem;
    line-height:1.1;
    margin-bottom:25px;
    color: #555;
}

.hero-content p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top: 20px;

}

.btn-primary{
    background:#c9a227;
    color:white;
    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    color:#111827;
    border:2px solid #c9a227;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-secondary:hover{
    background:#c9a227;
    color:white;
}

/* =========================
   STATS
========================= */

.stats{
    padding:120px 10%;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    background:white;
}

.stat-card{
    background:#eef2f7;

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:3.5rem;
    color:#c9a227;
    margin-bottom:10px;
    font-weight:800;
}

.stat-card p{
    color:#64748b;
}

/* =========================
   ABOUT
========================= */

.about{
    padding:120px 10%;
    background:white;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.section-tag{
    display:inline-block;

    color:#c9a227;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.about-content h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.highlight{
    background:#f8fafc;
    padding:18px;
    border-radius:15px;
    font-weight:600;
}

/* =========================
   PROGRAMS
========================= */

.programs{
    padding:120px 10%;
    background:#f8fafc;
}

.programs-header{
    text-align:center;
    margin-bottom:70px;
}

.programs-header h2{
    font-size:3rem;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.program-card{
    background:white;

    padding:40px 30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.program-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.program-card h3{
    margin-bottom:15px;
}

.program-card p{
    color:#64748b;
    line-height:1.8;
}

.program-card{
    cursor:pointer;
}

.program-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:9999;

    justify-content:center;
    align-items:center;

    padding:20px;
}

.program-modal-content{
    background:white;
    max-width:700px;
    width:100%;

    padding:40px;
    border-radius:20px;

    position:relative;

    animation:popup .3s ease;
}

@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-program{
    position:absolute;
    top:15px;
    right:25px;

    font-size:35px;
    cursor:pointer;
}

#program-title{
    margin-bottom:20px;
}

#program-description{
    line-height:1.9;
    color:#64748b;
}
.program-card{
    cursor:pointer;
}

.program-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* =========================
   GALLERY
========================= */

.gallery{
    padding:120px 10%;
    background:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:320px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* =========================
   CONTACT
========================= */

.contact-card{
    background:#f8fafc;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.footer h3{
    margin-bottom:15px;
}

.footer p{
    color:#cbd5e1;
}

/* =========================
   PREMIUM HERO
========================= */

.hero-container{
    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:1200px;
    max-width:90%;

    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:60px;

    align-items:center;

    z-index:10;
}

.hero-content{
    position:relative;
    transform:none;
    top:auto;
    left:auto;

    max-width:none;

    text-align:left;
}

.hero-founder{
    display:flex;
    justify-content:center;
}

.hero-founder img{
    width: 220px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.hero-mini-about{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;

    margin:30px 0;
}

.hero-mini-about div{
    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:18px;

    border-radius:18px;
}

.hero-mini-about strong{
    display:block;
    margin-bottom:8px;
}

.hero-mini-about span{
    font-size:.9rem;
    line-height:1.5;
}

/* =========================
   GALLERY OVERLAY
========================= */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );

    color:white;
}

.gallery-overlay h3{
    margin-bottom:10px;
}

.gallery-overlay p{
    font-size:.9rem;
    line-height:1.6;
    opacity:.9;
}

.gallery-overlay{
    pointer-events:none;
}
.lightbox{
    display:none;
    position:fixed;
    z-index:9999;
    inset:0;

    background:rgba(31,41,55,.95);

    justify-content:center;
    align-items:center;

    padding:20px;
}

.lightbox-content{
    display:flex;
    flex-direction:row;

    max-width:1200px;
    width:90%;

    background:white;
    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.lightbox-content img{
    width:60%;
    max-height:80vh;
    object-fit:cover;
    display:block;
}

#lightbox-caption{
    width:40%;

    padding:40px;

    color:#111827;
    line-height:1.9;

    overflow-y:auto;
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;

    color:white;
    font-size:40px;

    cursor:pointer;
}
/* PROGRAMS */

.program-mode{
    display:flex;
    justify-content:center;
    align-items:center;
}

.program-mode #lightbox-caption{
    max-width:850px;
    width:90%;
    margin:0 auto;
    text-align:left;
}
/* GALLERY */

.gallery-mode{
    display:flex;
    align-items:center;
    gap:40px;
    max-width:1200px;
    width:90%;
}

.gallery-mode img{
    width:500px;
    height:320px;
    object-fit:cover;
    border-radius:16px;
}

.gallery-mode #lightbox-caption{
    flex:1;
}

.gallery-mode #lightbox-caption{
    width:100%;
    padding:0;
}

/* =========================
   GALLERY MODAL
========================= */

.gallery-modal-layout{
    display:flex;
    align-items:center;
    gap:40px;
    width:100%;
}

.gallery-modal-image{
    flex:0 0 55%;
}

.gallery-modal-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.gallery-modal-text{
    flex:1;
    min-width:250px;

    color:#111827;
    font-size:1.1rem;
    line-height:1.9;
}

.gallery-modal-text p{
    margin:0;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    /* NAVBAR */

    .navbar{
        padding:20px;
    }

    nav{
        display:none;
    }

    .logo img{
        height:60px;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:120px 20px 60px;
    }

    .hero-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:30px;

        position:relative;
        top:auto;
        left:auto;
        transform:none;

        width:100%;
    }

    .hero-content{
        width:100%;
        text-align:center;
        order:1;
    }

    .hero-content h1{
        font-size:2.5rem;
        line-height:1.15;
        margin-bottom:20px;
    }

    .hero-content p{
        font-size:1rem;
        line-height:1.8;
    }

    .tagline{
        font-size:.9rem;
    }

    /* FOUNDER IMAGE */

    .hero-founder{
        order:2;
        display:flex;
        justify-content:center;
        margin:10px 0 20px;
    }

    .hero-founder img{
        width:220px;
        max-width:80%;
        height:auto;

        border-radius:20px;
        box-shadow:0 15px 40px rgba(0,0,0,.15);
    }

    /* MISSION / VISION / FOCUS */

    .hero-mini-about{
        grid-template-columns:1fr;
        gap:15px;
    }

    .hero-mini-about div{
        text-align:left;
        padding:20px;
    }

    /* BUTTONS */

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:25px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    /* STATS */

    .stats{
        grid-template-columns:1fr;
        gap:20px;
        padding:60px 25px;
    }

    .stat-card{
        padding:30px;
    }

    .stat-card h2{
        font-size:3rem;
    }

    /* ABOUT */

    .about{
        padding:80px 25px;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:2rem;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

    /* PROGRAMS */

    .programs{
        padding:80px 25px;
    }

    .program-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .program-card{
        min-height:auto;
    }

    /* GALLERY */

    .gallery{
        padding:80px 25px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .gallery-item img{
        height:260px;
    }

    /* LIGHTBOX */

    .lightbox{
        align-items:flex-start;
        padding:20px;
        padding-top:60px;
        overflow-y:auto;
    }

    .lightbox-content{
        width:95%;
        max-height:none;
        overflow-y:visible;
        margin:0 auto;
    }

    /* GALLERY MODAL FIX */

    .gallery-modal-layout{
        flex-direction:column;
        gap:20px;
        width:100%;
    }

    .gallery-modal-image{
        width:100%;
        flex:none;
    }

    .gallery-modal-image img{
        width:100%;
        height:auto;
        max-height:300px;
        object-fit:cover;
        border-radius:16px;
    }

    .gallery-modal-text{
        width:100%;
        min-width:unset;
        padding:25px;
        font-size:1rem;
        line-height:1.8;
        text-align:left;
        box-sizing:border-box;
    }

    #lightbox-caption{
        width:100%;
        padding:25px;
        font-size:.95rem;
        line-height:1.8;
        box-sizing:border-box;
    }

    #lightbox-caption h2{
        font-size:1.6rem;
        margin-bottom:15px;
    }

    .close-lightbox{
        top:15px;
        right:20px;
        font-size:34px;
    }

    /* FOOTER */

    .footer{
        padding:60px 25px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }
}
/* =========================
   MOBILE HAMBURGER
========================= */

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #1e293b;
}

/* Mobile */

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
    }
}
/* Hide hamburger on desktop */

.hamburger {
    display: none;
}

/* Mobile */

@media screen and (max-width: 768px) {

    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

}