/* ====================================
INFRASTRUCTURE HERO
==================================== */

.infrastructure-hero{
    background:
    linear-gradient(
        rgba(8,15,28,.82),
        rgba(8,15,28,.82)
    ),
    url('../images/infrastructure/infrastructure-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:150px 0;
}

.infrastructure-hero-content{
    max-width:900px;
    color:#fff;
}

.infrastructure-hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:25px 0;
}

.infrastructure-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#d5d9df;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-stat-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:15px;
}

.hero-stat-box h3{
    color:#fff;
    font-size:36px;
    margin:0;
}

.hero-stat-box span{
    color:#d7d7d7;
    font-size:14px;
}

/* ====================================
COMMON
==================================== */

.section-tag{
    display:inline-block;
    background:#eaf1ff;
    color:#214f99;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

.section-title{
    font-size:50px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.section-subtitle{
    max-width:850px;
    color:#667085;
    line-height:1.8;
    margin-bottom:50px;
}

/* ====================================
FACILITY SECTION
==================================== */

.facility-section{
    padding:120px 0;
    background:#fff;
}

.facility-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;

    background:#fff;
    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;

    margin-top:50px;
}

.reverse-layout{
    margin-top:40px;
}

.reverse-layout .facility-image{
    order:2;
}

.reverse-layout .facility-content{
    order:1;
}

.facility-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.facility-content{
    padding:50px;
}

.facility-label{
    display:inline-block;
    background:#214f99;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.facility-content h3{
    font-size:38px;
    margin:25px 0;
    color:#111827;
}

.facility-content p{
    color:#667085;
    line-height:1.9;
    margin-bottom:20px;
}

.facility-features{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.facility-features li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    font-weight:600;
}

.facility-features li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#214f99;
    font-weight:700;
}

/* ====================================
CAPABILITIES
==================================== */

.capabilities-section{
    padding:120px 0;
    background:#f8fafc;
}

.capabilities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.capability-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.3s;
}

.capability-card:hover{
    transform:translateY(-10px);
}

.capability-card i{
    font-size:50px;
    color:#214f99;
    margin-bottom:20px;
}

.capability-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111827;
}

.capability-card p{
    color:#667085;
    line-height:1.8;
}

/* ====================================
GALLERY
==================================== */

.gallery-section{
    padding:120px 0;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;

    transition:.4s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ====================================
CTA
==================================== */

.infrastructure-cta{
    background:
    linear-gradient(
        rgba(8,15,28,.85),
        rgba(8,15,28,.85)
    ),
    url('../images/infrastructure/infrastructure-cta.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;
    padding:140px 0;
}

.infrastructure-cta h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:25px;
}

.infrastructure-cta p{
    color:#d5d9df;
    font-size:20px;
    line-height:1.9;

    max-width:900px;
    margin:0 auto 40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.primary-btn{
    display:inline-block;
    background:#214f99;
    color:#fff;
    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    background:#17396f;
    color:#fff;
}

.secondary-btn{
    display:inline-block;

    border:2px solid #fff;
    color:#fff;
    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:1200px){

    .capabilities-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .facility-card{
        grid-template-columns:1fr;
    }

    .reverse-layout .facility-image,
    .reverse-layout .facility-content{
        order:unset;
    }

    .facility-image img{
        height:350px;
    }

    .infrastructure-hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .hero-stats{
        flex-direction:column;
    }

    .capabilities-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:34px;
    }

    .facility-content{
        padding:30px;
    }

    .facility-content h3{
        font-size:30px;
    }

    .infrastructure-hero-content h1{
        font-size:40px;
    }

    .infrastructure-cta h2{
        font-size:36px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

}