/*=========================================
    Section Heading
=========================================*/

.section-heading{

    text-align:center;

    max-width:720px;

    margin:0 auto 70px;

}

.section-badge{

    display:inline-block;

    padding:10px 22px;

    background:#EEF8DD;

    color:var(--secondary);

    border-radius:999px;

    font-weight:700;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--secondary);

}

.section-heading p{

    font-size:18px;

    line-height:2;

}

/*=========================================
    WHY SECTION
=========================================*/

.why{

    background:var(--section);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================================
    FEATURE CARD
=========================================*/

.feature-card{

    position:relative;

    background:#fff;

    padding:40px 35px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:0;

    height:5px;

    background:var(--secondary);

    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.feature-card:hover::before{

    width:100%;

}

/*=========================================
    ICON
=========================================*/

.feature-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:#EEF8DD;

    color:var(--secondary);

    font-size:28px;

    margin-bottom:25px;

    transition:var(--transition);

}

.feature-card:hover .feature-icon{

    background:var(--secondary);

    color:#fff;

    transform:scale(1.08);

}

/*=========================================
    TEXT
=========================================*/

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    line-height:1.9;

    color:var(--body);

}

/*=========================================
    STAGES
=========================================*/

.stages{

    padding-top:120px;

}

.stages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stage-card{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    height:460px;

    box-shadow:var(--shadow-md);

}

.stage-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}



.stage-overlay h3{

    color:#fff;

    font-size:30px;

    margin-bottom:10px;

}

.stage-overlay span{

    opacity:.9;

}

.stage-card:hover img{

    transform:scale(1.08);

}


/*=========================================
    ABOUT
=========================================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.about-badge{

    position:absolute;

    top:30px;

    left:30px;

    background:#fff;

    padding:20px 30px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

}

.about-badge strong{

    display:block;

    font-size:42px;

    color:var(--secondary);

}

.about-content h2{

    font-size:48px;

    margin:25px 0;

}

.about-content h2 span{

    color:var(--secondary);

}

.about-content p{

    font-size:18px;

    line-height:2;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-list div{

    display:flex;

    gap:12px;

    align-items:center;

    font-weight:600;

}

.about-list i{

    color:var(--secondary);

}

/*=========================================
    ACHIEVEMENTS
=========================================*/

.achievements{

    background:linear-gradient(135deg,#2E3F8F,#4055B8);

    color:#fff;

}

.achievements .section-heading h2,
.achievements .section-heading p{

    color:#fff;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-card{

    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:45px 20px;

}

.counter-card h3{

    font-size:56px;

    color:#98C93C;

    margin-bottom:12px;

}

.counter-card p{

    color:#fff;

    opacity:.9;

}

/*=========================================
    FACILITIES
=========================================*/

.facilities{

    background:#fff;

}

.facilities-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.facility-card{

    position:relative;

    height:360px;

    border-radius:28px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

}

.facility-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.facility-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.82)
    );

}

.facility-overlay h3{

    color:#fff;

    margin-bottom:10px;

    font-size:28px;

}

.facility-overlay p{

    color:#fff;

    opacity:.9;

}

.facility-card:hover img{

    transform:scale(1.08);

}

/*=========================================
    GALLERY
=========================================*/

.gallery{

    background:var(--section);

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    transition:.5s;

    box-shadow:var(--shadow-sm);

}

.gallery-grid img:hover{

    transform:scale(.98);

    box-shadow:var(--shadow-lg);

}

/*=========================================
    CTA
=========================================*/

.cta{

    padding:120px 0;

}

.cta-box{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        var(--primary),
        #4259BC
    );

    border-radius:36px;

    padding:80px;

    color:#fff;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-250px;

    top:-250px;

}

.cta-content{

    max-width:700px;

    position:relative;

    z-index:2;

}

.cta h2{

    color:#fff;

    font-size:52px;

    margin:25px 0;

}

.cta h2 span{

    color:var(--secondary);

}

.cta p{

    color:#fff;

    opacity:.9;

    font-size:20px;

    line-height:2;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    gap:20px;

}

/*=========================================
    FOOTER
=========================================*/

.footer{

    background:#172554;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-logo{

    height:130px;

    margin-bottom:15px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer p{

    color:#CBD5E1;

    line-height:2;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer li{

    color:#CBD5E1;

}

.footer li i{

    color:var(--secondary);

    margin-left:10px;

}

.footer a{

    color:#CBD5E1;

}

.footer a:hover{

    color:#fff;

}

.social{

    display:flex;

    gap:15px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    font-size:18px;

    transition:.3s;

}

.social a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#CBD5E1;

}

.gallery-lightbox{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.88);

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

    padding:30px;

    z-index:99999;

    cursor:pointer;
}

.gallery-lightbox.active{
    display:flex;
}

.gallery-lightbox img{
    max-width:90vw;
    max-height:90vh;

    width:auto;
    height:auto;

    object-fit:contain;

    border-radius:10px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.gallery-lightbox-image{
    cursor:zoom-in;
}

.gallery-back{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;

    margin:25px 0 40px;
}

.gallery-back .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.gallery-overlay{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
}

.gallery-overlay h3{
    margin:0;
    text-align:center;
}

.gallery-overlay .album-count{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.album-filter-form{
    margin:0;
}

.album-select{
    width:auto;
    min-width:210px;
    height:52px;

    padding:0 18px 0 42px;

    background-color:#fff;
    color:#255b89;

    border:2px solid #255b89;
    border-radius:12px;

    font-family:inherit;
    font-size:15px;
    font-weight:700;

    cursor:pointer;
    outline:none;

    transition:.2s ease;
}

.album-select:hover{
    background:#f4f8fc;
}

.album-select:focus{
    border-color:#255b89;
    box-shadow:0 0 0 3px rgba(37,91,137,.12);
}
