:root{
    --primary: #003466;
    --primary-dark: #002060;
    --accent: #D07020;
    --accent-light: #E0A050;
    --text: #222222;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F7F9FC;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{
    background:#fff;
    padding-top:91px;
}

/* ==========================
   HEADER
========================== */

.jupiter-header{
    width:100%;
    background:var(--primary);

    position:fixed;
    top:0;
    left:0;

    z-index:9999;

    transition:transform .4s ease;
}

/* Hidden state */
.jupiter-header.header-hide{
    transform:translateY(-100%);
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==========================
   LOGO
========================== */

.logo{
    background: var(--white);
    padding:4px 20px;
    border-radius:12px;
}

.logo img{
    height:85px;
    width:auto;
    display:block;
}

/* ==========================
   NAVIGATION
========================== */

.main-nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:55px;
}

.main-nav ul li{
    position:relative;
}

.main-nav ul li > a{
    text-decoration:none;
    color:var(--white);
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    padding:36px 0;
    transition:.3s;
}

.main-nav ul li > a:hover{
    color:var(--accent);
}

.dropdown > a::after{
    content:"";
    position:absolute;
    bottom:18px;
    left:0;
    width:0;
    height:4px;
    background:var(--accent);
    transition:.3s;
}

.dropdown:hover > a::after{
    width:100%;
}

/* ==========================
   MEGA MENU
========================== */

.mega-menu{
    position:absolute;
    top:100%;
    left:-80px;
    width:380px;

    background:var(--primary);

    border-radius:0 0 20px 20px;

    padding:30px;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.menu-links{
    display:flex;
    flex-direction:column;
}

.menu-links a{
    display:flex;
    justify-content:end;
    align-items:center;

    text-decoration:none;
    color:#fff;

    font-size:16px;
    font-weight:500;

    padding:12px 0;

    transition:.3s;
}

.menu-links a:hover{
    color:var(--accent);
    padding-left:8px;
}

.menu-links a i{
    font-size:12px;
    padding-left: 14px;
}

.menu-links hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.25);
    margin:10px 0;
}

/* ==========================
   RIGHT SIDE
========================== */

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.location{
    color:#fff;
    text-decoration:none;

    display:flex;
    align-items:center;
    gap:8px;

    font-size:16px;
    font-weight:500;
}

.location:hover{
    color:var(--accent);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .header-container{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

    .logo img{
        height:70px;
    }

    .main-nav ul{
        gap:25px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .main-nav ul li > a{
        padding:10px 0;
        font-size:16px;
    }

    .mega-menu{
        left:-50px;
        width:300px;
    }

    .menu-links a{
        font-size:16px;
    }
}

@media(max-width:768px){

    .header-container{
        padding:15px;
    }

    .main-nav ul{
        gap:15px;
    }

    .header-right{
        margin-top:10px;
    }

    .mega-menu{
        width:280px;
        left:-40px;
    }
}

/* ==========================
   MOBILE HEADER
========================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

    .header-container{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:15px 20px;
        position:relative;
    }

    .logo{
        background:#fff;
        padding:8px 12px;
        border-radius:10px;
    }

    .logo img{
        height:55px;
        width:auto;
    }

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--primary);
        display:none;
        padding:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.15);
    }

    .main-nav.active{
        display:block;
    }

    .main-nav ul{
        flex-direction:column;
        gap:0;
        width:100%;
    }

    .main-nav ul li{
        width:100%;
    }

    .main-nav ul li a{
        padding:15px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .header-right{
        display:none;
    }

    .mega-menu{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        background:#002b55;
        border-radius:10px;
        margin-top:10px;
        padding:15px;
    }

    .dropdown:hover .mega-menu{
        display:block;
    }
}

/* ==========================
   FOOTER
========================== */

.je-footer{
    background: var(--primary);
    color: var(--white);
    padding: 90px 0 50px;
    font-family: 'Montserrat', sans-serif;
}

.je-footer-container{
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* ==========================
   TOP AREA
========================== */

.je-footer-top{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px;
    margin-bottom: 70px;
}

.je-footer-column h4{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.35);
}

.je-footer-column ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.je-footer-column ul li{
    margin-bottom: 18px;
}

.je-footer-column ul li a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 16px;
    transition: all .3s ease;
}

.je-footer-column ul li a:hover{
    color: var(--accent);
    padding-left: 5px;
}

/* ==========================
   SOCIAL
========================== */

.je-social-icons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.je-social-icons a{
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    transition: all .3s ease;
}

.je-social-icons a:hover{
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}

/* ==========================
   BOTTOM CONTENT
========================== */

.je-footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 50px;
}

.je-footer-bottom p{
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
    max-width: 1200px;
}

.je-footer-copyright{
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1024px){

    .je-footer-top{
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .je-footer{
        padding: 70px 0 40px;
    }

    .je-footer-top{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .je-footer-column h4{
        font-size: 20px;
    }

    .je-footer-column ul li a{
        font-size: 16px;
    }

    .je-social-icons a{
        width: 48px;
        height: 48px;
    }

    .je-footer-bottom p{
        font-size: 14px;
    }
}


/* =========================
   STICKY BANNERS
========================= */

.jupiter-sticky-banners{
    position: relative;
}

/* Common Banner */

.jupiter-banner{
    position: sticky;
    top: 0;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: hidden;
}

/* Dark Overlay */

.jupiter-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Banner 1 */

.jupiter-banner-one{
    background: url("../images/cityscape-view.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Banner 2 */

.jupiter-banner-two{
    background: url("../images/bridge-sky-view.jpg");
    background-size: cover;
    background-position: center;
    z-index: 2;
}

/* Content */

.jupiter-banner-content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: var(--white);
    text-align: center;
}

.jupiter-banner-content h1,
.jupiter-banner-content h2{
    max-width: 700px;
    font-size: 55px;
    line-height: 1.5;
    font-weight: 800;
    margin-bottom: 30px;

    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.jupiter-banner-content span{
    color: var(--accent-light);
}

/* Button */

.jupiter-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 16px 40px;

    background: linear-gradient(
        135deg,
        var(--accent) 0%,
        var(--accent-light) 100%
    );

    color: var(--white);
    text-decoration: none;

    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 10px 25px rgba(208,112,32,0.25);
    transition: all 0.3s ease;
}

.jupiter-btn:hover{
    background: var(--primary);
    color: var(--white);

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(0,52,102,0.35);
}

/* Mobile */

@media (max-width: 768px){

    .jupiter-banner-content{
        padding: 0 25px;
    }

    .jupiter-banner-content h1,
    .jupiter-banner-content h2{
        font-size: 42px;
        max-width: 100%;
    }

    .jupiter-btn{
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ==========================
   INSIGHTS SECTION
========================== */

.insights-section{
    padding:50px 0;
    background: #f3f3f3;
}

.insights-container{
    width:90%;
    max-width:1260px;
    margin:0 auto;
}

.insights-heading h2{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:var(--accent-light);
    margin-bottom:50px;
}

.insights-heading h2 span{
    color:var(--primary);
}

/* FILTER BUTTONS */

.insights-filter{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.insights-filter button{
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.insights-filter button.active,
.insights-filter button:hover{
    background: var(--primary);
    color: var(--white);
}

/* ==========================
   GRID
========================== */

.insights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    align-items:start;
}

/* ==========================
   CARD
========================== */

.insight-card{
    position:relative;
    transition:.4s ease;
}

.insight-card:hover{
    transform:translateY(-10px);
}

.insight-image{
    height:340px;
    border-radius:28px;
    overflow:hidden;
}

.insight-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.insight-card:hover .insight-image img{
    transform:scale(1.08);
}

/* ==========================
   CONTENT BOX
========================== */

.insight-content{
    position:relative;
    margin:-45px 0 0;
    background:var(--white);

    border-radius:28px;
    padding:28px;

    min-height:184px;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    display:flex;
    flex-direction:column;

    transition:.4s ease;
    z-index:2;
}

.insight-card:hover .insight-content{
    transform:translateY(-40px);
}

/* ==========================
   TEXT
========================== */

.insight-type{
    font-size:15px;
    text-transform:uppercase;
    color:var(--text);
    margin-bottom:16px;
    display:block;
    letter-spacing:.5px;
}

.insight-content h3{
    font-size:17px;
    line-height:1.45;
    font-weight:700;
    color:var(--primary);
    margin:0;
}

/* ==========================
   DESCRIPTION
========================== */

.insight-desc{
    font-size:15px;
    line-height:1.7;
    color:var(--text-light);

    opacity:0;
    max-height:0;

    overflow:hidden;

    transform:translateY(20px);

    transition:
    opacity .4s ease,
    transform .4s ease,
    max-height .4s ease,
    margin-top .4s ease;

    margin-top:0;
}

.insight-card:hover .insight-desc{
    opacity:1;
    max-height:199px;
    transform:translateY(0);
    margin-top:15px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .insights-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .insights-heading h2{
        font-size:40px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .insights-section{
        padding:30px 0;
    }

    .insights-heading h2{
        font-size:32px;
        text-align:center;
    }

    .insights-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .insight-image{
        height:260px;
    }

    .insight-content{
        margin:-35px 15px 0;
        padding:24px;
        min-height:auto;
    }

    .insight-content h3{
        font-size:18px;
    }
}

/*=====================================
  INSIGHT SECTION
=====================================*/

.je-insight-section{
    position:relative;
    min-height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* Background Image */
.je-insight-bg{
    position:absolute;
    inset:0;
    background:url("https://www.grantthornton.com/_jcr_content/root/main-par/section_380734601_co/desktopImage.coreimg.82.1920.jpeg/1760595615652/hd-2025-garment-label.jpeg") center center/cover no-repeat;
    transition:transform .8s ease;
    z-index:1;
}

/* Zoom Effect */
.je-insight-section:hover .je-insight-bg{
    transform:scale(1.08);
}

/* Left Content Box */
.je-insight-content{
    position:relative;
    z-index:2;

    width:50%;
    min-height:600px;

    background:#ffffff;

    border-bottom-right-radius:220px;

    padding:100px 90px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Small Heading */
.je-insight-tag{
    display:block;
    font-size:14px;
    font-weight:500;
    color:#000000;
    letter-spacing:1px;
    margin-bottom:40px;
    text-transform:uppercase;
}

/* Main Heading */
.je-insight-content h2{
    font-size:48px;
    line-height:56px;
    font-weight:600;
    color:#000;
    margin:0 0 40px;
    font-family:'Montserrat',sans-serif;
}

.je-insight-content h2 span{
    color:#003466;
}

/* Paragraph */
.je-insight-content p{
    font-size:16px;
    line-height:24px;
    color:#444;
    max-width:700px;
    margin-bottom:60px;
}

/* Button */
.je-insight-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:65px;

    border:2px solid #003466;

    color:#003466;
    text-decoration:none;

    font-size:16px;
    font-weight:600;

    border-radius:12px;

    transition:.4s ease;
}

.je-insight-btn:hover{
    background:#003466;
    color:#fff;
}

/*=====================================
  RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .je-insight-content{
        width:60%;
        padding:80px 60px;
    }

    .je-insight-content h2{
        font-size:52px;
    }
}

@media(max-width:991px){

    .je-insight-section{
        min-height:auto;
    }

    .je-insight-content{
        width:100%;
        min-height:auto;

        border-bottom-right-radius:120px;

        padding:80px 40px;
    }

    .je-insight-content h2{
        font-size:42px;
    }

    .je-insight-content p{
        font-size:18px;
    }
}

@media(max-width:767px){

    .je-insight-content{
        padding:60px 25px;
        border-bottom-right-radius:80px;
    }

    .je-insight-content h2{
        font-size:34px;
    }

    .je-insight-content p{
        font-size:16px;
        line-height:1.7;
    }

    .je-insight-btn{
        width:100%;
    }
}

/* ==========================
   EVENTS SECTION
========================== */

.events-section{
    padding: 40px 0;
    background:#f3f3f3;
}

.events-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.events-heading{
    margin-bottom:50px;
}

.events-heading h2{
    font-size:48px;
    font-weight:700;
    color:var(--text);
    line-height:1.1;
}

.events-heading h2 span{
    color:var(--primary);
}

/* ==========================
   GRID
========================== */

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* ==========================
   CARD
========================== */

.event-card{
    position:relative;
    min-height:485px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.event-image{
    width:100%;
    height:100%;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;
}

/* IMAGE ZOOM ON HOVER */

.event-card:hover .event-image img{
    transform:scale(1.12);
}

/* ==========================
   OVERLAY
========================== */

.event-overlay{
    position:absolute;
    top:26px;
    left:26px;
    right:26px;

    background:var(--primary);
    color:#fff;

    padding:28px;

    border-radius:30px 30px 130px 30px;
}

.event-tag{
    display:inline-block;
    padding:8px 14px;
    background:var(--accent-light);
    border-radius:8px;

    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.event-overlay h3{
    font-size:30px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

.event-meta{
    font-size:22px;
    font-weight:600;
}

/* ==========================
   BUTTON
========================== */

.event-btn{
    position:absolute;
    left:26px;
    bottom:26px;

    background:#fff;
    color:var(--text);

    text-decoration:none;

    padding:18px 28px;
    border-radius:12px;

    font-size:18px;
    font-weight:500;

    display:inline-flex;
    align-items:center;
    gap:10px;

    transition:.3s ease;
}

.event-btn:hover{
    background:var(--accent);
    color:#fff;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .events-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .events-heading h2{
        font-size:46px;
    }

    .event-overlay h3{
        font-size:30px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .events-section{
        padding:70px 0;
    }

    .events-grid{
        grid-template-columns:1fr;
    }

    .events-heading h2{
        font-size:34px;
    }

    .event-card{
        min-height:550px;
    }

    .event-overlay{
        padding:22px;
        border-radius:25px 25px 80px 25px;
    }

    .event-overlay h3{
        font-size:24px;
    }

    .event-meta{
        font-size:16px;
    }

    .event-btn{
        left:20px;
        bottom:20px;
        font-size:16px;
        padding:14px 22px;
    }
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:40px 0;
    background:var(--white);
}

.faq-container{
    width:83%;
    max-width:1500px;
    margin:auto;
}

.faq-heading{
    margin-bottom:40px;
}

.faq-heading h2{
    font-size:48px;
    font-weight:700;
    color:var(--primary);
    line-height:1;
}

/* ==========================
   FAQ ITEM
========================== */

.faq-item{
    margin-bottom:28px;
    border:1px solid #e6e6e6;
    background:#fff;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;

    padding:28px 25px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:18px;
    font-weight:500;
    color:#666;
    text-transform:uppercase;
}

.faq-question i{
    width:46px;
    height:46px;

    background: var(--accent-light);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    flex-shrink:0;

    transition:.3s;
}

/* ==========================
   ANSWER
========================== */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    font-size:16px;
    line-height:1.8;
    color:var(--text-light);
}

/* ACTIVE */

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    background:var(--primary);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-heading h2{
        font-size:42px;
    }

    .faq-question{
        padding:20px;
        gap:15px;
    }

    .faq-question span{
        font-size:15px;
        line-height:1.5;
    }

    .faq-question i{
        width:40px;
        height:40px;
        font-size:16px;
    }
}

/* ======================================
   COMMON INNER PAGE BANNER
====================================== */

.inner-banner{
    position:relative;
    overflow:hidden;
}

/* Background Image */
.inner-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:var(--banner-image) center center/cover no-repeat;
    transform:scale(1);
    transition:transform 8s ease;
    z-index:1;
}

/* Zoom Effect */
.inner-banner:hover::before{
    transform:scale(1.12);
}

/* Dark Overlay */
.inner-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(52, 16, 77, 0.35);
    z-index:2;
}

/* Container */
.inner-banner-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:5;
}

/* ======================================
   BREADCRUMB
====================================== */

.inner-banner-breadcrumb{
    background:#f5f5f5;
    position:relative;
    z-index:5;
    padding:14px 0;
}

.inner-banner-breadcrumb ul{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
    margin:0;
    padding:0;
    font-size:15px;
}

.inner-banner-breadcrumb li{
    color:#000000;
}

.inner-banner-breadcrumb li:not(:last-child)::after{
    content:">";
    margin-left:10px;
    color:#000000;
}

.inner-banner-breadcrumb a{
    color:var(--primary);
    text-decoration:none;
    font-weight:500;
}

/* ======================================
   CONTENT
====================================== */

.inner-banner-content{
    position:relative;
    z-index:5;
    min-height:400px;
    display:flex;
    align-items:center;
}

.inner-banner-text{
    max-width:1100px;
}

.inner-banner-text h1{
    color:#fff;
    font-size:62px;
    font-weight:800;
    line-height:1.05;
    margin:0 0 25px;
}

.inner-banner-text p{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin:0;
}

/* ======================================
   TABLET
====================================== */

@media(max-width:991px){

    .inner-banner-content{
        min-height:380px;
    }

    .inner-banner-text h1{
        font-size:56px;
    }

    .inner-banner-text p{
        font-size:28px;
    }
}

/* ======================================
   MOBILE
====================================== */

@media(max-width:767px){

    .inner-banner-breadcrumb{
        padding:10px 0;
    }

    .inner-banner-breadcrumb ul{
        font-size:13px;
        flex-wrap:wrap;
    }

    .inner-banner-content{
        min-height:300px;
        text-align:center;
    }

    .inner-banner-text{
        max-width:100%;
    }

    .inner-banner-text h1{
        font-size:38px;
        margin-bottom:15px;
    }

    .inner-banner-text p{
        font-size:22px;
    }
}


/* ==========================
   About SECTION
========================== */

.je-abouts-section{
    padding:100px 20px;
    background:var(--white);
    font-family:'Montserrat', sans-serif;
}

.je-abouts-container{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap:80px;
    align-items:flex-start;
}

/* Left Side */

.je-abouts-left h2{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    color:var(--primary);
    margin-bottom:40px;
}

.je-abouts-left p{
    font-size:18px;
    line-height: 28px;
    color:var(--text);
    max-width:650px;
}

/* Right Side */

.je-abouts-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px 60px;
}

.je-about-card h3{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:25px;
}

.je-about-card p{
    font-size:16px;
    line-height:28px;
    color:var(--text);
    margin-bottom:25px;
}

.je-about-card a{
    display:inline-block;
    text-decoration:none;
    color:var(--accent);
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.je-about-card a:hover{
    color:var(--primary);
}

/* Newsletter Box */

.je-newsletter-card{
    background:#f1f3f5;
    border-radius:22px;
    padding:35px 35px 35px 28px;
    border-left:6px solid var(--accent);
}

.je-newsletter-card span{
    display:block;
    font-size:16px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:20px;
}

.je-newsletter-card p{
    font-size:14px;
    line-height:24px;
    color:var(--text);
    margin-bottom:25px;
}

.je-newsletter-card a{
    text-decoration:none;
    color:var(--accent);
    font-size:16px;
    font-weight:600;
}

.je-newsletter-card a:hover{
    color:var(--primary);
}

/* ==========================
   Tablet
========================== */

@media(max-width:1024px){

    .je-abouts-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .je-abouts-left h2{
        font-size:58px;
    }

    .je-abouts-right{
        grid-template-columns:1fr 1fr;
    }
}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    .je-abouts-section{
        padding:70px 20px;
    }

    .je-abouts-left h2{
        font-size:42px;
        margin-bottom:25px;
    }

    .je-abouts-left p{
        font-size:17px;
        line-height:1.8;
    }

    .je-abouts-right{
        grid-template-columns:1fr;
        gap:40px;
    }

    .je-about-card h3{
        font-size:30px;
    }

    .je-about-card p{
        font-size:17px;
    }

    .je-newsletter-card{
        padding:25px;
    }
}


/* ==========================
   STATS SECTION
========================== */

.je-stats-section{
    padding:40px 20px;
    background:#f3f3f3;
    font-family:'Montserrat', sans-serif;
}

.je-stats-container{
    max-width:1400px;
    margin:auto;
}

.je-stats-heading{
    margin-bottom:80px;
}

.je-stats-heading h2{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:var(--text);
}

/* Grid */

.je-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px 80px;
}

/* Stat Card */

.je-stat-card h3{
    font-size:70px;
    font-weight:700;
    line-height:1;
    color:var(--primary);
    margin-bottom:12px;
}

.je-stat-card h4{
    font-size:24px;
    font-weight:700;
    color:var(--text);
    margin-bottom:10px;
}

.je-stat-card p{
    font-size:16px;
    color:var(--text-light);
    line-height:24px;
    max-width:320px;
}

.je-stat-card a{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    color:var(--accent);
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.je-stat-card a:hover{
    color:var(--primary);
}

/* Industry Card */

/* .je-industry-card{
    background:#f5f5f5;
    border-radius:0;
    overflow:hidden;
    min-height:230px;
    position:relative;
} */

.industry-title{
    position:absolute;
    top:25px;
    left:25px;
    z-index:2;
    font-size:32px;
    font-weight:700;
    color:var(--text);
}

.industry-gif{
    width:100%;
    height:100%;
}

.industry-gif img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ==========================
   Tablet
========================== */

@media(max-width:1024px){

    .je-stats-heading h2{
        font-size:56px;
    }

    .je-stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:60px;
    }

    .je-stat-card h3{
        font-size:60px;
    }

    .je-stat-card h4{
        font-size:28px;
    }
}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    .je-stats-section{
        padding:70px 20px;
    }

    .je-stats-heading{
        margin-bottom:50px;
    }

    .je-stats-heading h2{
        font-size:38px;
    }

    .je-stats-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .je-stat-card h3{
        font-size:48px;
    }

    .je-stat-card h4{
        font-size:24px;
    }

    .je-stat-card p{
        font-size:16px;
    }

    .industry-title{
        font-size:24px;
    }

    .je-industry-card{
        min-height:180px;
    }
}

/* ==========================
   LEADERS SECTION
========================== */

.je-leaders-section{
    position:relative;
    min-height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
    font-family:'Montserrat', sans-serif;
}

/* Background Image */

.je-leaders-bg{
    position:absolute;
    inset:0;
    background:url("https://www.grantthornton.com/about-us/_jcr_content/root/main-par/section_copy_copy/section-par/section/section-par/section_hero_banner_/desktopImage.coreimg.82.1920.jpeg/1657020326364/hd-2021-man-and-woman-standing-on-stairs.jpeg") center center/cover no-repeat;
    transform:scale(1);
    transition:transform 8s ease;
    z-index:1;
}
.je-solution-bg{
    position:absolute;
    inset:0;
    background:url("https://www.grantthornton.com/about-us/_jcr_content/root/main-par/section_copy/section-par/section_1490055069_c/section-par/section_copy/section-par/section_hero_banner_/desktopImage.coreimg.82.1920.jpeg/1633303758257/h-2021-alyx-symbol-1.jpeg") center center/cover no-repeat;
    transform:scale(1);
    transition:transform 8s ease;
    z-index:1;
}
/* Zoom Effect on Hover */

.je-leaders-section:hover .je-leaders-bg{
    transform:scale(1.12);
}


.je-leaders-section:hover .je-solution-bg{
    transform:scale(1.12);
}
/* Dark Overlay */

.je-leaders-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.55);
    z-index:2;
}

.je-solution-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.01);
    z-index:2;
}
/* Content */

.je-leaders-container{
    position:relative;
    z-index:3;
    max-width:1400px;
    width:100%;
    margin:auto;
    padding:0 40px;
}

/* Small Label */

.je-small-title{
    display:block;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:50px;
    letter-spacing:1px;
}

/* Heading */

.je-leaders-container h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    line-height:56px;
    margin-bottom:28px;
}

/* Text */

.je-leaders-container p{
    max-width:760px;
    color:#fff;
    font-size:18px;
    line-height:32px;
    margin-bottom:58px;
}

/* Button */

.je-leaders-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width: 169px;
    height: 58px;
    border:2px solid #fff;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:all .4s ease;
}

.je-leaders-btn:hover{
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}

/* ==========================
   Tablet
========================== */

@media(max-width:1024px){

    .je-leaders-section{
        min-height:650px;
    }

    .je-leaders-container h2{
        font-size:58px;
    }

    .je-leaders-container p{
        font-size:20px;
        max-width:650px;
    }
}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    .je-leaders-section{
        min-height:600px;
    }

    .je-leaders-container{
        padding:0 25px;
    }

    .je-small-title{
        font-size:16px;
        margin-bottom:25px;
    }

    .je-leaders-container h2{
        font-size:42px;
        margin-bottom:25px;
    }

    .je-leaders-container p{
        font-size:17px;
        line-height:1.8;
        margin-bottom:40px;
    }

    .je-leaders-btn{
        min-width:200px;
        height:60px;
        font-size:18px;
    }
}


/* ==========================
   SPLIT CONTENT SECTION
========================== */

.je-split-section{
    width:100%;
    overflow:hidden;
    font-family:'Montserrat', sans-serif;
}

.je-split-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:650px;
}

/* LEFT PANEL */

.je-split-left{
    background:var(--bg-light);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:100px 80px;
}

/* RIGHT PANEL */

.je-split-right{
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:100px 80px;
}

.je-split-content{
    max-width:520px;
    width:100%;
}

/* HEADINGS */

.je-split-content h2{
    font-size:48px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:45px;
}

/* LEFT HEADING */

.je-split-left h2{
    color:var(--text);
}

/* RIGHT HEADING */

.je-split-right h2{
    color:var(--white);
}

/* TEXT */

.je-split-content p{
    font-size:18px;
    line-height:32px;
    margin-bottom:70px;
}

/* LEFT TEXT */

.je-split-left p{
    color:var(--text);
}

/* RIGHT TEXT */

.je-split-right p{
    color:rgba(255,255,255,0.95);
}

/* BUTTON */

.je-split-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:64px;
    border-radius:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:all .35s ease;
}

/* LEFT BUTTON */

.dark-btn{
    border:2px solid var(--text);
    color:var(--text);
}

.dark-btn:hover{
    background:var(--accent);
    border-color:var(--accent);
    color:var(--white);
}

/* RIGHT BUTTON */

.light-btn{
    border:2px solid var(--white);
    color:var(--white);
}

.light-btn:hover{
    background:var(--accent);
    border-color:var(--accent);
    color:var(--white);
}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

    .je-split-container{
        grid-template-columns:1fr;
    }

    .je-split-left,
    .je-split-right{
        padding:80px 50px;
    }

    .je-split-content{
        max-width:100%;
    }

    .je-split-content h2{
        font-size:56px;
    }

    .je-split-content p{
        font-size:20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .je-split-left,
    .je-split-right{
        padding:70px 25px;
    }

    .je-split-content h2{
        font-size:42px;
        margin-bottom:25px;
    }

    .je-split-content p{
        font-size:17px;
        line-height:1.8;
        margin-bottom:40px;
    }

    .je-split-btn{
        min-width:170px;
        height:56px;
        font-size:16px;
    }
}


/* ====================================
   READY FOR MORE SECTION
==================================== */

.je-more-section{
    padding:100px 0;
    background:var(--bg-light);
    font-family:'Montserrat', sans-serif;
}

.je-more-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.je-more-heading{
    margin-bottom:60px;
}

.je-more-heading h2{
    font-size:48px;
    font-weight:700;
    line-height:1.1;
    color:var(--text);
    margin:0;
}

/* Grid */

.je-more-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Card */

.je-more-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    text-decoration:none;
    transition:all .4s ease;
    display:block;
    box-shadow:0 5px 25px rgba(0,0,0,0.04);
}

.je-more-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* Image */

.je-more-image{
    height:390px;
    overflow:hidden;
}

.je-more-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.je-more-card:hover .je-more-image img{
    transform:scale(1.08);
}

/* Content */

.je-more-content{
    padding:45px 38px;
    min-height:180px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.je-more-content span{
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--text);
    margin-bottom:18px;
}

.je-more-content h3{
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    color:var(--primary);
    margin:0;
    transition:.3s ease;
}

.je-more-card:hover h3{
    color:var(--accent);
}

/* ==========================
   Tablet
========================== */

@media (max-width:1024px){

    .je-more-heading h2{
        font-size:58px;
    }

    .je-more-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .je-more-image{
        height:350px;
    }

    .je-more-content h3{
        font-size:38px;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    .je-more-section{
        padding:70px 0;
    }

    .je-more-heading{
        margin-bottom:40px;
    }

    .je-more-heading h2{
        font-size:42px;
    }

    .je-more-image{
        height:260px;
    }

    .je-more-content{
        padding:30px 25px;
        min-height:auto;
    }

    .je-more-content h3{
        font-size:30px;
    }

    .je-more-content span{
        font-size:13px;
    }
}


/*==============================
CONTACT SECTION
==============================*/

.je-contact-section{
    padding:100px 0;
    background:#f7f9fc;
}

.je-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:70px;
}

/* LEFT SIDE */

.je-contact-form-wrapper h2{
    font-size:48px;
    font-weight:700;
    color:#003466;
    margin-bottom:20px;
    line-height:1.1;
}

.je-contact-form-wrapper p{
    color:#666;
    font-size:16px;
    line-height:24px;
    margin-bottom:40px;
    max-width:650px;
}

.je-contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.je-form-group label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.je-form-group input,
.je-form-group select,
.je-form-group textarea{
    width:100%;
    height:60px;
    border:1px solid #d6d6d6;
    border-radius:10px;
    padding:0 18px;
    outline:none;
    background:#fff;
    font-size:15px;
    font-family:'Montserrat',sans-serif;
    transition:.3s;
}

.je-form-group textarea{
    height:180px;
    padding-top:18px;
    resize:none;
}

.je-form-group input:focus,
.je-form-group select:focus,
.je-form-group textarea:focus{
    border-color:#003466;
}

/* BUTTON */

.je-submit-btn{
    width:180px;
    height:60px;
    border:none;
    border-radius:10px;
    background:#D07020;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.je-submit-btn:hover{
    background:#003466;
}

/* RIGHT SIDE */

.je-contact-info{
    border-left:1px solid #d9d9d9;
    padding-left:60px;

    position:sticky;
    top:120px;
    align-self:start;
}

.je-info-box,
.je-social-box{
    margin-bottom:50px;
}

.je-contact-info h3{
    font-size:24px;
    color:#003466;
    margin-bottom:35px;
    font-weight:700;
}

.je-info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.je-info-item i{
    width:55px;
    height:55px;
    background:#003466;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.je-info-item span{
    display:block;
    font-size:14px;
    color:#666;
    margin-bottom:5px;
}

.je-info-item a,
.je-info-item p{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    line-height:1.6;
}

.je-social-links{
    display:flex;
    gap:15px;
}

.je-social-links a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#003466;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:.4s;
}

.je-social-links a:hover{
    background:#D07020;
    transform:translateY(-5px);
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

    .je-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .je-contact-info{
        position:static;
        top:auto;

        border-left:none;
        border-top:1px solid #ddd;

        padding-left:0;
        padding-top:50px;
    }

    .je-contact-form-wrapper h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .je-contact-section{
        padding:70px 0;
    }

    .je-contact-form-wrapper h2{
        font-size:34px;
    }

    .je-submit-btn{
        width:100%;
    }

    .je-contact-info h3{
        font-size:26px;
    }
}


/*=====================================
 BALANCE SECTION
=====================================*/

.jupiter-balance-section{
    padding:50px 0;
    background:#f7f7f7;
}

.jupiter-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.4fr 500px;
    gap:100px;
    align-items:start;
}

/* Left Content */

.jupiter-balance-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:40px;
}

.jupiter-balance-content h2 span{
    color:#003466;
}

.jupiter-balance-content p{
    font-size:18px;
    line-height:32px;
    color:#222;
    margin-bottom:25px;
}

/* Right Card */

.jupiter-report-card{
    background:#fff;
    border-radius:35px;
    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s ease;
}

.jupiter-report-card:hover{
    transform:translateY(-10px);
}

.report-image{
    overflow:hidden;
}

.report-image img{
    width:100%;
    display:block;
    height:451px;
    object-fit:cover;

    transition:1s ease;
}

.jupiter-report-card:hover .report-image img{
    transform:scale(1.1);
}

.report-content{
    padding:35px;
}

.report-content span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#666;
    letter-spacing:1px;
    margin-bottom:15px;
}

.report-content h3{
    font-size:24px;
    line-height:32px;
    color:#003466;
    margin-bottom:25px;
    font-weight:700;
}

.report-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 30px;

    background:#D07020;
    color:#fff;

    text-decoration:none;
    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.report-btn:hover{
    background:#003466;
}

/*=====================================
 RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .jupiter-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .jupiter-report-card{
        max-width:550px;
    }
}

@media(max-width:768px){

    .jupiter-balance-section{
        padding:80px 0;
    }

    .jupiter-balance-content h2{
        font-size:42px;
    }

    .jupiter-balance-content p{
        font-size:17px;
        line-height:1.8;
    }

    .report-image img{
        height:280px;
    }

    .report-content h3{
        font-size:28px;
    }
}


/*=================================
 SERVICES SECTION
=================================*/

.je-services-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:url("https://www.grantthornton.com/services/advisory-services/_jcr_content/root/main-par/section_707532047_co/section-par/section_1011438890/desktopImage.coreimg.82.2048.jpeg/1694183136915/cp-2023-curved-modern-glass-building-against-sky-1440x1200.jpeg")
    center center/cover no-repeat;
}

.services-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,30,60,.70);
}

.je-services-container{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1400px;
    margin:auto;
}

.services-heading{
    max-width:900px;
    margin-bottom:60px;
}

.services-heading h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.services-heading p{
    color:#fff;
    font-size:24px;
    line-height:32px;
    font-weight:500;
}

/* Grid */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    align-items:start;
}

/* Card */

.service-card{
    background:#fff;
    border-radius:24px;

    padding:35px;

    height:230px;

    overflow:hidden;

    transition:all .45s ease;
}

.service-card:hover{
    height:420px;
    transform:translateY(-8px);
}

.service-card:hover p{
    -webkit-line-clamp:unset;
    overflow:visible;
}

.service-card h3{
    font-size:24px;
    color:#003466;
    margin-bottom:20px;
    font-weight:700;
}

.service-card p{
    color:#222;
    line-height:1.8;
    font-size:16px;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;

    overflow:hidden;

    transition:.4s ease;
}

.service-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:12px;

    color:#003466;
    text-decoration:none;

    font-weight:700;
}

.service-card:hover p,
.service-card:hover a{
    opacity:1;
    transform:translateY(0);
}

.service-card a i{
    transition:.3s;
}

.service-card:hover a i{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h2{
        font-size:42px;
    }

    .services-heading p{
        font-size:18px;
    }

    .service-card{
        height:auto;
    }

    .service-card p,
    .service-card a{
        opacity:1;
        transform:none;
    }

    .service-card:hover{
        height:auto;
    }
}

/* ==========================
   AI INSIGHTS SECTION
========================== */

.ai-insights-section{
    display:flex;
    width:100%;
    min-height:481px;
    background: linear-gradient(to right, rgb(0, 0, 0), #003466);
    overflow:hidden;
}

.ai-insights-left{
    width:50%;
    position:relative;
    background:url("../images/bridge-sky-view.jpg") center center/cover no-repeat;
    border-bottom-right-radius:220px;
    overflow:hidden;
}

/* Dark overlay */
.ai-insights-left::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(17,20,45,0.45);
}

.ai-insights-right{
    width:50%;
    display:flex;
    align-items:center;
    padding:80px 70px;
}

.ai-content{
    position:relative;
    z-index:2;
    max-width:6550px;
}

.ai-insights-left .ai-content{
    color:#fff;
    padding:80px 70px;
}

.ai-insights-left{
    display:flex;
    align-items:center;
}

.ai-content h2{
    font-size:48px;
    line-height:56px;
    font-weight:500;
    margin-bottom:35px;
    color:#fff;
}

.ai-content p{
    font-size:24px;
    line-height:1.45;
    color:#f2f2f2;
    margin-bottom:40px;
}

.ai-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#222;
    text-decoration:none;
    padding:16px 28px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.ai-btn:hover{
    transform:translateY(-3px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .ai-insights-section{
        flex-direction:column;
    }

    .ai-insights-left,
    .ai-insights-right{
        width:100%;
    }

    .ai-insights-left{
        min-height:500px;
        border-bottom-right-radius:120px;
    }

    .ai-content{
        max-width:100%;
    }

    .ai-insights-left .ai-content,
    .ai-insights-right{
        padding:60px 40px;
    }

    .ai-content h2{
        font-size:42px;
    }

    .ai-content p{
        font-size:20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .ai-insights-left{
        min-height:420px;
        border-bottom-right-radius:80px;
    }

    .ai-insights-left .ai-content,
    .ai-insights-right{
        padding:40px 25px;
    }

    .ai-content h2{
        font-size:32px;
    }

    .ai-content p{
        font-size:18px;
    }

    .ai-btn{
        width:100%;
        text-align:center;
    }
}

/*=========================
CASE STUDIES
=========================*/

.cs-study-section{
    padding:50px 100px;
    background:var(--bg-light);
}

.cs-study-heading{
    margin-bottom:50px;
}

.cs-study-heading h2{
    font-size:48px;
    line-height:1.1;
    color:var(--text);
    font-weight:800;
}

.cs-study-wrapper{
    display:flex;
    gap:24px;
    height:620px;
}

.cs-study-card{
    position:relative;
    flex:1;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;
    background-size:cover;
    background-position:center;
    transition:all .6s ease;
}

.cs-study-card.active{
    flex:2.6;
}

.cs-study-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,52,102,.92),
        rgba(208,112,32,.75)
    );
}

.cs-study-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.cs-study-content{
    position:relative;
    z-index:2;
    padding:40px;
    height:100%;
    display:flex;
    flex-direction:column;
}

.cs-study-content span{
    color:var(--white);
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.cs-study-content h3{
    color:var(--white);
    font-size:36px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
    max-width:520px;
}

.cs-study-content p{
    color:rgba(255,255,255,.9);
    font-size:24px;
    line-height:1.7;
    max-width:500px;
}

.cs-study-content a{
    margin-top:auto;
    color:var(--white);
    text-decoration:none;
    font-size:26px;
    font-weight:700;
}

.cs-study-content a i{
    margin-left:8px;
}

.cs-study-number{
    position:absolute;
    top:-30px;
    right:20px;
    z-index:1;
    font-size:220px;
    line-height:1;
    font-weight:900;
    color:rgba(255,255,255,.25);
}

.cs-study-number span{
    font-size:.6em;
}

.cs-study-card:not(.active) .cs-study-content p,
.cs-study-card:not(.active) .cs-study-content a{
    opacity:0;
    visibility:hidden;
}

.cs-study-card:not(.active) .cs-study-content h3{
    font-size:32px;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

    .cs-study-wrapper{
        flex-direction:column;
        height:auto;
    }

    .cs-study-card,
    .cs-study-card.active{
        flex:none;
        height:450px;
    }

    .cs-study-content h3{
        font-size:42px;
    }

    .cs-study-content p{
        font-size:18px;
    }

    .cs-study-number{
        font-size:140px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:767px){

    .cs-study-section{
        padding:70px 0;
    }

    .cs-study-heading h2{
        font-size:42px;
    }

    .cs-study-card,
    .cs-study-card.active{
        height:380px;
    }

    .cs-study-content{
        padding:25px;
    }

    .cs-study-content h3{
        font-size:30px;
    }

    .cs-study-content p{
        font-size:16px;
    }

    .cs-study-content a{
        font-size:18px;
    }

    .cs-study-number{
        font-size:100px;
        top:-10px;
    }
}