/* Combined Homepage CSS */

/* --- hero.css --- */
/*==================================================
 HERO SECTION
==================================================*/

.hero-section{

    position:relative;

    min-height:760px;

    display:flex;

    align-items:center;

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    overflow:hidden;

}

/* dark overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(9,20,43,.72) 0%,
        rgba(9,20,43,.58) 28%,
        rgba(9,20,43,.18) 65%,
        rgba(9,20,43,.05) 100%
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:720px;

    padding:10px 0;

}

/*==================================================
LABEL
==================================================*/

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#D7E7FF;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}

/*==================================================
HEADING
==================================================*/

.hero-content h1{

    color:#fff;

    font-size:68px;

    line-height:1.05;

    font-weight:700;

    margin:0 0 30px;

}

.hero-content p{

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.8;

    max-width:620px;

    margin-bottom:30px;

}

/*==================================================
BUTTON
==================================================*/

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    background:#2563EB;

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 18px 45px rgba(37,99,235,.35);

}

.hero-btn:hover{

    background:#1D4ED8;

    transform:translateY(-4px);

}

.hero-arrow{

    font-size:22px;

    transition:.3s;

}

.hero-btn:hover .hero-arrow{

    transform:translateX(6px);

}

/*==================================================
STATS
==================================================*/

.hero-stats{

    display:flex;

    gap:70px;

    margin-top:30px;

}

.hero-stat h3{

    color:#fff;

    font-size:42px;

    margin-bottom:10px;

}

.hero-stat span{

    color:rgba(255,255,255,.72);

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1.4px;

}

/* --- stats.css --- */
.stats-section{

    background:#fff;

    padding:70px 0;

    border-top:1px solid #eef2f7;

    border-bottom:1px solid #eef2f7;

}

.stats-grid{

    display:grid;

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

    text-align:center;

    gap:40px;

}

.stat-item h2{

    font-size:52px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:12px;

}

.stat-item p{

    color:#64748b;

    font-size:18px;

}

/* --- search.css --- */
.report-search-section{

    padding:100px 0;

    background:#d4e1f4;

}

.search-wrapper{

    max-width:1100px;

    margin:auto;

    text-align:center;

}

.search-heading{

    margin-bottom:45px;

}

.search-heading h2{

    font-size:46px;

    color:#17233C;

    margin:20px 0;

    font-weight:700;

}

.search-heading p{

    max-width:760px;

    margin:auto;

    color:#64748B;

    line-height:1.8;

    font-size:18px;

}

.report-search-form{

    display:flex;

    background:#fff;

    border:1px solid #E5EAF2;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

    margin:50px auto 35px;

}

.report-search-form input{

    flex:1;

    padding:24px 28px;

    border:none;

    outline:none;

    font-size:17px;

    color:#17233C;

}

.report-search-form input::placeholder{

    color:#94A3B8;

}

.report-search-form button{

    width:230px;

    background:#2458FF;

    color:#fff;

    border:none;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.report-search-form button:hover{

    background:#1748DD;

}

.popular-searches{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:25px;

}

.popular-searches span{

    font-weight:600;

    color:#17233C;

    margin-right:6px;

}

.popular-searches a{

    text-decoration:none;

    background:#FFFFFF;

    color:#2458FF;

    border:1px solid #DCE6F5;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    transition:.3s;

}

.popular-searches a:hover{

    background:#2458FF;

    color:#fff;

    border-color:#2458FF;

}

/* --- industries.css --- */
/*==================================================
BROWSE INDUSTRIES
==================================================*/

.industries-section{

    padding:120px 0;

    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.05),
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%);

    position:relative;

    overflow:hidden;

}

/*--------------------------
Section Header
--------------------------*/

.section-header{

    max-width:780px;

    margin:0 auto 85px;

    text-align:center;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    background:#EEF4FF;

    color:#2563EB;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.6px;

    text-transform:uppercase;

}

.section-header h2{

    margin:26px 0 22px;

    font-size:54px;

    line-height:1.18;

    font-weight:700;

    letter-spacing:-1.2px;

    color:#14213D;

}

.section-header p{

    font-size:19px;

    color:#64748B;

    line-height:1.9;

}

/*--------------------------
Grid
--------------------------*/

.industry-grid{

    display:grid;

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

    gap:34px;

}

/*--------------------------
Card
--------------------------*/

.industry-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    text-decoration:none;

    background:

    linear-gradient(
    180deg,
    #ffffff,
    #fcfdff);

    border-radius:24px;

    padding:36px;

    min-height:385px;

    box-shadow:

    0 12px 35px rgba(15,23,42,.05),

    0 3px 8px rgba(15,23,42,.04);

    transition:

    transform .45s cubic-bezier(.2,.8,.2,1),

    box-shadow .45s,

    border-color .45s;

}

/* Premium Top Accent */

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:

    linear-gradient(
    90deg,
    #2563EB,
    #60A5FA);

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.industry-card:hover::before{

    transform:scaleX(1);

}

.industry-card:hover{

    transform:
    translateY(-12px);

    box-shadow:

    0 28px 70px rgba(15,23,42,.10);

}

/*--------------------------
Illustration
--------------------------*/

.industry-image{

    width:88px;

    height:88px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:34px;

    background:

    linear-gradient(
    180deg,
    #ffffff,
    #f6f8fc);

    box-shadow:

    0 10px 28px rgba(15,23,42,.08);

}

.industry-image img{

    width:52px;

    height:52px;

    transition:.4s;

}

.industry-card:hover .industry-image img{

    transform:scale(1.08);

}

/*--------------------------
Title
--------------------------*/

.industry-card h3{

    font-size:30px;

    font-weight:700;

    line-height:1.35;

    letter-spacing:-.4px;

    color:#16233E;

    margin-bottom:18px;

}

/*--------------------------
Report Badge
--------------------------*/

.report-count{

    display:inline-flex;

    align-items:center;

    width:max-content;

    padding:9px 18px;

    border-radius:50px;

    background:#EEF4FF;

    color:#2563EB;

    font-size:15px;

    font-weight:700;

    margin-bottom:22px;

}

/*--------------------------
Description
--------------------------*/

.industry-card p{

    color:#66758A;

    line-height:1.85;

    font-size:16px;

    margin:0;

}
/*==================================================
CARD CTA
==================================================*/

.industry-link{

    margin-top:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    color:#17233C;

    font-size:15px;

    font-weight:700;

    letter-spacing:.2px;

    padding-top:26px;

    border-top:1px solid #EEF2F7;

    transition:.35s;

}

.industry-link span{

    background:none;

    padding:0;

    color:inherit;

    font-size:15px;

    font-weight:700;

}

.industry-link svg{

    width:20px;

    height:20px;

    transition:

        transform .35s ease,

        color .35s ease;

}

.industry-card:hover .industry-link{

    color:#2563EB;

}

.industry-card:hover .industry-link svg{

    transform:translateX(8px);

}

/*==================================================
PREMIUM HOVER EFFECTS
==================================================*/

.industry-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    pointer-events:none;

    background:

    linear-gradient(
        135deg,
        rgba(255,255,255,.25),
        rgba(255,255,255,0)
    );

    opacity:0;

    transition:.45s;

}

.industry-card:hover::after{

    opacity:1;

}

.industry-card:hover .industry-image{

    transform:translateY(-4px);

    box-shadow:

        0 18px 40px rgba(37,99,235,.12);

}

.industry-image{

    transition:

        transform .35s ease,

        box-shadow .35s ease;

}

.industry-card h3{

    transition:color .35s;

}

.industry-card:hover h3{

    color:#2563EB;

}

/*==================================================
VIEW ALL BUTTON
==================================================*/

.industry-footer{

    text-align:center;

    margin-top:70px;

}

.industry-footer .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:#0F172A;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:

    0 18px 40px rgba(15,23,42,.15);

}

.industry-footer .btn-primary:hover{

    background:#2563EB;

    transform:translateY(-3px);

}

/*==================================================
SUBTLE SECTION DECORATION
==================================================*/

.industries-section::before{

    content:"";

    position:absolute;

    top:-140px;

    right:-140px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(37,99,235,.08),

        transparent 70%

    );

    pointer-events:none;

}

.industries-section::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(15,23,42,.04),

        transparent 70%

    );

    pointer-events:none;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .industry-grid{

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

        gap:28px;

    }

}

@media(max-width:768px){

    .industries-section{

        padding:80px 0;

    }

    .section-header{

        margin-bottom:60px;

    }

    .section-header h2{

        font-size:38px;

    }

    .section-header p{

        font-size:17px;

    }

    .industry-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .industry-card{

        min-height:auto;

        padding:28px;

    }

    .industry-image{

        width:76px;

        height:76px;

    }

    .industry-image img{

        width:46px;

        height:46px;

    }

    .industry-card h3{

        font-size:24px;

    }

}

.industry-link{

    font-weight:600;

    color:#17233C;

}

.industry-footer{

    text-align:center;

    margin-top:60px;

}

/* --- featured.css --- */
/*=========================================================
FEATURED REPORTS
=========================================================*/

.featured-reports-section{

    padding:90px 0 110px;

    background:#c2cfe8;

}

/*=========================================================
HEADER
=========================================================*/

.featured-reports-section .section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.featured-reports-section .section-tag{

    display:inline-block;

    background:#bccded;

    color:#2458FF;

    padding:10px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:22px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.featured-reports-section .section-header h2{

    font-size:46px;

    color:#17233C;

    margin-bottom:20px;

    line-height:1.25;

}

.featured-reports-section .section-header p{

    font-size:18px;

    color:#64748B;

    line-height:1.8;

}

/*=========================================================
LAYOUT
=========================================================*/

.featured-layout{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:70px;

    align-items:start;

}

/*=========================================================
LEFT
=========================================================*/

.featured-main{

    padding-right:60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height:520px;

}

.featured-industry{

    display:inline-block;

    background:#b4c6e7;

    color:#2458FF;

    padding:10px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:80px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.featured-main h3{

    font-size:48px;

    line-height:1.18;

    font-weight:700;

    color:#17233C;

    margin:0 0 30px;

    max-width:620px;

}

.featured-main h3 a{

    text-decoration:none;

    color:#17233C;

    font-size:42px;

    line-height:1.22;

    font-weight:700;

    transition:.3s;

}

.featured-main h3 a:hover{

    color:#2458FF;

}

.featured-meta{

    display:flex;

    gap:25px;

    margin-bottom:28px;

}

.featured-meta span{

    color:#64748B;

    font-size:15px;

}

.featured-main p{

    max-width:560px;

    font-size:18px;

    line-height:1.95;

    color:#64748B;

    margin-bottom:45px;

}

.featured-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#2458FF;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.featured-btn:hover{

    gap:14px;

}

/*=========================================================
RIGHT
=========================================================*/

.featured-sidebar{

    border-left:1px solid #E8EDF5;

    padding-left:45px;

}

.sidebar-report{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 0;

    border-bottom:1px solid #EEF2F7;

    text-decoration:none;

    transition:.3s;

}

.sidebar-report:hover{

    padding-left:12px;

}

.sidebar-content{

    flex:1;

}

.sidebar-content span{

    display:block;

    color:#2458FF;

    font-size:12px;

    font-weight:700;

    letter-spacing:1.2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.sidebar-content h4{

    margin:0;

    color:#17233C;

    font-size:20px;

    line-height:1.45;

    font-weight:600;

    transition:.3s;

}

.sidebar-report:hover h4{

    color:#2458FF;

}

.sidebar-arrow{

    color:#2458FF;

    font-size:28px;

    margin-left:25px;

    transition:.3s;

}

.sidebar-report:hover .sidebar-arrow{

    transform:translateX(6px);

}

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

.featured-footer{

    margin-top:0px;

    display:flex;

    justify-content:flex-start;

}

.view-all-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2458FF;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.view-all-btn:hover{

    gap:16px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.featured-layout{

grid-template-columns:1fr;

gap:60px;

}

.featured-sidebar{

border-left:none;

padding-left:0;

}

.featured-main{

padding-right:0;

}

.featured-reports-section .section-header h2{

font-size:36px;

}

.featured-main h3 a{

font-size:34px;

}

.sidebar-content h4{

font-size:22px;

}

}

/* --- why-us.css --- */
.why-umr{

    padding:110px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

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

    gap:32px;

    margin-top:60px;

}

.why-card{

    position:relative;

    padding:40px;

    border:1px solid #E8EDF5;

    border-radius:18px;

    transition:.35s;

    background:#fff;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.why-number{

    font-size:54px;

    font-weight:800;

    color:#2458FF;

    opacity:.12;

    margin-bottom:20px;

}

.why-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#17233C;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

    font-size:16px;

}

@media(max-width:900px){

.why-grid{

grid-template-columns:1fr;

}

}

/* --- logo-strip.css --- */
/*=====================================
HOMEPAGE — COMPANY LOGO SCROLL STRIP
Scoped to .umr-logo-strip only
======================================*/

.umr-logo-strip{

    position:relative;
    overflow:hidden;
    padding:46px 0;
    background:#ffffff;
    border-bottom:1px solid #eef2f7;

}

.umr-logo-strip::before,
.umr-logo-strip::after{

    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:120px;
    z-index:2;
    pointer-events:none;

}

.umr-logo-strip::before{

    left:0;
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,0) 100%);

}

.umr-logo-strip::after{

    right:0;
    background:linear-gradient(270deg,#fff 0%,rgba(255,255,255,0) 100%);

}

.umr-logo-strip-track{

    display:flex;
    align-items:center;
    gap:76px;
    width:max-content;
    animation:umr-logo-scroll 48s linear infinite;

}

.umr-logo-strip:hover .umr-logo-strip-track{

    animation-play-state:paused;

}

.umr-logo-strip-item{

    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;

}

.umr-logo-strip-item img{

    display:block;
    height:46px;
    width:auto;
    max-width:190px;
    object-fit:contain;

    filter:grayscale(100%);
    opacity:.55;

    transition:filter .45s ease, opacity .45s ease, transform .45s ease;

}

.umr-logo-strip-item img:hover{

    filter:grayscale(0%);
    opacity:1;
    transform:translateY(-2px);

}

@keyframes umr-logo-scroll{

    from{ transform:translate3d(0,0,0); }
    to{ transform:translate3d(-50%,0,0); }

}

@media (max-width:768px){

    .umr-logo-strip{ padding:32px 0; }

    .umr-logo-strip-track{ gap:48px; animation-duration:36s; }

    .umr-logo-strip-item img{ height:36px; max-width:140px; }

    .umr-logo-strip::before,
    .umr-logo-strip::after{ width:60px; }

}

@media (prefers-reduced-motion:reduce){

    .umr-logo-strip-track{ animation:none; }

}

/* --- insights.css --- */
.insights-section{

    padding:110px 0;

    background:#fff;

}

.insights-layout{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:70px;

    margin-top:70px;

    align-items:start;

}

/* LEFT */

.featured-insight{

    padding-right:40px;

}

.featured-label{

    display:inline-block;

    background:#EEF4FF;

    color:#2458FF;

    padding:10px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;

}

.featured-insight h3{

    font-size:42px;

    line-height:1.25;

    color:#17233C;

    margin-bottom:25px;

}

.featured-insight p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:35px;

}

.featured-insight a{

    text-decoration:none;

    color:#2458FF;

    font-weight:600;

    font-size:18px;

}

/* RIGHT */

.insight-list{

    border-left:1px solid #E8EDF5;

    padding-left:45px;

}

.insight-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

    border-bottom:1px solid #EEF2F7;

    text-decoration:none;

    transition:.3s;

}

.insight-item:hover{

    padding-left:12px;

}

.insight-item span{

    color:#2458FF;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.insight-item h4{

    color:#17233C;

    font-size:23px;

    margin-top:10px;

    line-height:1.5;

}

.insight-item strong{

    font-size:26px;

    color:#2458FF;

}

@media(max-width:992px){

.insights-layout{

grid-template-columns:1fr;

}

.insight-list{

border-left:none;

padding-left:0;

}

}
/*=====================================
INSIGHTS — DYNAMIC RESOURCE SUPPORT
======================================*/

.insights-section .featured-insight-media{

    display:block;
    margin-bottom:26px;
    border-radius:14px;
    overflow:hidden;

}

.insights-section .featured-insight-media img{

    display:block;
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .6s ease;

}

.insights-section .featured-insight-media:hover img{

    transform:scale(1.03);

}

.insights-section .featured-insight h3 a{

    color:inherit;
    text-decoration:none;

}

.insights-section .featured-insight h3 a:hover{

    text-decoration:underline;

}

@media (max-width:768px){

    .insights-section .featured-insight-media img{ height:200px; }

}

/* --- cta.css --- */
/*==========================
CTA
===========================*/

.cta-section{

    padding:120px 0;

    background:#F8FAFD;

}

.cta-box{

    background:#0F172A;

    border-radius:24px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.cta-left{

    max-width:700px;

}

.cta-left .section-tag{

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

    color:#fff;

}

.cta-left h2{

    color:#fff;

    font-size:48px;

    line-height:1.2;

    margin:25px 0;

}

.cta-left p{

    color:#CBD5E1;

    font-size:18px;

    line-height:1.9;

}

.cta-right{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.cta-primary{

    background:#2458FF;

    color:#fff;

    padding:18px 34px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    text-align:center;

    transition:.3s;

}

.cta-primary:hover{

    background:#1B46D0;

}

.cta-secondary{

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

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:10px;

    text-align:center;

    transition:.3s;

}

.cta-secondary:hover{

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

}

@media(max-width:992px){

.cta-box{

flex-direction:column;

text-align:center;

}

}
