    @import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap');

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       MODERN FLOATING HEADER & NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    :root {
        --color-primary: #D84315;
        --color-primary-light: #F4511E;
        --color-accent: #FF9800;
        --color-accent-light: #FFB74D;
        --color-cream: #FFF8E1;
        --color-dark: #4E342E;
        --color-text: #212121;
        --color-border: #D7CCC8;
        --shadow-soft: 0 8px 30px rgba(216, 67, 21, 0.12);
        --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
        --radius-card: 12px;
        --radius-input: 6px;
        --transition: all 0.3s ease;
        --font-body: 'Segoe UI', system-ui, sans-serif;
        --font-heading: 'Germania One', 'Playfair Display', serif;
        --nav-height: 70px;
        --nav-bg: rgba(255, 255, 255, 0.98);
    }

    html {
        font-size: 18px;
    }

    body {
        font-family: var(--font-body);
        background: var(--color-cream);
        color: var(--color-text);
        min-height: 100vh;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    .site-header {
        position: absolute; /* No longer sticky */
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1040;
        height: var(--nav-height);
        width: 95%;
        max-width: 1400px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        pointer-events: none;
    }

    .brand-section {
        display: flex;
        align-items: center;
        padding: 0 35px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 40px;
        height: 70px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
        pointer-events: auto;
        position: relative;
        overflow: hidden;
    }

    /* Subtle shine animation for premium feel */
    .brand-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transform: skewX(-20deg);
        animation: shine 6s infinite;
    }

    @keyframes shine {
        0% { left: -100%; }
        20% { left: 200%; }
        100% { left: 200%; }
    }

    .header-caption {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 12px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        letter-spacing: 1px;
    }

    .header-caption span {
        color: var(--color-accent-light); /* Golden accent */
    }
    
    .header-caption i {
        background: linear-gradient(135deg, #F9F871, var(--color-accent-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 2.2rem;
        filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
    }

    /* Back To Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1050;
        display: none;
        background: linear-gradient(135deg, #8E0E00, #3C1008);
        color: #fff;
        border: 2px solid #D4AF37;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: transform 0.3s, background 0.3s;
        align-items: center;
        justify-content: center;
    }

    .back-to-top:hover {
        background: #D84315;
        transform: translateY(-5px);
    }

    .nav-menu {
        display: flex;
        position: relative;
        padding: 5px;
        height: 60px;
        margin: 0;
        background: var(--nav-bg);
        border-radius: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        pointer-events: auto;
    }

    .nav-item {
        list-style: none;
        flex: 1; /* Make items flexible for responsiveness */
        min-width: 70px;
        max-width: 100px;
        height: 50px;
        position: relative;
        z-index: 1;
    }

    .nav-item a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 100%;
        text-align: center;
        font-weight: 600;
        height: 100%;
        color: var(--color-dark);
        border-radius: 25px;
        transition: color 0.3s ease;
    }

    .nav-item a i {
        font-size: 1.1rem;
    }

    .nav-item a .text {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Active State Text Color */
    .nav-item.active a {
        color: #fff;
    }

    /* The Animated Sliding Pill Indicator */
    .indicator {
        position: absolute;
        top: 5px;
        left: 5px;
        width: 100px;
        height: 50px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
        border-radius: 25px;
        transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 0;
        box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ HERO & VIDEO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero-wizard {
        padding: calc(var(--nav-height) + 40px) 1.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-color: var(--color-dark);
        overflow: hidden;
    }

    #heroBgImage, #heroVideo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-wizard::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(78, 52, 46, 0.85) 0%, rgba(216, 67, 21, 0.75) 100%);
        z-index: 1;
    }

    .hero-grid {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-message {
        color: #fff;
    }

        .hero-message .main-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        }

        .hero-message .sub-title {
            font-size: 1.4rem;
            color: var(--color-accent);
            text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
        }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ FORM WIZARD CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .wizard-card {
        background: #ffffff;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-soft);
        padding: 1.8rem;
        border: 1px solid rgba(255, 152, 0, 0.3);
    }

        .wizard-card .form-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

    .wizard-progress {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        position: relative;
    }

        .wizard-progress::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-border);
            z-index: 0;
            transform: translateY(-50%);
        }

    .wizard-step-indicator {
        position: relative;
        z-index: 1;
        background: #fff;
        padding: 0 0.5rem;
    }

        .wizard-step-indicator .step-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-border);
            color: #fff;
            font-size: 0.85rem;
            font-weight: bold;
        }

        .wizard-step-indicator.active .step-num {
            background: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.2);
        }

    .wizard-step {
        display: none;
        animation: fadeIn 0.3s ease;
    }

        .wizard-step.active {
            display: block;
        }

    @@keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(5px);
        }

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

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-control {
        width: 100%;
        padding: 0.65rem 0.9rem;
        border: 1.5px solid var(--color-border);
        border-radius: var(--radius-input);
        font-size: 1rem;
        background: #ffffff;
        color: var(--color-text);
        font-weight: 500;
    }

        .form-control:focus {
            border-color: var(--color-accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
        }

        .form-control::placeholder {
            color: #757575;
            font-weight: 400;
        }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .text-danger {
        font-size: 0.85rem;
        color: #D32F2F;
        display: block;
        margin-top: 4px;
        font-weight: 500;
    }

    .mobile-otp-row {
        display: grid;
        grid-template-columns: 1fr max-content;
        gap: 0.8rem;
        align-items: start;
    }

        .mobile-otp-row .form-group {
            margin-bottom: 0;
            width: 100%;
        }

    .otp-btn {
        padding: 0.65rem 1.2rem;
        background: var(--color-primary-light);
        color: #fff;
        border: none;
        border-radius: var(--radius-input);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }

    .checkbox-wrap {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        margin: 1rem 0;
    }

        .checkbox-wrap input[type="checkbox"] {
            margin-top: 4px;
            width: 20px;
            height: 20px;
            accent-color: var(--color-primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkbox-wrap label {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-dark);
            cursor: pointer;
            line-height: 1.4;
        }

    #documentFields {
        display: none;
        margin-top: 0.8rem;
    }

    .info-box {
        background: rgba(255, 152, 0, 0.1);
        padding: 0.5rem 0.8rem;
        border-radius: var(--radius-input);
        border-left: 3px solid var(--color-accent);
        margin: 0.4rem 0 0.8rem;
        font-size: 0.85rem;
        color: var(--color-dark);
        font-weight: 500;
    }

    .wizard-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 1.5rem;
        gap: 0.8rem;
    }

        .wizard-nav button {
            padding: 0.65rem 1.8rem;
            border: none;
            border-radius: var(--radius-input);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
        }

    .btn-prev {
        background: #EFEBE9;
        color: var(--color-dark);
        border: 1px solid var(--color-border);
    }

    .btn-next {
        background: var(--color-primary);
        color: #fff;
    }

    .btn-submit {
        background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
        color: var(--color-dark);
        width: 100%;
        font-size: 1.1rem;
    }

    .payment-summary {
        background: rgba(255, 152, 0, 0.05);
        padding: 1rem 1.2rem;
        border-radius: var(--radius-input);
        border: 1px solid rgba(255, 152, 0, 0.2);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

        .payment-summary .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0.5rem 0;
            border-bottom: 1px dashed var(--color-border);
            gap: 1rem;
        }

            .payment-summary .summary-item:last-child {
                border-bottom: none;
            }

            .payment-summary .summary-item .label {
                font-weight: 600;
                color: #5D4037;
                flex-shrink: 0;
            }

            .payment-summary .summary-item .value {
                font-weight: 700;
                color: var(--color-primary);
                text-align: right;
                word-break: break-word;
            }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ FULL-WIDTH INFO CARDS ROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .info-cards-section {
        background: #ffffff;
        padding: 5rem 2rem;
        border-top: 4px solid var(--color-accent);
    }

    .info-grid {
        max-width: 1500px;
        width: 98%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    .info-card {
        padding: 0 1.5rem;
        border-right: 2px dashed var(--color-border);
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

        .info-card:last-child {
            border-right: none;
        }

    .info-card-header {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-primary);
        margin-bottom: 0.5rem;
    }

    .info-card-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--color-text);
    }

    .info-card img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--color-border);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ STATIC FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .site-footer {
        flex-shrink: 0;
        background: var(--color-dark);
        color: #fff;
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        border-top: 2px solid rgba(255,255,255,0.1);
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .footer-brand img {
            height: 45px;
            background: #fff;
            padding: 4px;
            border-radius: 8px;
        }

        .footer-brand .powered-by {
            font-size: 0.85rem;
            color: #BCAAA4;
            margin-bottom: 2px;
        }

        .footer-brand .company-name {
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 1px;
            font-size: 1rem;
        }

    .footer-links {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

        .footer-links a {
            color: #FFE0B2;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
        }

            .footer-links a:hover {
                color: var(--color-accent);
                text-decoration: underline;
            }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ JQUERY UI OTP DIALOG OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .ui-widget-overlay {
        background: rgba(0, 0, 0, 0.7) !important; /* Darken the background */
        backdrop-filter: blur(5px) !important; /* Blur the form behind it */
        opacity: 1 !important;
        z-index: 1100 !important;
    }

    .ui-dialog {
        background: #ffffff !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
        border: none !important;
        overflow: hidden;
        z-index: 1150 !important;
        padding: 0 !important;
        max-width: 420px !important;
        width: 90% !important;
    }

    .ui-dialog-titlebar {
        background: var(--color-primary) !important;
        color: #fff !important;
        border: none !important;
        font-family: var(--font-heading);
        padding: 1.2rem 1.5rem !important;
        border-radius: 0 !important;
    }

    .ui-dialog-titlebar-close {
        background: rgba(255,255,255,0.2) !important;
        border: none !important;
        color: #fff !important;
        border-radius: 50% !important;
        margin-top: -10px !important;
        transition: var(--transition);
    }

        .ui-dialog-titlebar-close:hover {
            background: rgba(255,255,255,0.4) !important;
        }

    .ui-dialog-content {
        padding: 2rem 1.5rem !important;
        background: #ffffff !important;
        text-align: center;
    }

    @media (max-width: 900px) {
        .site-header {
            flex-direction: column;
            gap: 15px;
            align-items: center;
            top: 15px;
            width: 100%;
        }

        .brand-section {
            height: 55px;
            padding: 0 25px;
            border-radius: 30px;
        }

        .header-caption {
            font-size: 1.6rem;
            gap: 8px;
        }

        .header-caption i {
            font-size: 1.8rem;
        }

        .nav-menu {
            width: 95%;
            justify-content: space-between;
        }

        .hero-wizard {
            padding-top: 150px; /* Adjust for taller stacked header */
        }

        .mobile-otp-row {
            grid-template-columns: 1fr;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .hero-message {
            text-align: center;
        }

        .info-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .info-card {
            border-right: none;
            border-bottom: 2px dashed var(--color-border);
            padding: 0 0 3rem 0;
        }

            .info-card:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

        .site-footer {
            flex-direction: column;
            text-align: center;
            justify-content: center;
        }
    }
