﻿
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

/* ================= FOCUS STATES ================= */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(74,163,255,0.45);
    outline: none;
}

/* ================= NAVBAR ================= */

.navbar {
    background: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin-right: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

    .navbar .nav-link:hover {
        color: #4aa3ff !important;
    }
/* ================= LOGO ================= */

.navbar-logo {
    height: 75px; /* desktop size */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px; /* mobile size */
    }
}

.navbar-brand:hover .navbar-logo {
    filter: drop-shadow(0 0 8px rgba(74,163,255,0.5));
}

/* ================= HERO SECTION ================= */

.hero-section {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    overflow: hidden;
}

.hero-content {
    color: #fff;
    padding-left: 4rem;
}
/* HERO BADGE */
.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4aa3ff;
    border: 1px solid rgba(74,163,255,0.4);
    border-radius: 50px;
}

.hero-badge,
.hero-tag {
    display: inline-block;
    background: rgba(74,163,255,0.15);
    color: #4aa3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

    .hero-title span {
        color: #4aa3ff;
    }

.hero-text {
    font-size: 1.05rem;
    color: #cfcfcf;
    max-width: 520px;
}

.hero-actions .btn {
    margin-right: 15px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

    .hero-actions .btn:hover {
        transform: translateY(-3px);
    }

/* ================= HERO IMAGE ================= */

.hero-image {
    height: 100vh;
    position: relative;
}

    .hero-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to left, rgba(0,0,0,0.2), rgba(0,0,0,0.9) );
    z-index: 1;
}

/* ================= SERVICES ================= */

.service-card {
    background: linear-gradient(180deg, #111, #0a0a0a);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

    .service-card i {
        font-size: 3rem;
        color: #4aa3ff;
        margin-bottom: 20px;
    }

    .service-card h5 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .service-card p {
        color: #bdbdbd;
        font-size: 0.95rem;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.6);
        border-color: rgba(74,163,255,0.35);
    }

/* ================= BUTTONS ================= */

.btn-primary {
    background: #4aa3ff;
    border-color: #4aa3ff;
}

    .btn-primary:hover {
        background: #2f8ae6;
        border-color: #2f8ae6;
    }

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

.btn-success {
    background: #25d366;
    border-color: #25d366;
}

    .btn-success:hover {
        background: #1ebc59;
    }

/* ================= FOOTER ================= */
/* ===== FOOTER ===== */
.site-footer {
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,255,255,.1);
}
    .site-footer a {
        color: #e5e7eb;
        text-decoration: none;
    }

        .site-footer a:hover {
            color: #60a5fa;
        }

.office-address a {
    color: #e5e7eb !important;
}

    .office-address a:hover {
        color: #93c5fd !important;
        text-decoration: underline;
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h5,
.footer-col h6 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.office-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #60a5fa;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #cbd5f5;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color .2s ease;
        }

            .footer-col ul li a:hover {
                color: #60a5fa;
            }

/* CTA BAR */
.footer-cta {
    margin-top: 50px;
    padding: 30px;
    background: rgba(15,23,42,.9);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-cta h5 {
        margin: 0;
        color: #fff;
    }

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

    /* ICON CIRCLE */
    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cbd5f5;
        font-size: 16px;
        transition: all 0.25s ease;
    }

/* TOOLTIP WRAPPER */
.social-tooltip {
    position: relative;
}

/* TOOLTIP TEXT */
.tooltip-text {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

    /* TOOLTIP ARROW */
    .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #111827 transparent transparent transparent;
    }

/* SHOW TOOLTIP */
.social-tooltip:hover .tooltip-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* HOVER EFFECT */
.footer-social a:hover {
    transform: translateY(-4px);
}

    /* BRAND COLORS */
    .footer-social a:hover .fa-linkedin-in {
        color: #0A66C2;
    }

    .footer-social a:hover .fa-instagram {
        color: #E1306C;
    }

    .footer-social a:hover .fa-facebook-f {
        color: #1877F2;
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.a[b-evh0wblrdh] {
    color: white;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .hero-section {
        padding-top: 130px;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-text {
        margin: auto;
    }

    .hero-image {
        height: auto;
        margin-top: 40px;
    }

        .hero-image img {
            height: auto;
        }
}

@media (max-width: 768px) {

    .hero-section {
        padding-top: 140px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }

    .hero-actions .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .navbar-collapse {
        background: #000;
        padding: 1rem;
    }
}

/* ================= IT INFINITE NAVBAR ================= */

.it-navbar {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

    .it-navbar .navbar-brand span {
        color: #fff;
        font-size: 1.2rem;
    }

    .it-navbar .nav-link {
        color: rgba(255,255,255,0.85);
        font-weight: 500;
        position: relative;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

        .it-navbar .nav-link i {
            font-size: 0.75rem;
        }

        .it-navbar .nav-link:hover {
            color: #4aa3ff;
        }

        /* ACTIVE UNDERLINE */
        .it-navbar .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #4aa3ff, #00e0ff);
            border-radius: 10px;
        }

/* RIGHT HAMBURGER ICON */
.menu-icon {
    width: 28px;
    cursor: pointer;
}

    .menu-icon span {
        display: block;
        height: 2px;
        background: #fff;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

/* MOBILE */
@media (max-width: 992px) {
    .it-navbar .navbar-collapse {
        background: #000;
        padding: 1.5rem;
    }

    .it-navbar .nav-link {
        padding: 10px 0;
    }

    .menu-icon {
        display: none;
    }
}

/* ================= DROPDOWN STYLE ================= */

.it-dropdown {
    background: #0b0b0b;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

    .it-dropdown .dropdown-item {
        color: rgba(255,255,255,0.85);
        font-size: 0.95rem;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

        .it-dropdown .dropdown-item:hover {
            background: rgba(74,163,255,0.12);
            color: #4aa3ff;
        }

/* Smooth animation */
.dropdown-menu {
    animation: dropdownFade 0.25s ease forwards;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 6px;
    }
}

/* Center menu perfect alignment */
.navbar-nav {
    margin: 0 auto;
}

/* Active underline like ThemeForest */
.navbar .nav-link {
    position: relative;
    padding-bottom: 6px;
}

    .navbar .nav-link.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 22px;
        height: 2px;
        background: #4aa3ff;
        transform: translateX(-50%);
        border-radius: 2px;
    }

/* Hamburger styling */
.navbar-toggler {
    border: none;
    outline: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }
/* ================= FOOTER FIX ================= */

.site-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}

    .site-footer p {
        color: #aaa;
        font-size: 0.9rem;
        margin: 0;
    }

    .site-footer strong {
        color: #fff;
    }

/* ================= HERO VIDEO ================= */
/* =====================================================
   FULLSCREEN VIDEO HERO
===================================================== */

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* VIDEO */
.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,0.85), rgba(0,0,0,0.45) );
    z-index: 1;
}

/* CONTENT WRAPPER */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* TEXT */
.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4aa3ff;
    border: 1px solid rgba(74,163,255,0.4);
    border-radius: 50px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

    .hero-title span {
        color: #4aa3ff;
    }

.hero-text {
    font-size: 1.05rem;
    color: #cfcfcf;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .hero-actions .btn:hover {
        transform: translateY(-3px);
    }

/* MOBILE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
/* =====================================================
   OUR CLIENTS SECTION
===================================================== */

/* =====================================================
   CLIENT MARQUEE (EXACT LOGO COLORS)
===================================================== */

.client-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
    position: relative;
    padding: 15px 0;
}

    /* Fade edges for premium look */
    .client-marquee-wrapper::before,
    .client-marquee-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 90px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .client-marquee-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #000 0%, transparent 100%);
    }

    .client-marquee-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #000 0%, transparent 100%);
    }

/* Track */
.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
}

/* Item */
.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* LOGO – REAL COLORS */
    .client-item img {
        height: 70px;
        object-fit: contain;
        /* IMPORTANT: keep original colors */
        filter: none;
        opacity: 0.9;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    /* Hover polish (NO color change) */
    .client-item:hover img {
        opacity: 1;
        transform: scale(1.08);
    }

/* Pause animation on hover */
.client-marquee-wrapper:hover .client-marquee-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .client-item img {
        height: 55px;
        opacity: 1;
    }

    .client-marquee-wrapper::before,
    .client-marquee-wrapper::after {
        width: 45px;
    }
}

/* =====================================================
   OUR CLIENTS SECTION
===================================================== */

section h2 {
    line-height: 1.3;
}

section p {
    font-size: 0.95rem;
}

.counter {
    font-size: 3rem;
    line-height: 1;
}

/* =====================================================
  ///////// CLIENT MARQUEE///////
===================================================== */


/* =====================================================
   ABOUT US – FULLSCREEN VIDEO
===================================================== */

.about-video-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9) );
    z-index: 2;
}

.about-video-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

/* =====================================================
   ABOUT CARDS
===================================================== */


/* =====================================================
   FULLSCREEN ABOUT VIDEO (FIXED)
===================================================== */

/* =====================================================
   FULLSCREEN VIDEO BASE
===================================================== */

.about-video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9) );
    z-index: 1;
}

/* =====================================================
   HERO CONTENT
===================================================== */

.about-video-hero {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* =====================================================
   WHO WE ARE OVERLAY SECTION
===================================================== */

.about-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* Glass Card */
.about-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

    .about-glass-card i {
        font-size: 2.5rem;
        color: #0d6efd;
    }

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {
    .about-overlay-content {
        position: relative;
        margin-top: -120px;
        padding-bottom: 40px;
    }

    .about-video-section {
        height: auto;
        min-height: 100vh;
    }
}



/* ================= CARDS ================= */

.about-highlight-card {
    background: #111;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

    .about-highlight-card i {
        font-size: 2.5rem;
        color: #0d6efd;
        margin-bottom: 15px;
    }

/* ================= STATS ================= */

.stat-card h2 {
    font-size: 3rem;
    color: #0d6efd;
}

.stat-card p {
    color: #aaa;
}

/* ================= TIMELINE ================= */

.timeline {
    border-left: 2px solid #0d6efd;
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 25px;
}

.timeline-year {
    color: #0d6efd;
    font-weight: bold;
    display: block;
}

/* ================= HERO BADGE ================= */

.hero-badge {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
}



/* =====================================================
   PROCESS FLOW (INFOGRAPHIC)
===================================================== */

/* =====================================================
   PROCESS FLOW – FIXED & CENTERED
===================================================== */

.process-flow {
    display: flex;
    justify-content: center; /* CENTER whole flow */
    align-items: flex-start;
    gap: 40px;
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

    /* Connector line */
    .process-flow::before {
        content: "";
        position: absolute;
        top: 35px; /* aligns with icon center */
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 2px;
        background: linear-gradient( to right, transparent, #0d6efd, transparent );
        opacity: 0.4;
        z-index: 1;
    }

/* Step card */
.process-step {
    background: #111;
    padding: 32px 24px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    width: 220px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

    .process-step.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Icon wrapper */
.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 3; /* ABOVE LINE */
}

    .process-icon i {
        font-size: 1.6rem;
        color: #0d6efd;
    }

/* Titles */
.process-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */
.process-step p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE (MOBILE STACK)
===================================================== */

@media (max-width: 991px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

        .process-flow::before {
            display: none;
        }

    .process-step {
        width: 100%;
        max-width: 360px;
    }
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
}

.timeline-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    position: relative;
}

    /* center line */
    .timeline-wrapper::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, #0d6efd, #00e0ff);
        z-index: 0;
    }

.timeline-card {
    min-width: 260px;
    background: #111;
    border-radius: 16px;
    padding: 25px;
    color: #ddd;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

    .timeline-card::before {
        content: "";
        position: absolute;
        top: -14px;
        left: 25px;
        width: 14px;
        height: 14px;
        background: #0d6efd;
        border-radius: 50%;
    }

    .timeline-card:hover {
        transform: translateY(-10px);
        background: linear-gradient(135deg, #0d6efd, #00e0ff);
        color: #fff;
    }

    .timeline-card .year {
        font-size: 22px;
        font-weight: 700;
        display: block;
        margin-bottom: 10px;
    }

    .timeline-card.highlight {
        border: 2px solid #00e0ff;
    }

.case-card {
    background: #111;
    border-radius: 22px;
    padding: 45px;
    max-width: 650px;
    margin: auto;
    text-align: center;
    color: #ddd;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.client-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.case-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 25px;
}

    .stats span {
        font-size: 32px;
        font-weight: 700;
        color: #00e0ff;
    }

    .stats small {
        display: block;
        font-size: 12px;
        color: #aaa;
    }

.case-card {
    background: #111;
    border-radius: 22px;
    padding: 45px;
    max-width: 650px;
    margin: auto;
    text-align: center;
    color: #ddd;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.client-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.case-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 25px;
}

    .stats span {
        font-size: 32px;
        font-weight: 700;
        color: #00e0ff;
    }

    .stats small {
        display: block;
        font-size: 12px;
        color: #aaa;
    }

/* =====================================================
   FORCE TIMELINE TO BE MARQUEE (NOT SLIDER)
===================================================== */

marquee {
    width: 100%;
    overflow: hidden !important;
}

    marquee .timeline-wrapper {
        overflow: visible !important; /* disable slider behavior */
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    marquee .timeline-card {
        flex-shrink: 0; /* prevents cards from squeezing */
    }

    /* Hide scrollbar just in case browser injects it */
    marquee::-webkit-scrollbar {
        display: none;
    }
/* =====================================================
   PROCESS FLOW – ENHANCEMENTS
===================================================== */

/* Smooth floating animation */
.process-step {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

    /* Hover polish */
    .process-step:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.6);
        background: linear-gradient(135deg, #0d6efd, #00e0ff);
    }

        .process-step:hover h5,
        .process-step:hover p {
            color: #fff;
        }

    /* ACTIVE STEP (on scroll) */
    .process-step.is-active {
        transform: translateY(-14px) scale(1.04);
        background: linear-gradient(135deg, #0d6efd, #00e0ff);
        box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    }

        .process-step.is-active h5,
        .process-step.is-active p {
            color: #fff;
        }

        /* ICON glow */
        .process-step.is-active .process-icon {
            background: rgba(255,255,255,0.25);
            box-shadow: 0 0 20px rgba(13,110,253,0.8);
        }

/* MOBILE STACK IMPROVEMENT */
@media (max-width: 768px) {
    .process-flow {
        margin-top: 40px;
    }

    .process-step {
        padding: 28px 22px;
    }
}
/* =========================================
   GLOBAL FIXED VIDEO BACKGROUND
========================================= */

.global-video-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

    .global-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Dark overlay for readability */
.global-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9) );
    z-index: 1;
}

/* =========================================
   CONTENT LAYER
========================================= */

body {
    position: relative;
    z-index: 1;
}

.about-video-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}


/* ===== MEGA DROPDOWN ===== */
. /* stop left jump */
.mega-dropdown {
    position: static;
}

/* lock dropdown position */
.mega-dropdown .mega-menu {
    left: auto !important;
    right: 0;
    top: 100%;
    margin-top: 10px;
}

.it-dropdown .dropdown-item {
    padding: 12px 14px;
    border-radius: 10px;
    transition: background .25s ease;
    color: #e5e7eb;
}

    .it-dropdown .dropdown-item:hover {
        background: rgba(59,130,246,.12);
    }

.service-icon {
    font-size: 20px;
    color: #3b82f6;
    margin-top: 4px;
    min-width: 22px;
}

/* Mobile fix */
@media (max-width: 991px) {
    .mega-menu {
        min-width: 100%;
    }
}
