  /* --- 1. GLOBAL VARIABLES & RESET --- */
        :root {
            --primary: #0f172a;
            /* Dark Navy */
            --primary-light: #1e293b;
            --accent: #F97316;
            /* Vibrant Orange */
            --accent-hover: #ea580c;
            --text-dark: #334155;
            --text-light: #64748b;
            --white: #ffffff;
            --bg-light: #f8fafc;
            --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            letter-spacing: -0.5px;
            /* color: var(--primary); */
        }

        a {
            text-decoration: none;
            transition: 0.3s ease;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* --- 2. BUTTONS --- */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--accent), #ff8533);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: width 0.3s;
            z-index: -1;
        }

        .btn-primary-custom:hover::before {
            width: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-outline-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.6);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

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

        /* --- 3. NAVBAR --- */
        .navbar {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s;
        }

        .navbar-brand img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-link {
            font-weight: 600;
            color: var(--primary) !important;
            margin: 0 12px;
            font-size: 15px;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown Fix: Added Bridge */
        .nav-item.dropdown {
            position: relative;
        }

        /* The invisible bridge to prevent mouse from losing focus */
        .nav-item.dropdown::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            display: block;
        }

        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-hover);
            border-radius: 12px;
            padding: 10px;
            margin-top: 15px;
            /* Visual gap */
            display: none;
            animation: fadeInUp 0.3s ease;
            border-top: 2px solid var(--accent);
            /* Visual accent on top */
        }

        .dropdown-item {
            border-radius: 8px;
            padding: 10px 15px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-dark);
        }

        .dropdown-item:hover {
            background-color: var(--bg-light);
            color: var(--accent);
            transform: translateX(5px);
        }

        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
            }
        }

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

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

        /* --- 4. PARALLAX HERO SECTION --- */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 780px;
            /* Increased to accommodate client section */
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            overflow: visible;
            /* Changed to visible to prevent clipping */
        }

        /* Updated Hero Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgb(22 32 54 / 40%) 0%, rgba(15, 23, 42, 0.75) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            /* Increased to be above hero-clients */
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            margin-bottom: 60px;
            /* Space for slider */
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero h1 span {
            background: linear-gradient(to right, #FF6600, #ffb380);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.3rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* --- CLIENT SLIDER (Glassmorphism Bottom) --- */
        .hero-clients {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 3;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding: 15px 0;
            height: 120px;
            /* Fixed height to prevent overlap */
        }

        .marquee {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 100s linear infinite;
            /* Slowed down to 100s */
        }

        .client-logo-card {
            display: inline-block;
            margin: 0 25px;
            vertical-align: middle;
            background: white;
            padding: 8px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* --- UPDATED CLIENT LOGO STYLES (Color by default) --- */
        .client-logo-card img {
            /* height: 40px; */
            width: auto;
            max-width: 120px;
            object-fit: contain;
            /* REMOVED GRAYSCALE FILTER */
            /* filter: grayscale(100%); */
            /* opacity: 0.8; */
            transition: 0.3s;
        }

        .client-logo-card:hover img {
            transform: scale(1.05);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

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

        /* --- 5. SERVICES SECTION (Clean Card Design) --- */
        .service-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-img-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Clear Image - Zoom on hover */
        .service-card:hover .service-img-wrapper img {
            transform: scale(1.1);
        }

        .service-body {
            padding: 30px 25px;
            position: relative;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            background: var(--accent);
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            position: absolute;
            top: -27px;
            right: 25px;
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        }

        .service-title {
            font-size: 1.35rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .service-desc {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .read-more {
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: auto;
        }

        .read-more:hover {
            gap: 10px;
            color: var(--accent-hover);
        }

        /* --- 6. FLOATING ICONS --- */
        .fixed-social {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

        .social-btn:hover {
            transform: translateX(5px) scale(1.1);
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-facebook {
            background: #1877F2;
        }

        .btn-linkedin {
            background: #0A66C2;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 999;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* --- 7. ADDITIONAL SECTIONS --- */

        /* NEW: Parallax Styles for Workflow Section */
        .section-parallax {
            background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=1920&auto=format&fit=crop');
            /* Corporate Handshake */
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .section-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgb(15 23 42 / 63%), rgba(30, 41, 59, 0.9));
            z-index: 1;
        }

        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-card);
            transition: 0.3s;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            color: var(--accent);
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 20px;
            border: 2px solid #e2e8f0;
        }

        .why-card {
            padding: 30px;
            background: white;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: var(--shadow-card);
            height: 100%;
            transition: 0.3s;
        }

        .why-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .why-icon {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        /* Leadership Section */
        .leadership-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .quote-icon {
            font-size: 80px;
            color: rgba(0, 0, 0, 0.05);
            position: absolute;
            top: 20px;
            right: 30px;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-card);
            border: 1px solid #f1f5f9;
            transition: 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        /* --- 8. FOOTER --- */
        footer {
            background: var(--primary);
            color: #94a3b8;
            padding: 80px 0 30px;
        }

        .footer-logo img {
            height: 55px;
            width: auto;
            margin-bottom: 20px;
            /* Invert filter to make logo white for dark bg */
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .footer-title {
            color: white;
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-link {
            display: block;
            color: #94a3b8;
            margin-bottom: 12px;
            transition: 0.3s;
        }

        .footer-link:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
        }

        /* --- 9. MODALS --- */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .modal-header {
            background: var(--bg-light);
            padding: 20px 30px;
            border-bottom: 1px solid #e2e8f0;
        }

        .modal-body {
            padding: 30px;
        }

        .form-control,
        .form-select {
            border-radius: 10px;
            padding: 12px;
            border: 1px solid #cbd5e1;
            font-size: 14px;
        }

        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 6px;
        }

        /* Drag & Drop Zone */
        .upload-zone {
            border: 2px dashed #cbd5e1;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            background: var(--bg-light);
            transition: all 0.3s ease;
        }

        .upload-zone.dragover {
            border-color: var(--accent);
            background: #fff0e0;
            transform: scale(1.01);
        }

        .upload-icon {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .file-info {
            display: none;
            margin-top: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: white;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            align-items: center;
            gap: 8px;
        }

        .file-info i {
            color: #10b981;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
                margin-bottom: 10px;
            }

            .fixed-social {
                display: none;
            }

            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 15px;
                margin-top: 15px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            }

            .dropdown-menu {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 750px;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .hero-content {
                margin-bottom: 40px;
                padding: 0 15px;
            }

            .hero-badge {
                font-size: 12px;
                padding: 6px 20px;
            }
        }

        @media (max-width: 576px) {

            /* .hero { min-height: 550px; } */
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-btns {
                max-width: 250px;
            }

            .hero-btns .btn {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }

        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .hero-btns {
                max-width: 220px;
            }

            .hero-btns .btn {
                font-size: 0.85rem;
                padding: 10px 16px;
            }
        }