 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background: #fff;
    color: #0A1628;
    overflow-x: hidden;
}

/* Gradient text utility */
.grad-text {
    background: linear-gradient(90deg, #1A3A7C 0%, #2979FF 60%, #00B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text-light {
    background: linear-gradient(90deg, #2979FF 0%, #00B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 /* Gradient Border Animation */
        .gradient-border-card {
            position: relative;
            background: white;
            border-radius: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gradient-border-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #2979FF, #00B4FF, #1A3A7C, #2979FF);
            background-size: 300% 300%;
            border-radius: 1.5rem;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            animation: gradientShift 4s ease infinite;
        }
        
        .gradient-border-card:hover::before {
            opacity: 1;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        /* Stats Counter Animation */
        .stat-number {
            font-variant-numeric: tabular-nums;
        }
        
        /* Testimonial Swiper Styles */
        .swiper-slide {
            height: auto;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #2979FF, #00B4FF);
            border-radius: 4px;
        }
        
        /* Section Reveal Animation */
        .section-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .section-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Timeline Connector */
        .timeline-connector {
            position: relative;
        }
        
        .timeline-connector:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #2979FF, #00B4FF);
            transform: translateY(-50%);
        }
        
        @media (max-width: 768px) {
            .timeline-connector:not(:last-child)::after {
                display: none;
            }
        }


/* Navbar - ALWAYS WHITE */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Dropdown - CLICK based */
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-width: 580px;
    padding: 20px;
    z-index: 999;
    border: 1px solid rgba(41, 121, 255, 0.15);
}

.nav-dropdown.active {
    display: block;
}

.nav-dropdown-right {
    left: auto;
    right: 0;
    transform: none;
}

/* For smaller industry dropdown */
.nav-dropdown-small {
    min-width: 280px;
}

/* Tabs inside service dropdown */
.dropdown-tabs {
    display: flex;
    gap: 12px;
    padding: 0 0 16px 0;
    border-bottom: 1px solid rgba(41, 121, 255, 0.12);
    margin-bottom: 16px;
}

.dropdown-tab-btn {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(41, 121, 255, 0.2);
    color: #1A3A7C;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-tab-btn i {
    font-size: 14px;
}

.dropdown-tab-btn.active {
    background: linear-gradient(90deg, #1A3A7C, #2979FF);
    color: white;
    border-color: transparent;
}

.services-category {
    display: none;
}

.services-category.active-category {
    display: block;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none;
    color: #0A1628;
}

/* Multi-column dropdown links for Industries & About (same as Services) */
.dropdown-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.dropdown-link span {
    font-weight: 600;
    font-size: 13px;
    color: #0A1628;
}

/* Mobile menu - language row at top */
.mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf2f7;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(41, 121, 255, .2);
    font-size: 13px;
    font-weight: 600;
    color: #0A1628;
    cursor: pointer;
}

.mobile-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .25);
    min-width: 180px;
    padding: 8px;
    z-index: 2100;
    border: 1px solid rgba(41, 121, 255, .15);
}

.mobile-lang-dropdown.active {
    display: block;
}

/* Mobile submenu grid (3 columns on slightly wider screens, 1 col on narrow) */
.mobile-submenu {
    display: none;
    padding-left: 8px;
    margin-top: 10px;
    margin-bottom: 8px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

@media (min-width: 480px) {
    .mobile-submenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-submenu-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    border-radius: 10px;
    transition: background .2s;
}

.mobile-submenu-grid a:hover {
    background: #f0f5ff;
    color: #2979FF;
}

.mobile-submenu-grid a i {
    width: 22px;
    color: #2979FF;
    font-size: 14px;
}

/* Section labels inside mobile submenus (for Services tabs) */
.mobile-submenu-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2979FF;
    padding: 10px 8px 4px;
}

/* Google Translate cleanup */
.skiptranslate iframe {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

#google_translate_element {
    display: none !important;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(41, 121, 255, 0.08), rgba(0, 180, 255, 0.05));
}

.dropdown-link .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1A3A7C, #2979FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* Language dropdown */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-width: 200px;
    padding: 8px;
    z-index: 999;
    border: 1px solid rgba(41, 121, 255, 0.15);
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

.lang-option:hover {
    background: rgba(41, 121, 255, 0.08);
}

/* Mobile menu styles */
#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 2000;
    flex-direction: column;
    padding: 80px 30px 40px;
    overflow-y: auto;
}

#mobile-menu.open {
    display: flex;
}

/* Mobile submenu */
.mobile-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
}

.mobile-submenu a i {
    width: 24px;
    color: #2979FF;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.open i {
    transform: rotate(180deg);
}

/* Google Translate hide banner */
.skiptranslate iframe {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none !important;
    }

    #hamburger {
        display: flex !important;
    }
}

@media (min-width: 1025px) {
    #hamburger {
        display: none !important;
    }
}

/* ===== HERO ===== */
#hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

@media (min-width: 1024px) {
    #hero {
        align-items: center;
    }
}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(26, 58, 124, .7) 50%, rgba(10, 22, 40, .75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Animated particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ===== SECTIONS ===== */
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2979FF;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0A1628;
}

.section-title .accent {
    background: linear-gradient(90deg, #1A3A7C, #2979FF, #00B4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Numbers strip */
.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    transition: transform .3s, box-shadow .3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(41, 121, 255, .15);
}

/* Service cards */
.service-card {
    background: #fff;
    border: 1px solid rgba(41, 121, 255, .12);
    border-radius: 20px;
    padding: 28px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 124, .06), rgba(41, 121, 255, .1));
    opacity: 0;
    transition: opacity .35s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(41, 121, 255, .18);
    border-color: rgba(41, 121, 255, .35);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1A3A7C, #2979FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    transition: transform .3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Portfolio cards */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(41, 121, 255, .1);
    transition: all .35s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(41, 121, 255, .2);
}

.project-card .card-img {
    height: 200px;
    background: linear-gradient(135deg, #0A1628, #1A3A7C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    transition: transform .4s;
}

.project-card:hover .card-img {
    transform: scale(1.04);
}

/* Testimonial cards */
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(41, 121, 255, .12);
    border-radius: 20px;
    padding: 28px;
    transition: all .35s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(41, 121, 255, .15);
    border-color: rgba(41, 121, 255, .3);
    transform: translateY(-4px);
}

/* Process steps */
.process-step {
    position: relative;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(41, 121, 255, .1);
    transition: all .35s;
}

.process-step:hover {
    box-shadow: 0 16px 40px rgba(41, 121, 255, .14);
    border-color: #2979FF;
    transform: translateY(-4px);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1A3A7C, #2979FF);
    color: #fff;
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* Partner logos */
.partner-logo {
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid rgba(41, 121, 255, .12);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    cursor: pointer;
}

.partner-logo:hover {
    border-color: #2979FF;
    box-shadow: 0 8px 24px rgba(41, 121, 255, .15);
    transform: translateY(-4px);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #0A1628 0%, #102040 40%, #1A3A7C 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, .18), transparent 70%);
    top: -200px;
    right: -200px;
}

/* Footer */
footer {
    background: #010816;
    color: #8899BB;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Ticker */
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 28s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Video bg fallback gradient */
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060E1C 0%, #0A1628 30%, #1A3A7C 70%, #2979FF 100%);
    z-index: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f0f4ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#1A3A7C, #2979FF);
    border-radius: 3px;
}

/* Industries */
.industry-tag {
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(41, 121, 255, .25);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1A3A7C;
    background: #fff;
}

.industry-tag:hover {
    background: linear-gradient(90deg, #2979FF, #00B4FF);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
}

/* Insight cards */
.insight-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(41, 121, 255, .1);
    background: #fff;
    transition: all .35s;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(41, 121, 255, .16);
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    animation: pulse-green 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, .7);
    }
}

/* Animated gradient border on hover */
.grad-border {
    position: relative;
    border-radius: 20px;
}

.grad-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, #2979FF, #00B4FF, #1A3A7C);
    z-index: -1;
    opacity: 0;
    transition: opacity .3s;
}

.grad-border:hover::after {
    opacity: 1;
}

/* Hero typewriter */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: linear-gradient(180deg, #2979FF, #00B4FF);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
    border-radius: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive */
@media(max-width:768px) {
    .nav-desktop {
        display: none;
    }

    #hamburger {
        display: flex;
    }
}

@media(min-width:769px) {
    #hamburger {
        display: none;
    }
}

/* Input styles */
.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(41, 121, 255, .2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0A1628;
    transition: border-color .3s, box-shadow .3s;
    outline: none;
    background: #fff;
}

.input-field:focus {
    border-color: #2979FF;
    box-shadow: 0 0 0 3px rgba(41, 121, 255, .12);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.badge-blue {
    background: rgba(41, 121, 255, .1);
    color: #2979FF;
    border: 1px solid rgba(41, 121, 255, .2);
}

/* Case study */
.case-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1628, #1A3A7C);
    color: #fff;
    padding: 36px;
    cursor: pointer;
    transition: transform .35s, box-shadow .35s;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(26, 58, 124, .4);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(41, 121, 255, .3);
    }

    50% {
        box-shadow: 0 0 60px rgba(41, 121, 255, .6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Tabs */
.tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid rgba(41, 121, 255, .2);
    color: #1A3A7C;
}

.tab-btn.active {
    background: linear-gradient(90deg, #1A3A7C, #2979FF);
    color: #fff;
    border-color: transparent;
}

/* Careers */
.career-card {
    background: #fff;
    border: 1px solid rgba(41, 121, 255, .12);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.career-card:hover {
    box-shadow: 0 12px 30px rgba(41, 121, 255, .14);
    border-color: #2979FF;
    transform: translateX(4px);
}

.card-img {
    position: relative;
    height: 220px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 22, 40, .75),
            rgba(10, 22, 40, .15));
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon-default {
    height: 50px;
    width: auto;
    transition: opacity .35s ease, transform .35s ease;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    z-index: 2;
}

.logo-icon-hover {
    height: 36px;
    width: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .35s ease .15s, transform .35s ease .15s;
    margin-left: 8px;
    position: relative;
    z-index: 1;
}

.logo-wrapper:hover .logo-icon-default {
    transform: translateX(-3px);
}

.logo-wrapper:hover .logo-icon-hover {
    opacity: 1;
    transform: translateX(0);
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5eeff;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.active {
  border-color: rgba(41,121,255,.4);
  box-shadow: 0 8px 24px rgba(41,121,255,.1);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: #0A1628;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: background .2s;
}
.faq-btn:hover { background: #f7faff; }
.faq-btn i {
  transition: transform .3s;
  flex-shrink: 0;
  color: #2979FF;
}
.faq-item.active .faq-btn i { transform: rotate(45deg); }
.faq-content {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #556680;
  line-height: 1.75;
}
.faq-item.active .faq-content { display: block; }
/* ===== SECTION REVEAL ===== */
.section-reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.section-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== INDUSTRY CARD ===== */
.industry-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.industry-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(41,121,255,.18); }
.industry-icon { transition: all 0.3s ease; }
.industry-card:hover .industry-icon { transform: scale(1.1) rotate(5deg); }

/* ===== GRADIENT BORDER CARD ===== */
.gradient-border-card { position: relative; }
.gradient-border-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(41,121,255,.3), rgba(0,180,255,.2));
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
}
.gradient-border-card:hover::before { opacity: 1; }

/* ===== PARALLAX ===== */
.parallax-bg { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; }
@media (max-width: 768px) { .parallax-bg { background-attachment: scroll; } }

/* ===== STATS CARD ===== */
.stat-card { text-align: center; padding: 20px 12px; border-radius: 16px; transition: transform .3s, box-shadow .3s; }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(41,121,255,.13); }
.grad-text-stat {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(90deg, #1A3A7C, #2979FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== BADGE ===== */
.badge-blue { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 50px; font-size: 12px; font-weight: 700; background: rgba(41,121,255,.09); color: #2979FF; border: 1px solid rgba(41,121,255,.18); }

/* ===== FEATURES GRID ===== */
.feature-box { background: #fff; padding: 24px; border-radius: 14px; border: 1px solid #e8efff; transition: all .3s ease; }
.feature-box:hover { box-shadow: 0 12px 32px rgba(41,121,255,.12); border-color: rgba(41,121,255,.3); transform: translateY(-4px); }
.feature-box-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: #eef4ff; margin-bottom: 16px; transition: transform .3s; }
.feature-box:hover .feature-box-icon { transform: scale(1.1); }

/* ===== CASE STUDY CARDS ===== */
.spotlight-card { position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; }
.spotlight-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; display: block; }
.spotlight-card:hover img { transform: scale(1.08); }
.spotlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.5) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity .35s;
}
.spotlight-card:hover .spotlight-overlay { opacity: 1; }
.spotlight-static { position: absolute; bottom: 16px; left: 16px; right: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonial-slide { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border-radius: 18px; padding: 28px; height: 100%; border: 1px solid rgba(255,255,255,.1); }

/* ===== INSIGHTS ===== */
.insight-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: all .35s; }
.insight-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(41,121,255,.16); }
.insight-card img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .5s; }
.insight-card:hover img { transform: scale(1.05); }

/* ===== WHY US LIST ===== */
.why-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(41,121,255,.08); transition: padding-left .25s; }
.why-row:last-child { border-bottom: none; }
.why-row:hover { padding-left: 8px; }
.why-icon { width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, #1A3A7C, #2979FF); }

/* ===== INPUT ===== */
.input-field { width: 100%; padding: 11px 15px; border: 1px solid rgba(41,121,255,.18); border-radius: 11px; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-size: 14px; color: #0A1628; outline: none; transition: border-color .28s, box-shadow .28s; background: #fff; }
.input-field:focus { border-color: #2979FF; box-shadow: 0 0 0 3px rgba(41,121,255,.1); }

/* ===== SOLUTION TAG ===== */
.solution-tag { font-size: 11px; background: var(--light); color: var(--brand); padding: 4px 10px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== COUNT ===== */
.counter-val { transition: all .3s ease; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 26px; right: 26px; z-index: 500; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 6px 20px rgba(37,211,102,.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; text-decoration: none; transition: transform .28s; animation: pulse-wa 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,.65); } }

/* ===== PROCESS STEPS ===== */
.process-card { background: rgba(255,255,255,.05); border: 1px solid rgba(41,121,255,.2); border-radius: 18px; padding: 26px; transition: all .32s; }
.process-card:hover { background: rgba(41,121,255,.1); border-color: rgba(41,121,255,.45); transform: translateY(-5px); }
.process-num { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, #1A3A7C, #2979FF); color: #fff; font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* ===== QUOTE MARK ===== */
.quote-mark { animation: fadeInScale .6s ease-out; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.6rem !important; }
}