/* ======================================
CASE STUDY PAGE
====================================== */

.case-hero{
    position: relative;
    padding: 180px 0 120px;

    overflow: hidden;

    background:
    linear-gradient(135deg,#101935,#273578);
}

.hero-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.blur-1{
    width: 350px;
    height: 350px;

    background: rgba(246,142,31,0.25);

    top: -120px;
    left: -120px;
}

.blur-2{
    width: 300px;
    height: 300px;

    background: rgba(255,255,255,0.10);

    right: -100px;
    bottom: -100px;
}

.case-hero-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.case-badge{
    display: inline-block;

    background: rgba(255,255,255,0.12);

    color: #F68E1F;

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 25px;
}

.case-left h1{
    font-size: 72px;
    line-height: 1.1;

    color: white;

    margin-bottom: 25px;
}

.case-left p{
    color: rgba(255,255,255,0.75);

    line-height: 1.9;

    font-size: 18px;
}

.hero-stats{
    display: flex;
    gap: 20px;

    margin-top: 50px;
}

.hero-stat-card{
    flex: 1;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(20px);

    padding: 30px;

    border-radius: 25px;
}

.hero-stat-card h3{
    color: #F68E1F;

    font-size: 42px;
}

.hero-stat-card span{
    color: white;
}

.hero-image-card{
    position: relative;

    background: rgba(255,255,255,0.08);

    border-radius: 35px;

    padding: 30px;

    backdrop-filter: blur(20px);

    overflow: hidden;
}

.hero-image-card img{
    width: 100%;
    border-radius: 25px;
}

.hero-glow{
    position: absolute;

    width: 300px;
    height: 300px;

    background:
    radial-gradient(circle,
    rgba(246,142,31,0.25),
    transparent 70%);

    top: -100px;
    right: -100px;
}

.case-hero{
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg,#101935,#273578);

    min-height: auto;
}

/* IMPORTANT FIX */

.case-hero .container{
    position: relative;
    z-index: 5;
}

.case-hero-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* TEXT */

.case-left{
    position: relative;
    z-index: 5;
}

.case-left h1{
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.case-left p{
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 18px;
}

/* RIGHT IMAGE */

.case-right{
    position: relative;
    z-index: 5;
}

.hero-image-card img{
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* MOBILE */

@media(max-width:992px){

    .case-hero-grid{
        grid-template-columns: 1fr;
    }

    .case-left h1{
        font-size: 48px;
    }
}

/* ======================================
FIX HERO CONTENT VISIBILITY
====================================== */

.case-hero{
    position: relative;
    overflow: hidden;

    padding-top: 240px;
    padding-bottom: 120px;

    background:
    linear-gradient(135deg,#101935,#273578);

    z-index: 1;
}

/* IMPORTANT */

.case-hero-grid{
    position: relative;
    z-index: 10;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* FORCE CONTENT VISIBILITY */

.case-left,
.case-right{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* HERO TITLE */

.case-left h1{
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

/* HERO TEXT */

.case-left p{
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.9;
}

/* HERO IMAGE */

.hero-image-card{
    position: relative;
    z-index: 5;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(20px);

    border-radius: 35px;

    padding: 25px;
}

.hero-image-card img{
    width: 100%;
    display: block;
    border-radius: 25px;
}

/* MOBILE */

@media(max-width:992px){

    .case-hero{
        padding-top: 180px;
    }

    .case-hero-grid{
        grid-template-columns: 1fr;
    }

    .case-left h1{
        font-size: 48px;
    }
}

/* INFO */

.case-info-section{
    padding: 80px 0;
    background: #f8fafc;
}

.case-info-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.info-card{
    background: white;

    padding: 35px;

    border-radius: 25px;

    display: flex;
    gap: 20px;

    align-items: center;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.info-card i{
    width: 65px;
    height: 65px;

    background: linear-gradient(135deg,#273578,#1f2b63);

    color: white;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.info-card h4{
    color: #273578;
}

.info-card p{
    color: #666;
}

/* ABOUT */

.case-about{
    padding: 120px 0;
}

.case-section-heading{
    margin-bottom: 60px;
}

.case-section-heading span{
    color: #F68E1F;
    font-weight: 700;
}

.case-section-heading h2{
    font-size: 58px;
    color: #273578;
    margin-top: 15px;
}

.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.goal-list{
    margin-top: 35px;
}

.goal-item{
    margin-bottom: 18px;

    display: flex;
    gap: 15px;

    align-items: center;

    color: #273578;

    font-weight: 600;
}

.goal-item i{
    color: #F68E1F;
}

.about-image img{
    width: 100%;
    border-radius: 30px;
}

/* STRATEGY */

.strategy-section{
    padding: 120px 0;
    background: #f8fafc;
}

.center{
    text-align: center;
}

.strategy-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.strategy-card{
    background: white;

    padding: 40px;

    border-radius: 30px;

    transition: 0.5s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.strategy-card:hover{
    transform: translateY(-10px);
}

.strategy-icon{
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background:
    linear-gradient(135deg,#F68E1F,#ff9e31);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 25px;
}

.strategy-card h3{
    color: #273578;
    margin-bottom: 15px;
}

.strategy-card p{
    color: #666;
    line-height: 1.8;
}

/* RESULTS */

.results-section{
    padding: 120px 0;
}

.results-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.results-image img{
    width: 100%;
    border-radius: 35px;
}

.results-badge{
    color: #F68E1F;
    font-weight: 700;
}

.results-content h2{
    font-size: 54px;
    color: #273578;

    margin: 20px 0 40px;
}

.result-item{
    display: flex;
    justify-content: space-between;

    padding: 25px 0;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.result-item h4{
    color: #273578;
}

.result-item p{
    color: #666;
}

.result-item strong{
    color: #F68E1F;
    font-size: 42px;
}

/* GALLERY */

.gallery-section{
    padding: 120px 0;
    background: #f8fafc;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.gallery-card{
    overflow: hidden;
    border-radius: 30px;
}

.gallery-card img{
    width: 100%;
    height: 450px;

    object-fit: cover;

    transition: 0.5s ease;
}

.gallery-card:hover img{
    transform: scale(1.08);
}

/* CTA */

.case-cta{
    padding: 120px 0;
}

.cta-box{
    background:
    linear-gradient(135deg,#273578,#101935);

    padding: 70px;

    border-radius: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-box span{
    color: #F68E1F;
    font-weight: 700;
}

.cta-box h2{
    color: white;

    font-size: 54px;

    margin-top: 15px;
}

.cta-btn{
    padding: 18px 35px;

    border-radius: 60px;

    background: #F68E1F;

    color: white;

    text-decoration: none;

    font-weight: 700;

    display: flex;
    gap: 12px;

    align-items: center;
}

/* RESPONSIVE */

@media(max-width:992px){

    .case-hero-grid,
    .about-grid,
    .results-grid{
        grid-template-columns: 1fr;
    }

    .case-info-grid,
    .strategy-grid,
    .gallery-grid{
        grid-template-columns: 1fr 1fr;
    }

    .case-left h1{
        font-size: 52px;
    }

    .case-section-heading h2,
    .results-content h2,
    .cta-box h2{
        font-size: 42px;
    }

    .cta-box{
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
}

@media(max-width:768px){

    .case-info-grid,
    .strategy-grid,
    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .hero-stats{
        flex-direction: column;
    }

    .case-left h1{
        font-size: 42px;
    }

    .case-section-heading h2,
    .results-content h2,
    .cta-box h2{
        font-size: 34px;
    }

    .cta-box{
        padding: 50px 30px;
    }
}

/* ======================================
MOBILE HAMBURGER FIX
====================================== */

.mobile-menu-btn{
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
    background: transparent;
    border: none;
}

.mobile-menu-btn span{
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: #ffffff !important;
    display: block;
    transition: 0.4s ease;
}

/* MOBILE NAV */

@media(max-width:992px){

    .mobile-menu-btn{
        display: flex;
    }

    nav{
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);

        background: linear-gradient(
        135deg,
        #101935,
        #273578
        );

        transition: 0.5s ease;
        z-index: 999;
        padding: 40px 30px;
    }

    nav.active{
        left: 0;
    }

    .nav-menu{
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-menu li{
        width: 100%;
    }

    .nav-link{
        color: white !important;
        font-size: 20px;
    }

    .dropdown-menu{
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        width: 100%;
        margin-top: 15px;

        background: rgba(255,255,255,0.08);

        border-radius: 20px;

        display: none;
    }

    .dropdown.active .dropdown-menu{
        display: block;
    }

    .dropdown-menu li a{
        color: white !important;
    }
}