/*=========================
 HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(200,160,68,.15),
    transparent 40%),

    linear-gradient(
    135deg,
    #072B66,
    #0B3D91);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.hero-label{

    display:inline-block;

    padding:10px 20px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:40px;

    color:white;

    margin-bottom:30px;

    backdrop-filter:blur(8px);

}

.hero-title{

    color:white;

    font-size:72px;

    line-height:1.05;

    font-family:var(--heading-font);

    margin-bottom:30px;

}

.hero-title span{

    color:var(--gold);

}

.hero-subtitle{

    color:rgba(255,255,255,.85);

    font-size:20px;

    max-width:580px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:25px;

}

.hero-link{

    color:white;

    font-weight:600;

}

.hero-link i{

    margin-left:8px;

}

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

}
.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:radial-gradient(
        rgba(200,160,68,.35),
        transparent 70%
    );

    border-radius:50%;

    z-index:-1;

    animation:pulseGlow 5s ease-in-out infinite;

}

.hero-image img{

    width:420px;

    aspect-ratio:4/5;

    object-fit:cover;

    border-radius:40px;

    border:6px solid rgba(255,255,255,.12);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:14px;

    letter-spacing:2px;

}

.scroll-indicator span{

    display:block;

    width:2px;

    height:45px;

    background:var(--gold);

    margin:0 auto 12px;

}
.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    animation:floatShape 10s ease-in-out infinite;

}

.shape-one{

    width:260px;

    height:260px;

    background:rgba(200,160,68,.12);

    top:120px;

    right:-60px;

}

.shape-two{

    width:180px;

    height:180px;

    background:rgba(255,255,255,.05);

    bottom:100px;

    left:-50px;

}

.shape-three{

    width:120px;

    height:120px;

    background:rgba(200,160,68,.08);

    bottom:250px;

    right:300px;

}

/*==================================================
ABOUT SECTION
==================================================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(200,160,68,.15);

    color:var(--gold);

    font-weight:700;

    margin-bottom:20px;

}

.section-title{

    font-size:48px;

    line-height:1.2;

    margin-bottom:25px;

}

.section-title span{

    color:var(--gold);

}

.section-text{

    font-size:18px;

    color:#666;

    margin-bottom:40px;

    line-height:1.8;

}

.about-features{

    display:grid;

    gap:22px;

    margin-bottom:40px;

}

.feature-card{

    display:flex;

    gap:20px;

    padding:22px;

    border-radius:18px;

    background:#fff;

    border:1px solid transparent;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-6px);

    border-color:rgba(200,160,68,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.feature-card i{

    font-size:34px;

    color:var(--gold);

    transition:transform .35s ease;

}

.feature-card:hover i{

    transform:scale(1.15);

}

.feature-card h4{

    margin-bottom:8px;

}

/*==================================================
TIMELINE
==================================================*/

.timeline-section{

    background:#f8fafc;

}

.timeline{

    position:relative;

    max-width:800px;

    margin:0 auto;

    padding-left:40px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:11px;

    top:8px;

    bottom:8px;

    width:2px;

    background:rgba(200,160,68,.35);

}

.timeline-item{

    position:relative;

    padding-bottom:45px;

}

.timeline-item:last-child{

    padding-bottom:0;

}

.timeline-dot{

    position:absolute;

    left:-40px;

    top:6px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--gold);

    border:4px solid #f8fafc;

    box-shadow:0 0 0 2px rgba(200,160,68,.35);

}

.timeline-date{

    display:inline-block;

    color:var(--gold);

    font-weight:700;

    font-size:13px;

    letter-spacing:.5px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.timeline-card{

    background:#fff;

    border-radius:18px;

    padding:28px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    gap:22px;

    align-items:flex-start;

    transition:.35s;

}

.timeline-card:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 50px rgba(0,0,0,.1);

}

.timeline-card img{

    width:80px;

    height:80px;

    border-radius:14px;

    object-fit:cover;

    flex-shrink:0;

}

.timeline-card h3{

    color:var(--primary-blue);

    margin-bottom:10px;

    font-size:20px;

}

.timeline-body{

    color:#555;

    line-height:1.75;

}

.timeline-body p{

    margin-bottom:10px;

}

.timeline-body ul,
.timeline-body ol{

    padding-left:20px;

    margin-bottom:10px;

}

.timeline-body li{

    margin-bottom:6px;

}

/*==================================================
COMMUNITY IMPACT
==================================================*/

.impact{

    background:#f8fafc;

}

.section-heading{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.impact-card{

    background:#fff;

    padding:45px 25px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    border-top:4px solid transparent;

}

.impact-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.impact-card h3{

    font-size:56px;

    color:var(--primary-blue);

    margin-bottom:15px;

    font-weight:800;

}

.impact-card p{

    color:#666;

    font-weight:500;

}
/*==================================================
FEATURED PROJECTS
==================================================*/

.projects{

    background:#fff;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    border:1px solid transparent;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,160,68,.35);

    box-shadow:0 28px 60px rgba(0,0,0,.14);

}

.project-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-category{

    display:inline-block;

    padding:7px 15px;

    border-radius:50px;

    background:rgba(200,160,68,.15);

    color:var(--gold);

    font-weight:700;

    margin-bottom:20px;

}

.project-content h3{

    margin-bottom:15px;

    color:var(--primary-blue);

}

.project-content p{

    margin-bottom:25px;

    color:#666;

}

.project-content a{

    color:var(--primary-blue);

    font-weight:700;

}  
/*==================================================
VALUES
==================================================*/

.values{
    background:#f7f9fc;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-card{
    background:#fff;
    border-radius:22px;
    padding:40px 28px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.value-card:hover{
    transform:translateY(-10px);
    border-top:4px solid var(--gold);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.value-card i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;
    transition:transform .35s ease;
}

.value-card:hover i{
    transform:scale(1.15);
}

.value-card h3{
    color:var(--primary-blue);
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.7;
}
/*==================================================
VISION
==================================================*/

.vision{

    background:linear-gradient(
        135deg,
        #072B66,
        #0d4ca6
    );

    color:white;

}

.vision .section-title{

    color:white;

}

.vision-wrapper{

    max-width:1000px;

    margin:auto;

    text-align:center;

}

.vision blockquote{

    font-size:34px;

    font-family:var(--heading-font);

    line-height:1.5;

    margin:70px auto;

    color:white;

    max-width:820px;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.vision-card{

    padding:45px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.vision-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.14);

}

.vision-card i{

    font-size:45px;

    color:var(--gold);

    margin-bottom:20px;

}

.vision-card h3{

    margin-bottom:18px;

}
/*==================================================
GALLERY
==================================================*/

.gallery{

    background:#f8fafc;

}

.gallery-filter{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.gallery-filter button,
.gallery-filter a{

    border:none;

    padding:12px 24px;

    border-radius:50px;

    background:#fff;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    text-decoration:none;

    color:#333;

    display:inline-block;

}

.gallery-filter button.active,

.gallery-filter button:hover,

.gallery-filter a.active,

.gallery-filter a:hover{

    background:var(--gold);

    color:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(7,43,102,.92)

    );

    display:flex;

    align-items:flex-end;

    padding:30px;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h4{

    color:white;

}
/*==================================================
NEWS
==================================================*/

.news{

background:white;

}

.news-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

.featured-news{

overflow:hidden;

border-radius:24px;

background:white;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.featured-news img{

width:100%;

height:420px;

object-fit:cover;

}

.news-content{

padding:35px;

}

.news-date{

color:var(--gold);

font-weight:700;

}

.news-list{

display:flex;

flex-direction:column;

gap:25px;

}

.news-list article{

display:flex;

gap:20px;

padding:18px;

border-radius:18px;

transition:.35s;

cursor:pointer;

}

.news-list article:hover{

background:#f7f9fc;

}

.news-list img{

width:120px;

height:90px;

border-radius:14px;

object-fit:cover;

}

/*==================================================
PAGE BANNER (inner pages)
==================================================*/

.page-banner{

    background:linear-gradient(135deg,#072B66,#0B3D91);

    padding:190px 0 90px;

    position:relative;

    overflow:hidden;

}

.page-banner .container{

    position:relative;

    z-index:1;

}

.page-banner-breadcrumb{

    color:rgba(255,255,255,.65);

    font-size:14px;

    margin-bottom:18px;

}

.page-banner-breadcrumb a{

    color:rgba(255,255,255,.65);

    text-decoration:none;

}

.page-banner-breadcrumb a:hover{

    color:var(--gold);

}

.page-banner h1{

    color:white;

    font-size:52px;

    font-family:var(--heading-font);

    margin-bottom:18px;

}

.page-banner p{

    color:rgba(255,255,255,.8);

    font-size:18px;

    max-width:600px;

}