/* ==========================================
INDUSTRIES HERO
========================================== */

.industries-hero{
    position:relative;
    background:
    linear-gradient(
        rgba(7,15,28,.82),
        rgba(7,15,28,.82)
    ),
    url('../images/industries/industries-banner.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:160px 0;
}

.industries-hero-content{
    max-width:900px;
    color:#fff;
}

.industries-hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:25px 0;
}

.industries-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#d5d9df;
    max-width:750px;
}

/* ==========================================
COMMON
========================================== */

.section-tag{
    display:inline-block;
    background:#e9f1ff;
    color:#214f99;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
    line-height:1.2;
}

.section-subtitle{
    max-width:850px;
    color:#6b7280;
    line-height:1.9;
    margin-bottom:60px;
    font-size:18px;
}

/* ==========================================
INDUSTRIES SECTION
========================================== */

.industries-section,
.industries-section-alt{
    padding:110px 0;
}

.industries-section-alt{
    background:#f6f8fb;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.industry-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
}

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.industry-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.industry-content{
    padding:30px;
}

.industry-content h3{
    font-size:30px;
    margin-bottom:18px;
    color:#214f99;
    font-weight:700;
}

.industry-content p{
    font-size:16px;
    line-height:1.9;
    color:#667085;
    margin:0;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.industries-why{
    padding:120px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:24px;
    border:1px solid #edf0f5;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:48px;
    color:#214f99;
    margin-bottom:20px;
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#111827;
}

.why-card p{
    color:#667085;
    line-height:1.8;
}

/* ==========================================
STATS
========================================== */

.industry-stats{
    background:#214f99;
    padding:110px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h3{
    font-size:60px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    opacity:.9;
    margin:0;
}

/* ==========================================
CTA
========================================== */

.industries-cta{
    background:
    linear-gradient(
        rgba(7,15,28,.86),
        rgba(7,15,28,.86)
    ),
    url('../images/industries/industries-cta.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    text-align:center;
    padding:150px 0;
}

.industries-cta h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.industries-cta p{
    color:#d5d9df;
    max-width:900px;
    margin:0 auto 45px;
    line-height:1.9;
    font-size:20px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.primary-btn{
    display:inline-block;
    background:#214f99;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    background:#163d7a;
    color:#fff;
}

.secondary-btn{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ==========================================
INDUSTRIES LAYOUT
========================================== */

.industries-content{
    padding:100px 0;
    background:#f8fafc;
}

.industries-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;
}

.industries-sidebar{
    position:sticky;
    top:100px;
}

.industries-main{
    display:flex;
    flex-direction:column;
    gap:50px;
}

/* ==========================================
SIDEBAR
========================================== */

.sidebar-widget{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.sidebar-widget h3{
    font-size:22px;
    margin-bottom:20px;
    color:#214f99;
}

.sidebar-menu{
    margin:0;
    padding:0;
    list-style:none;
}

.sidebar-menu li{
    margin-bottom:12px;
}

.sidebar-menu li:last-child{
    margin-bottom:0;
}

.sidebar-menu a{
    display:block;
    text-decoration:none;
    color:#333;
    padding:12px 15px;
    border-radius:10px;
    background:#f7f9fc;
    transition:.3s;
}

.sidebar-menu a:hover{
    background:#214f99;
    color:#fff;
}

.sidebar-contact{
    background:#214f99;
    color:#fff;
    padding:35px;
    border-radius:20px;
    margin-bottom:25px;
}

.sidebar-contact span{
    display:block;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:.8;
    margin-bottom:10px;
}

.sidebar-contact h3{
    font-size:28px;
    margin-bottom:15px;
    color:#fff;
}

.sidebar-contact p{
    color:#d8e2f0;
    line-height:1.8;
}

.sidebar-btn{
    display:inline-block;
    margin-top:20px;
    background:#fff;
    color:#214f99;
    text-decoration:none;
    padding:12px 25px;
    border-radius:10px;
    font-weight:700;
}

.sidebar-email{
    background:#111827;
}

/* ==========================================
INDUSTRY CARD
========================================== */

.industry-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.industry-image{
    overflow:hidden;
}

.industry-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.industry-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.industry-btn{
    margin-top:auto;
    display:inline-block;
    text-decoration:none;
    color:#214f99;
    font-weight:700;
    padding-top:20px;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1200px){

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .industries-hero{
        padding:120px 0;
    }

    .industries-hero-content h1{
        font-size:54px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
}

@media(max-width:768px){

    .industries-grid,
    .why-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .industries-hero-content h1{
        font-size:40px;
    }

    .industries-hero-content p{
        font-size:18px;
    }

    .section-title{
        font-size:34px;
    }

    .industries-cta h2{
        font-size:38px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .industry-card img{
        height:220px;
    }
}

@media(max-width:1200px){

    .industries-layout{
        grid-template-columns:1fr;
    }

    .industries-sidebar{
        position:relative;
        top:auto;
    }

}