 :root {
            /* Blue Palette */
            --primary: #2563eb;
            /* Vibrant Blue */
            --primary-dark: #1e40af;
            /* Deep Blue */
            --secondary: #0ea5e9;
            /* Sky Blue */
            --dark: #0f172a;
            /* Navy Slate */
            --light-bg: #f8fafc;
            --border: #e2e8f0;
            --accent-red: #ef4444;
            /* Minimal Red for alerts only */
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: var(--dark);
            scroll-behavior: smooth;
        }

        /* Glassmorphism Navbar */
        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #0ea5e9;
            --dark: #0f172a;
            --border: #e2e8f0;
        }

        /* --- Base Navbar --- */
        .navbar {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 15px 0;
            z-index: 1050;
        }

        /* Desktop Scrolled State */
        @media (min-width: 992px) {
            .navbar.scrolled {
                background: rgba(255, 255, 255, 0.8);
                backdrop-filter: blur(15px);
                margin-top: 15px;
                border-radius: 50px;
                width: 90%;
                left: 5%;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.3);
                padding: 10px 20px;
            }
        }

        /* --- Mobile Responsive Fixes --- */
        @media (max-width: 991.98px) {
            .navbar {
                background: #ffffff !important;
                /* Mobile pe white background zaroori hai readability ke liye */
                padding: 12px 0;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            }

            .navbar-collapse {
                background: white;
                margin-top: 15px;
                padding: 20px;
                border-radius: 20px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
                border: 1px solid var(--border);
            }

            .nav-item {
                text-align: center;
                border-bottom: 1px solid #f1f5f9;
            }

            .nav-item:last-child {
                border-bottom: none;
            }

            .nav-link {
                padding: 15px 0 !important;
                display: block;
            }

            .btn-login-creative {
                width: 100%;
                margin-top: 10px;
                text-align: center;
            }
        }

        /* Navbar Elements */
        .nav-link {
            color: var(--dark) !important;
            font-weight: 600;
            margin: 0 8px;
            position: relative;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        /* Animated Underline (Desktop Only) */
        @media (min-width: 992px) {
            .nav-link::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -2px;
                left: 0;
                background: var(--primary);
                transition: 0.3s;
            }

            .nav-link:hover::after {
                width: 100%;
            }
        }

        .btn-login-creative {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white !important;
            padding: 10px 28px !important;
            border-radius: 30px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        }


        /* Custom Buttons */
        .btn-primary-custom {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 700;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
        }

        /* Hero Section with Blue Gradient */
        section {
            padding: 90px 0;
        }

        .hero {
            padding: 160px 0 100px;
            background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent), radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.05), transparent);
        }

        .hero-h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 800;
            color: var(--dark);
        }

        .hero-h1 span {
            color: var(--primary);
        }

        /* Blue-themed Cards */
        .service-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 35px;
            height: 100%;
            transition: 0.4s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        }

        .icon-square {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
            transition: 0.3s;
        }

        .service-card:hover .icon-square {
            background: var(--primary);
            color: white;
        }

        /* Form Styling */
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
        }

        footer {
            background: #020617;
            color: #94a3b8;
            padding: 80px 0 30px;
        }

        footer h5 {
            color: white;
            font-weight: 700;
        }

        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }

        /* Privacy Policy */
          .policy-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 100px 0 60px;
            color: white;
            text-align: center;
        }

        .content-card {
            background: white;
            border-radius: 24px;
            padding: 50px;
            margin-top: -50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            margin-bottom: 80px;
        }

        h3 {
            color: var(--dark);
            font-weight: 700;
            margin-top: 30px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .last-updated {
            opacity: 0.9;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .policy-list {
            padding-left: 20px;
        }

        .policy-list li {
            margin-bottom: 12px;
        }

        .back-btn {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .back-btn:hover {
            color: #cbd5e1;
        }
        /*  */
        /* How We Work Styling */
    .process-section {
        padding: 90px 0;
        background: #ffffff;
    }
    
    .process-step {
        position: relative;
        text-align: center;
        padding: 20px;
    }

    /* Connecting Line (Desktop Only) */
    @media (min-width: 992px) {
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 45px;
            right: -40%;
            width: 80%;
            height: 2px;
            background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 5px, transparent 5px, transparent 10px);
            z-index: 1;
        }
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.2rem;
        margin: 0 auto 25px;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        border: 4px solid white;
    }

    .process-card {
        transition: 0.3s;
    }

    .process-card h5 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .process-card p {
        font-size: 0.95rem;
        color: #64748b;
    }