/* ============================================================
   Accurate Staffing - Custom Stylesheet
   Bootstrap 5 + Custom CSS3
   ============================================================ */

:root {
    --color-primary: #045BBA;
    --color-primary-dk: #033d80;
    --color-accent: #00C8D4;
    /* cyan/teal for HIRING hex */
    --color-navy: #112A46;
    --color-dark-bar: #045BBA;
    --color-text-muted: #6c757d;
    --color-orange: #F47820;
    --color-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-navy);
    background-color: #f8f9fc;
    overflow-x: hidden;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-info-bar {
    background-color: var(--color-dark-bar);
    color: var(--color-white);
    font-size: 0.82rem;
    font-family: var(--font-body);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.92;
}

.info-item i {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
}

.info-separator {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.main-navbar {
    background: #ffffff !important;
    border-bottom: 2px solid #e8eef5;
    box-shadow: 0 2px 16px rgba(4, 91, 186, 0.07);
    padding: 12px 0;
    transition: var(--transition);
}

/* Logo */
.logo-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, #d4600a 100%);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-fallback-icon {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    color: white;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.main-navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy) !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 60%;
}

.main-navbar .nav-link:hover {
    color: var(--color-primary) !important;
}

.main-navbar .nav-link.active {
    color: var(--color-primary) !important;
}

/* Hamburger */
.custom-toggler {
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    padding: 6px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.custom-toggler:hover {
    background: var(--color-primary);
    color: white !important;
}

.custom-toggler i {
    font-size: 1.1rem;
}

/* ============================================================
   HALIDE TOPO HERO SECTION
   ============================================================ */
:root {
    --halide-bg: #0a0a0a;
    --halide-silver: #e0e0e0;
    --halide-accent: #045BBA;
    --halide-grain-opacity: 0.15;
}

.halide-hero {
    background-color: var(--halide-bg);
    color: var(--halide-silver);
    font-family: var(--font-heading), sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.halide-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: var(--halide-grain-opacity);
    filter: url(#grain);
}

.halide-hero .viewport {
    perspective: 2000px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.halide-hero .canvas-3d {
    position: relative;
    width: 800px;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.halide-hero .halide-layer {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(224, 224, 224, 0.1);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.halide-hero .layer-1 {
    background-image: url('../assets/images/hero_bg_1.png');
    filter: grayscale(1) contrast(1.2) brightness(0.5);
}

.halide-hero .layer-2 {
    background-image: url('../assets/images/hero_bg_2.png');
    filter: grayscale(1) contrast(1.1) brightness(0.7);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.halide-hero .layer-3 {
    background-image: url('../assets/images/hero_bg_3.png');
    filter: grayscale(1) contrast(1.3) brightness(0.8);
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.halide-hero .contours {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 40px, rgba(255, 255, 255, 0.05) 41px, transparent 42px);
    transform: translateZ(120px);
    pointer-events: none;
}

.halide-hero .interface-grid {
    position: absolute;
    inset: 0;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    z-index: 10;
    pointer-events: none;
    height: 100vh;
}

.halide-hero .ig-top-left {
    font-weight: 700;
    letter-spacing: 2px;
}

.halide-hero .ig-top-right {
    text-align: right;
    font-family: monospace;
    color: var(--halide-accent);
    font-size: 0.7rem;
}

.halide-hero .hero-title {
    grid-column: 1 / -1;
    align-self: center;
    font-size: clamp(2.4rem, 8vw, 7rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    mix-blend-mode: difference;
    color: #fff;
    font-weight: 900;
}

.halide-hero .ig-bottom-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.halide-hero .ig-bottom-info {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.halide-hero .cta-button {
    pointer-events: auto;
    background: var(--halide-silver);
    color: var(--halide-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
    transition: 0.3s;
    border: none;
    outline: none;
}

.halide-hero .cta-button:hover {
    background: var(--halide-accent);
    transform: translateY(-5px);
    color: #fff;
}

.halide-hero .scroll-hint {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--halide-silver), transparent);
    animation: flowHint 2s infinite ease-in-out;
}

@keyframes flowHint {

    0%,
    100% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@media (max-width: 768px) {
    .halide-hero .interface-grid {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .halide-hero .canvas-3d {
        width: 140vw;
        height: 45vh;
        transform: scale(0.6) translateY(0);
        margin: 0 auto;
    }

    .halide-hero .ig-top-left {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 0.7rem;
    }

    .halide-hero .ig-top-right {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .halide-hero .ig-bottom-row {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 0 20px;
    }

    .halide-hero .hero-title {
        font-size: clamp(2.2rem, 15vw, 4rem);
        width: 100%;
        text-align: center;
        margin: 0;
        position: relative;
        z-index: 20;
    }
}

/* ============================================================
   HERO CAROUSEL SECTION
   ============================================================ */
.hero-carousel-section {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fb 60%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* Fixed height for all screens */
    min-height: 600px;
}

/* Subtle background pattern */
.hero-carousel-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- LEFT COLUMN ---- */
.hero-text-content {
    animation: fadeInUp 0.6s ease-out both;
}

.hero-heading {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.15;
}

.text-navy {
    color: var(--color-navy) !important;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.75;
    max-width: 480px;
}

/* Know More Button */
.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: var(--color-primary);
    color: white !important;
    font-family: 'bold', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(4, 91, 186, 0.35);
    transition: var(--transition);
    cursor: pointer;
}

.btn-know-more:hover {
    background: var(--color-primary-dk);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(4, 91, 186, 0.45);
}

/* ---- RIGHT COLUMN ---- */
.hero-right-col {
    animation: fadeInRight 0.8s ease-out both;
}

.hex-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(17, 42, 70, 0.18);
    aspect-ratio: 4/3;
    min-height: 340px;
    background: var(--color-navy);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.65) 0%, rgba(17, 42, 70, 0.80) 100%);
    z-index: 1;
}

/* ============================================================
   HEXAGON GRID (Slide 1)
   ============================================================ */
.hex-grid-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px;
}

.hex-row {
    display: flex;
    gap: 6px;
    margin: 3px 0;
}

.hex-row.offset-row {
    transform: translateX(calc(var(--hex-size, 90px) / 2 + 3px));
}

.hex-cell {
    --hex-size: 90px;
    width: var(--hex-size);
    height: calc(var(--hex-size) * 1.1547);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.10);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    cursor: default;
}

.hex-cell::before {
    content: '';
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hex-cell span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
}

.hex-cell:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.08);
}

.hex-cell.hex-accent {
    background: var(--color-accent);
}

.hex-cell.hex-accent::before {
    background: rgba(0, 200, 212, 0.3);
}

.hex-cell.hex-accent span {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.72rem;
}

.hex-cell.hex-accent:hover {
    background: #00aab4;
    transform: scale(1.1);
}

/* ============================================================
   CAROUSEL CONTROLS
   ============================================================ */
.custom-carousel-ctrl {
    width: 5%;
    opacity: 1;
}

.ctrl-icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    /* Cyan color as seen in screenshot */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-carousel-ctrl:hover .ctrl-icon-circle {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .hero-carousel-section {
        height: 100vh !important;
        min-height: 600px;
        padding: 0 !important;
    }

    .carousel-inner,
    .carousel-item {
        height: 100% !important;
    }

    .hero-left-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hex-visual-container {
        aspect-ratio: auto;
        min-height: 300px;
        margin-top: 20px;
    }

    .hex-cell {
        --hex-size: 70px;
        /* Smaller hexagons on mobile */
    }

    .custom-carousel-ctrl {
        display: flex;
        /* Show buttons on mobile */
        width: 12%;
        /* Wider clickable area */
    }

    .ctrl-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(36px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Section Header Common --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: rgba(4, 91, 186, 0.08);
    border: 1px solid rgba(4, 91, 186, 0.2);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-heading {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
}

.section-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* --- About Image Block --- */
.about-img-block {
    position: relative;
    padding: 0 30px 30px 0;
}

.about-img-primary {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 42, 70, 0.14);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-primary:hover img {
    transform: scale(1.04);
}

.about-img-primary.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 30px rgba(17, 42, 70, 0.18);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    animation: float 5s ease-in-out infinite;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.about-img-secondary.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

/* Experience Badge */
.exp-badge {
    position: absolute;
    top: 24px;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dk) 100%);
    color: white;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(4, 91, 186, 0.4);
    z-index: 3;
    animation: countUp 0.8s ease-out 0.5s both;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.exp-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    opacity: 0.9;
}

/* Dot Pattern Decor */
.about-dot-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(4, 91, 186, 0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    border-radius: 8px;
    z-index: 0;
}

/* --- About Content Right --- */
.about-lead {
    font-family: var(--font-body);
    font-size: 1.08rem;
    color: var(--color-navy);
    line-height: 1.8;
    font-weight: 500;
    border-left: 4px solid var(--color-primary);
    padding-left: 16px;
}

.about-body {
    font-size: 0.97rem;
    color: #4a5568;
    line-height: 1.75;
}

/* Highlight Items */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eef2fa;
    background: #f8faff;
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: rgba(4, 91, 186, 0.25);
    background: #f0f5ff;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(4, 91, 186, 0.08);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dk) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(4, 91, 186, 0.3);
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-item h6 {
    font-family: 'bold', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* --- Mission / Vision / Values Cards --- */
.mvv-row {
    position: relative;
}

.mvv-card {
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid #e8eef5;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.mission-card {
    background: linear-gradient(160deg, #f0f5ff 0%, #e8f0fb 100%);
}

.mission-card::before {
    background: linear-gradient(90deg, var(--color-primary), #4b9cf5);
}

.vision-card {
    background: linear-gradient(160deg, #f0fff4 0%, #e8f8ee 100%);
}

.vision-card::before {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

.values-card {
    background: linear-gradient(160deg, #fff7ed 0%, #fef3c7 100%);
}

.values-card::before {
    background: linear-gradient(90deg, var(--color-orange), #fbbf24);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(17, 42, 70, 0.12);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.15) rotate(-8deg);
}

.mission-card .mvv-icon {
    background: rgba(4, 91, 186, 0.12);
    color: var(--color-primary);
}

.vision-card .mvv-icon {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.values-card .mvv-icon {
    background: rgba(244, 120, 32, 0.12);
    color: var(--color-orange);
}

.mvv-card h5 {
    font-family: 'bold', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.mvv-card p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.65;
}

/* Align bullet points properly */
.mvv-card ul {
    text-align: left;
    padding: 0;
    margin: 0;
}

.mvv-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mvv-card li i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Why Strip --- */
.why-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 16px 40px rgba(4, 91, 186, 0.28);
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.why-stat i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.why-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.18);
}



/* ============================================================
   SERVICES BOXES SECTION - WORLD CLASS UI
   ============================================================ */
.services-boxes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-boxes-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.services-boxes-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

/* Section Title */
.services-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 15px;
}

.services-section-title i {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-right: 15px;
}

.services-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(4, 91, 186, 0.3);
}

/* World Class White Service Boxes */
.service-box-white {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.service-box-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box-white::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.1), rgba(0, 200, 212, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-box-white:hover::before {
    transform: scaleX(1);
}

.service-box-white:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.service-box-white:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(4, 91, 186, 0.18);
    border-color: rgba(4, 91, 186, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

/* Service Icon White */
.service-icon-white {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.08) 0%, rgba(0, 200, 212, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(4, 91, 186, 0.1);
}

.service-icon-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon-white i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-box-white:hover .service-icon-white {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 10px 25px rgba(4, 91, 186, 0.3);
}

.service-box-white:hover .service-icon-white i {
    transform: scale(1.2);
}

/* Service Box Content */
.service-box-white h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-box-white:hover h5 {
    color: var(--color-primary);
    transform: translateX(5px);
}

.service-box-white p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.service-box-white:hover p {
    color: #475569;
}

/* Service Features White */
.service-features-white {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #4a5568;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.feature-item i {
    color: var(--color-primary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item span {
    transition: all 0.3s ease;
}

.service-box-white:hover .feature-item {
    color: var(--color-navy);
    transform: translateX(5px);
}

.service-box-white:hover .feature-item i {
    color: var(--color-accent);
    transform: scale(1.2) rotate(3deg);
}

.service-box-white:hover .feature-item span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .services-boxes-section {
        padding: 60px 0;
    }

    .services-section-title {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
        margin-bottom: 2.5rem;
    }

    .services-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-box-white {
        padding: 22px 18px;
    }

    .service-icon-white {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-box-white h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .services-boxes-section {
        padding: 40px 0;
    }

    .services-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-box-white {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .service-icon-white {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .service-box-white h5 {
        font-size: 1rem;
    }

    .service-box-white p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .feature-item {
        font-size: 0.78rem;
        gap: 8px;
    }
}

/* Advanced Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(2deg);
    }

    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes fadeInUpService {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box-white {
    animation: fadeInUpService 0.8s ease-out both;
}

.service-box-white:nth-child(1) {
    animation-delay: 0.1s;
}

.service-box-white:nth-child(2) {
    animation-delay: 0.2s;
}

.service-box-white:nth-child(3) {
    animation-delay: 0.3s;
}

.service-box-white:nth-child(4) {
    animation-delay: 0.4s;
}

/* Glass morphism effect for modern look */
.service-box-white {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Micro-interactions */
.service-box-white:active {
    transform: translateY(-8px) scale(1.01);
    transition: all 0.1s ease;
}

/* ============================================================
   WHY CHOOSE US SECTION - COMPACT
   ============================================================ */
.why-choose-section-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section-compact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section-compact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 200, 212, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Compact Badge */
.why-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(4, 91, 186, 0.1);
    border: 1px solid rgba(4, 91, 186, 0.2);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Compact Heading */
.section-heading-compact {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
}

/* Compact Grid Container */
.why-compact-grid {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

/* Compact Feature Cards */
.why-feature-compact {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-feature-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-feature-compact:hover::before {
    transform: scaleX(1);
}

.why-feature-compact:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(4, 91, 186, 0.15);
    border-color: rgba(4, 91, 186, 0.2);
}

/* Compact Icon */
.why-icon-compact {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.1) 0%, rgba(0, 200, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(4, 91, 186, 0.1);
}

.why-feature-compact:hover .why-icon-compact {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(4, 91, 186, 0.3);
}

/* Compact Feature Content */
.why-feature-compact h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-feature-compact:hover h5 {
    color: var(--color-primary);
}

.why-feature-compact p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.why-feature-compact:hover p {
    color: #475569;
}

/* Compact CTA Bar */
.why-cta-bar-compact {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 16px;
    padding: 20px 25px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.why-cta-bar-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.why-cta-text-compact {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.why-cta-btn-compact {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-cta-btn-compact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .why-choose-section-compact {
        padding: 50px 0;
    }

    .section-heading-compact {
        font-size: 1.8rem;
        text-align: center;
    }

    .why-compact-grid {
        padding: 20px;
    }

    .why-feature-compact {
        padding: 18px 10px;
        margin-bottom: 0;
        /* Let grid gap handle it */
    }

    .why-icon-compact {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-feature-compact h5 {
        font-size: 0.9rem;
    }

    .why-feature-compact p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .why-cta-bar-compact {
        padding: 20px;
        margin-top: 25px;
    }

    .why-cta-text-compact {
        font-size: 1.05rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .why-cta-btn-compact {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section-compact {
        padding: 40px 0;
    }

    .section-heading-compact {
        font-size: 1.6rem;
    }

    .why-compact-grid {
        padding: 20px;
    }

    .why-feature-compact {
        padding: 15px;
        margin-bottom: 12px;
    }

    .why-icon-compact {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .why-feature-compact h5 {
        font-size: 0.85rem;
    }

    .why-feature-compact p {
        font-size: 0.75rem;
    }

    .why-cta-bar-compact {
        padding: 15px;
        margin-top: 15px;
    }

    .why-cta-text-compact {
        font-size: 0.95rem;
    }

    .why-cta-btn-compact {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeInUpCompact {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-feature-compact {
    animation: fadeInUpCompact 0.6s ease-out both;
}

.why-feature-compact:nth-child(1) {
    animation-delay: 0.1s;
}

.why-feature-compact:nth-child(2) {
    animation-delay: 0.2s;
}

.why-feature-compact:nth-child(3) {
    animation-delay: 0.3s;
}

.why-feature-compact:nth-child(4) {
    animation-delay: 0.4s;
}

.why-feature-compact:nth-child(5) {
    animation-delay: 0.5s;
}

.why-feature-compact:nth-child(6) {
    animation-delay: 0.6s;
}

/* ============================================================
   FOOTER SECTION - WORLD CLASS UI
   ============================================================ */
.main-footer {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

/* Animated Background Elements */
.footer-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(244, 120, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(244, 120, 32, 0.02) 49%, rgba(244, 120, 32, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(251, 191, 36, 0.01) 49%, rgba(251, 191, 36, 0.01) 51%, transparent 52%);
    animation: footerFloat 20s ease-in-out infinite;
}

@keyframes footerFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

/* Footer Top Section */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Footer Brand Section */
.footer-brand {
    position: relative;
}

.footer-logo-box {
    display: inline-block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.footer-logo-box:hover::before {
    left: 100%;
}

.footer-logo-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(4, 91, 186, 0.3);
    border-color: rgba(4, 91, 186, 0.3);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 25px 0;
    position: relative;
    padding-left: 20px;
    color: #5d4037;
}

.footer-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-orange), var(--color-accent));
    border-radius: 2px;
}

/* Social Media Buttons */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(244, 120, 32, 0.1);
    border: 1px solid rgba(244, 120, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-btn:hover {
    color: white;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(4, 91, 186, 0.4);
}

.social-btn i {
    position: relative;
    z-index: 1;
}

/* Footer Links Section */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #3e2723;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(244, 120, 32, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.footer-links a {
    color: #5d4037;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 91, 186, 0.1), transparent);
    transition: left 0.4s ease;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: white;
    background: rgba(244, 120, 32, 0.8);
    transform: translateX(8px);
}

.footer-links a i {
    margin-right: 12px;
    font-size: 0.8rem;
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2) rotate(5deg);
    color: white;
}

/* Contact Blocks */
.footer-bottom {
    position: relative;
}

.contact-block {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(244, 120, 32, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #3e2723;
    backdrop-filter: blur(10px);
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-block:hover::before {
    transform: scaleX(1);
}

.contact-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(244, 120, 32, 0.3);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(244, 120, 32, 0.4);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 120, 32, 0.15), rgba(251, 191, 36, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-orange);
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 120, 32, 0.2);
    flex-shrink: 0;
}

.contact-block:hover .contact-icon-box {
    background: linear-gradient(135deg, var(--color-orange), var(--color-accent));
    color: white;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(244, 120, 32, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info .label {
    font-size: 0.85rem;
    color: #8d6e63;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .value {
    font-size: 1rem;
    color: #3e2723;
    font-weight: 500;
    line-height: 1.4;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(4, 91, 186, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(4, 91, 186, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo-box {
        margin: 0 auto;
    }

    .footer-desc {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
    }

    .footer-desc::before {
        display: none;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-heading {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .contact-block {
        padding: 20px;
    }

    .contact-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-logo-box {
        padding: 12px 16px;
    }

    .footer-desc {
        font-size: 0.9rem;
        margin: 20px 0;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .contact-block {
        padding: 18px;
        gap: 15px;
    }

    .contact-icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-info .label {
        font-size: 0.8rem;
    }

    .contact-info .value {
        font-size: 0.95rem;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ============================================================
   PROCESS SECTION — HOW WE DO IT
   ============================================================ */
.process-section {
    padding: 90px 0 80px;
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Subtitle pill above heading */
.process-subtitle {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(4, 91, 186, 0.07);
    border: 1px solid rgba(4, 91, 186, 0.18);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Process Cards */
.process-cards-row {
    position: relative;
    z-index: 1;
}

.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px 28px;
    height: 100%;
    border: 1px solid #e4ecf7;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 4px 18px rgba(17, 42, 70, 0.05);
}

.process-card:hover,
.process-card.active {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(4, 91, 186, 0.14);
    border-color: rgba(4, 91, 186, 0.25);
}

/* Card top row: icon + step number */
.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Icon circle */
.process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(4, 91, 186, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    background: rgba(4, 91, 186, 0.06);
    transition: var(--transition);
    position: relative;
}

/* Dashed ring around icon */
.process-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px dashed rgba(4, 91, 186, 0.25);
    animation: spin 12s linear infinite;
}

.process-card:hover .process-icon-wrap,
.process-card.active .process-icon-wrap {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 6px 18px rgba(4, 91, 186, 0.35);
}

/* Step number watermark */
.process-step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(4, 91, 186, 0.10);
    line-height: 1;
    user-select: none;
    transition: var(--transition);
}

.process-card:hover .process-step-num,
.process-card.active .process-step-num {
    color: rgba(4, 91, 186, 0.18);
}

/* Card text */
.process-card h5 {
    font-family: 'bold', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Bottom bar */
.process-card-bar {
    height: 3px;
    border-radius: 3px;
    background: rgba(4, 91, 186, 0.15);
    margin-top: 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.process-card:hover .process-card-bar::after,
.process-card.active .process-card-bar::after {
    width: 100%;
}

/* Spin animation for dashed ring */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 767.98px) {
    .process-section {
        padding: 50px 0;
    }

    .process-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .process-card {
        padding: 24px 20px 22px;
        text-align: center;
    }

    .process-card-top {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .process-step-num {
        font-size: 2.5rem;
    }

    .process-card h5 {
        font-size: 1rem;
    }

    .process-card p {
        font-size: 0.85rem;
    }

    .process-card-featured {
        padding: 30px 20px 25px;
        margin-top: 20px;
    }
}

/* Featured Card 05 */
.process-card-featured {
    height: 100%;
    background: linear-gradient(160deg, #f0f5ff 0%, #e0ecff 100%);
    border: 2px solid rgba(4, 91, 186, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px 28px;
    position: relative;
    overflow: hidden;
}

.process-card-featured::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-card-featured .process-card-top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.process-card-featured .process-icon-wrap {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
    border: 2px solid rgba(4, 91, 186, 0.3);
    background: rgba(4, 91, 186, 0.1);
}

.process-card-featured:hover .process-icon-wrap,
.process-card-featured.active .process-icon-wrap {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(4, 91, 186, 0.4);
}

.process-card-featured .process-step-num {
    font-size: 3.5rem;
    color: rgba(4, 91, 186, 0.12);
    display: block;
    line-height: 1;
}

.process-card-featured h5 {
    font-size: 1.1rem;
    text-align: center;
}

.process-card-featured p {
    text-align: center;
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.7;
}

.process-card-featured .process-card-bar {
    width: 100%;
}

.featured-card-badge {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(4, 91, 186, 0.3);
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
    padding: 90px 0 80px;
    background: #ffffff;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 91, 186, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Badge */
.ind-badge {
    display: inline-block;
    padding: 7px 22px;
    background: rgba(4, 91, 186, 0.07);
    border: 1px solid rgba(4, 91, 186, 0.2);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Industry Card */
.ind-card {
    background: #f8faff;
    border: 1px solid #e4ecf7;
    border-radius: 14px;
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ind-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(4, 91, 186, 0.12);
    border-color: rgba(4, 91, 186, 0.3);
    background: #ffffff;
}

/* Top double-line accent bar (matching screenshot) */
.ind-card-bar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.ind-card-bar::before,
.ind-card-bar::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 3px;
    width: 36px;
}

.ind-card-bar::before {
    background: var(--color-primary);
    width: 36px;
}

.ind-card-bar::after {
    background: #22c55e;
    width: 24px;
}

/* Icon */
.ind-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(4, 91, 186, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.ind-card:hover .ind-icon {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 6px 16px rgba(4, 91, 186, 0.3);
    transform: scale(1.08);
}

/* Title */
.ind-card h5 {
    font-family: 'bold', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Body text */
.ind-card p {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

/* Read More Button */
.ind-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--color-primary);
    color: white !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    align-self: flex-start;
}

.ind-btn:hover {
    background: transparent;
    color: var(--color-primary) !important;
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .industries-section {
        padding: 60px 0;
    }

    .ind-card {
        padding: 24px 20px;
        text-align: center;
        align-items: center;
    }

    .ind-icon {
        margin: 0 auto 15px;
    }

    .ind-card h5 {
        font-size: 1rem;
    }

    .ind-card p {
        font-size: 0.85rem;
    }

    .ind-btn {
        width: 100%;
        text-align: center;
        align-self: center;
    }
}

.ind-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(17, 42, 70, 0.2);
}

/* Modal Header */
.ind-modal-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
    padding: 24px 28px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ind-modal-header .modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ind-modal-header .modal-title {
    font-family: 'bold', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

.modal-sector-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Body */
.ind-modal .modal-body {
    padding: 28px 30px;
    background: #ffffff;
}

.modal-lead {
    font-size: 1rem;
    color: var(--color-navy);
    line-height: 1.75;
    font-weight: 500;
    border-left: 4px solid var(--color-primary);
    padding-left: 14px;
    margin-bottom: 22px;
}

/* Detail Grid — 2 column checklist */
.modal-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 24px;
}

.modal-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.modal-detail-item i {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Stats row inside modal */
.modal-stats-row {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fb 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dce8f8;
}

.modal-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid #dce8f8;
}

.modal-stat:last-child {
    border-right: none;
}

.ms-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.ms-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Modal Footer */
.ind-modal-footer {
    border-top: 1px solid #e8eef5;
    padding: 16px 28px;
    background: #f9fbff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Responsive modal grid */
@media (max-width: 575.98px) {
    .modal-detail-grid {
        grid-template-columns: 1fr;
    }

    .modal-stats-row {
        flex-direction: column;
    }

    .modal-stat {
        border-right: none;
        border-bottom: 1px solid #dce8f8;
    }

    .modal-stat:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 50px 0 50px;
    }

    .min-vh-85 {
        min-height: auto;
    }

    .hero-heading {
        font-size: 2.4rem;
    }

    .hex-visual-container {
        aspect-ratio: 16/9;
        min-height: 280px;
        margin-top: 10px;
    }

    .hex-cell {
        --hex-size: 72px;
    }
}

@media (max-width: 575.98px) {
    .main-navbar {
        padding: 10px 0;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hex-visual-container {
        min-height: 240px;
    }

    .hex-cell {
        --hex-size: 56px;
    }

    .hex-cell span {
        font-size: 0.5rem;
    }

    .stat-num {
        font-size: 1.6rem;
    }
}

/* ============================================================
   OUR CLIENTS SECTION
   ============================================================ */
.clients-section {
    padding-bottom: 70px;
    background: #ffffff;
    position: relative;
}

/* Dark blue accent bar at top — matches screenshot */
.clients-top-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-primary) 100%);
    margin-bottom: 50px;
}

.clients-heading {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.clients-subtext {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Logo Grid — bordered table style */
.clients-logo-grid {
    border: 1px solid #d1dce9;
    border-radius: 4px;
    overflow: hidden;
}

.clients-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #d1dce9;
}

.clients-row-last {
    border-bottom: none;
}

.client-logo-cell {
    border-right: 1px solid #d1dce9;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.client-logo-cell:last-child {
    border-right: none;
}

.client-logo-cell:hover {
    background: #f5f9ff;
}

.client-logo-cell-empty {
    background: #fafbfc;
}

/* Logo placeholder — centered flex */
.client-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    filter: grayscale(30%);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.client-logo-cell:hover .client-logo-placeholder {
    filter: grayscale(0%);
    transform: scale(1.06);
}

/* High School Moms logo specifics */
.logo-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand-top {
    font-size: 0.62rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-brand-bottom {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-icon-text {
    font-size: 1.5rem;
}

/* Responsive: stack to 2 columns on mobile */
@media (max-width: 575.98px) {
    .clients-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .clients-logo-grid {
        border-radius: 12px;
    }

    .clients-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix borders for 2-column grid */
    .client-logo-cell {
        padding: 20px 15px;
        min-height: 90px;
    }

    .client-logo-cell:nth-child(2n) {
        border-right: none;
    }

    /* Adjust specific text-based logo sizes for mobile */
    .client-veersa span {
        font-size: 1.5rem !important;
    }

    .client-syrup span {
        font-size: 1.4rem !important;
    }

    .client-tp span {
        font-size: 1.8rem !important;
    }

    .client-transunion span {
        font-size: 0.75rem !important;
    }

    .client-eshopbox span {
        font-size: 0.85rem !important;
    }

    .client-jindal span {
        font-size: 1.3rem !important;
    }

    .logo-brand-bottom {
        font-size: 0.95rem !important;
    }

    .logo-icon-text {
        font-size: 1.2rem !important;
    }
}

/* ============================================================
   LOGO TICKER STRIP
   ============================================================ */
.logo-ticker-section {
    background: #ffffff;
    border-top: 1px solid #e4ecf7;
    border-bottom: 1px solid #e4ecf7;
    padding: 18px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(4, 91, 186, 0.06);
}

/* "Trusted By" pill label */
.ticker-label {
    flex-shrink: 0;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-primary));
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    position: relative;
    border-radius: 0 30px 30px 0;
    margin-right: 0;
    box-shadow: 4px 0 16px rgba(4, 91, 186, 0.18);
}

/* Fade edges */
.ticker-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track-wrapper::before,
.ticker-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.ticker-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* The scrolling track */
.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

/* Each logo item */
.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    border-right: 1px solid #e4ecf7;
    white-space: nowrap;
    height: 48px;
    transition: background 0.2s ease;
}

.ticker-item:hover {
    background: #f5f9ff;
}

/* Brand-colored text logos */
.ticker-item span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: filter 0.2s ease, transform 0.2s ease;
    filter: grayscale(40%) opacity(0.75);
}

.ticker-item:hover span {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Individual brand colors */
.tl-veersa {
    color: #1a56db;
    font-weight: 900;
}

.tl-syrup {
    color: #6c6cff;
    font-weight: 300;
    letter-spacing: 2px;
}

.tl-jindal {
    color: #e63946;
    font-weight: 900;
}

.tl-loyalty {
    color: #d97706;
    font-weight: 900;
    letter-spacing: 1px;
}

.tl-eshop {
    color: #1a1a2e;
    font-weight: 700;
}

.tl-transunion {
    color: #003087;
    font-weight: 700;
}

.tl-rebus {
    color: #374151;
    font-weight: 600;
}

.tl-accor {
    color: #003087;
    font-weight: 700;
    letter-spacing: 1px;
}

.tl-rcdigital {
    color: #e91e8c;
    font-weight: 700;
}

.tl-hs {
    color: #e84c3d;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

/* Keyframe — scrolls left by exactly 50% (since items are duplicated) */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, #0a1f3d 0%, #045BBA 55%, #0e3272 100%);
    padding: 60px 0;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 50%, rgba(0, 200, 212, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 85% 50%, rgba(4, 91, 186, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.col-lg-3:not(:last-child) .stat-item::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(145deg, #29aaed 0%, #0a7fd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 0 0 8px rgba(41, 170, 237, 0.18), 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover .stat-icon-circle {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 0 14px rgba(41, 170, 237, 0.22), 0 14px 34px rgba(0, 0, 0, 0.3);
}

.stat-number-wrap {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-count {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: #29aaed;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    margin: 0;
}

@media (max-width: 767.98px) {
    .col-lg-3:not(:last-child) .stat-item::after {
        display: none;
    }

    .stat-icon-circle {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }

    .stat-count {
        font-size: 1.9rem;
    }

    .stat-plus {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }
}

/* ============================================================
   SCROLL SNAP — Relaxed (snaps to section tops, no forced height)
   ============================================================ */

html {
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    height: 100%;
}

/* Snap each section to the top of the viewport */
.hero-section,
.logo-ticker-section,
.about-section,
.process-section,
.industries-section,
.clients-section,
.stats-section {
    scroll-snap-align: start;
}

/* Restore hero comfortable padding */
.hero-section {
    padding: 70px 0 60px;
}

/* Restore About section — show all sub-sections */
.about-section .mvv-row,
.about-section .why-strip {
    display: flex !important;
}

/* Disable snap on mobile/tablet */
@media (max-width: 991.98px) {
    html {
        scroll-snap-type: none !important;
    }
}

/* ============================================================
   STAGGER TESTIMONIALS
   ============================================================ */
.testi-stagger-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testi-badge-pill {
    display: inline-block;
    padding: 6px 20px;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(4, 91, 186, 0.05);
}

.testi-main-heading {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 900;
    color: var(--color-navy);
}

.testi-main-sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

.testi-stagger-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-top: 40px;
}

.testi-stagger-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.testi-stagger-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 365px;
    height: 365px;
    padding: 2rem;
    cursor: pointer;
    background-color: white;
    color: var(--color-navy);
    border: 2px solid #e2e8f0;
    transition: all 0.5s ease-in-out;
    clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
    z-index: 0;
    will-change: transform;
}

.testi-stagger-card:hover {
    border-color: rgba(4, 91, 186, 0.5);
}

.testi-stagger-card.is-center {
    z-index: 10;
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0px 8px 0px 4px #cbd5e1;
}

.testi-stagger-card .cut-border {
    position: absolute;
    display: block;
    transform-origin: top right;
    transform: rotate(45deg);
    background-color: #e2e8f0;
    right: -2px;
    top: 48px;
    width: 70.71px;
    /* sqrt(5000) */
    height: 2px;
}

.testi-stagger-card.is-center .cut-border {
    background-color: var(--color-primary);
}

.testi-stagger-card img {
    margin-bottom: 1rem;
    height: 3.5rem;
    width: 3rem;
    background-color: #f1f5f9;
    object-fit: cover;
    object-position: top;
    box-shadow: 3px 3px 0px #f8f9fa;
}

.testi-stagger-card.is-center img {
    box-shadow: 3px 3px 0px var(--color-primary);
}

.testi-stagger-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testi-stagger-card p {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: italic;
    color: #64748b;
}

.testi-stagger-card.is-center p {
    color: rgba(255, 255, 255, 0.8);
}

.testi-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testi-category i {
    color: #f59e0b;
}

.testi-stagger-card.is-center .testi-category {
    color: rgba(255, 255, 255, 0.9);
}

.testi-stagger-card.is-center .testi-category i {
    color: #fcd34d;
}

.testi-stagger-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.testi-stagger-btn {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: colors 0.3s;
    background-color: white;
    border: 2px solid #e2e8f0;
    color: var(--color-navy);
    cursor: pointer;
}

.testi-stagger-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

@media (max-width: 640px) {
    .testi-stagger-section {
        padding: 50px 0;
    }

    .testi-stagger-container {
        height: 520px;
        margin-top: 20px;
    }

    .testi-stagger-card {
        width: 280px;
        height: 320px;
        padding: 1.5rem;
    }

    .testi-stagger-card h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .testi-stagger-card p {
        font-size: 0.8rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .testi-stagger-btn {
        height: 3rem;
        width: 3rem;
        font-size: 1.2rem;
    }
}

/* ============================================================
   OUR CORE SERVICES SECTION
   ============================================================ */
.services-section {
    background-color: var(--color-primary);
    /* The deep blue background */
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.badge-square {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    display: inline-block;
}

.badge-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.services-heading {
    font-family: 'bold', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.services-list li i {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Right Side Image Layout */
.services-img-wrapper {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.services-img-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Light translucent box behind */
    z-index: -1;
    border-radius: 8px;
}

.services-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

/* Floating Icon (Orange pencil/wand) */
.services-floating-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #e85d04;
    /* Orange accent */
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-10deg);
}

@media (max-width: 991.98px) {
    .services-img-wrapper {
        margin-top: 40px;
    }
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.main-footer {
    background-color: #172033;
    /* Dark navy color as per screenshot */
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-bg-map {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.footer-brand {
    font-family: 'bold', sans-serif;
}

.brand-a-shape {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e85d04;
    /* Orange */
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-socials .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials .social-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'bold', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}



.footer-links li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.footer-links li a i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-block {
    padding: 10px 0;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    flex-shrink: 0;
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-top-btn:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.floating-contact-widget {
    position: fixed;
    right: 0;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.fc-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
}

.fc-whatsapp {
    background-color: #25D366;
    border-radius: 8px 0 0 0;
}

.fc-whatsapp:hover {
    background-color: #128C7E;
    width: 60px;
    transform: translateX(-10px);
    border-radius: 8px 0 0 8px;
    color: #fff;
}

.fc-email {
    background-color: var(--color-primary);
    border-radius: 0 0 0 8px;
}

.fc-email:hover {
    background-color: var(--color-primary-dk);
    width: 60px;
    transform: translateX(-10px);
    border-radius: 8px 0 0 8px;
    color: #fff;
}

/* ============================================================
   NEW ABOUT US SECTION - 3 COLUMN LAYOUT
   ============================================================ */
.about-section {
    background: linear-gradient(180deg, #F8F9FC 0%, #F2F4F8 50%, #F8F9FC 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative Background Elements */
.about-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.about-bg-circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(4, 91, 186, 0.08);
    top: 10%;
    left: 5%;
    animation: aboutFloat 8s ease-in-out infinite;
}

.about-bg-circle-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 200, 212, 0.06);
    bottom: 10%;
    right: 5%;
    animation: aboutFloat 10s ease-in-out infinite reverse;
}

.about-bg-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.3;
    animation: aboutPulse 3s ease-in-out infinite;
}

.about-bg-dot-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.about-bg-dot-2 {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.about-bg-dot-3 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes aboutPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Section Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-badge i {
    color: var(--color-orange);
}

/* Animated Underline */
.about-underline {
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    margin: 1rem auto;
    border-radius: 2px;
    animation: aboutLineGrow 1s ease-out forwards;
}

@keyframes aboutLineGrow {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

/* Service Items */
.about-service-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeInUp 0.6s ease-out forwards;
}

.about-service-item[data-delay="0"] {
    animation-delay: 0.3s;
}

.about-service-item[data-delay="0.1"] {
    animation-delay: 0.4s;
}

.about-service-item[data-delay="0.2"] {
    animation-delay: 0.5s;
}

.about-service-item[data-delay="0.3"] {
    animation-delay: 0.6s;
}

.about-service-item[data-delay="0.4"] {
    animation-delay: 0.7s;
}

.about-service-item[data-delay="0.5"] {
    animation-delay: 0.8s;
}

@keyframes aboutFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-service-icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(4, 91, 186, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.about-service-item:hover .about-service-icon-wrap {
    background: rgba(4, 91, 186, 0.2);
    transform: rotate(-5deg) scale(1.05);
}

.about-service-icon-secondary {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    color: var(--color-orange);
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-service-content h5 {
    font-family: 'bold', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.about-service-item:hover .about-service-content h5 {
    color: var(--color-primary);
}

.about-service-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Right aligned service items */
.about-service-right {
    flex-direction: row;
}

.about-services-right .about-service-content {
    text-align: left;
}

/* Center Image */
.about-center-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-center-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-center-image:hover {
    transform: scale(1.02);
}

.about-center-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(32, 46, 68, 0.9), transparent);
    padding: 30px 20px 20px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-center-image:hover .about-image-overlay {
    opacity: 1;
}

.about-portfolio-btn {
    background: white;
    color: var(--color-navy);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-portfolio-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Decorative Image Border */
.about-image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

/* Floating Accent Elements */
.about-float-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-accent-1 {
    width: 60px;
    height: 60px;
    background: rgba(4, 91, 186, 0.1);
    top: -20px;
    right: -30px;
    animation: aboutFloatAccent 4s ease-in-out infinite;
}

.about-accent-2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 212, 0.15);
    bottom: -30px;
    left: -40px;
    animation: aboutFloatAccent 5s ease-in-out infinite reverse;
}

.about-accent-3 {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    top: 50%;
    right: -60px;
    animation: aboutPulse 2s ease-in-out infinite;
}

.about-accent-4 {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    bottom: 20%;
    left: -50px;
    animation: aboutPulse 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes aboutFloatAccent {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-center-image {
        max-width: 280px;
        margin-bottom: 2rem;
    }

    .about-center-image img {
        height: 350px;
    }

    .about-service-item {
        margin-bottom: 1.5rem;
    }

    .about-bg-circle-1,
    .about-bg-circle-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .about-center-image {
        max-width: 280px;
        margin: 0 auto 30px;
    }

    .about-center-image img {
        height: auto;
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }

    .about-image-border {
        display: none;
    }

    .about-accent-3,
    .about-accent-4 {
        display: none;
    }

    .about-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .about-service-icon-wrap {
        margin-bottom: 10px;
    }

    .about-services-right .about-service-content {
        text-align: center;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .section-heading {
        font-size: 1.8rem !important;
    }
}

/* ============================================================
   ABOUT PAGE STYLING
   ============================================================ */
.page-hero-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 50%, var(--color-navy) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-family: 'bold', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.page-hero-title .heading-highlight {
    color: var(--color-accent);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-float-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--color-primary);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(4, 91, 186, 0.3);
}

.about-badge-num {
    display: block;
    font-family: 'bold', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 30px;
}

.about-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-title {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.about-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    margin-top: 25px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.about-highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(4, 91, 186, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-highlight-item h6 {
    font-family: 'bold', sans-serif;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.mission-section {
    padding: 80px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 91, 186, 0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4, 91, 186, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #045BBA, #29aaed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
}

.mission-card h5 {
    font-family: 'bold', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.mission-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}



/* Responsive for About Page */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .about-float-badge {
        left: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }

    .about-badge-num {
        font-size: 1.8rem;
    }

    .about-highlight-item {
        justify-content: flex-start !important;
        text-align: left !important;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px;
        border-radius: 12px;
        border: 1px solid rgba(4, 91, 186, 0.05);
    }
}

@media (max-width: 767px) {
    .page-hero-section {
        padding: 80px 0 60px;
    }

    .page-hero-title {
        font-size: 1.8rem !important;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .about-title {
        font-size: 1.5rem !important;
    }

    .about-text {
        font-size: 0.9rem;
        text-align: justify;
    }

    .about-img-wrapper img {
        height: 300px;
    }

    .mission-section {
        padding: 50px 0;
    }

    .mvv-card {
        padding: 30px 20px !important;
    }

    /* Process Steps Mobile Fix */
    .d-flex.flex-column.flex-lg-row {
        gap: 30px !important;
    }

    .flex-fill.text-center.px-3.pb-4.pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .d-none.d-lg-flex.align-items-center.px-1 {
        display: none !important;
    }

    .impact-section {
        padding: 50px 0 !important;
    }

    .impact-section h4 {
        font-size: 1.4rem !important;
    }
}

/* ============================================================
   SERVICES PAGE WORLD-CLASS STYLING
   ============================================================ */
.services-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 50%, var(--color-navy) 100%);
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 60,40 100,50 60,60 50,100 40,60 0,50 40,40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.service-category-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-category-card:hover::before {
    opacity: 1;
}

.service-category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-category-card.training-card {
    border-top: 5px solid #667eea;
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
}

.service-category-card.career-card {
    border-top: 5px solid #48bb78;
    background: linear-gradient(135deg, #ffffff, #f0fff4);
}

.service-category-card.business-card {
    border-top: 5px solid #ed8936;
    background: linear-gradient(135deg, #ffffff, #fffdf7);
}

.service-cat-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.career-card .service-cat-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
}

.business-card .service-cat-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.3);
}

.service-category-card:hover .service-cat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.service-category-card h3 {
    font-family: 'bold', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    position: relative;
}

.service-category-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.career-card h3::after {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.business-card h3::after {
    background: linear-gradient(90deg, #ed8936, #dd6b20);
}

.service-category-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-cat-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-card .service-cat-link {
    color: #48bb78;
}

.business-card .service-cat-link {
    color: #ed8936;
}

.service-cat-link:hover {
    transform: translateX(8px);
}

.service-cat-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-cat-link:hover i {
    transform: translateX(8px);
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-detail-card:hover::before {
    top: -100%;
    left: -100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-detail-card.featured {
    border: 3px solid #667eea;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
}

.service-detail-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: -15px;
    right: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(3deg);
}

.bg-primary-light {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
}

.bg-success-light {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
    color: #48bb78;
}

.bg-warning-light {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.1), rgba(221, 107, 32, 0.1));
    color: #ed8936;
}

.bg-info-light {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.1), rgba(45, 156, 219, 0.1));
    color: #38b2ac;
}

.bg-danger-light {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(229, 62, 62, 0.1));
    color: #f56565;
}

.bg-secondary-light {
    background: linear-gradient(135deg, rgba(113, 128, 150, 0.1), rgba(74, 85, 104, 0.1));
    color: #718096;
}

.service-detail-card h4 {
    font-family: 'bold', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.service-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4a5568;
    transition: transform 0.2s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li i {
    margin-right: 12px;
    font-size: 0.9rem;
    color: #48bb78;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card:hover::before {
    opacity: 1;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'bold', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #667eea;
    margin: 25px auto 20px;
    transition: all 0.3s ease;
}

.process-step-card:hover .process-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.process-step-card h5 {
    font-family: 'bold', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.process-step-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* World-class animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.service-category-card {
    animation: pulse 4s ease-in-out infinite;
}

.service-category-card:nth-child(2) {
    animation-delay: 1s;
}

.service-category-card:nth-child(3) {
    animation-delay: 2s;
}

.service-detail-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-detail-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-detail-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Services Page */
@media (max-width: 991px) {
    .service-category-card {
        margin-bottom: 25px;
    }

    .service-detail-card {
        margin-bottom: 25px;
    }

    .process-step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 100px 0 60px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .service-category-card {
        padding: 35px 25px;
    }

    .service-cat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-category-card h3 {
        font-size: 1.4rem;
    }

    .service-detail-card {
        padding: 30px 25px;
    }
}

/* ============================================================
   MISSION OVERLAP SECTION
   ============================================================ */
.mission-overlap-section {
    position: relative;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(4, 91, 186, 0.2);
}

.mission-overlap-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 3px;
}

.mission-hero-text {
    font-family: 'bold', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.3;
    color: #6b7280;
}

.mission-hero-text strong {
    color: #111827;
    font-weight: 800;
}

.mission-overlap-container {
    position: relative;
    margin-top: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.mission-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.mission-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-card-overlap {
    position: relative;
    width: 50%;
    background-color: #eef5ef;
    /* Soft pastel green from screenshot */
    padding: 3.5rem 3rem;
    border-radius: 4px;
    z-index: 2;
}

@media (max-width: 991px) {
    .mission-hero-text {
        font-size: 1.5rem !important;
        text-align: center;
    }

    .mission-overlap-container {
        display: flex;
        flex-direction: column;
        /* Image on top */
        min-height: auto;
        margin-top: 1.5rem;
    }

    .mission-image-wrapper {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 12px 12px 0 0;
    }

    .mission-card-overlap {
        position: relative;
        width: 100%;
        top: 0;
        border-radius: 0 0 12px 12px;
        margin-top: 0;
        /* Removed overlap for better readability on small screens */
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .mission-card-overlap h3 {
        font-size: 1.5rem;
    }

    .mission-card-overlap p {
        font-size: 0.95rem !important;
    }
}

/* ============================================================
   CALL MODAL — WORLD CLASS
   ============================================================ */
.call-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0370d8 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(4, 91, 186, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: inherit;
}

.call-nav-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(4, 91, 186, 0.50);
    color: #fff !important;
}

.call-nav-btn i {
    font-size: 0.9rem;
    animation: ringShake 2.5s ease-in-out infinite;
}

@keyframes ringShake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(-15deg);
    }

    95% {
        transform: rotate(15deg);
    }

    97% {
        transform: rotate(-10deg);
    }

    99% {
        transform: rotate(8deg);
    }
}

/* Overlay */
.call-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.call-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Modal Box */
.call-modal-box {
    background: #ffffff;
    border-radius: 28px;
    width: 100%;
    max-width: 380px;
    padding: 44px 32px 36px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(4, 91, 186, 0.20), 0 0 0 1px rgba(4, 91, 186, 0.07);
    transform: translateY(40px) scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
}

.call-modal-overlay.active .call-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button */
.call-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #f0f4f8;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85rem;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.call-modal-close:hover {
    background: #e0e7ef;
    color: var(--color-navy);
    transform: rotate(90deg);
}

/* Pulse avatar */
.call-modal-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
}

.call-modal-avatar .pulse-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.call-modal-avatar .pulse-ring:nth-child(2) {
    inset: -20px;
    animation-delay: 0.4s;
}

.call-modal-avatar .pulse-ring:nth-child(3) {
    inset: -30px;
    animation-delay: 0.8s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.call-modal-avatar .avatar-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0370d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 28px rgba(4, 91, 186, 0.35);
}

.call-modal-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.call-modal-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.call-modal-role {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.call-modal-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 1px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-modal-number i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.call-modal-email {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-modal-email:hover {
    color: var(--color-primary);
}

.call-modal-email i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* CTA Buttons */
.call-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-call-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1cd44f 0%, #12a83c 100%);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 24px rgba(18, 168, 60, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(18, 168, 60, 0.45);
    color: #fff;
}

.btn-call-now i {
    font-size: 1.15rem;
    animation: ringShake 2.5s ease-in-out infinite;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #f0f9f4;
    color: #128c7e;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(18, 140, 126, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

.call-modal-footer-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: #adb5bd;
}

@media (max-width: 480px) {
    .call-modal-box {
        max-width: 340px;
        padding: 36px 22px 28px;
        margin: 0 16px;
    }

    .call-modal-number {
        font-size: 1.25rem;
    }

    .call-nav-btn span {
        display: none;
    }
}

/* ============================================================
   STICKY HIRING WIDGET — brainstashhr.in
   ============================================================ */
.sticky-hire-widget {
    position: fixed;
    left: -10px;
    top: 35%;
    /* Moved down from 50% to prevent overlapping with carousel arrows */
    transform: translateY(-50%);
    z-index: 9990;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: shwEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

@keyframes shwEntrance {
    from {
        left: -160px;
        opacity: 0;
    }

    to {
        left: -10px;
        opacity: 1;
    }
}

/* Body */
.shw-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #003a70;
    /* Deep corporate blue */
    border-radius: 0 12px 12px 0;
    padding: 20px 8px 20px 14px;
    /* Thin padding */
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
}

.sticky-hire-widget:hover .shw-body {
    padding-left: 20px;
    background: #004b91;
}

/* Yellow Dot */
.shw-dot {
    width: 8px;
    height: 8px;
    background-color: #ffb800;
    /* Yellow accent */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

/* Text */
.shw-label-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.shw-main {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

/* Tooltip */
.shw-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    background: #111827;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 8px 14px;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-left: none;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: -1;
}

.sticky-hire-widget:hover .shw-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 576px) {
    .sticky-hire-widget {
        top: auto;
        bottom: 90px;
        transform: none;
    }

    .shw-main {
        font-size: 0.75rem;
    }

    .shw-body {
        padding: 16px 6px 16px 12px;
        gap: 12px;
    }

    .shw-dot {
        width: 6px;
        height: 6px;
    }
}

/* ============================================================
   WORLD CLASS FOOTER SECTION
   ============================================================ */
.main-footer {
    background: #0a0f1a;
    position: relative;
    padding: 40px 0 30px;
    color: #cbd5e1;
    overflow: hidden;
}

.footer-bg-map {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    opacity: 0.05;
    pointer-events: none;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.newsletter-content h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px;
    color: #fff !important;
    padding: 14px 20px;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 4px rgba(4, 91, 186, 0.2) !important;
}

.newsletter-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #0370d8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 91, 186, 0.3);
}

/* Footer Content */
.footer-top {
    position: relative;
    z-index: 2;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo-box {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-socials {
    margin-top: 25px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(4, 91, 186, 0.3);
    border-color: transparent;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-links a:hover i {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Blocks */
.footer-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.contact-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(4, 91, 186, 0.3);
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(4, 91, 186, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.contact-block:hover .contact-icon-box {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.contact-info .label {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info .value {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 10px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* ============================================================
   WHY CHOOSE US SECTION - COMPACT WORLD-CLASS DESIGN
   ============================================================ */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 219, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(4, 91, 186, 0.2);
}

.why-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Compact World Class Container */
.why-world-class-compact {
    position: relative;
    margin-top: 40px;
}

/* Compact Animated Background */
.why-bg-animation-compact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.why-particle {
    position: absolute;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    opacity: 0.08;
    animation: float-particle-compact 15s infinite ease-in-out;
}

.why-particle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.why-particle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.why-particle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.why-particle-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes float-particle-compact {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.12;
    }
}

/* Compact Main Container */
.why-main-container-compact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

/* Compact Header */
.why-header-compact {
    text-align: center;
    margin-bottom: 40px;
}

/* Compact Premium Badge */
.why-premium-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a3e;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
}

.why-badge-icon {
    color: #1a1a3e;
    font-size: 0.9rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Compact World Heading */
.why-world-heading-compact {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin: 0 0 15px 0;
}

.why-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compact World Subheading */
.why-world-subheading-compact {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Compact Content Grid */
.why-content-grid-compact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Compact Left Section */
.why-left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Compact 3D Element */
.why-3d-element-compact {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube-compact 10s infinite linear;
}

.why-cube-compact {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.why-cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.8), rgba(0, 200, 212, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-cube-front-compact {
    transform: translateZ(60px);
}

.why-cube-back-compact {
    transform: rotateY(180deg) translateZ(60px);
}

.why-cube-right-compact {
    transform: rotateY(90deg) translateZ(60px);
}

.why-cube-left-compact {
    transform: rotateY(-90deg) translateZ(60px);
}

@keyframes rotate-cube-compact {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Compact Stats */
.why-stats-compact {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.why-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.why-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.why-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.why-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Compact Right Section */
.why-right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Compact Feature Grid */
.why-feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.why-feature-card-compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-feature-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 91, 186, 0.1), rgba(0, 200, 212, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-feature-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(0, 200, 212, 0.2);
}

.why-feature-card-compact:hover::before {
    opacity: 1;
}

.why-feature-icon-compact {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.why-feature-content-compact {
    flex: 1;
    position: relative;
    z-index: 2;
}

.why-feature-content-compact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.why-feature-content-compact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Compact CTA */
.why-cta-compact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.why-cta-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.why-cta-compact h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.why-cta-buttons-compact {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.why-cta-btn-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.why-cta-btn-compact.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
}

.why-cta-btn-compact.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(4, 91, 186, 0.4);
}

.why-cta-btn-compact.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.why-cta-btn-compact.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-content-grid-compact {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .why-world-heading-compact {
        font-size: 2rem;
    }

    .why-3d-element-compact {
        width: 100px;
        height: 100px;
    }

    .why-cube-face {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .why-cube-front-compact {
        transform: translateZ(50px);
    }

    .why-cube-back-compact {
        transform: rotateY(180deg) translateZ(50px);
    }

    .why-cube-right-compact {
        transform: rotateY(90deg) translateZ(50px);
    }

    .why-cube-left-compact {
        transform: rotateY(-90deg) translateZ(50px);
    }

    .why-stats-compact {
        flex-wrap: wrap;
    }

    .why-feature-grid-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-main-container-compact {
        padding: 30px 20px;
    }

    .why-world-heading-compact {
        font-size: 1.8rem;
    }

    .why-world-subheading-compact {
        font-size: 1rem;
    }

    .why-3d-element-compact {
        width: 80px;
        height: 80px;
    }

    .why-cube-face {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    .why-cube-front-compact {
        transform: translateZ(40px);
    }

    .why-cube-back-compact {
        transform: rotateY(180deg) translateZ(40px);
    }

    .why-cube-right-compact {
        transform: rotateY(90deg) translateZ(40px);
    }

    .why-cube-left-compact {
        transform: rotateY(-90deg) translateZ(40px);
    }

    .why-stats-compact {
        gap: 10px;
    }

    .why-stat-item {
        min-width: 70px;
        padding: 10px;
    }

    .why-stat-number {
        font-size: 1.2rem;
    }

    .why-stat-label {
        font-size: 0.7rem;
    }

    .why-feature-card-compact {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .why-cta-compact {
        padding: 25px 20px;
    }

    .why-cta-compact h3 {
        font-size: 1.3rem;
    }

    .why-cta-buttons-compact {
        flex-direction: column;
        align-items: center;
    }

    .why-cta-btn-compact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-world-heading-compact {
        font-size: 1.5rem;
    }

    .why-3d-element-compact {
        width: 70px;
        height: 70px;
    }

    .why-cube-face {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .why-cube-front-compact {
        transform: translateZ(35px);
    }

    .why-cube-back-compact {
        transform: rotateY(180deg) translateZ(35px);
    }

    .why-cube-right-compact {
        transform: rotateY(90deg) translateZ(35px);
    }

    .why-cube-left-compact {
        transform: rotateY(-90deg) translateZ(35px);
    }

    .why-stat-number {
        font-size: 1rem;
    }

    .why-stat-label {
        font-size: 0.65rem;
    }

    .why-feature-content-compact h4 {
        font-size: 1rem;
    }

    .why-feature-content-compact p {
        font-size: 0.8rem;
    }

    .why-cta-compact h3 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-main-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .why-visual-section {
        order: 2;
    }

    .why-content-section {
        order: 1;
        align-items: center;
    }

    .why-premium-badge {
        align-self: center;
    }

    .why-world-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-world-class {
        min-height: auto;
    }

    .why-3d-element {
        width: 150px;
        height: 150px;
    }

    .why-cube {
        width: 150px;
        height: 150px;
        font-size: 2rem;
    }

    .why-cube-front {
        transform: translateZ(75px);
    }

    .why-cube-back {
        transform: rotateY(180deg) translateZ(75px);
    }

    .why-cube-right {
        transform: rotateY(90deg) translateZ(75px);
    }

    .why-cube-left {
        transform: rotateY(-90deg) translateZ(75px);
    }

    .why-cube-top {
        transform: rotateX(90deg) translateZ(75px);
    }

    .why-cube-bottom {
        transform: rotateX(-90deg) translateZ(75px);
    }

    .why-world-heading {
        font-size: 2.5rem;
    }

    .why-world-subheading {
        font-size: 1.1rem;
    }

    .why-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        padding: 25px;
    }

    .why-cta-content h3 {
        font-size: 1.6rem;
    }

    .why-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .why-cta-btn {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-world-heading {
        font-size: 2rem;
    }

    .why-3d-element {
        width: 120px;
        height: 120px;
    }

    .why-cube {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }

    .why-cube-front {
        transform: translateZ(60px);
    }

    .why-cube-back {
        transform: rotateY(180deg) translateZ(60px);
    }

    .why-cube-right {
        transform: rotateY(90deg) translateZ(60px);
    }

    .why-cube-left {
        transform: rotateY(-90deg) translateZ(60px);
    }

    .why-cube-top {
        transform: rotateX(90deg) translateZ(60px);
    }

    .why-cube-bottom {
        transform: rotateX(-90deg) translateZ(60px);
    }

    .why-float-card {
        padding: 15px;
    }

    .why-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .why-float-number {
        font-size: 1.2rem;
    }

    .why-float-label {
        font-size: 0.8rem;
    }

    .why-feature-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .why-world-cta {
        padding: 30px 20px;
    }

    .why-cta-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .footer-newsletter {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        padding: 14px;
    }
}

/* ============================================================
   STRICT MOBILE RESPONSIVENESS (OVERRIDE)
   ============================================================ */
@media (max-width: 576px) {

    /* General spacing */
    section {
        padding: 50px 0 !important;
    }

    /* Hero Title fix */
    .halide-hero .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    /* Halide Hero Canvas fix */
    .halide-hero .canvas-3d {
        width: 150vw !important;
        height: 35vh !important;
        transform: scale(0.5) translateY(0) !important;
    }

    /* Hero Carousel Section */
    .hero-carousel-section {
        height: 100vh !important;
        min-height: 550px !important;
        overflow: hidden !important;
    }

    .carousel-inner,
    .carousel-item {
        height: 100% !important;
    }

    .hero-right-col {
        height: 35vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0 !important;
    }

    .hex-visual-container {
        height: 100% !important;
        width: 100% !important;
        min-height: 200px !important;
        max-height: 300px !important;
        margin: 0 auto !important;
    }

    .hero-bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 20px !important;
    }

    /* 3D Hero Visibility Fix */
    .halide-layer {
        opacity: 1 !important;
        /* Force visibility */
        display: block !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .halide-hero .canvas-3d {
        width: 120vw !important;
        height: 40vh !important;
        transform: scale(0.6) !important;
        margin-top: -20px !important;
    }

    /* Floating Widgets Positioning */
    .floating-contact-widget {
        bottom: 80px !important;
    }

    .fc-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .sticky-hire-widget {
        bottom: 180px !important;
    }

    /* Navbar Brand Scale */
    .navbar-brand img {
        transform: scale(1.3) !important;
    }

    /* Footer Text Cut Fix */
    .contact-block {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        padding: 20px 15px !important;
    }

    .contact-info .value {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .footer-desc {
        font-size: 0.85rem !important;
        padding: 0 10px !important;
    }

    /* Core Services Stack Fix */
    .services-list li {
        font-size: 0.95rem !important;
        text-align: center;
        justify-content: center;
    }

    /* Read More Modal Fix */
    .ind-modal-header {
        padding: 20px !important;
        position: relative !important;
    }

    .modal-title-wrap {
        gap: 12px !important;
        padding-right: 30px !important; /* Space for close button */
    }

    .ind-modal-header .modal-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }

    .ind-modal-header .modal-title {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
    }

    .ind-modal .modal-body {
        padding: 20px !important;
    }

    .modal-lead {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }

    .modal-detail-item {
        font-size: 0.85rem !important;
    }

    .ind-modal-footer {
        padding: 12px 20px !important;
        flex-direction: column-reverse;
        gap: 10px !important;
    }

    /* Core Services Stack Fix */
    .services-list {
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .services-list li {
        flex-direction: column !important;
        gap: 10px !important;
        font-size: 1.05rem !important;
        text-align: center !important;
        justify-content: center !important;
        width: 100%;
    }

    .services-list li i {
        font-size: 1.6rem !important;
        margin-bottom: 5px;
        opacity: 1 !important;
    }

    /* Stats Section Fix */
    .stats-section {
        padding: 40px 0 !important;
    }

    .stat-item {
        padding: 15px 5px !important;
        margin-bottom: 20px;
    }

    .stat-icon-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
        box-shadow: 0 0 0 5px rgba(41, 170, 237, 0.15), 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .stat-count {
        font-size: 1.6rem !important;
    }

    .stat-plus {
        font-size: 1rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    /* Call Modal Mobile Fix */
    .call-modal-box {
        max-width: 330px !important;
        padding: 40px 20px 25px !important;
        border-radius: 20px !important;
    }

    .call-modal-avatar {
        width: 70px !important;
        height: 70px !important;
    }

    .call-modal-avatar .avatar-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.6rem !important;
    }

    .call-modal-name {
        font-size: 1.2rem !important;
    }

    .call-modal-number {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
    }

    .call-modal-email {
        font-size: 0.85rem !important;
        word-break: break-all;
    }

    .btn-call-now, .btn-whatsapp {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    .call-modal-close {
        top: 10px !important;
        right: 10px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
}