/*==================================================
INDUSTRY ARCHIVE
==================================================*/

.industry-archive-page{
    background:#fff;
}

/*================================
INDUSTRY HERO
================================*/

.industry-hero{

    position:relative;
    padding:170px 0 120px;
    background-size:cover;
    background-position:center;
    overflow:hidden;

}

.industry-hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(8,22,48,.82),
        rgba(12,36,80,.70)
    );

}

.industry-hero-content{

    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;

}

.industry-hero-badge{

    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    backdrop-filter:blur(8px);
    margin-bottom:24px;

}

.industry-hero-content h1{

    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:28px;
    color:#fff;

}

.industry-hero-description{

    font-size:20px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.88);

}

.industry-hero-stats{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:70px;

}

.industry-hero-stat{

    padding:34px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    transition:.35s;

}

.industry-hero-stat:hover{

    transform:translateY(-8px);
    background:rgba(255,255,255,.12);

}

.industry-hero-stat h3{

    font-size:42px;
    margin-bottom:10px;
    font-weight:800;
    color:#fff;

}

.industry-hero-stat p{

    margin:0;
    font-size:16px;
    color:rgba(255,255,255,.85);

}

/*================================
SECTION HEADING
================================*/

.industry-section-heading{

    padding:110px 0 40px;
    text-align:center;
    background:#fff;

}

.industry-section-heading h2{

    font-size:48px;
    font-weight:800;
    color:#16213E;
    margin:18px 0;

}

.industry-section-heading p{

    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#64748B;

}

/*================================
INDUSTRY GRID
================================*/

.industry-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:80px 0;

}

.industry-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #E2E8F0;
    transition:.3s;

}

.industry-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 50px rgba(15,23,42,.08);

}

.industry-card a{

    color:inherit;
    text-decoration:none;
    display:block;

}

.industry-card .industry-image{

    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:20px 20px 0 0;

}

.industry-card .industry-image img{

    display:block;
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    transition:.4s ease;

}

.industry-card:hover .industry-image img{

    transform:scale(1.05);

}

.industry-content{

    padding:28px;

}

.industry-label{

    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:#2563EB;
    text-transform:uppercase;
    margin-bottom:12px;

}

.industry-content h2{

    font-size:28px;
    color:#0F172A;
    margin-bottom:15px;

}

.industry-content p{

    color:#64748B;
    line-height:1.8;
    margin-bottom:22px;

}

.industry-link{

    font-weight:600;
    color:#2563EB;

}
/*==================================================
REPORT SHOWCASE
==================================================*/

.report-showcase-section{

    padding:110px 0;

    background:#F8FAFC;

}

.report-showcase-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.report-showcase-header h2{

    font-size:46px;

    color:#17233C;

    font-weight:700;

    margin:18px 0;

}

.report-showcase-header p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

}

/*====================================
SLIDER
====================================*/

.report-slider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

}

.slider-wrapper{

    position:relative;

    width:100%;

    max-width:1200px;

    overflow:hidden;

}

.report-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:opacity .5s ease;

}

.report-slide.active{

    position:relative;

    opacity:1;

    visibility:visible;

}
.report-slide img{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

}

/*====================================
OVERLAY
====================================*/

.report-slide::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(10,25,48,.10),
        rgba(10,25,48,.72)
    );

}

/*====================================
TEXT
====================================*/

.slide-content{

    position:absolute;

    left:70px;

    bottom:70px;

    z-index:5;

    max-width:620px;

    color:#fff;

}

.slide-number{

    display:inline-flex;

    width:62px;

    height:62px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.slide-content h3{

    font-size:48px;

    line-height:1.2;

    margin-bottom:22px;

    font-weight:700;

    color:#fff;

}

.slide-content p{

    font-size:19px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

/*====================================
ARROWS
====================================*/

.slider-arrow{

    width:62px;

    height:62px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#17233C;

    font-size:28px;

    cursor:pointer;

    box-shadow:0 12px 35px rgba(15,23,42,.12);

    transition:.3s;

}

.slider-arrow:hover{

    background:#2563EB;

    color:#fff;

    transform:translateY(-3px);

}

/*====================================
DOTS
====================================*/

.slider-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;

}

.slider-dots .dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#CBD5E1;

    transition:.3s;

}

.slider-dots .dot.active{

    width:42px;

    border-radius:50px;

    background:#2563EB;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:992px){

.report-slide{

min-height:520px;

}

.report-slide img{

height:520px;

}

.slide-content{

left:35px;

right:35px;

bottom:40px;

max-width:100%;

}

.slide-content h3{

font-size:34px;

}

.slide-content p{

font-size:17px;

}

.slider-arrow{

display:none;

}

}

@media(max-width:576px){

.report-showcase-header h2{

font-size:34px;

}

.report-slide{

min-height:430px;

}

.report-slide img{

height:430px;

}

.slide-number{

width:52px;

height:52px;

font-size:18px;

}

.slide-content h3{

font-size:28px;

}

.slide-content p{

font-size:16px;

line-height:1.7;

}

}
/*=====================================
WHAT OUR INDUSTRY RESEARCH COVERS
Scoped to .industry-coverage-section
======================================*/

.industry-coverage-section{

    position:relative;
    padding:110px 0;
    background-color:#f7f9fc;
    background-size:cover;
    background-position:center;
    overflow:hidden;

}

.industry-coverage-section::before{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(247,249,252,.94) 0%,rgba(255,255,255,.96) 100%);

}

.industry-coverage-section > .container{

    position:relative;
    z-index:2;

}

.industry-coverage-header{

    max-width:820px;
    margin:0 auto 62px;
    text-align:center;

}

.industry-coverage-eyebrow{

    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0b5cff;
    background:rgba(11,92,255,.08);
    padding:8px 18px;
    border-radius:40px;
    margin-bottom:22px;

}

.industry-coverage-header h2{

    font-size:40px;
    line-height:1.25;
    color:#0d1b3e;
    margin-bottom:18px;

}

.industry-coverage-header p{

    font-size:17px;
    line-height:1.85;
    color:#5b6a85;

}

.industry-coverage-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;

}

.industry-coverage-card{

    position:relative;
    background:#fff;
    border:1px solid #e6ecf5;
    border-radius:16px;
    padding:38px 32px;
    box-shadow:0 2px 10px rgba(13,27,62,.04);
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;

}

.industry-coverage-card::after{

    content:"";
    position:absolute;
    left:0;
    top:0;
    height:3px;
    width:0;
    background:linear-gradient(90deg,#0d1b3e,#0b5cff);
    border-radius:16px 16px 0 0;
    transition:width .45s ease;

}

.industry-coverage-card:hover{

    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(13,27,62,.10);
    border-color:#d3e0f5;

}

.industry-coverage-card:hover::after{

    width:100%;

}

.industry-coverage-icon{

    width:60px;
    height:60px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,rgba(11,92,255,.10),rgba(13,27,62,.08));
    color:#0b5cff;
    margin-bottom:24px;

}

.industry-coverage-icon svg{

    width:28px;
    height:28px;

}

.industry-coverage-icon img{

    width:28px;
    height:28px;
    object-fit:contain;

}

.industry-coverage-card h3{

    font-size:21px;
    color:#0d1b3e;
    margin-bottom:12px;

}

.industry-coverage-card p{

    font-size:15.5px;
    line-height:1.85;
    color:#5b6a85;
    margin:0;

}

@media (max-width:1024px){

    .industry-coverage-grid{ grid-template-columns:repeat(2,1fr); }

    .industry-coverage-header h2{ font-size:32px; }

}

@media (max-width:640px){

    .industry-coverage-section{ padding:70px 0; }

    .industry-coverage-grid{ grid-template-columns:1fr; gap:20px; }

    .industry-coverage-header h2{ font-size:27px; }

}
