    :root {
        --brand-navy: #04152d;
        --brand-orange: #0fa0d0;
        --white: #ffffff;
        --bg-light: #f4f7fa;
        --text-dark: #0f172a;
        --text-muted: #64748b;
        --card-shadow: 0 10px 30px -5px rgba(4, 21, 45, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Plus Jakarta Sans', sans-serif;
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
        overflow-x: hidden;
    }

    /* --- NAVIGATION --- */

    /* Navigation Styling */
    .navbar {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        height: 80px;
        display: flex;
        align-items: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 2000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .logo img {
        height: 50px;
        width: auto;
        display: block;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 35px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--brand-navy);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: var(--brand-orange);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Professional Login Button */
    .login-btn {
        background: var(--brand-orange);
        color: white;
        padding: 10px 28px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    }

    .login-btn:hover {
        background: var(--brand-navy);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(4, 21, 45, 0.2);
    }

    /* Burger Menu Styling */
    .burger {
        display: none;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--brand-navy);
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 992px) {
        .nav-links {
            position: fixed;
            top: 80px;
            right: -100%;
            height: calc(100vh - 80px);
            background: white;
            flex-direction: column;
            width: 100%;
            text-align: center;
            padding-top: 50px;
            transition: 0.5s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-links.active {
            right: 0;
        }

        .burger {
            display: block;
        }

        /* Animate Burger into an 'X' when active */
        .burger.toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.toggle .line2 {
            opacity: 0;
        }

        .burger.toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
    }

    /* nav {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 8%;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .logo img {
        transition: transform 0.3s;
    }

    .logo img:hover {
        transform: scale(1.05);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 1.5rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--brand-navy);
        font-weight: 700;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        letter-spacing: 0.5px;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: var(--brand-orange);
    }

    .burger {
        display: none;
        cursor: pointer;
        color: var(--brand-navy);
        font-size: 1.5rem;
    } */


    .hero {
        height: 100vh;
        background: var(--brand-navy);
        display: flex;
        align-items: center;
        padding: 0 8%;
        position: relative;
        overflow: hidden;
    }

    /* Animated Background Elements */
    .hero-bg-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float-around 20s infinite alternate ease-in-out;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
        background: var(--brand-orange);
        top: -100px;
        right: -50px;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
        background: #1e40af;
        bottom: -50px;
        left: -50px;
        animation-delay: -5s;
    }

    @keyframes float-around {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        100% {
            transform: translate(50px, 100px) rotate(15deg);
        }
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        width: 100%;
        z-index: 2;
        gap: 2rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content .badge {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(255, 102, 0, 0.1);
        border: 1px solid var(--brand-orange);
        color: var(--brand-orange);
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.8rem;
        margin-bottom: 20px;
        margin-top: 100px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero p {
        /* background: linear-gradient(to right, var(--brand-orange), #ff914d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
        color: #fff;
    }

    /* Creative Visual Element: The "Glass Card" */
    .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glass-payout-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 24px;
        width: 320px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: card-float 4s infinite ease-in-out;
    }

    .glass-payout-card .success-ring {
        width: 60px;
        height: 60px;
        border: 4px solid var(--brand-orange);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-orange);
        font-size: 1.5rem;
    }

    @keyframes card-float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    @media (max-width: 992px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content {
            text-align: center;
            order: 2;
        }

        .hero-visual {
            order: 1;
            margin-bottom: 30px;
        }

        .hero {
            height: auto;
            padding: 150px 8% 80px;
        }
    }

    .btn {
        background: var(--brand-orange);
        color: white;
        padding: 1.2rem 3rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        transition: 0.4s;
        box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
        background: #1afff7;
    }

    /* --- SECTIONS --- */
    .section {
        padding: 120px 10% 80px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--brand-navy);
    }

    .section-title .bar {
        width: 50px;
        height: 5px;
        background: var(--brand-orange);
        margin: 20px auto;
        border-radius: 10px;
    }

    /* --- SERVICES --- */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .service-card {
        background: var(--white);
        padding: 4rem 2.5rem;
        border-radius: 30px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: var(--card-shadow);
    }

    .service-card:hover {
        transform: scale(1.05);
        border-color: var(--brand-orange);
    }

    .service-card i {
        font-size: 2.5rem;
        background: linear-gradient(45deg, var(--brand-orange), #4dd5ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2rem;
    }

    /* --- ABOUT --- */
    .about-section {
        background: var(--brand-navy);
        color: white;
        border-radius: 50px;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(4, 21, 45, 0.2);
    }

    .about-content {
        padding: 6rem;
    }

    .about-content h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
        font-weight: 800;
    }

    .about-content p {
        font-size: 1.15rem;
        line-height: 1.9;
        opacity: 0.8;
        margin-bottom: 2.5rem;
    }

    /* --- FOOTER --- */
    .main-footer {
        background: var(--brand-navy);
        color: #cbd5e1;
        padding: 100px 10% 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .footer-col h4 {
        color: var(--white);
        margin-bottom: 2rem;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 15px;
    }

    .footer-col ul li a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: var(--brand-orange);
        padding-left: 8px;
    }

    .footer-bottom {
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: center;
        font-size: 0.85rem;
        opacity: 0.7;
    }

    /* Contact */
    .contact-section {
        background: var(--bg-light);
        position: relative;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 50px;
        background: var(--white);
        border-radius: 40px;
        padding: 60px;
        box-shadow: 0 40px 100px rgba(4, 21, 45, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    /* Left Side: Contact Info Hub */
    .contact-hub {
        background: var(--brand-navy);
        padding: 40px;
        border-radius: 30px;
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-hub h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-hub p {
        opacity: 0.7;
        margin-bottom: 40px;
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-method .icon-box {
        width: 50px;
        height: 50px;
        background: rgba(255, 102, 0, 0.15);
        border: 1px solid var(--brand-orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-orange);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .method-text h5 {
        color: var(--brand-orange);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .method-text p {
        margin-bottom: 0;
        opacity: 1;
        font-weight: 600;
        font-size: 1rem;
    }

    /* Right Side: Modern Form */
    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--brand-navy);
    }

    .form-input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #edf2f7;
        border-radius: 12px;
        font-family: inherit;
        font-size: 1rem;
        transition: 0.3s;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--brand-orange);
        background: #fff;
        box-shadow: 0 10px 20px rgba(255, 102, 0, 0.05);
    }

    .submit-btn {
        width: 100%;
        padding: 18px;
        background: var(--brand-orange);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 800;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        background: var(--brand-navy);
        transform: translateY(-3px);
    }

    @media (max-width: 992px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
            padding: 30px;
        }

        .contact-hub {
            padding: 30px;
        }
    }


    /* terms & conditional */
    /* Header Styling */
    .legal-header {
        background: var(--brand-navy);
        color: white;
        padding: 80px 10% 40px;
        text-align: center;
    }

    .legal-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .legal-header p {
        opacity: 0.8;
        font-weight: 300;
    }

    /* Container */
    .content-wrap {
        max-width: 900px;
        margin: -40px auto 100px;
        background: white;
        padding: 60px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    section {
        margin-bottom: 40px;
    }

    .content-wrap h2 {
        color: var(--brand-navy);
        font-size: 1.4rem;
        border-left: 4px solid var(--brand-orange);
        padding-left: 15px;
        margin-bottom: 20px;
    }

    p,
    li {
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    ul {
        padding-left: 20px;
    }

    .last-updated {
        text-align: center;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 40px;
    }

    .back-home {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--brand-orange);
        text-decoration: none;
        font-weight: 700;
        margin-bottom: 30px;
    }

    @media (max-width: 768px) {
        .content-wrap {
            padding: 30px;
            margin: -20px 5% 50px;
        }
    }

    /* --- MOBILE --- */
    @media (max-width: 992px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: white;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: 0.5s;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            right: 0;
        }

        .burger {
            display: block;
            z-index: 1001;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }

        .about-section {
            flex-direction: column;
        }

        .about-content {
            padding: 3rem 1.5rem;
        }
    }