/* ==========================================
   GETHAND PORTFOLIO
   Premium Agency UI
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --bg:#050816;
    --bg2:#0B1220;
    --card:#111827;
    --card2:#162032;

    --primary:#2563EB;
    --primary2:#3B82F6;
    --accent:#60A5FA;

    --white:#ffffff;
    --text:#D7DEE9;
    --muted:#9CA3AF;

    --border:rgba(59,130,246,.20);

    --shadow:
    0 20px 60px rgba(37,99,235,.15);

    --radius:22px;

}

html{
    overflow-x:hidden;
}

body{

    font-family:'Outfit',sans-serif;

    background:
    linear-gradient(
        135deg,
        var(--bg),
        var(--bg2)
    );

    color:var(--white);

    overflow-x:hidden;

}

/* Smooth Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#09111F;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        var(--primary),
        var(--accent)
    );

    border-radius:50px;

}

/* Container */

.container{

    width:min(92%,1280px);

    margin:auto;

}

/* Images */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* Links */

a{

    text-decoration:none;

}

/* Section */

section{

    padding:110px 0;

}

/* Titles */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:52px;

    margin-top:18px;

    font-weight:700;

    color:#fff;

}

/* Glass Card */

.glass{

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.03),

        rgba(255,255,255,.015)

    );

    border:1px solid var(--border);

    backdrop-filter:blur(16px);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/* Button */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 34px;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--primary2)

    );

    color:#fff;

    box-shadow:
0 20px 45px rgba(37,99,235,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

   box-shadow:
0 20px 45px rgba(37,99,235,.25);

}

.btn-outline{

    border:1px solid var(--primary);

    color:var(--accent);

}

.btn-outline:hover{

    background:rgba(37,99,235,.12);

}

/* Fade Animation */

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* Responsive */

@media(max-width:992px){

.section-title h2{

font-size:42px;

}

section{

padding:80px 0;

}

}

@media(max-width:768px){

.container{

width:94%;

}

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:480px){

.section-title h2{

font-size:30px;

}

}
/* ==========================================
   NAVBAR
========================================== */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:min(94%,1320px);

    z-index:9999;
}


/* MAIN NAVBAR */

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:90px;

    padding:8px 28px 8px 10px;

    background:rgba(8,14,26,.92);

    backdrop-filter:blur(18px);

    border:1px solid rgba(59,130,246,.20);

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}


/* ==========================================
   GETHAND LOGO
========================================== */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo a{
    width:125px;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    background:#fff;

    clip-path:polygon(
        50% 0%,
        100% 34%,
        100% 100%,
        0% 100%,
        0% 34%
    );

    overflow:hidden;

    text-decoration:none;

    transition:filter .3s ease;
}


/* EXISTING GETHAND IMAGE */

.logo img{
    width:112px;
    max-height:76px;

    height:auto;

    object-fit:contain;

    display:block;

    transform:scale(1.18);
}


/* LOGO GLOW ONLY */

.logo a:hover{
    filter:
        drop-shadow(0 0 8px rgba(59,130,246,.65))
        drop-shadow(0 0 22px rgba(59,130,246,.30));

    transform:none;
}


/* ==========================================
   NAV LINKS
========================================== */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:42px;

    list-style:none;

    margin:0;
    padding:0;

    flex:1;
}

.nav-links a{
    color:#E7EDF8;

    font-size:15px;
    font-weight:500;

    position:relative;

    transition:.3s;

    text-decoration:none;
}

.nav-links a:hover{
    color:#60A5FA;
}


/* UNDERLINE */

.nav-links a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#3B82F6;

    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}


/* ==========================================
   LET'S TALK
========================================== */

.nav-btn{
    padding:13px 27px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #3B82F6
        );

    color:#fff;

    font-weight:600;

    text-decoration:none;

    box-shadow:
        0 15px 35px rgba(37,99,235,.30);

    transition:.3s;

    flex-shrink:0;
}

.nav-btn:hover{
    box-shadow:
        0 20px 45px rgba(37,99,235,.45);

    transform:none;
}


/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu{
    display:none;

    font-size:28px;

    cursor:pointer;

    color:#fff;
}


/* ==========================================
   NAVBAR RESPONSIVE
========================================== */

@media(max-width:768px){

    .navbar{
        top:10px;
    }

    .nav-container{
        min-height:70px;

        padding:5px 10px;
    }

    .logo a{
        width:100px;
        height:68px;
    }

    .logo img{
        width:88px;
        max-height:60px;

        transform:scale(1.12);
    }

    .nav-links{
        display:none;
    }

    .nav-btn{
        padding:11px 18px;
        font-size:13px;
    }

    .mobile-menu{
        display:block;
    }
}


/* ==========================================
   SMALL PHONES
========================================== */

@media(max-width:480px){

    .logo a{
        width:90px;
        height:62px;
    }

    .logo img{
        width:82px;
        max-height:55px;
    }

    .nav-btn{
        padding:10px 15px;
        font-size:12px;
    }
}

/* ==========================================
   HERO SECTION
========================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:

    radial-gradient(circle,
    rgba(59,130,246,.18),
    transparent 70%);

    right:-180px;
    top:-120px;

    filter:blur(60px);

    z-index:0;

}

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

/* Left Side */

.hero-content{

    max-width:700px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(59,130,246,.25);

    color:#60A5FA;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-size:68px;

    line-height:1.08;

    font-weight:800;

    color:#fff;

    margin-bottom:25px;

}

.hero h1 span{

    color:#60A5FA;

}

.hero p{

    font-size:20px;

    color:#B8C2D1;

    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* Right Side */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:380px;

    border-radius:26px;

    border:1px solid rgba(59,130,246,.25);

    box-shadow:

    0 25px 60px rgba(37,99,235,.22);

    transition:.45s;

}

/* =========================
   PROFILE PHOTO
========================= */

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    position:relative;

    width:100%;
    max-width:320px;

    border-radius:25px;

    border:2px solid rgba(59,130,246,.35);

    box-shadow:
        0 0 30px rgba(59,130,246,.12);

    transition:
        box-shadow .35s ease,
        border-color .35s ease;

    transform:none !important;
}

/* Glow only — NO movement */
.hero-image img:hover{
    transform:none !important;

    border-color:#3B82F6;

    box-shadow:
        0 0 20px rgba(59,130,246,.45),
        0 0 50px rgba(59,130,246,.25),
        0 0 90px rgba(59,130,246,.12);
}

.image-glow{

    position:absolute;

    width:520px;

    height:520px;

    background:

    radial-gradient(circle,

    rgba(59,130,246,.35),

    transparent 70%);

    filter:blur(80px);

    z-index:-1;

}

/* Mobile */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

gap:50px;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero h1{

font-size:52px;

}

}

@media(max-width:768px){

.hero{

padding-top:140px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.hero-image img{

max-width:320px;

}

}

@media(max-width:480px){

.hero h1{

font-size:36px;

}

.hero-tag{

font-size:13px;

}

}
/* ==========================================
   RESULTS / STATS
========================================== */

.stats{

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    position:relative;

    overflow:hidden;

    padding:45px 30px;

    text-align:center;

    border-radius:22px;

    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid rgba(59,130,246,.18);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.stat-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        transparent,
        rgba(59,130,246,.08),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.stat-card:hover{

   transform:

translateY(-10px)

scale(1.02);

    border-color:#3B82F6;

    box-shadow:
    0 25px 60px rgba(37,99,235,.18);

}

.stat-card:hover::before{

    opacity:1;

}

.stat-card h3{

    font-size:54px;

    font-weight:800;

    color:#60A5FA;

    margin-bottom:12px;

}

.stat-card p{

    color:#B8C2D1;

    font-size:17px;

    line-height:1.6;

}

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.stats-grid{

grid-template-columns:1fr;

}

}
/* ==========================================
   CASE STUDIES
========================================== */

.case-studies{
    padding:120px 0;
}

.case-grid{
    display:flex;
    flex-direction:column;
    gap:45px;
}

.case-card{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:50px;

    align-items:center;

    padding:35px;

    border-radius:26px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid rgba(59,130,246,.18);

    backdrop-filter:blur(16px);

    transition:

.45s cubic-bezier(.22,1,.36,1);

    overflow:hidden;

}

.case-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

    box-shadow:
    0 25px 60px rgba(37,99,235,.22);

}

.case-image{

    position:relative;

}

.case-image img{

    width:100%;

    height:310px;

    object-fit:cover;

    border-radius:18px;

   transition:

.45s cubic-bezier(.22,1,.36,1);

}

.case-card:hover img{

    transform:scale(1.03);

}

.case-image::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:

    radial-gradient(circle,

    rgba(59,130,246,.22),

    transparent 70%);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    filter:blur(60px);

    z-index:-1;

}

.case-content h3{

    font-size:42px;

    color:#60A5FA;

    margin-bottom:18px;

}

.case-content>p{

    color:#C8D2E2;

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;

}
.case-info{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.case-info p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:

    1px solid rgba(255,255,255,.06);

    color:#BFC9D9;

    font-size:17px;

}

.case-info strong{

    color:#fff;

    font-weight:600;

}

.case-info span{

    color:#60A5FA;

    font-weight:600;

}

/*==========================================
  SERVICES
==========================================*/

.services{
    padding:120px 0;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.service-card{

    position:relative;

    overflow:hidden;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid rgba(59,130,246,.18);

    backdrop-filter:blur(16px);

    transition:.4s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        transparent,
        rgba(59,130,246,.08),
        transparent
    );

    opacity:0;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#3B82F6;

    box-shadow:
    0 25px 60px rgba(37,99,235,.22);

}

.service-card:hover::before{

    opacity:1;

}

.service-card i{

    font-size:58px;

    color:#60A5FA;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover i{

    transform:scale(1.12);

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#fff;

    font-weight:700;

}

.service-card p{

    color:#BFC9D9;

    line-height:1.8;

    font-size:17px;

}

/* Social Icons */

.social-service-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-bottom:28px;

}

.social-service-icons i{

    font-size:42px;

    color:#60A5FA;

}

/* Tablet */

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

}
/*=========================
BACKGROUND BLOBS
=========================*/

.bg-blobs{

position:fixed;

inset:0;

overflow:hidden;

pointer-events:none;

z-index:-2;

}

.blob{

position:absolute;

border-radius:50%;

filter:blur(120px);

animation:floatBlob 14s ease-in-out infinite;

opacity:.35;

}

.blob1{

width:420px;
height:420px;

background:#2563EB;

left:-100px;
top:-120px;

}

.blob2{

width:520px;
height:520px;

background:#1D4ED8;

right:-150px;
top:20%;

animation-delay:3s;

}

.blob3{

width:450px;
height:450px;

background:#60A5FA;

left:35%;
bottom:-180px;

animation-delay:6s;

}

@keyframes floatBlob{

0%{

transform:
translateY(0)
translateX(0)
scale(1);

}

50%{

transform:
translateY(-40px)
translateX(40px)
scale(1.08);

}

100%{

transform:
translateY(0)
translateX(0)
scale(1);

}

}

.cursor-glow{

position:fixed;

width:380px;

height:380px;

border-radius:50%;

background:

radial-gradient(

circle,

rgba(59,130,246,.18),

transparent 70%

);

pointer-events:none;

z-index:-1;

transform:

translate(-50%,-50%);

filter:blur(35px);

transition:

transform .08s linear;

}
*{

-webkit-tap-highlight-color:transparent;

}

button,
a{

touch-action:manipulation;

}
/*=========================================
ULTIMATE RESPONSIVE
=========================================*/

@media (max-width:1400px){

.container{

width:92%;

}

}

@media (max-width:1200px){

.hero-grid,
.case-card{

grid-template-columns:1fr;

}

.case-card{

text-align:center;

}

.case-info{

max-width:700px;

margin:auto;

}

}

@media (max-width:992px){

.hero h1{

font-size:54px;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.industries-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

section{

padding:80px 0;

}

.hero{

padding-top:130px;

}

.hero-grid{

gap:45px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

justify-content:center;

}

.case-image img{

height:auto;

}

.services-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.industries-grid{

grid-template-columns:1fr;

}

.contact-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-outline,
.contact-btn{

width:260px;

}

}

@media (max-width:480px){

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.section-title h2{

font-size:30px;

}

.case-content h3{

font-size:30px;

}

.service-card{

padding:35px 25px;

}

.stat-card{

padding:35px 25px;

}

}

/* ===== FINAL NAVBAR LOGO SIZE ===== */

.logo a{
    width:125px;
    height:82px;
    padding:6px;
}

.logo img{
    width:112px;
    max-height:70px;
    object-fit:contain;
}

@media (max-width:768px){

    .logo a{
        width:100px;
        height:68px;
    }

    .logo img{
        width:88px;
        max-height:58px;
    }

}
/* ==========================================
   FINAL NAVBAR + LOGO
========================================== */

.navbar{
    position:fixed;
    top:12px;
    left:50%;
    transform:translateX(-50%);

    width:min(94%,1280px);

    z-index:9999;
}

.nav-container{
    min-height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:6px 25px 6px 10px;

    background:rgba(5,12,27,.94);

    border:1px solid rgba(59,130,246,.22);

    border-radius:20px;

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}


/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo a{
    width:105px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    background:#fff;

    clip-path:polygon(
        50% 0%,
        100% 34%,
        100% 100%,
        0% 100%,
        0% 34%
    );

    overflow:hidden;

    text-decoration:none;
}


/* Your existing logo */

.logo img{
    width:100px;
    max-height:68px;

    height:auto;

    object-fit:contain;

    display:block;

    transform:scale(1.08);
}


/* Glow without movement */

.logo a:hover{
    filter:
        drop-shadow(0 0 8px rgba(59,130,246,.65))
        drop-shadow(0 0 20px rgba(59,130,246,.25));

    transform:none;
}


/* =========================
   NAV LINKS
========================= */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:42px;

    flex:1;

    margin:0;
    padding:0;

    list-style:none;
}

.nav-links a{
    color:#E7EDF8;

    font-size:15px;
    font-weight:500;

    text-decoration:none;

    transition:.3s;
}

.nav-links a:hover{
    color:#60A5FA;
}


/* =========================
   BUTTON
========================= */

.nav-btn{
    padding:12px 25px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#fff;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

    box-shadow:
        0 12px 30px rgba(37,99,235,.30);

    flex-shrink:0;

    transition:.3s;
}

.nav-btn:hover{
    box-shadow:
        0 15px 35px rgba(37,99,235,.45);

    transform:none;
}


/* =========================
   HERO - GIVE SPACE FOR NAV
========================= */

.hero{
    padding-top:100px;
}


/* =========================
   PROFILE PHOTO - STABLE
========================= */

.hero-image img{
    transform:none !important;
}

.hero-image img:hover{
    transform:none !important;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .navbar{
        top:8px;
    }

    .nav-container{
        min-height:68px;

        padding:4px 10px;
    }

    .logo a{
        width:88px;
        height:60px;
    }

    .logo img{
        width:82px;
        max-height:54px;

        transform:scale(1.08);
    }

    .nav-links{
        display:none;
    }

    .nav-btn{
        padding:10px 16px;
        font-size:12px;
    }

}
@media(max-width:992px){
    .hero h1{
        font-size:48px;
    }
}
/* =========================================================
   FINAL RESPONSIVE FIX
   DESKTOP + TABLET + MOBILE
========================================================= */


/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1201px){

    .hero{
        min-height:100vh;
        padding-top:120px;
    }

    .hero-grid{
        grid-template-columns:1.05fr .95fr;
        gap:70px;
    }

    .hero h1{
        font-size:58px;
        line-height:1.08;
    }

    .hero-image img{
        max-width:360px;
    }

    .case-card{
        grid-template-columns:420px 1fr;
    }
}


/* =========================
   LAPTOP
========================= */

@media (max-width:1200px){

    .container{
        width:92%;
    }

    .hero{
        padding-top:120px;
    }

    .hero-grid{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-image img{
        max-width:330px;
    }

    .case-card{
        grid-template-columns:380px 1fr;
        gap:35px;
    }

    .services-grid{
        grid-template-columns:repeat(3,1fr);
        gap:22px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width:992px){

    /* NAVBAR */

    .navbar{
        top:12px;
    }

    .nav-container{
        width:94%;
        min-height:76px;
        padding:5px 18px 5px 8px;
    }

    .logo a{
        width:105px;
        height:70px;
    }

    .logo img{
        width:92px;
        max-height:60px;
    }

    .nav-links{
        gap:22px;
    }

    .nav-links a{
        font-size:14px;
    }

    .nav-btn{
        padding:11px 20px;
        font-size:13px;
    }


    /* HERO */

    .hero{
        padding-top:130px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:45px;
    }

    .hero-content{
        max-width:800px;
        margin:auto;
    }

    .hero h1{
        font-size:50px;
    }

    .hero p{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        margin:auto;
    }

    .hero-image img{
        max-width:330px;
    }


    /* STATS */

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }


    /* CASE STUDIES */

    .case-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .case-image{
        display:flex;
        justify-content:center;
    }

    .case-image img{
        max-width:600px;
        height:auto;
    }

    .case-content{
        width:100%;
    }

    .case-info{
        max-width:700px;
        margin:auto;
    }


    /* SERVICES */

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }


    /* INDUSTRIES */

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    /* GENERAL */

    body{
        overflow-x:hidden;
    }

    section{
        width:100%;
        padding:65px 0;
    }

    .container{
        width:92%;
        max-width:100%;
    }


    /* =====================
       NAVBAR
    ===================== */

    .navbar{
        top:8px;
        width:100%;
    }

    .nav-container{
        width:94%;

        min-height:64px;

        padding:4px 8px;

        border-radius:16px;
    }

    .logo a{
        width:88px;
        height:60px;
    }

    .logo img{
        width:78px;
        max-height:52px;
        transform:scale(1.08);
    }

    .nav-links{
        display:none;
    }

    .nav-btn{
        padding:10px 16px;
        font-size:12px;
    }


    /* =====================
       HERO
    ===================== */

    .hero{
        min-height:auto;

        padding-top:105px;
        padding-bottom:60px;
    }

    .hero-grid{
        display:flex;
        flex-direction:column;

        gap:40px;

        text-align:center;
    }

    .hero-content{
        width:100%;
        max-width:100%;
    }

    .hero h1{
        font-size:40px;

        line-height:1.08;

        letter-spacing:-1px;

        margin-bottom:22px;
    }

    .hero p{
        width:100%;

        font-size:16px;

        line-height:1.8;

        margin-bottom:28px;
    }

    .hero-buttons{
        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:14px;
    }

    .hero-buttons a{
        width:230px;

        text-align:center;
    }


    /* PROFILE */

    .hero-image{
        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;
    }

    .hero-image img{
        width:100%;

        max-width:290px;

        height:auto;

        transform:none !important;
    }

    .hero-image img:hover{
        transform:none !important;
    }

    .image-glow{
        width:300px;
        height:300px;
    }


    /* =====================
       SECTION TITLES
    ===================== */

    .section-title{
        margin-bottom:40px;
        padding:0 10px;
    }

    .section-title span{
        font-size:12px;
        letter-spacing:2px;
    }

    .section-title h2{
        font-size:32px;
        line-height:1.15;
    }


    /* =====================
       STATS
    ===================== */

    .stats{
        padding:60px 0;
    }

    .stats-grid{
        grid-template-columns:1fr;

        gap:18px;
    }

    .stat-card{
        padding:30px 20px;
    }

    .stat-card h3{
        font-size:42px;
    }

    .stat-card p{
        font-size:15px;
    }


    /* =====================
       CASE STUDIES
    ===================== */

    .case-studies{
        padding:65px 0;
    }

    .case-grid{
        gap:25px;
    }

    .case-card{
        width:100%;

        display:flex;

        flex-direction:column;

        gap:25px;

        padding:22px 18px;

        border-radius:20px;

        text-align:center;
    }

    .case-image{
        width:100%;
    }

    .case-image img{
        width:100%;

        max-width:100%;

        height:auto;

        border-radius:14px;
    }

    .case-content{
        width:100%;
    }

    .case-content h3{
        font-size:30px;

        line-height:1.2;

        margin-bottom:14px;
    }

    .case-content>p{
        font-size:15px;

        line-height:1.7;

        margin-bottom:22px;
    }

    .case-info{
        width:100%;
    }

    .case-info p{
        display:flex;

        justify-content:space-between;

        align-items:center;

        gap:15px;

        padding:11px 0;

        font-size:14px;

        text-align:left;
    }

    .case-info strong{
        flex-shrink:0;
    }

    .case-info span{
        text-align:right;
    }


    /* =====================
       SERVICES
    ===================== */

    .services{
        padding:65px 0;
    }

    .services-grid{
        grid-template-columns:1fr;

        gap:18px;

        margin-top:35px;
    }

    .service-card{
        min-height:auto;

        padding:35px 25px;

        border-radius:20px;
    }

    .service-card i{
        font-size:48px;

        margin-bottom:20px;
    }

    .service-card h3{
        font-size:25px;

        line-height:1.2;
    }

    .service-card p{
        font-size:15px;

        line-height:1.7;
    }


    /* =====================
       INDUSTRIES
    ===================== */

    .industries-grid{
        grid-template-columns:1fr;

        gap:12px;

        margin-top:30px;
    }

    .industry-card{
        min-height:65px;

        padding:16px 12px;

        font-size:15px;
    }


    /* =====================
       CONTACT
    ===================== */

    .contact{
        padding:65px 0;
    }

    .contact h2{
        font-size:36px;

        line-height:1.15;
    }

    .contact p{
        font-size:15px;

        line-height:1.7;
    }

    .contact-buttons{
        display:flex;

        flex-direction:column;

        align-items:center;

        gap:15px;
    }

    .contact-buttons a{
        width:230px;

        text-align:center;
    }


    /* =====================
       FOOTER
    ===================== */

    footer{
        padding:55px 0 35px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .container{
        width:90%;
    }


    /* NAVBAR */

    .nav-container{
        min-height:60px;

        padding:3px 7px;
    }

    .logo a{
        width:78px;
        height:54px;
    }

    .logo img{
        width:70px;
        max-height:47px;
    }

    .nav-btn{
        padding:9px 13px;

        font-size:11px;
    }


    /* HERO */

    .hero{
        padding-top:95px;
    }

    .hero h1{
        font-size:34px;

        line-height:1.08;

        letter-spacing:-.8px;
    }

    .hero p{
        font-size:14px;

        line-height:1.75;
    }

    .hero-image img{
        max-width:260px;
    }


    /* TITLES */

    .section-title h2{
        font-size:28px;
    }


    /* STATS */

    .stat-card h3{
        font-size:38px;
    }


    /* CASE STUDIES */

    .case-card{
        padding:18px 14px;
    }

    .case-content h3{
        font-size:27px;
    }

    .case-info p{
        font-size:13px;

        gap:10px;
    }


    /* SERVICES */

    .service-card{
        padding:30px 20px;
    }

    .service-card h3{
        font-size:23px;
    }


    /* CONTACT */

    .contact h2{
        font-size:31px;
    }
}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width:360px){

    .nav-btn{
        padding:8px 11px;
        font-size:10px;
    }

    .logo a{
        width:72px;
        height:50px;
    }

    .logo img{
        width:65px;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:13px;
    }

    .hero-image img{
        max-width:235px;
    }
}

/* =====================================================
   FIX: SHOW ALL SECTIONS
   Prevent sections from staying invisible
===================================================== */
/* Make About section visible and properly spaced */

.about{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    padding-top:70px;
    padding-bottom:70px;
}


/* Founder section */

.founder-section{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    padding:70px 0;
}


/* Case Studies */

.case-studies{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}


/* Services */

.services{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}


/* ===== FORCE ALL WEBSITE SECTIONS VISIBLE ===== */

section,
.about,
.founder-section,
.case-studies,
.services,
.stats,
.contact,
footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-content,
.founder-content,
.case-card,
.service-card,
.stat-card,
.industry-card,
.industries-grid {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Keep grids working */
.stats-grid,
.services-grid,
.industries-grid {
    display: grid !important;
}

/* Case study layout */
.case-grid {
    display: flex !important;
}

/* Mobile */
@media (max-width: 768px) {

    section,
    .about,
    .founder-section,
    .case-studies,
    .services,
    .stats,
    .contact,
    footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .about-content,
    .founder-content,
    .case-card,
    .service-card,
    .stat-card,
    .industry-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .stats-grid,
    .services-grid,
    .industries-grid {
        display: grid !important;
    }

    .case-grid {
        display: flex !important;
        flex-direction: column !important;
    }
}
/* ================================
   MOBILE VISIBILITY FIX
================================ */

@media (max-width: 768px) {

    .stats,
    .about,
    .founder-section,
    .case-studies,
    .services,
    .contact,
    footer {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .stat-card,
    .about-content,
    .case-card,
    .service-card,
    .founder-content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

}
@media (max-width: 768px) {

    .hero {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        align-items: center !important;
    }

    .hero-content {
        width: 100% !important;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }

    .hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .hero-buttons a {
        width: 90% !important;
        text-align: center !important;
    }

    .hero-image {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-image img {
        width: 280px !important;
        max-width: 85% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

}

/* =========================================================
   HERO PROFILE INFO + BUTTONS FINAL DESIGN
   ========================================================= */


/* =========================
   PROFILE AREA
   ========================= */

.hero-image {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
}


/* Keep profile image stable */

.hero-image img {
    display: block !important;
    transform: none !important;
}


/* =========================
   PROFILE INFORMATION
   ========================= */

.profile-info {
    width: 100%;
    max-width: 360px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}


/* Performance Marketing Specialist */

.profile-info h3 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


/* Helping Home Service Businesses Scale */

.profile-info p {
    margin: 0;
    color: #B8C2D1;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
}


/* =========================
   SOCIAL MEDIA ICONS
   ========================= */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}


/* All icons same clean website color */

.social-icons a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #60A5FA;

    background: rgba(59, 130, 246, 0.10);

    border: 1px solid rgba(96, 165, 250, 0.30);

    border-radius: 10px;

    font-size: 17px;

    transition: all 0.3s ease;
}


/* Hover */

.social-icons a:hover {
    color: #ffffff;

    background: #2563EB;

    border-color: #60A5FA;

    box-shadow:
        0 0 15px rgba(59, 130, 246, 0.45),
        0 0 30px rgba(59, 130, 246, 0.20);

    transform: translateY(-3px);
}


/* =========================
   HERO BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* View Case Studies */

.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 14px 25px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    border: 1px solid rgba(96, 165, 250, 0.40);

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.25);

    transition: all 0.3s ease;
}


.hero-buttons .btn-primary:hover {
    background: linear-gradient(
        135deg,
        #3B82F6,
        #60A5FA
    );

    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.40);

    transform: translateY(-3px);
}


/* Book a Strategy Call */

.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 14px 25px;

    border-radius: 10px;

    background: transparent;

    color: #D7DEE9;

    font-size: 15px;
    font-weight: 600;

    border: 1px solid rgba(96, 165, 250, 0.45);

    transition: all 0.3s ease;
}


.hero-buttons .btn-secondary:hover {
    color: #ffffff;

    background: rgba(37, 99, 235, 0.15);

    border-color: #60A5FA;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.20);

    transform: translateY(-3px);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .hero-image {
        gap: 20px !important;
    }

    .profile-info {
        max-width: 300px;
    }

    .profile-info h3 {
        font-size: 19px;
    }

    .profile-info p {
        font-size: 15px;
        line-height: 1.5;
    }

    .social-icons {
        margin-top: 15px;
        gap: 10px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 230px;
        min-width: 230px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .profile-info {
        max-width: 280px;
    }

    .profile-info h3 {
        font-size: 18px;
    }

    .profile-info p {
        font-size: 14px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

}
/* SOCIAL ICONS — WHITE ICON ONLY */

.social-icons a {
    color: #ffffff !important;
}

.social-icons a i {
    color: #ffffff !important;
}

/* Keep blue background and border */
.social-icons a {
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(96, 165, 250, 0.30);
}

/* Hover */
.social-icons a:hover {
    color: #ffffff !important;
    background: #2563EB;
    border-color: #60A5FA;
}

.social-icons a:hover i {
    color: #ffffff !important;
}

/* ==========================================
   20+ SERVICES WORKED
   PREMIUM GRID
========================================== */

.industries-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 22px;
    max-width: 1100px;
    margin: 50px auto 0;
}


/* SERVICE CARD */

.industry-card {
    position: relative;

    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 18px;

    color: #EAF2FF;

    font-size: 15px;
    font-weight: 500;

    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(59,130,246,.08),
        rgba(15,23,42,.35)
    );

    border: 1px solid rgba(96,165,250,.18);

    border-radius: 12px;

    overflow: hidden;

    opacity: 0;

    transform: translateY(25px) scale(.97);

    animation: serviceCardReveal .7s ease forwards;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


/* STAGGER EFFECT */

.industry-card:nth-child(1)  { animation-delay:.05s; }
.industry-card:nth-child(2)  { animation-delay:.10s; }
.industry-card:nth-child(3)  { animation-delay:.15s; }
.industry-card:nth-child(4)  { animation-delay:.20s; }
.industry-card:nth-child(5)  { animation-delay:.25s; }
.industry-card:nth-child(6)  { animation-delay:.30s; }
.industry-card:nth-child(7)  { animation-delay:.35s; }
.industry-card:nth-child(8)  { animation-delay:.40s; }
.industry-card:nth-child(9)  { animation-delay:.45s; }
.industry-card:nth-child(10) { animation-delay:.50s; }
.industry-card:nth-child(11) { animation-delay:.55s; }
.industry-card:nth-child(12) { animation-delay:.60s; }
.industry-card:nth-child(13) { animation-delay:.65s; }
.industry-card:nth-child(14) { animation-delay:.70s; }
.industry-card:nth-child(15) { animation-delay:.75s; }
.industry-card:nth-child(16) { animation-delay:.80s; }
.industry-card:nth-child(17) { animation-delay:.85s; }
.industry-card:nth-child(18) { animation-delay:.90s; }


/* REVEAL */

@keyframes serviceCardReveal {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* BLUE DOT */

.industry-card::before {
    content: "";

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    margin-right: 10px;

    border-radius: 50%;

    background: #3B82F6;

    box-shadow:
        0 0 8px rgba(59,130,246,.8);

    transition: .3s ease;
}


/* HOVER */

.industry-card:hover {

    color: #ffffff;

    transform: translateY(-4px) scale(1.02);

    background: linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(15,23,42,.55)
    );

    border-color: rgba(96,165,250,.55);

    box-shadow:
        0 12px 30px rgba(37,99,235,.18);
}


.industry-card:hover::before {

    transform: scale(1.5);

    box-shadow:
        0 0 12px rgba(59,130,246,1),
        0 0 22px rgba(59,130,246,.5);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;

        width: 94%;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .industries-grid {
        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;

        margin-top: 35px;
    }

    .industry-card {
        min-height: 52px;

        font-size: 14px;

        padding: 12px 15px;

        border-radius: 10px;
    }

}
/* =========================================================
   CASE STUDY IMAGE LIGHTBOX
========================================================= */

.case-image img {
    cursor: zoom-in !important;
}


/* Fullscreen background */

.image-lightbox {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(2, 7, 20, 0.94);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    backdrop-filter: blur(8px);
}


/* Open state */

.image-lightbox.active {

    opacity: 1;

    visibility: visible;
}


/* Large image */

.image-lightbox img {

    max-width: 92vw;

    max-height: 88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 14px;

    border: 1px solid rgba(96,165,250,0.45);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.65),
        0 0 50px rgba(37,99,235,0.12);

    transform: scale(0.92);

    transition:
        transform 0.35s cubic-bezier(.22,1,.36,1);
}


/* Image animation */

.image-lightbox.active img {

    transform: scale(1);
}


/* Close button */

.image-lightbox-close {

    position: absolute;

    top: 25px;

    right: 30px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(96,165,250,0.4);

    background: rgba(10,20,40,0.9);

    color: #ffffff;

    font-size: 28px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.image-lightbox-close:hover {

    background: #2563eb;

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .image-lightbox {

        padding: 15px;
    }


    .image-lightbox img {

        max-width: 96vw;

        max-height: 82vh;

        border-radius: 10px;
    }


    .image-lightbox-close {

        top: 15px;

        right: 15px;

        width: 42px;

        height: 42px;

        font-size: 24px;
    }

}
/* =========================================================
   FINAL CASE STUDY LAYOUT - FIXED
   IMAGE LEFT + INFO RIGHT
========================================================= */

.case-studies .case-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 45px !important;
    width: 100% !important;
}


/* =========================
   CASE CARD
========================= */

.case-studies .case-grid .case-card {
    display: grid !important;

    /* FIX: fr units automatically account for gap */
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr) !important;

    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;
    padding: 28px !important;

    gap: 35px !important;

    align-items: center !important;

    box-sizing: border-box !important;

    text-align: left !important;

    overflow: hidden !important;
}


/* =========================
   IMAGE
========================= */

.case-studies .case-card .case-image {
    width: 100% !important;
    min-width: 0 !important;

    height: 280px !important;

    overflow: hidden !important;

    border-radius: 16px !important;
}

.case-studies .case-card .case-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    display: block !important;
}


/* =========================
   CONTENT
========================= */

.case-studies .case-card .case-content {
    width: 100% !important;
    min-width: 0 !important;

    padding: 0 !important;

    text-align: center !important;

    box-sizing: border-box !important;
}


/* TITLE */

.case-studies .case-card .case-content h3 {
    width: 100% !important;

    font-size: 34px !important;
    line-height: 1.2 !important;

    margin: 0 0 15px !important;

    text-align: center !important;

    color: #60A5FA !important;
}


/* DESCRIPTION */

.case-studies .case-card .case-content > p {
    width: 100% !important;

    font-size: 15px !important;
    line-height: 1.7 !important;

    margin: 0 auto 22px !important;

    text-align: center !important;

    color: #C8D2E2 !important;
}


/* =========================
   INFO
========================= */

.case-studies .case-card .case-info {
    width: 100% !important;

    max-width: 100% !important;

    margin: 0 !important;

    min-width: 0 !important;
}


.case-studies .case-card .case-info p {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: 130px minmax(0, 1fr) !important;

    gap: 15px !important;

    align-items: center !important;

    padding: 12px 0 !important;

    margin: 0 !important;

    box-sizing: border-box !important;

    border-bottom: 1px solid rgba(255,255,255,.06) !important;
}


/* LEFT LABEL */

.case-studies .case-card .case-info strong {
    min-width: 0 !important;

    text-align: left !important;

    white-space: nowrap !important;

    color: #ffffff !important;

    font-size: 14px !important;
}


/* RIGHT VALUE */

.case-studies .case-card .case-info span {
    min-width: 0 !important;

    max-width: 100% !important;

    text-align: right !important;

    white-space: normal !important;

    overflow-wrap: anywhere !important;

    word-break: break-word !important;

    color: #60A5FA !important;

    font-size: 14px !important;

    font-weight: 600 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 769px) and (max-width: 1200px) {

    .case-studies .case-grid .case-card {

        grid-template-columns:
            minmax(0, 42fr)
            minmax(0, 58fr) !important;

        width: 94% !important;

        max-width: 1000px !important;

        gap: 25px !important;

        padding: 24px !important;
    }

    .case-studies .case-card .case-image {
        height: 240px !important;
    }

    .case-studies .case-card .case-content h3 {
        font-size: 28px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .case-studies .case-grid {
        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 28px !important;
    }


    .case-studies .case-grid .case-card {

        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        max-width: 100% !important;

        gap: 20px !important;

        padding: 18px !important;

        box-sizing: border-box !important;

        text-align: left !important;
    }


    .case-studies .case-card .case-image {

        width: 100% !important;

        height: auto !important;

        aspect-ratio: 16 / 9 !important;
    }


    .case-studies .case-card .case-image img {

        width: 100% !important;

        height: 100% !important;

        object-fit: cover !important;
    }


    .case-studies .case-card .case-content {

        width: 100% !important;

        text-align: center !important;
    }


    .case-studies .case-card .case-content h3 {

        font-size: 26px !important;

        margin-bottom: 10px !important;
    }


    .case-studies .case-card .case-content > p {

        font-size: 14px !important;

        line-height: 1.6 !important;
    }


    .case-studies .case-card .case-info {

        width: 100% !important;
    }


    .case-studies .case-card .case-info p {

        display: grid !important;

        grid-template-columns: 105px minmax(0, 1fr) !important;

        gap: 10px !important;

        font-size: 13px !important;
    }


    .case-studies .case-card .case-info span {

        font-size: 12px !important;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 480px) {

    .case-studies .case-grid {
        gap: 22px !important;
    }

    .case-studies .case-grid .case-card {
        padding: 14px !important;

        border-radius: 18px !important;
    }

    .case-studies .case-card .case-content h3 {
        font-size: 23px !important;
    }

    .case-studies .case-card .case-content > p {
        font-size: 13px !important;
    }

    .case-studies .case-card .case-info p {
        grid-template-columns: 95px minmax(0, 1fr) !important;

        font-size: 12px !important;
    }

}

/* =========================================================
   FINAL CONTACT + FOOTER DESIGN
========================================================= */

/* CONTACT SECTION */

.contact {
    padding: 120px 0 !important;
}

.contact .container {
    max-width: 1200px !important;
}

.contact-wrapper {
    text-align: center !important;
}

.contact h2 {
    font-size: 52px !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
}

.contact p {
    font-size: 20px !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
    color: #C8D2E2 !important;
}


/* CONTACT BUTTONS */

.contact-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

.contact-buttons a {
    width: auto !important;
    min-width: 190px !important;
    padding: 15px 28px !important;
    font-size: 16px !important;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 90px 0 45px !important;
    text-align: center !important;
}

footer .container {
    max-width: 1200px !important;
}

footer h3 {
    font-size: 30px !important;
    margin-bottom: 8px !important;
    color: #ffffff !important;
}

footer p {
    font-size: 17px !important;
    color: #B8C2D1 !important;
}


/* SOCIAL ICONS */

.footer-social {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 25px !important;
}

.footer-social a {
    width: 44px !important;
    height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;

    color: #60A5FA !important;

    background: rgba(59,130,246,.10) !important;

    border: 1px solid rgba(96,165,250,.25) !important;

    font-size: 19px !important;

    transition: all .3s ease !important;
}

.footer-social a:hover {
    color: #ffffff !important;
    background: #2563EB !important;

    transform: translateY(-4px) !important;

    box-shadow:
        0 0 15px rgba(59,130,246,.45),
        0 0 35px rgba(59,130,246,.25) !important;
}


/* COPYRIGHT */

.copyright {
    margin-top: 35px !important;
    font-size: 14px !important;
    color: #8B96A8 !important;
}


/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.whatsapp-float {
    position: fixed !important;

    right: 30px !important;
    bottom: 30px !important;

    width: 62px !important;
    height: 62px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #25D366 !important;

    color: #ffffff !important;

    font-size: 30px !important;

    z-index: 99999 !important;

    box-shadow:
        0 0 15px rgba(37,211,102,.60),
        0 0 35px rgba(37,211,102,.40),
        0 0 70px rgba(37,211,102,.20) !important;

    animation: whatsappGlow 2s ease-in-out infinite !important;

    transition: transform .3s ease !important;
}

.whatsapp-float:hover {
    transform: scale(1.12) !important;
}


/* GLOW ANIMATION */

@keyframes whatsappGlow {

    0%, 100% {
        box-shadow:
            0 0 15px rgba(37,211,102,.60),
            0 0 35px rgba(37,211,102,.40),
            0 0 70px rgba(37,211,102,.20);
    }

    50% {
        box-shadow:
            0 0 20px rgba(37,211,102,.90),
            0 0 50px rgba(37,211,102,.60),
            0 0 90px rgba(37,211,102,.30);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact {
        padding: 80px 0 !important;
    }

    .contact h2 {
        font-size: 38px !important;
    }

    .contact p {
        font-size: 16px !important;
    }

    footer {
        padding: 65px 0 35px !important;
    }

    footer h3 {
        font-size: 26px !important;
    }

    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;

        right: 20px !important;
        bottom: 20px !important;

        font-size: 27px !important;
    }

}
/* =========================================================
   CONTACT BUTTONS
========================================================= */

.contact-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.contact-buttons a {
    min-width: 240px !important;
    height: 62px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 0 30px !important;

    font-size: 19px !important;
    font-weight: 600 !important;

    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    ) !important;

    border: none !important;
    border-radius: 0 !important;

    text-decoration: none !important;

    box-shadow:
        0 10px 30px rgba(37,99,235,.30) !important;

    transition: all .3s ease !important;
}


/* WhatsApp + Email icons */

.contact-buttons a i {
    color: #ffffff !important;
    font-size: 21px !important;
}


/* Hover */

.contact-buttons a:hover {
    transform: translateY(-5px) !important;

    box-shadow:
        0 15px 40px rgba(37,99,235,.50) !important;
}


/* =========================================================
   FOOTER SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    gap: 18px !important;

    margin-top: 28px !important;
}


/* MAKE THEM CIRCLES */

.footer-social a {
    width: 52px !important;
    height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: rgba(59,130,246,.10) !important;

    border: 1px solid rgba(96,165,250,.40) !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transition: all .3s ease !important;
}


/* WHITE ICONS */

.footer-social a i {
    color: #ffffff !important;

    font-size: 21px !important;

    transition: all .3s ease !important;
}


/* HOVER */

.footer-social a:hover {
    background: #2563eb !important;

    border-color: #60a5fa !important;

    transform: translateY(-6px) scale(1.08) !important;

    box-shadow:
        0 0 15px rgba(59,130,246,.60),
        0 0 35px rgba(59,130,246,.35) !important;
}


/* =========================================================
   FOOTER
========================================================= */

footer h3 {
    font-size: 32px !important;

    color: #ffffff !important;

    margin-bottom: 8px !important;
}

footer p {
    color: #d1d9e6 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .contact-buttons a {
        width: 240px !important;
        min-width: 240px !important;
    }

    .footer-social {
        gap: 14px !important;
    }

    .footer-social a {
        width: 48px !important;
        height: 48px !important;
    }

}

/* ==========================================
   MORE VERTICALS + RESPONSIVE FIX
   ========================================== */

.more-verticals {
    display: block !important;
    width: 100% !important;

    text-align: center !important;

    font-size: 24px !important;
    font-weight: 700 !important;

    color: #ffffff !important;

    /* Much smaller spacing */
    margin-top: 25px !important;
    margin-bottom: 20px !important;

    padding: 0 !important;
}


/* ==========================================
   CASE STUDIES → SERVICES SPACING
   ========================================== */

.case-studies {
    padding-bottom: 20px !important;
}

.services {
    padding-top: 50px !important;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1024px) {

    .container {
        width: 92% !important;
        max-width: 1100px !important;
    }

    .case-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .case-image {
        width: 45% !important;
    }

    .case-content {
        width: 55% !important;
    }

    .more-verticals {
        font-size: 22px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }

    .services {
        padding-top: 40px !important;
    }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

    .container {
        width: 92% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Case study cards */
    .case-card {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        padding: 25px !important;
        gap: 25px !important;

        box-sizing: border-box !important;
    }

    .case-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .case-image img {
        width: 100% !important;
        max-width: 500px !important;
        height: auto !important;
    }

    .case-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .case-content h3 {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    /* More */
    .more-verticals {
        font-size: 21px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }

    /* Services */
    .services {
        padding-top: 35px !important;
    }

    .section-title h2 {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }
}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {

    .container {
        width: 94% !important;
    }

    .case-card {
        padding: 18px !important;
        gap: 20px !important;
    }

    .case-content h3 {
        font-size: 25px !important;
    }

    .more-verticals {
        font-size: 19px !important;
        margin-top: 15px !important;
        margin-bottom: 10px !important;
    }

    .services {
        padding-top: 25px !important;
    }

    .section-title h2 {
        font-size: 30px !important;
    }
}

/* =========================================
   FIX 100% STAT CARD
========================================= */

/* Make ALL stat numbers consistent */
.stats-grid .stat-card h2,
.stats-grid .stat-card h3 {
    font-size: 48px !important;
    line-height: 1 !important;
    font-weight: 800 !important;

    margin: 0 0 14px 0 !important;

    color: #ffffff !important;
}


/* 100% specifically */
.stats-grid .stat-card:nth-child(4) h3 {
    font-size: 48px !important;

    color: #d5dadf !important;

    line-height: 1 !important;

    margin: 0 0 14px 0 !important;

    text-shadow: none !important;
}


/* All descriptions */
.stats-grid .stat-card p {
    font-size: 18px !important;
    line-height: 1.45 !important;
    color: #cbd5e1 !important;

    margin: 0 !important;
}


/* Mobile */
@media (max-width: 768px) {

    .stats-grid .stat-card h2,
    .stats-grid .stat-card h3 {
        font-size: 40px !important;
    }

    .stats-grid .stat-card:nth-child(4) h3 {
        font-size: 40px !important;
    }

    .stats-grid .stat-card p {
        font-size: 16px !important;
    }
}


/* Small phones */
@media (max-width: 480px) {

    .stats-grid .stat-card h2,
    .stats-grid .stat-card h3 {
        font-size: 34px !important;
    }

    .stats-grid .stat-card:nth-child(4) h3 {
        font-size: 34px !important;
    }
}

/* ==========================================
   PREMIUM MOVING NAVBAR LIGHT
   ========================================== */

.nav-container {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Moving blue light */
.nav-container::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 120px;

    left: -420px;
    top: 50%;
    transform: translateY(-50%);

    background: radial-gradient(
        ellipse,
        rgba(59,130,246,0.28) 0%,
        rgba(37,99,235,0.12) 40%,
        transparent 75%
    );

    filter: blur(18px);

    pointer-events: none;
    z-index: 0;

    animation: navLightMove 8s ease-in-out infinite;
}

/* Keep logo/menu/button above the light */
.nav-container > * {
    position: relative;
    z-index: 2;
}

@keyframes navLightMove {

    0% {
        left: -420px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 420px);
        transform: translateY(-50%);
        opacity: 0;
    }
}
/* =========================================================
   PREMIUM COMPACT CASE STUDY DESIGN
   ========================================================= */

.case-studies .case-card {
    grid-template-columns: 42% 58% !important;
    gap: 45px !important;

    padding: 30px !important;
    align-items: center !important;

    min-height: 0 !important;
}

/* IMAGE */

.case-studies .case-card .case-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
}

.case-studies .case-card .case-image img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;

    aspect-ratio: auto !important;
    object-fit: contain !important;

    border-radius: 18px !important;
}


/* RIGHT CONTENT */

.case-studies .case-card .case-content {
    width: 100% !important;
    max-width: 650px !important;
}

.case-studies .case-card .case-content h3 {
    font-size: 34px !important;
    line-height: 1.15 !important;

    margin-bottom: 12px !important;
}

.case-studies .case-card .case-content > p {
    font-size: 15px !important;
    line-height: 1.6 !important;

    margin-bottom: 22px !important;
    max-width: 620px !important;
}


/* INFO ROWS */

.case-studies .case-card .case-info {
    gap: 0 !important;
    width: 100% !important;
}

.case-studies .case-card .case-info p {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;

    align-items: center !important;

    padding: 11px 0 !important;
    margin: 0 !important;

    font-size: 14px !important;
    line-height: 1.3 !important;

    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.case-studies .case-card .case-info strong {
    font-size: 14px !important;
}

.case-studies .case-card .case-info span {
    font-size: 14px !important;
    text-align: right !important;
    letter-spacing: 2px !important;
}


/* DESKTOP BALANCE */

@media (min-width: 1200px) {

    .case-studies .case-card {
        max-width: 1180px !important;
        margin: 0 auto !important;
    }

    .case-studies .case-card .case-image img {
        max-width: 470px !important;
    }
}


/* TABLET */

@media (max-width: 992px) {

    .case-studies .case-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .case-studies .case-card .case-image img {
        max-width: 560px !important;
    }

    .case-studies .case-card .case-content {
        max-width: 700px !important;
        margin: auto !important;
    }

    .case-studies .case-card .case-content > p {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .case-studies .case-card {
        padding: 22px 18px !important;
        gap: 24px !important;
    }

    .case-studies .case-card .case-content h3 {
        font-size: 28px !important;
    }

    .case-studies .case-card .case-content > p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .case-studies .case-card .case-info p {
        grid-template-columns: 100px 1fr !important;
        padding: 10px 0 !important;
        font-size: 13px !important;
    }

    .case-studies .case-card .case-info strong {
        font-size: 13px !important;
    }

    .case-studies .case-card .case-info span {
        font-size: 12px !important;
        letter-spacing: 1.5px !important;
    }
}


/* SMALL PHONE */

@media (max-width: 480px) {

    .case-studies .case-card {
        padding: 18px 14px !important;
    }

    .case-studies .case-card .case-content h3 {
        font-size: 25px !important;
    }

    .case-studies .case-card .case-content > p {
        font-size: 13px !important;
    }

    .case-studies .case-card .case-info p {
        grid-template-columns: 90px 1fr !important;
        font-size: 12px !important;
    }

    .case-studies .case-card .case-info strong {
        font-size: 12px !important;
    }

    .case-studies .case-card .case-info span {
        font-size: 11px !important;
    }
}

/* =========================================================
   PREMIUM CASE STUDY SLIDER
   3 DESKTOP / 2 TABLET / 1 MOBILE
   ========================================================= */

.case-studies .case-grid {
    position: relative !important;

    display: flex !important;
    flex-direction: row !important;

    gap: 24px !important;

    width: 100% !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;

    scrollbar-width: none !important;

    padding: 10px 4px 25px !important;

    align-items: stretch !important;
}

/* Hide scrollbar Chrome / Edge / Safari */

.case-studies .case-grid::-webkit-scrollbar {
    display: none !important;
}


/* =========================================================
   CARD SIZE
   ========================================================= */

.case-studies .case-grid .case-card {

    flex: 0 0 calc(
        (100% - 48px) / 3
    ) !important;

    width: calc(
        (100% - 48px) / 3
    ) !important;

    max-width: none !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 22px !important;

    box-sizing: border-box !important;

    scroll-snap-align: start !important;

    display: flex !important;

    flex-direction: column !important;

    gap: 18px !important;

    position: relative !important;

    overflow: hidden !important;

    border-radius: 22px !important;

    transition:
        transform 0.4s cubic-bezier(.22,1,.36,1),
        border-color 0.4s ease,
        box-shadow 0.4s ease !important;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.case-studies .case-grid .case-card:hover {

    transform: translateY(-8px) !important;

    border-color: rgba(
        59,
        130,
        246,
        0.75
    ) !important;

    box-shadow:
        0 20px 50px rgba(
            0,
            0,
            0,
            0.25
        ),
        0 0 35px rgba(
            59,
            130,
            246,
            0.10
        ) !important;
}


/* =========================================================
   IMAGE
   ========================================================= */

.case-studies .case-card .case-image {

    width: 100% !important;

    height: 220px !important;

    flex-shrink: 0 !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    cursor: zoom-in !important;

    position: relative !important;
}


.case-studies .case-card .case-image::after {

    content: "Click to enlarge";

    position: absolute;

    left: 50%;
    bottom: 12px;

    transform:
        translateX(-50%)
        translateY(10px);

    padding: 6px 12px;

    border-radius: 20px;

    background: rgba(
        3,
        10,
        25,
        0.85
    );

    color: #ffffff;

    font-size: 11px;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;

    white-space: nowrap;
}


.case-studies .case-card:hover
.case-image::after {

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


.case-studies .case-card .case-image img {

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;

    object-position: center !important;

    display: block !important;

    transition:
        transform 0.6s
        cubic-bezier(.22,1,.36,1) !important;
}


.case-studies .case-card:hover
.case-image img {

    transform: scale(1.045) !important;
}


/* =========================================================
   CONTENT
   ========================================================= */

.case-studies .case-card
.case-content {

    width: 100% !important;

    padding: 0 !important;

    text-align: left !important;

    display: flex !important;

    flex-direction: column !important;

    flex: 1 !important;
}


.case-studies .case-card
.case-content h3 {

    font-size: 24px !important;

    line-height: 1.2 !important;

    margin:
        0 0 10px !important;

    color: #60A5FA !important;
}


.case-studies .case-card
.case-content > p {

    font-size: 13px !important;

    line-height: 1.6 !important;

    margin:
        0 0 15px !important;

    color: #CBD5E1 !important;
}


/* =========================================================
   LIST
   ========================================================= */

.case-studies .case-card
.case-content ul {

    margin: auto 0 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


.case-studies .case-card
.case-content ul li {

    padding:
        9px 0 !important;

    margin: 0 !important;

    border-bottom:
        1px solid rgba(
            255,
            255,
            255,
            0.07
        ) !important;

    color: #E2E8F0 !important;

    font-size: 13px !important;
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.case-slider-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 25px;

    position: relative;

    z-index: 5;
}


/* ARROWS */

.case-slider-arrow {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(
            59,
            130,
            246,
            0.4
        );

    background:
        rgba(
            15,
            30,
            60,
            0.8
        );

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.case-slider-arrow:hover {

    background: #2563EB;

    transform: scale(1.08);

    box-shadow:
        0 0 20px rgba(
            37,
            99,
            235,
            0.4
        );
}


/* DOTS */

.case-slider-dots {

    display: flex;

    align-items: center;

    gap: 7px;
}


.case-slider-dot {

    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background:
        rgba(
            148,
            163,
            184,
            0.35
        );

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.case-slider-dot.active {

    width: 24px;

    border-radius: 20px;

    background: #3B82F6;

    box-shadow:
        0 0 12px rgba(
            59,
            130,
            246,
            0.7
        );
}


/* =========================================================
   TABLET — 2 CARDS
   ========================================================= */

@media (max-width: 1000px) {

    .case-studies .case-grid .case-card {

        flex: 0 0 calc(
            (100% - 24px) / 2
        ) !important;

        width: calc(
            (100% - 24px) / 2
        ) !important;
    }

    .case-studies .case-card
    .case-image {

        height: 230px !important;
    }
}


/* =========================================================
   MOBILE — 1 CARD
   ========================================================= */

@media (max-width: 700px) {

    .case-studies .case-grid {

        gap: 15px !important;

        padding-left: 2px !important;

        padding-right: 2px !important;
    }


    .case-studies .case-grid .case-card {

        flex: 0 0 100% !important;

        width: 100% !important;

        padding: 18px !important;

        border-radius: 18px !important;
    }


    .case-studies .case-card
    .case-image {

        height: 210px !important;

        border-radius: 14px !important;
    }


    .case-studies .case-card
    .case-content h3 {

        font-size: 23px !important;
    }


    .case-studies .case-card
    .case-content > p {

        font-size: 13px !important;
    }


    .case-studies .case-card
    .case-content ul li {

        font-size: 12px !important;

        padding: 8px 0 !important;
    }


    .case-slider-arrow {

        width: 40px;

        height: 40px;

        font-size: 18px;
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 420px) {

    .case-studies .case-card
    .case-image {

        height: 185px !important;
    }


    .case-studies .case-card
    .case-content h3 {

        font-size: 21px !important;
    }
}
/* =========================================================
   CASE STUDY ARROWS — CENTER OF CARDS
   ========================================================= */

.case-studies .container {
    position: relative !important;
}

.case-slider-controls {
    position: absolute !important;

    left: -30px !important;
    right: -30px !important;

    /* CENTER OF THE CARD AREA */
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: auto !important;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    margin: 0 !important;

    pointer-events: none !important;

    z-index: 999 !important;
}

.case-slider-arrow {
    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    border-radius: 50% !important;

    border: 1px solid #60A5FA !important;

    background: rgba(7, 18, 40, 0.95) !important;

    color: #ffffff !important;

    font-size: 24px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    pointer-events: auto !important;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35),
        0 0 18px rgba(59,130,246,.25) !important;

    transition: all .3s ease !important;
}

.case-slider-arrow:hover {
    background: #2563EB !important;

    transform: scale(1.12) !important;

    box-shadow:
        0 0 30px rgba(59,130,246,.6) !important;
}

/* Hide dots */
.case-slider-dots {
    display: none !important;
}


/* TABLET */

@media (max-width: 1200px) {

    .case-slider-controls {
        left: -20px !important;
        right: -20px !important;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .case-slider-controls {
        left: 4px !important;
        right: 4px !important;

        top: 50% !important;
    }

    .case-slider-arrow {
        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;

        font-size: 20px !important;
    }

}

