/* ============================================================
   PINCH AFRICA — PREMIUM CSS
   Consen-inspired, ultra-modern, 2026-standard design
   ============================================================ */

/* ——— CSS Variables ——— */
:root {
    --consen-accent: #0548db; /* Teal-ish / Emerald */
    --consen-accent-rgb: 5, 72, 219;
    --consen-dark: #020617;   /* Slate 950 */
    --consen-dark-rgb: 2, 6, 23;
    --consen-light: #f8fafc;  /* Slate 50 */
    --consen-glass: rgba(255, 255, 255, 0.08);
    --consen-glass-border: rgba(255, 255, 255, 0.15);
    --consen-mid: #0F172A;
    --bg-light: #F8FAFC;
    --text-muted: #64748B;
    --white: #ffffff;
    --font: 'Inter', sans-serif;
    --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.08);
    --shadow-float: 0 30px 60px rgba(2, 6, 23, 0.12);
    --radius: 12px;
    --trans: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 160px;
}

/* ——— Reset & Base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--consen-dark); background: #fff; overflow-x: hidden; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(5,72,219,0.2); }
    50% { box-shadow: 0 0 25px rgba(5,72,219,0.5); }
    100% { box-shadow: 0 0 10px rgba(5,72,219,0.2); }
}
h1,h2,h3,h4,h5 { font-family: var(--font); color: var(--consen-dark); letter-spacing: -0.02em; }
.premium-title { font-size: 56px; font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 30px; }
.premium-subtitle { color: var(--consen-accent); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 800; font-size: 13px; margin-bottom: 20px; display: block; }
img { max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
.section { padding: var(--section-padding) 0; position: relative; }
.bg-light { background: var(--bg-light); }
.wide-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* Glass Panels */
.glass-panel { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); }
.glass-panel-dark { background: rgba(2, 6, 23, 0.75); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3); }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--consen-accent); }
.pt-20 { padding-top: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pb-15 { padding-bottom: 15px; }
.mt-4 { margin-top: 1.5rem; }
.mb-90 { margin-bottom: 90px; }
.mb-40 { margin-bottom: 40px; }
.pb-10 { padding-bottom: 10px; }
.align-items-center { align-items: center; }

/* ————————————————————————
   TOP INFO BAR
   ———————————————————————— */
.header-top-bar {
    background: var(--consen-dark);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    z-index: 3000;
    transition: var(--trans);
}
.header-top-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.ht-left { display: flex; gap: 30px; }
.ht-left span { display: flex; align-items: center; gap: 8px; }
.ht-left i { color: var(--consen-accent); }
.ht-right { display: flex; align-items: center; gap: 18px; }
.ht-right a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.ht-right a:hover { color: var(--consen-accent); }
.ht-call {
    background: var(--consen-accent); color: white !important; padding: 6px 18px;
    border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: var(--trans);
}
.ht-call:hover { background: white; color: var(--consen-accent) !important; }

/* ————————————————————————
   MAIN NAVIGATION
   ———————————————————————— */
.consen-nav {
    position: sticky; top: 0; left: 0; width: 100%; z-index: 2500;
    padding: 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(25px);
    box-shadow: 0 2px 30px rgba(2, 6, 23, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.consen-nav.scrolled { box-shadow: 0 10px 40px rgba(2, 6, 23, 0.08); background: rgba(255, 255, 255, 0.9); }
.nav-container {
    display: flex; align-items: center; height: 100px; gap: 20px;
}
.logo {
    display: flex; align-items: center; flex: 1 0 0;
}
.logo img {
    height: 54px; width: auto; object-fit: contain; transition: var(--trans);
}
.nav-links {
    display: flex; align-items: center; justify-content: center; gap: 0; flex: 0 0 auto; list-style: none; padding: 0; margin: 0;
}
.header-action-group {
    display: flex; align-items: center; justify-content: flex-end; gap: 20px; flex: 1 0 0;
}
.mobile-nav-toggle { 
    display: none; 
    background: transparent; 
    border: none; 
    font-size: 26px; 
    color: var(--consen-dark); 
    cursor: pointer; 
    padding: 10px;
}
@media (max-width: 1199px) {
    .nav-container { height: 80px; justify-content: space-between; gap: 0; }
    .logo { flex: 0 0 auto; }
    .logo img { height: 42px; }
    .header-action-group { display: none; }
    .mobile-nav-toggle { display: block; z-index: 3000; }
    
    .nav-links {
        position: fixed; top: 0; left: -100%; width: 100%; max-width: 360px; height: 100vh;
        background: #ffffff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 100px 30px 40px; box-shadow: 20px 0 60px rgba(0,0,0,0.15); 
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2800; overflow-y: auto;
    }
    .nav-links.mobile-active { left: 0; }
    .nav-links > li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links > li > a { 
        padding: 16px 0; width: 100%; display: flex; justify-content: space-between; 
        font-size: 16px; 
    }
    .nav-links > li > a::after { display: none; } /* Remove hover underline on mobile */
    
    /* Disable Mega Menus Entirely on Mobile for Simplicity */
    .mega-menu { display: none !important; }
    .nav-icon { display: none !important; } /* Hide the dropdown arrow */
}
.nav-mini-pill-btn {
    background: var(--consen-accent); color: white !important; padding: 10px 18px;
    border-radius: 40px; font-weight: 800; font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans); border: 1px solid var(--consen-accent);
    box-shadow: 0 4px 15px rgba(5, 72, 219, 0.15);
}
.nav-mini-pill-btn.ghost {
    background: #f8fafc; color: var(--consen-dark) !important;
    border-color: #e2e8f0; box-shadow: none;
}
.nav-mini-pill-btn:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(5, 72, 219, 0.25);
}
.nav-mini-pill-btn.ghost:hover {
    border-color: var(--consen-accent); color: var(--consen-accent) !important;
}
@media (max-width: 1200px) {
    .nav-mini-pill-btn { display: none; }
}
.nav-links > li > a {
    display: flex; align-items: center; gap: 8px;
    color: var(--consen-dark); font-weight: 700; font-size: 15px;
    padding: 32px 22px; transition: color 0.3s; white-space: nowrap;
    position: relative;
}
.nav-links > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 22px; right: 22px;
    height: 3px; background: var(--consen-accent); transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links > li > a:hover { color: var(--consen-accent); }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.dreamit-service-box:hover {
    box-shadow: 0 40px 90px rgba(5, 72, 219, 0.2);
    border-color: rgba(5, 72, 219, 0.3);
    transform: translateY(-10px);
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    border-top: 3px solid var(--consen-accent);
}
.has-mega { position: static; } /* Ensure full-width dropdown */
.has-mega:hover .mega-menu { display: block; }
.mega-inner { display: flex; flex-wrap: wrap; gap: 40px; padding: 50px 80px; max-width: 1440px; margin: 0 auto; }
.mega-col { flex: 1; min-width: 180px; padding: 0; border-right: none; }
/*.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }*/
.mega-col-title {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--consen-accent); margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(5,72,219,0.1);
}
.mega-col ul li { margin-bottom: 20px; }
.mega-col ul li a {
    color: var(--consen-dark); font-weight: 600; font-size: 15px; display: flex; align-items: center;
    gap: 12px; transition: all 0.3s; padding: 8px 12px; border-radius: 8px;
}
.mega-col ul li a i { color: var(--consen-accent); font-size: 14px; width: 20px; text-align: center; }
.mega-col ul li a:hover { color: var(--consen-accent); background: rgba(5,72,219,0.05); transform: translateX(8px); }
.mega-cta-col { padding-left: 30px; }
.mega-cta-box {
    background: var(--consen-dark); color: white; padding: 30px; border-radius: 12px;
    height: 100%;
}
.mega-cta-box h4 { color: white; font-size: 18px; margin-bottom: 10px; }
.mega-cta-box p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }
.mega-cta-btn { font-size: 13px !important; padding: 12px 22px !important; margin-top: 20px !important; display: inline-flex !important; }

/* Mega Image Box */
.mega-image-box {
    position: relative;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mega-image-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.4) 60%, transparent 100%);
    padding: 30px;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}
.mega-image-overlay h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 800;
}
.mega-image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.mega-image-overlay .mega-cta-btn {
    background: var(--consen-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    border: none;
    transition: var(--trans);
}
.mega-image-overlay .mega-cta-btn:hover {
    background: white;
    color: var(--consen-accent);
}


/* Header Text Link */
.header-text-link {
    color: var(--consen-dark); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px; transition: var(--trans);
}
.header-text-link:hover { color: var(--consen-accent); }

/* CTA Button */
.consen-pill-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--consen-accent); color: white; border: 2px solid var(--consen-accent);
    padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 14px;
    cursor: pointer; transition: var(--trans); white-space: nowrap;
}
.consen-pill-btn:hover { background: var(--consen-dark); border-color: var(--consen-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.consen-pill-btn.no-bg { background: transparent; color: var(--consen-accent); }
.consen-pill-btn.no-bg:hover { background: var(--consen-accent); color: white; }
.w-100 { width: 100%; justify-content: center; }

/* ————————————————————————
   HERO SLIDER — FULL VIEWPORT
   ———————————————————————— */
.hero-wrapper {
    position: relative; width: 100%; overflow: visible;
    box-shadow: 0 40px 100px rgba(5,72,219,0.25);
}
.consen-slider { width: 100%; height: 100vh; min-height: 850px; position: relative; }

/* Slide Background with Ken Burns */
.slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center 30%;
    transform: scale(1.0); transition: transform 12s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.swiper-slide-active .slide-bg { transform: scale(1.1); }

/* Gradient Overlay — cinematic dark left-to-right */
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 18, 56, 0.90) 0%,
        rgba(0, 18, 56, 0.72) 40%,
        rgba(0, 18, 56, 0.30) 70%,
        rgba(0, 18, 56, 0.10) 100%
    );
}

/* Slide Inner container */
.slide-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    z-index: 10;
}

/* Slide Content — staggered entrance */
.slider-content { max-width: 760px; padding-top: 40px; }
.slider-content > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.swiper-slide-active .slider-content > * { opacity: 1; transform: translateY(0); }
.swiper-slide-active .slider-content > *:nth-child(1) { transition-delay: 0.1s; }
.swiper-slide-active .slider-content > *:nth-child(2) { transition-delay: 0.3s; }
.swiper-slide-active .slider-content > *:nth-child(3) { transition-delay: 0.5s; }
.swiper-slide-active .slider-content > *:nth-child(4) { transition-delay: 0.7s; }
.swiper-slide-active .slider-content > *:nth-child(5) { transition-delay: 0.9s; }

/* Sub Tag */
.slide-sub-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(5, 72, 219, 0.25); backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 72, 219, 0.4);
    color: #93C5FD; font-weight: 700; font-size: 13px; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 8px 20px; border-radius: 50px;
    margin-bottom: 25px;
}
.slide-sub-tag i { color: var(--consen-accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Slide Title */
.slide-title {
    font-size: 72px; font-weight: 900; line-height: 1.04; letter-spacing: -2.5px;
    color: white; margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.slide-title em { font-style: normal; display: block; }
.slide-title span { color: transparent; -webkit-text-stroke: 2px white; text-shadow: none; }

/* Description */
.slide-desc { font-size: 17px; color: rgba(203,213,225,0.9); line-height: 1.8; max-width: 620px; margin-bottom: 35px; }

/* Slide Action Buttons */
.slide-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }
.slide-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--consen-accent); color: white; border: 2px solid var(--consen-accent);
    padding: 16px 34px; border-radius: 50px; font-weight: 800; font-size: 15px;
    transition: var(--trans);
}
.slide-cta-primary:hover { background: white; color: var(--consen-accent); border-color: white; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(5,72,219,0.35); }
.slide-ghost-btn {
    display: inline-flex; align-items: center; gap: 10px;
    color: white; border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); padding: 16px 30px; border-radius: 50px;
    font-weight: 700; font-size: 15px; transition: var(--trans);
}
.slide-ghost-btn:hover { background: rgba(255,255,255,0.25); border-color: white; }

/* Slide Stats Row */
.slide-stat-row {
    display: flex; align-items: center; gap: 30px;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}
.slide-stat { display: flex; flex-direction: column; }
.slide-stat strong { color: white; font-size: 24px; font-weight: 900; line-height: 1; }
.slide-stat span { color: rgba(203,213,225,0.7); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.slide-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ————————————————————————
   RIGHT SIDE PHOTO NAV
   ———————————————————————— */
.custom-photo-nav {
    position: absolute !important; right: 40px !important; top: 50% !important;
    transform: translateY(-50%) !important; left: auto !important; bottom: auto !important;
    width: 90px !important; display: flex !important; flex-direction: column !important;
    gap: 12px !important; z-index: 100 !important; height: auto !important;
}
.swiper-pagination-bullet {
    width: 80px !important; height: 55px !important; border-radius: 10px !important;
    background-size: cover !important; background-position: center !important;
    opacity: 0.45 !important; transition: all 0.4s ease !important;
    border: 2px solid transparent !important; cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
    flex-shrink: 0 !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important; border-color: var(--consen-accent) !important;
    transform: scale(1.12) translateX(-18px) !important;
    box-shadow: 0 10px 30px rgba(5,72,219,0.5) !important;
}

/* ————————————————————————
   SLIDE ARROW NAV
   ———————————————————————— */
.slide-arrow-nav { position: absolute; bottom: 50px; left: 60px; display: flex; gap: 12px; z-index: 100; }
.slide-prev, .slide-next {
    width: 48px; height: 48px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--trans); font-size: 16px;
}
.slide-prev:hover, .slide-next:hover { background: var(--consen-accent); border-color: var(--consen-accent); }
/* Override swiper defaults */
.swiper-button-next::after, .swiper-button-prev::after { display: none !important; }

/* ————————————————————————
   SLIDE COUNTER
   ———————————————————————— */
.slide-counter {
    position: absolute; bottom: 56px; left: calc(60px + 130px); z-index: 100;
    color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 5px;
}
.slide-num { color: white; font-size: 22px; font-weight: 900; }
.slide-sep { font-size: 16px; }

/* ————————————————————————
   PROGRESS BAR
   ———————————————————————— */
.slide-progress-track {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: rgba(255,255,255,0.1); z-index: 100;
}
.slide-progress-fill {
    height: 100%; background: var(--consen-accent); width: 0%;
    transition: width 0.1s linear;
}

/* ————————————————————————
   GLASS FEATURE STRIP
   ———————————————————————— */
.hero-glass-strip {
    position: relative; z-index: 50;
    margin-top: -40px; margin-bottom: 10px;
}
.glass-strip-inner {
    background: rgba(2, 6, 23, 0.45); backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px; padding: 0; display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--trans);
}
.glass-strip-inner:hover {
    box-shadow: 0 40px 100px rgba(5, 72, 219, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.25);
}
.glass-strip-sep { width: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }
.glass-strip-box {
    display: flex; align-items: center; gap: 18px; padding: 28px 30px;
    transition: var(--trans); cursor: pointer;
}
.glass-strip-box:hover { background: rgba(5,72,219,0.15); }
/* =============================================
   INDUSTRIES — PREMIUM IMAGE CARDS
============================================= */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.industry-card {
    position: relative;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    cursor: pointer;
}

.ind-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 18, 56, 0.95) 85%);
    z-index: 1;
    transition: background 0.5s ease;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.industry-card:hover::before {
    transform: scale(1.1);
}

.industry-card:hover .ind-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 72, 219, 0.9) 90%);
}

.ind-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--consen-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.industry-card h4 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.ind-hover-info {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.ind-hover-info p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ind-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.ind-tags li {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ind-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--consen-accent);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ind-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Hover States for Content */
.industry-card:hover .ind-content {
    transform: translateY(-20px);
}

.industry-card:hover .ind-hover-info {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover .ind-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .ind-link i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .industries-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   HOW WE WORK — PROCESS STEPS
=========================================== */
.gs-icon {
    width: 52px; height: 52px; background: rgba(5,72,219,0.2); border: 1px solid rgba(5,72,219,0.3);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--consen-accent); flex-shrink: 0; transition: var(--trans);
}
.glass-strip-box:hover .gs-icon { background: var(--consen-accent); color: white; }
.gs-text { display: flex; flex-direction: column; gap: 4px; }
.gs-text strong { color: white; font-weight: 700; font-size: 15px; }
.gs-text span { color: rgba(203,213,225,0.65); font-size: 12px; }

/* ————————————————————————
   CONSEN SECTION TITLE
   ———————————————————————— */
.consen-section-title h5 {
    color: var(--consen-accent); text-transform: uppercase; letter-spacing: 2px;
    font-size: 13px; font-weight: 800; margin-bottom: 14px;
}
.consen-section-title h2 {
    font-size: 44px; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: var(--consen-dark);
}
.consen-section-title h2 span { color: var(--consen-accent); }
.consen-section-title.row { display: flex; justify-content: space-between; align-items: flex-end; }
.col-left { flex: 1; }

/* ————————————————————————
   SERVICE GRID
   ———————————————————————— */
.dreamit-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.dreamit-service-box {
    background: #ffffff; border: 1px solid rgba(2, 6, 23, 0.03);
    border-radius: 20px; padding: 40px 35px; position: relative; overflow: hidden;
    transition: var(--trans);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.dreamit-service-box::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--consen-accent); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dreamit-service-box:hover::after { transform: scaleX(1); }
.dreamit-service-box:hover { 
    background: white; 
    box-shadow: var(--shadow-float); 
    transform: translateY(-10px); 
    border-color: transparent;
}
.em-service-icon {
    width: 64px; height: 64px; border-radius: 14px; background: rgba(5,72,219,0.08);
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    color: var(--consen-accent); margin-bottom: 25px; transition: var(--trans);
}
.dreamit-service-box:hover .em-service-icon { background: var(--consen-accent); color: white; }
.dreamit-service-box h2 { font-size: 19px; margin-bottom: 12px; font-weight: 800; }
.service-number { font-size: 60px; color: rgba(0,18,56,0.04) !important; font-weight: 900; position: absolute; right: 20px; top: 15px; line-height: 1; }
.text-muted { color: var(--text-muted); }
.dreamit-service-box p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.read-more { color: var(--consen-accent); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.read-more:hover { gap: 14px; }

/* ————————————————————————
   ABOUT AREA
   ———————————————————————— */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img-wrap { position: relative; }
.consen-img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,18,56,0.15); animation: float 6s ease-in-out infinite alternate; }

.about-desc { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-top: 20px; }
.lines.style-two .line { height: 2px; width: 60px; background: rgba(0,18,56,0.1); position: relative; }
.lines.style-two .line::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 25px; background: var(--consen-accent); }
.dreamit-icon-title { margin-bottom: 15px; }
.dreamit-icon-title h4 { font-size: 18px; color: var(--consen-dark); }
.dreamit-icon-title h4 span { color: var(--consen-accent); }
.dreamit-icon-list { display: flex; flex-direction: column; gap: 12px; }
.dreamit-icon-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; color: var(--consen-dark); }
.dreamit-icon-list li i { color: var(--consen-accent); background: rgba(5,72,219,0.1); padding: 5px; border-radius: 50%; font-size: 12px; }

/* Counter */
.counter-vip {
    background: var(--consen-dark); border-radius: 20px; padding: 50px 60px;
    display: flex; align-items: center; gap: 50px; flex-wrap: wrap;
}
.counter-vip h3 { color: white; font-size: 20px; font-weight: 700; flex-basis: 250px; line-height: 1.4; }
.counter-row { display: flex; flex: 1; gap: 0; }
.counter-box { flex: 1; text-align: center; padding: 0 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.counter-box:last-child { border-right: none; }
.counter-val { font-size: 50px; font-weight: 900; color: var(--consen-accent); line-height: 1; }
.counter-val span { font-size: 30px; }
.counter-box p { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 600; margin-top: 10px; }

/* ————————————————————————
   CASE STUDIES — FEATURED ROW
   ———————————————————————— */
.cs-featured-row {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-bottom: 25px;
}
.cs-featured-side { display: flex; flex-direction: column; gap: 20px; }
.cs-featured-box {
    position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,18,56,0.12);
}
.cs-featured-box img {
    width: 100%; display: block; object-fit: cover; transition: transform 0.7s ease;
}
.cs-featured-box:not(.cs-small) img { height: 500px; }
.cs-small img { height: 237px; }
.cs-featured-box:hover img { transform: scale(1.06); }

.cs-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,18,56,0.85) 0%, rgba(0,18,56,0.4) 60%, transparent 100%);
    padding: 35px; display: flex; flex-direction: column; justify-content: flex-end;
    opacity: 0.9; transition: opacity 0.4s ease; backdrop-filter: blur(4px);
}
.cs-featured-box:hover .cs-featured-overlay { opacity: 1; backdrop-filter: blur(8px); }

.cs-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(5,72,219,0.35); border: 1px solid rgba(5,72,219,0.5);
    backdrop-filter: blur(8px); color: #93C5FD; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 50px;
    margin-bottom: 15px; width: fit-content;
}
.cs-featured-overlay h2 { color: white; font-size: 26px; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.cs-featured-overlay h3 { color: white; font-size: 20px; font-weight: 800; margin-bottom: 15px; line-height: 1.3; }

.cs-metrics { display: flex; gap: 25px; margin-bottom: 22px; }
.cs-metric { display: flex; flex-direction: column; }
.cs-metric strong { color: var(--consen-accent); font-size: 22px; font-weight: 900; line-height: 1; }
.cs-metric span { color: rgba(203,213,225,0.7); font-size: 11px; font-weight: 600; text-transform: uppercase; margin-top: 4px; letter-spacing: 1px; }

/* Filter Buttons */
.cs-filters { display: flex; gap: 10px; margin-bottom: 20px; }
.cs-filter-btn {
    background: transparent; color: var(--consen-dark); border: 1px solid #e2e8f0;
    padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
}
.cs-filter-btn:hover { border-color: var(--consen-accent); color: var(--consen-accent); }
.cs-filter-btn.active { background: var(--consen-accent); color: white !important; border-color: var(--consen-accent); }

.cs-link-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--consen-accent); color: white; padding: 10px 22px; border-radius: 50px;
    font-size: 13px; font-weight: 700; width: fit-content; transition: all 0.3s;
    transform: translateY(10px); opacity: 0;
}
.cs-featured-box:hover .cs-link-btn { transform: translateY(0); opacity: 1; }
.cs-link-btn:hover { background: white; color: var(--consen-accent); }

/* ————————————————————————
   CASE STUDIES — BOTTOM GRID
   ———————————————————————— */
.cs-grid-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.cs-grid-box {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,18,56,0.07); border: 1px solid rgba(0,18,56,0.05);
    transition: all 0.38s ease;
}
.cs-grid-box:hover { box-shadow: 0 20px 60px rgba(5,72,219,0.12); transform: translateY(-6px); }
.cs-grid-thumb { position: relative; overflow: hidden; }
.cs-grid-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cs-grid-box:hover .cs-grid-thumb img { transform: scale(1.06); }
.cs-grid-cat {
    position: absolute; top: 15px; left: 15px;
    background: var(--consen-accent); color: white; padding: 5px 14px;
    border-radius: 50px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.cs-grid-body { padding: 28px; }
.cs-grid-body h4 { font-size: 17px; font-weight: 800; color: var(--consen-dark); margin-bottom: 10px; line-height: 1.4; }
.cs-grid-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.cs-grid-stats {
    display: flex; gap: 20px; margin-bottom: 18px;
    padding: 14px 0; border-top: 1px solid rgba(0,18,56,0.06);
}
.cs-grid-stats span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.cs-grid-stats strong { color: var(--consen-accent); font-size: 15px; font-weight: 900; margin-right: 4px; }
.cs-prev:hover, .cs-next:hover { background: var(--consen-accent) !important; color: white !important; border-color: var(--consen-accent) !important; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(5,72,219,0.2); }

/* ————————————————————————
   FAQ & CONTACT FORM
   ———————————————————————— */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.accordion-consen { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: white; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,18,56,0.06); overflow: hidden; border: 1px solid rgba(0,18,56,0.05); }
.acc-header {
    padding: 20px 25px; font-weight: 700; font-size: 15px; color: var(--consen-dark);
    cursor: pointer; transition: all 0.3s; position: relative; padding-right: 50px;
}
.acc-header::after {
    content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 22px; color: var(--consen-accent); font-weight: 300; transition: all 0.3s;
}
.acc-item.active .acc-header { color: var(--consen-accent); background: rgba(5,72,219,0.03); }
.acc-item.active .acc-header::after { content: '−'; }
.acc-body { padding: 0 25px 22px; color: var(--text-muted); line-height: 1.75; font-size: 15px; display: none; }
.acc-item.active .acc-body { display: block; }

.faq-form-bg {
    background: white; padding: 50px; border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0,18,56,0.1); border: 1px solid rgba(0,18,56,0.05);
    position: sticky; top: 100px;
}
.form-title { font-size: 26px; color: var(--consen-dark); margin-bottom: 6px; font-weight: 800; }
.form-desc { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }
.consen-form input, .consen-form textarea, .consen-form select {
    width: 100%; border: 2px solid rgba(0,18,56,0.07); border-radius: 10px;
    padding: 15px 20px; margin-bottom: 18px; font-size: 15px; font-family: var(--font);
    outline: none; transition: border-color 0.3s; background: white; color: var(--consen-dark);
}
.consen-form input:focus, .consen-form textarea:focus { border-color: var(--consen-accent); box-shadow: 0 0 0 4px rgba(5,72,219,0.06); }
.consen-form textarea { resize: none; }
.mt-2 { margin-top: 8px; }

/* ————————————————————————
   FOOTER
   ———————————————————————— */
.consen-footer { position: relative; margin-top: 100px; }
.subscribe-area {
    background: linear-gradient(135deg, var(--consen-accent), #0a2d8f);
    padding: 55px 0; border-radius: 20px; position: relative; top: 50px;
    width: 82%; margin: 0 auto; z-index: 10;
    box-shadow: 0 30px 80px rgba(5,72,219,0.3);
}
.sub-grid { display: flex; justify-content: space-between; align-items: center; padding: 0 50px; }
.sub-title { color: white; font-size: 30px; font-weight: 800; }
.sub-form { display: flex; background: white; padding: 6px; border-radius: 50px; width: 460px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.sub-form input { flex: 1; border: none; outline: none; padding: 0 22px; font-size: 15px; border-radius: 50px; font-family: var(--font); }
.sub-form .btn { background: var(--consen-dark); color: white; border: none; padding: 14px 28px; border-radius: 50px; cursor: pointer; font-weight: 700; font-size: 15px; font-family: var(--font); transition: background 0.3s; }
.sub-form .btn:hover { background: var(--consen-accent); }

.footer-mid { padding: 130px 0 70px; background: var(--consen-dark) !important; color: white; }
.bg-dark { background: var(--consen-dark) !important; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.f-desc { color: rgba(203,213,225,0.7); line-height: 1.8; margin-bottom: 28px; font-size: 14px; }
.f-social { display: flex; gap: 12px; flex-wrap: wrap; }
.f-social a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--trans); border: 1px solid rgba(255,255,255,0.08); font-size: 14px;
}
.f-social a:hover { background: var(--consen-accent); color: white; border-color: var(--consen-accent); transform: translateY(-3px); }

.footer-col h4 {
    color: white; font-size: 18px; margin-bottom: 25px; font-weight: 700;
    position: relative; padding-bottom: 15px;
}
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--consen-accent); }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a { color: rgba(203,213,225,0.7); font-size: 14px; font-weight: 500; transition: var(--trans); display: inline-block; }
.footer-col ul li a:hover { color: white; transform: translateX(5px); }
.pl-lg { padding-left: 20px; }

.f-post { display: flex; gap: 14px; margin-bottom: 22px; align-items: center; }
.f-post img { width: 68px; height: 58px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.f-p-txt a { color: rgba(203,213,225,0.9); font-weight: 600; font-size: 13px; line-height: 1.5; display: block; margin-bottom: 5px; transition: color 0.3s; }
.f-p-txt a:hover { color: var(--consen-accent); }
.f-p-txt span { color: var(--consen-accent); font-size: 12px; font-weight: 700; }

.footer-bottom { padding: 22px 0; background: #000c26 !important; }
.bg-darker { background: #000c26 !important; color: rgba(100,116,139,0.8); }
.footer-bottom p { margin: 0; font-size: 14px; }

/* ————————————————————————
   ABOUT PAGE EXTRAS
   ———————————————————————— */
.breadcumb-area { padding: 140px 0 90px; text-align: center; background: linear-gradient(135deg, var(--consen-dark) 0%, var(--consen-accent) 100%); }
.breadcumb-title { color: white; font-size: 52px; font-weight: 900; margin-bottom: 15px; }
.breadcumb-menu { display: flex; justify-content: center; gap: 10px; }
.breadcumb-menu li { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); }
.breadcumb-menu li::after { content: '›'; margin-left: 10px; }
.breadcumb-menu li:last-child::after { display: none; }
.breadcumb-menu a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcumb-menu a:hover { color: white; }



/* Subpage nav in light mode */
.subpage .consen-nav { background: white; box-shadow: 0 2px 30px rgba(0,18,56,0.07); }

/* ————————————————————————
   SECTION SHARED HELPERS
   ———————————————————————— */
.section-sub-desc {
    color: var(--text-muted); font-size: 16px; max-width: 680px; margin: 18px auto 0; line-height: 1.8;
}

/* ————————————————————————
   INDUSTRIES GRID
   ———————————————————————— */
.industries-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.industry-card {
    background: white; border: 1px solid rgba(0,18,56,0.06);
    border-radius: 16px; padding: 32px 26px; position: relative; overflow: hidden;
    transition: all 0.38s ease; cursor: pointer;
}
.industry-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--consen-accent), #3b82f6);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { 
    box-shadow: var(--shadow-float); 
    transform: translateY(-8px); 
    border-color: rgba(5,72,219,0.15);
}

.ind-icon-wrap {
    width: 60px; height: 60px; border-radius: 14px;
    background: rgba(5,72,219,0.08); color: var(--consen-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px; transition: all 0.38s ease;
}
.industry-card:hover .ind-icon-wrap { background: var(--consen-accent); color: white; }

.industry-card h4 { font-size: 17px; font-weight: 800; color: var(--consen-dark); margin-bottom: 10px; }
.industry-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }

.ind-tags {
    display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px;
}
.ind-tags li {
    background: rgba(5,72,219,0.06); color: var(--consen-accent);
    font-size: 11px; font-weight: 700; padding: 4px 12px;
    border-radius: 50px; letter-spacing: 0.5px;
}
.ind-link {
    color: var(--consen-accent); font-weight: 700; font-size: 13.5px;
    display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.ind-link:hover { gap: 14px; }

/* ————————————————————————
   HOW WE WORK — PROCESS
   ———————————————————————— */
.bg-process { background: var(--consen-dark); }
.bg-process .consen-section-title h5 { color: rgba(147,197,253,0.9); }
.bg-process .consen-section-title h2 { color: white; }
.bg-process .consen-section-title h2 span { color: var(--consen-accent); }

.process-steps {
    display: flex; align-items: flex-start; gap: 0;
}
.process-step {
    flex: 1; text-align: center; padding: 40px 25px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; position: relative; transition: all 0.38s ease;
}
.process-step:hover { background: rgba(5,72,219,0.15); border-color: rgba(5,72,219,0.3); transform: translateY(-8px); }
.ps-number {
    font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--consen-accent);
    text-transform: uppercase; margin-bottom: 20px;
}
.ps-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(5,72,219,0.2); border: 2px solid rgba(5,72,219,0.3);
    color: var(--consen-accent); font-size: 26px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; transition: all 0.38s ease;
}
.process-step:hover .ps-icon { background: var(--consen-accent); border-color: var(--consen-accent); color: white; }
.process-step h4 { color: white; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.process-step p { color: rgba(203,213,225,0.65); font-size: 13.5px; line-height: 1.75; }

.process-connector {
    display: flex; align-items: center; justify-content: center;
    color: var(--consen-accent); font-size: 18px; padding: 0 10px;
    flex-shrink: 0; margin-top: 55px; opacity: 0.5;
}

/* ————————————————————————
   CLIENT LOGOS STRIP
   ———————————————————————— */
.clients-logo-strip {
    display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; margin-bottom: 60px;
}
.client-logo-box {
    background: var(--bg-light); border: 1px solid rgba(0,18,56,0.06);
    border-radius: 12px; padding: 20px 15px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; transition: all 0.3s ease; cursor: default;
}
.client-logo-box:hover { border-color: var(--consen-accent); box-shadow: 0 8px 30px rgba(5,72,219,0.1); }
.client-name { font-size: 13px; font-weight: 800; color: var(--text-muted); letter-spacing: 0.5px; }
.client-logo-box:hover .client-name { color: var(--consen-accent); }

/* Testimonials */
.testimonials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card {
    background: white; border: 1px solid rgba(0,18,56,0.06); border-radius: 16px;
    padding: 35px 30px; box-shadow: 0 8px 30px rgba(0,18,56,0.06); transition: all 0.38s ease;
}
.testimonial-card:hover { box-shadow: 0 20px 60px rgba(5,72,219,0.1); transform: translateY(-5px); }
.testi-quote { color: var(--consen-accent); font-size: 28px; margin-bottom: 18px; opacity: 0.3; }
.testimonial-card > p { color: var(--text-muted); font-size: 15px; line-height: 1.8; font-style: italic; margin-bottom: 25px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--consen-accent); }
.testi-author strong { display: block; color: var(--consen-dark); font-size: 15px; font-weight: 800; }
.testi-author span { color: var(--consen-accent); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }

/* ————————————————————————
   MID-PAGE CTA BANNER
   ———————————————————————— */
.cta-banner-area { padding: 0 0 0; }
.cta-banner-inner {
    background: linear-gradient(135deg, var(--consen-dark) 0%, #0a1f5e 50%, var(--consen-accent) 100%);
    border-radius: 24px; padding: 70px 80px;
    display: flex; justify-content: space-between; align-items: center; gap: 60px;
    position: relative; overflow: hidden;
    box-shadow: 0 30px 80px rgba(5,72,219,0.3);
}
.cta-banner-inner::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-text { flex: 1; position: relative; }
.cta-banner-text h5 { color: #93C5FD; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 18px; }
.cta-banner-text h2 { color: white; font-size: 38px; font-weight: 900; line-height: 1.2; letter-spacing: -1px; margin-bottom: 16px; }
.cta-banner-text h2 span { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.7); }
.cta-banner-text p { color: rgba(203,213,225,0.75); font-size: 15px; line-height: 1.75; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; position: relative; }

/* ————————————————————————
   INSIGHTS / BLOG
   ———————————————————————— */
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 25px; }
.insights-side-col { display: flex; flex-direction: column; gap: 22px; }

.insight-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,18,56,0.07); border: 1px solid rgba(0,18,56,0.05);
    transition: all 0.38s ease;
}
.insight-card:hover { box-shadow: 0 20px 60px rgba(5,72,219,0.1); transform: translateY(-5px); }

.insight-thumb { position: relative; overflow: hidden; }
.insight-thumb img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.insight-card:hover .insight-thumb img { transform: scale(1.05); }
.insight-thumb-sm img { height: 110px !important; }

.insight-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--consen-accent); color: white;
    padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
}
.insight-body { padding: 28px; }
.insight-body-sm { padding: 16px 20px 20px; }
.insight-date { color: var(--text-muted); font-size: 12px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.insight-date i { color: var(--consen-accent); }
.insight-body h3 { font-size: 20px; font-weight: 800; color: var(--consen-dark); line-height: 1.4; margin-bottom: 14px; }
.insight-body-sm h4 { font-size: 14.5px; font-weight: 800; color: var(--consen-dark); line-height: 1.45; margin-bottom: 12px; }
.insight-body p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 18px; }

.insight-card-sm { display: flex; flex-direction: row; overflow: hidden; }
.insight-card-sm .insight-thumb-sm { width: 130px; flex-shrink: 0; }
.insight-card-sm .insight-thumb-sm img { width: 130px; height: 100% !important; object-fit: cover; }

/* ————————————————————————
   CEO / FOUNDER IMAGE FRAME SECTION
   ———————————————————————— */
.ceo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
}
.ceo-img-side { position: relative; }
.ceo-frame-wrapper { position: relative; display: inline-block; width: 100%; }

/* Main photo */
.ceo-main-img {
    position: relative; z-index: 2; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-float);
    animation: float 7s ease-in-out infinite alternate;
}
.ceo-main-img img { width: 100%; height: 560px; object-fit: cover; display: block; }

/* Decorative border frame à la Consen */
.ceo-frame-border {
    position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
    border: 3px solid var(--consen-accent); border-radius: 24px;
    z-index: 1; pointer-events: none;
}

/* Accent dots */
.ceo-accent-dot {
    position: absolute; border-radius: 50%; z-index: 5;
}
.dot1 {
    width: 80px; height: 80px; background: rgba(5,72,219,0.1);
    border: 3px solid rgba(5,72,219,0.25); top: -30px; right: -30px;
    animation: bounceAnim 3s ease-in-out infinite;
}
.dot2 {
    width: 40px; height: 40px; background: var(--consen-accent);
    bottom: 40px; left: -20px; opacity: 0.7;
    animation: bounceAnim 4s ease-in-out infinite 1s;
}
@keyframes bounceAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Experience badge */
.ceo-badge {
    position: absolute; bottom: -25px; right: 30px; z-index: 10;
    background: var(--consen-accent); border-radius: 16px;
    padding: 18px 24px; box-shadow: 0 15px 40px rgba(5,72,219,0.4);
}
.ceo-badge-inner { text-align: center; }
.ceo-badge-inner strong { display: block; color: white; font-size: 36px; font-weight: 900; line-height: 1; }
.ceo-badge-inner span { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Floating stat card */
.ceo-float-card {
    position: absolute; top: 40px; left: -35px; z-index: 10;
    background: white; border-radius: 14px; padding: 16px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 15px 50px rgba(0,18,56,0.15); border: 1px solid rgba(0,18,56,0.05);
    animation: bounceAnim 3.5s ease-in-out infinite 0.5s;
}
.ceo-float-card i { color: var(--consen-accent); font-size: 22px; }
.ceo-float-card strong { display: block; color: var(--consen-dark); font-size: 22px; font-weight: 900; line-height: 1; }
.ceo-float-card span { color: var(--text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }

/* CEO text side */
.ceo-quote {
    border-left: 4px solid var(--consen-accent); padding: 20px 25px;
    background: rgba(5,72,219,0.03); border-radius: 0 12px 12px 0;
    font-size: 16px; font-style: italic; color: var(--text-muted); line-height: 1.85;
    margin: 20px 0 25px;
}
.ceo-sig {
    display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.ceo-sig-img { height: 42px; filter: drop-shadow(0 2px 6px rgba(0,18,56,0.12)); }
.ceo-sig strong { display: block; font-size: 18px; color: var(--consen-dark); font-weight: 800; }
.ceo-sig span { color: var(--consen-accent); font-size: 13px; font-weight: 700; }

.ceo-pillars { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.ceo-pillar {
    display: flex; align-items: center; gap: 10px; background: rgba(5,72,219,0.05);
    border: 1px solid rgba(5,72,219,0.12); border-radius: 50px; padding: 10px 18px;
    font-size: 13px; font-weight: 700; color: var(--consen-dark); transition: all 0.3s;
}
.ceo-pillar:hover { background: var(--consen-accent); color: white; border-color: var(--consen-accent); }
.ceo-pillar:hover i { color: white; }
.ceo-pillar i { color: var(--consen-accent); font-size: 14px; }

/* ————————————————————————
   PARALLAX BANNER
   ———————————————————————— */
.parallax-banner {
    position: relative; height: 560px; overflow: hidden;
    display: flex; align-items: center;
}
.parallax-bg {
    position: absolute; inset: -80px 0; background-size: cover; background-position: center;
    will-change: transform; transition: transform 0.05s linear;
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(0,18,56,0.93) 0%, rgba(0,18,56,0.78) 45%, rgba(5,72,219,0.55) 100%);
}
.parallax-content {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center;
    padding-top: 0;
}
.parallax-text h2 {
    font-size: 44px; font-weight: 900; color: white; line-height: 1.15;
    letter-spacing: -1.5px; margin-bottom: 16px;
}
.parallax-text h2 span { color: transparent; -webkit-text-stroke: 2px white; }
.parallax-text p { color: rgba(203,213,225,0.8); font-size: 16px; line-height: 1.8; }

.parallax-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.video-play-btn {
    position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
}
.vpb-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
.vpb-inner {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--consen-accent); color: white; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 40px rgba(5,72,219,0.5); transition: all 0.3s;
    padding-left: 4px; /* optical centre for play icon */
}
.vpb-inner:hover { transform: scale(1.1); background: white; color: var(--consen-accent); }
.play-label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

.parallax-float-stats {
    display: flex; flex-direction: column; gap: 20px;
    border-left: 1px solid rgba(255,255,255,0.15); padding-left: 40px;
}
.pf-stat strong { display: block; color: white; font-size: 28px; font-weight: 900; line-height: 1; }
.pf-stat span { color: rgba(203,213,225,0.6); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ————————————————————————
   PROCESS 2 — CONSEN 2×2 GRID WITH IMAGE FRAME
   ———————————————————————— */
.process2-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.process2-frame {
    position: relative; border-radius: 20px; overflow: visible;
}
.process2-frame img {
    width: 100%; height: 520px; object-fit: cover; border-radius: 20px; display: block;
    box-shadow: 0 30px 80px rgba(0,18,56,0.15);
}
.pf2-border-frame {
    position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px;
    border: 3px solid rgba(5,72,219,0.3); border-radius: 24px; pointer-events: none;
}
.pf2-accent-line {
    position: absolute; bottom: -20px; left: 30px; right: 30px;
    height: 5px; background: linear-gradient(90deg, var(--consen-accent), rgba(5,72,219,0));
    border-radius: 50px;
}
.pf2-tag {
    position: absolute; bottom: 35px; left: -25px; z-index: 10;
    background: white; border-radius: 50px; padding: 14px 22px;
    display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--consen-dark);
    box-shadow: 0 15px 50px rgba(0,18,56,0.15); border: 1px solid rgba(0,18,56,0.05);
}
.pf2-tag i { color: #22c55e; font-size: 18px; }

/* The 2×2 process boxes */
.process2-boxes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.p2-box {
    background: white; border: 1px solid rgba(0,18,56,0.06); border-radius: 18px;
    padding: 32px 28px; position: relative; overflow: hidden;
    transition: all 0.38s ease; cursor: default;
}
.p2-box:hover, .p2-box.active {
    background: var(--consen-dark); box-shadow: 0 20px 60px rgba(0,18,56,0.2);
    transform: translateY(-6px); border-color: var(--consen-dark);
}
.p2-num {
    position: absolute; top: 15px; right: 18px;
    font-size: 64px; font-weight: 900; line-height: 1;
    color: rgba(0,18,56,0.04); transition: all 0.38s;
}
.p2-box:hover .p2-num, .p2-box.active .p2-num { color: rgba(255,255,255,0.05); }
.p2-icon {
    width: 55px; height: 55px; border-radius: 14px;
    background: rgba(5,72,219,0.08); color: var(--consen-accent);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    margin-bottom: 18px; transition: all 0.38s;
}
.p2-box:hover .p2-icon, .p2-box.active .p2-icon { background: var(--consen-accent); color: white; }
.p2-box h4 { font-size: 18px; color: var(--consen-dark); font-weight: 800; margin-bottom: 10px; transition: color 0.38s; }
.p2-box h4 span { color: var(--consen-accent); }
.p2-box:hover h4, .p2-box.active h4 { color: white; }
.p2-box:hover h4 span, .p2-box.active h4 span { color: #93C5FD; }
.p2-box p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; transition: color 0.38s; }
/* ————————————————————————
   HEADER BUTTON GROUP & AUDIT BUTTONS
   ———————————————————————— */
.header-button-group {
    display: flex; gap: 12px; align-items: center;
}
.audit-btn {
    background: transparent; border: 2px solid var(--consen-accent);
    color: var(--consen-accent); padding: 10px 18px; font-size: 13px;
    font-weight: 800; border-radius: 50px; text-transform: uppercase;
    letter-spacing: 0.5px; transition: all 0.3s;
}
.seo-audit { border-color: #3b82f6; color: #3b82f6; }
.mkt-audit { border-color: #f59e0b; color: #f59e0b; }

.seo-audit:hover { background: #3b82f6; color: white; box-shadow: 0 10px 25px rgba(59,130,246,0.3); }
.mkt-audit:hover { background: #f59e0b; color: white; box-shadow: 0 10px 25px rgba(245,158,11,0.3); }

.main-cta {
    background: var(--consen-accent); color: white; padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(5,72,219,0.3);
}
.main-cta:hover { background: var(--consen-dark); }

/* ————————————————————————
   WHATSAPP QUALIFIER MODAL (PINCH STRATEGY)
   ———————————————————————— */
.wa-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,18,56,0.85);
    backdrop-filter: blur(8px); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.4s;
}
.wa-modal-overlay.active { opacity: 1; pointer-events: auto; }

.wa-modal-card {
    background: white; width: 100%; max-width: 540px; border-radius: 24px;
    overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: translateY(40px); transition: transform 0.4s;
}
.wa-modal-overlay.active .wa-modal-card { transform: translateY(0); }

.wa-modal-header {
    background: linear-gradient(135deg, var(--consen-dark) 0%, var(--consen-accent) 100%);
    padding: 35px 40px; position: relative; color: white;
}
.wa-modal-header h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.wa-modal-header p { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }
.wa-close {
    position: absolute; top: 25px; right: 25px; color: white;
    font-size: 20px; cursor: pointer; opacity: 0.6; transition: 0.3s;
}
.wa-close:hover { opacity: 1; transform: rotate(90deg); }

.wa-modal-body { padding: 40px; min-height: 400px; display: flex; flex-direction: column; }
.wa-step { display: none; width: 100%; animation: slideIn 0.4s ease-out; }
.wa-step.active { display: block; }

@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.wa-input-group { margin-bottom: 25px; }
.wa-input-group label {
    display: block; font-size: 13px; font-weight: 800; color: var(--consen-dark);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.wa-input-group input, .wa-input-group select {
    width: 100%; padding: 14px 18px; border: 1.5px solid rgba(0,18,56,0.1);
    border-radius: 12px; font-family: inherit; font-size: 15px; outline: none;
    transition: 0.3s;
}
.wa-input-group input:focus { border-color: var(--consen-accent); box-shadow: 0 0 0 4px rgba(5,72,219,0.08); }

.wa-service-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px;
}
.wa-service-opt {
    border: 1.5px solid rgba(0,18,56,0.1); border-radius: 16px; padding: 20px;
    text-align: center; cursor: pointer; transition: 0.3s;
}
.wa-service-opt i { font-size: 24px; color: var(--text-muted); margin-bottom: 12px; display: block; }
.wa-service-opt span { font-size: 14px; font-weight: 700; color: var(--text-muted); }
.wa-service-opt:hover { border-color: var(--consen-accent); background: rgba(5,72,219,0.03); }
.wa-service-opt.selected { border-color: var(--consen-accent); background: var(--consen-accent); }
.wa-service-opt.selected i, .wa-service-opt.selected span { color: white; }

.wa-modal-footer {
    padding: 0 40px 40px; display: flex; justify-content: space-between; align-items: center;
}
.wa-next-btn {
    background: var(--consen-accent); color: white; border: none;
    padding: 14px 30px; border-radius: 50px; font-weight: 800;
    cursor: pointer; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 25px rgba(5,72,219,0.3); transition: 0.3s;
}
.wa-next-btn:hover { background: var(--consen-dark); transform: translateY(-2px); }
.wa-prev-btn {
    color: var(--text-muted); font-weight: 700; font-size: 14px; cursor: pointer;
}

/* Floating WhatsApp Trigger */
.wa-float-trigger {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    background: #25d366; color: white; width: 65px; height: 65px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; cursor: pointer; box-shadow: 0 15px 40px rgba(37,211,102,0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-float-trigger:hover { transform: scale(1.1) rotate(15deg); }
.wa-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25d366; opacity: 0.4; z-index: -1;
    animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.8); opacity: 0; } }




/* ————————————————————————
   PREMIUM SECTION STYLING
   ———————————————————————— */
.premium-white-intro { background: #fff; position: relative; z-index: 10; margin-top: -50px; border-radius: 60px 60px 0 0; }
.premium-white-intro::before {
    content: ''; position: absolute; top: -100px; left: 0; width: 100%; height: 200px;
    background: linear-gradient(to top, #fff 50%, transparent 100%); pointer-events: none;
}

.modern-roi-card {
    padding: 45px 35px; border-radius: 24px; text-align: center;
    transition: var(--trans); position: relative; overflow: hidden;
}
.modern-roi-card:hover { transform: translateY(-10px); background: rgba(14,165,233,0.1) !important; border-color: var(--consen-accent); }
.roi-icon-wrap {
    width: 60px; height: 60px; border-radius: 50%; background: rgba(5, 72, 219, 0.1);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
}
.roi-icon-wrap i { color: var(--consen-accent); font-size: 24px; }
.modern-roi-card h4 { color: white; font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.modern-roi-card p { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; }

/* Service Light Cards */
.service-light-card {
    background: white; padding: 50px 40px; border-radius: 30px; border: 1px solid #e2e8f0;
    transition: var(--trans);
}
.service-light-card:hover { transform: translateY(-12px); border-color: var(--consen-accent); box-shadow: var(--shadow-lg); }
.sl-icon { font-size: 32px; color: var(--consen-accent); margin-bottom: 25px; }
.sl-title { font-size: 22px; font-weight: 800; color: var(--consen-dark); margin-bottom: 15px; }
.sl-desc { font-size: 15px; color: #64748b; line-height: 1.7; margin-bottom: 25px; }
.sl-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--consen-dark); display: flex; align-items: center; gap: 8px; }
.sl-link:hover { color: var(--consen-accent); }

/* Industry Cards Overlay */
.ind-card {
    position: relative; border-radius: 30px; overflow: hidden; height: 500px;
}
.ind-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.ind-card:hover img { transform: scale(1.08); }
.ind-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.95) 0%, rgba(2,6,23,0.2) 60%, transparent 100%);
}
.ind-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
}
.ind-desc { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s; }
.ind-card:hover .ind-desc { max-height: 100px; opacity: 1; margin-top: 15px; }

/* Spacing Helpers */
.mb-100 { margin-bottom: 100px; }
.mb-80 { margin-bottom: 80px; }
.mb-60 { margin-bottom: 60px; }

@media (max-width: 1199px) {
    .wide-container { padding: 0 40px; }
    .nav-links > li > a { padding: 28px 12px; font-size: 14px; }
}

@media (max-width: 991px) {
    .header-top-bar { display: none; }
    .mobile-nav-toggle { display: block !important; }
    
    .nav-links {
        position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
        background: white; flex-direction: column; align-items: flex-start;
        padding: 40px; overflow-y: auto; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000; display: block;
    }
    .nav-links.active { left: 0; }
    .nav-links > li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links > li > a { padding: 20px 0; width: 100%; justify-content: space-between; border: none; }
    
    .mega-menu {
        position: static; box-shadow: none; border: none; padding: 0;
        max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
    }
    .has-mega.active .mega-menu { display: block; max-height: 2000px; }
    .mega-inner { display: block !important; padding: 0 0 20px 20px; }
    .mega-col { padding: 15px 0 !important; border: none; border-bottom: 1px solid rgba(0,0,0,0.03); }
    .mega-cta-col { display: none !important; }
    
    .hero-glass-strip { margin-top: 0; }
    .glass-strip-inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .mobile-nav-toggle { display: none !important; }
    .nav-links { display: flex !important; }
    .mega-menu { display: none; }
    .has-mega:hover .mega-menu { display: block !important; }
}

@media (max-width: 767px) {
    .glass-strip-inner { grid-template-columns: 1fr; }
    .cs-featured-row { grid-template-columns: 1fr; }
    .cs-grid-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .sub-form { width: 100%; }
    .sub-grid { flex-direction: column; text-align: center; gap: 30px; }
}


/* =========================================================================
   ANTIGRAVITY 2030 OVERHAUL ADDITIONS 
   ========================================================================= */

body { font-family: 'Inter', sans-serif !important; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif !important; letter-spacing: -0.02em; }

/* Glassmorphism 2.0 applied to Navigation */
.mega-menu, .consen-nav {
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(0, 18, 56, 0.05);
}

.consen-nav.sticky {
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 10px 40px rgba(0, 18, 56, 0.08) !important;
}

/* Micro-Interactions (Cubic Bezier Easing) */
.btn, .consen-pill-btn, button, .mega-cta-btn, .header-text-link {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.btn:hover, .consen-pill-btn:hover, .mega-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(5,72,219,0.2) !important;
}

/* Improved nav layout for extra links */
@media (min-width: 1400px) {
    .nav-links li a { font-size: 14px; padding: 35px 8px; }
}
@media (max-width: 1399px) {
    .nav-links li a { font-size: 13px; padding: 35px 5px; }
}
@media (max-width: 1199px) {
    /* Destructive 'display: none !important' removed to allow the mobile-active script class to function */
}


/* --- V3 PREMIUM LIGHT MEGA MENUS --- */
.consen-nav {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links > li {
    position: relative;
    padding: 10px 0;
}
.nav-links > li > a {
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links > li:hover > a {
    color: var(--consen-accent);
}
.nav-icon {
    font-size: 10px;
    transition: transform 0.3s;
}
.nav-links > li:hover .nav-icon {
    transform: rotate(180deg);
}

/* Bright White Mega Menu Dropdowns */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    width: 850px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    z-index: 999;
    pointer-events: none;
}
.nav-links > li:first-child .mega-menu {
    left: 0;
    transform: translateX(0) translateY(20px);
}
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.nav-links > li:first-child:hover .mega-menu {
    transform: translateX(0) translateY(0);
}

.mega-inner {
    display: flex;
    padding: 0;
    margin: 0;
}
.mega-col {
    flex: 1;
    padding: 40px;
    border-right: 1px solid rgba(0,0,0,0.05);
}
.mega-col:last-child {
    border-right: none;
}
.mega-col-title {
    color: var(--consen-accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-col ul li {
    margin-bottom: 15px;
}
.mega-col ul li:last-child {
    margin-bottom: 0;
}
.mega-col ul li a {
    color: #334155;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: -12px;
}
.mega-col ul li a i {
    color: var(--consen-accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.mega-col ul li a:hover {
    color: var(--consen-accent);
    background: #f8fafc;
    transform: translateX(5px);
}
.mega-col ul li a:hover i {
    transform: scale(1.2);
}

.mega-cta-col {
    padding: 0 !important;
    background: #f8fafc;
    min-width: 280px;
    position: relative;
}
.mega-image-box {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.mega-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,6,23,0.9) 0%, rgba(2,6,23,0.7) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mega-image-overlay h4 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}
.mega-image-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 20px;
}
.mega-cta-btn {
    display: inline-block;
    background: white;
    color: var(--consen-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}
.mega-cta-btn:hover {
    background: var(--consen-accent);
    color: white;
}


/* --- V4 REDESIGN --- */
.nav-links > li > a {
    font-size: 12px !important;
}
.header-button-group a.consen-pill-btn {
    font-size: 11px !important;
    padding: 10px 20px !important;
}

/* Balance Hero Slider - Left Aligned & Responsive */
.slider-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
    position: relative;
    z-index: 10;
    padding-left: 15px;
    padding-top: 120px; /* Padded downwards so it isn't hidden by the nav */
}
.slide-title {
    font-size: clamp(40px, 5.5vw, 75px) !important;
    line-height: 1.1;
}
.slide-desc {
    font-size: clamp(15px, 1.8vw, 18px) !important;
    max-width: 650px;
    margin: 0 0 30px 0 !important;
}
.slide-actions, .slide-stat-row {
    justify-content: flex-start !important;
}

/* Faded African Pattern on Left Images */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: url('../images/african pattern.png') repeat;
    background-size: 400px;
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Glowing Shadow relocated to pure box-shadow above */

/* Modern ROI Cards */
.modern-roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: -120px;
    position: relative;
    z-index: 20;
    padding: 0 5vw;
}
.modern-roi-card {
    background: rgba(2, 6, 23, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 35px 25px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
}
.modern-roi-card:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.05);
    border-top: 1px solid var(--consen-accent);
}

/* Premium Industry Swiper V4 */
.industry-swiper-v4 {
    padding-bottom: 80px;
    padding-left: 5vw;
}
.industry-swiper-v4 .swiper-slide {
    width: 380px;
}
.ind-card {
    position: relative;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ind-card:hover img {
    transform: scale(1.08);
}
.ind-card .ind-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.2) 60%, transparent 100%);
    opacity: 0.95;
    transition: opacity 0.4s;
}
.ind-card:hover .ind-overlay {
    opacity: 0.8;
}
.ind-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}
.ind-desc {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    height: 0;
    overflow: hidden;
}
.ind-card:hover .ind-desc {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 20px;
}
.industry-swiper-v4 .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
    opacity: 1;
}
.industry-swiper-v4 .swiper-pagination-bullet-active {
    background: var(--consen-accent);
}


/* --- V5 SERVICES LIGHT GRID --- */
.services-light-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-light-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}
.service-light-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--consen-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-light-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}
.service-light-card:hover::before {
    transform: scaleX(1);
}
.sl-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--consen-accent);
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.service-light-card:hover .sl-icon {
    background: var(--consen-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}
.sl-title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.sl-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.sl-link {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.sl-link i {
    color: var(--consen-accent);
    transition: transform 0.3s;
}
.service-light-card:hover .sl-link i {
    transform: translateX(5px);
}

/* ============================================================
   GLOBAL DARK SECTION AFRICAN PATTERN FADE
   Ensures premium texture across top bar, sliders, and footers.
   ============================================================ */
.header-top-bar,
.footer-mid,
.breadcumb-area,
.premium-cards,
.premium-industry-slider,
.bg-dark,
.mega-cta-box,
.counter-vip,
.unique-service-block,
.subscribe-area {
    position: relative;
}

.subscribe-area {
    overflow: hidden; /* Keep pattern inside the 20px rounded corners */
}

.header-top-bar::before,
.footer-mid::before,
.breadcumb-area::before,
section.premium-cards::before,
section.premium-industry-slider::before,
.bg-dark::before,
.mega-cta-box::before,
.counter-vip::before,
.unique-service-block::before,
.subscribe-area::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/african pattern.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.06; 
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 80%);
    mask-image: linear-gradient(to right, transparent, black 80%);
}

.subscribe-area::before {
    opacity: 0.12; /* Slightly higher on vibrant blue for visibility */
}

.header-top-inner,
.footer-grid,
.breadcumb-content,
.wide-container,
.mega-cta-box h4,
.mega-cta-box p,
.mega-cta-btn,
.ai-method-grid,
.consen-section-title,
.sub-grid {
    position: relative;
    z-index: 1;
}

/* ============================================================
   GLOBAL BREADCRUMB BALANCING
   ============================================================ */
.breadcumb-area {
    text-align: left !important;
    padding: 230px 0 100px 0 !important;
}

.breadcumb-menu {
    justify-content: flex-start !important;
}

.breadcumb-area .container {
    max-width: 1440px !important;
    padding: 0 40px !important;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .breadcumb-area {
        padding: 180px 0 80px 0 !important;
    }
    .breadcumb-area .container {
        padding: 0 40px !important;
    }
}
@media (max-width: 767px) {
    .breadcumb-area .container {
        padding: 0 40px !important;
    }
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ============================================================ */
@media (max-width: 767px) {
    /* Base Spacing & Layout */
    .section, .padding-top-bottom { padding: 60px 0 !important; }
    .wide-container { padding: 0 40px !important; }
    .pb-60 { padding-bottom: 30px !important; }
    
    /* Typography Overrides */
    .slide-title { font-size: 38px !important; line-height: 1.15 !important; margin-bottom: 15px !important; letter-spacing: -1px !important; }
    .premium-title { font-size: 32px !important; line-height: 1.2 !important; margin-bottom: 20px !important; }
    .consen-section-title h2 { font-size: 28px !important; line-height: 1.25 !important; }
    .slide-desc { font-size: 15px !important; margin-bottom: 25px !important; }
    
    /* Hero Slider Layouts */
    .slider-content { padding-top: 100px !important; padding-right: 0 !important; }
    .slide-actions { padding-bottom: 20px !important; margin-bottom: 25px !important; display: flex !important; flex-direction: column; width: 100%; gap: 15px !important; }
    .slide-cta-primary, .slide-ghost-btn { width: 100% !important; justify-content: center !important; text-align: center !important; display: flex !important; }
    .slide-stat-row { flex-wrap: wrap !important; gap: 15px !important; border-top: none !important; padding-top: 10px !important; }
    .slide-stat-sep { display: none !important; }
    
    /* Remove large elements on small screens */
    .slide-pointer, .custom-photo-nav, .slide-counter { display: none !important; }
    .slide-arrow-nav { left: 20px !important; bottom: 20px !important; }
    
    /* Glass Strip & Feature Boxes */
    .hero-glass-strip { margin-top: 20px !important; }
    .glass-strip-inner { grid-template-columns: 1fr !important; padding: 20px !important; gap: 15px !important; box-shadow: none !important; background: transparent !important; border: none !important; }
    .glass-strip-box { padding: 20px !important; background: rgba(2, 6, 23, 0.8) !important; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
    .glass-strip-sep { display: none !important; }
    
    /* Major Grids -> Stacking */
    .about-grid, 
    .dreamit-service-grid, 
    .cs-featured-row, 
    .cs-grid-row, 
    .faq-grid, 
    .footer-grid,
    .ceo-grid,
    .modern-roi-grid,
    .industries-grid,
    .services-light-grid,
    .process2-layout { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
    }
    
    .clients-logo-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .modern-roi-grid { margin-top: -60px !important; padding: 0 20px !important; }
    .modern-roi-card { padding: 30px 20px !important; }
    
    /* Service Light Cards */
    .services-light-grid { gap: 20px !important; }
    .service-light-card { padding: 30px 25px !important; }
    
    /* About & Inner Specifics */
    .consen-img { height: auto !important; min-height: 300px !important; }
    
    /* Counters */
    .counter-vip { padding: 30px 20px !important; flex-direction: column !important; gap: 20px !important; }
    .counter-vip h3 { flex-basis: auto !important; text-align: center; }
    .counter-row { flex-direction: column !important; gap: 20px !important; width: 100%; }
    .counter-box { padding: 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px !important; }
    .counter-box:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
    
    /* Case Studies Overrides */
    .cs-featured-box:not(.cs-small) img { height: 350px !important; }
    .cs-small img { height: 250px !important; }
    .cs-filters { flex-wrap: wrap; justify-content: center; }
    
    /* Contact & Form Overrides */
    .contact-wrapper { flex-direction: column !important; padding: 30px 20px !important; }
    .contact-form-grid { grid-template-columns: 1fr !important; }
    
    /* Header Top Bar */
    .header-top-bar { display: none !important; }

    /* Creative Gallery Mobile Overhaul */
    .creative-gallery-wrap {
        flex-direction: column !important;
        height: auto !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }
    .cg-item {
        height: 120px !important;
        flex: none !important;
        filter: grayscale(0) brightness(1) !important;
    }
    .cg-item.active, .cg-item:hover {
        height: 350px !important;
    }
    .cg-content {
        padding: 25px !important;
    }
    .cg-title {
        font-size: 24px !important;
    }
    .cg-desc {
        display: none !important;
    }
    .cg-item.active .cg-desc, .cg-item:hover .cg-desc {
        display: block !important;
        font-size: 13px !important;
    }
}
