 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #1a56db;
            --secondary: #0f2a5c;
            --accent: #00d4aa;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #c3c7cf 0%, #344870 100%);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 21px;
        }
        
   .logo {display: flex;
    align-items: center;
    gap: 7px;
    height: 0px;
    margin-top: 15px;
    }
        
        .logo-icon {
            font-size: 6rem;
            margin-top:5px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--accent);
        }
        
        .cta-button {
            background-color: var(--accent);
            color: var(--secondary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background-color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0;
            background: linear-gradient(rgba(15, 42, 92, 0.9), rgba(15, 42, 92, 0.9)), url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--secondary);
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Highlights Section */
        .highlights {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .highlight-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .highlight-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .highlight-card:hover {
            transform: translateY(-10px);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            color: #00d4aa;
            margin-bottom: 20px;
        }
        
        .highlight-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .mission-box {
            background-color: var(--secondary);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
        }
        
        .mission-box h3 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
            background-color: white;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .step {
            text-align: center;
            padding: 30px 20px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #00d4aa;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .risk-note {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin-top: 40px;
            border-radius: 5px;
        }
        
        /* Vaults Section */
        .vaults {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .vault-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .vault-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .vault-header {
            background: linear-gradient(135deg, #00d4aa 0%, var(--secondary) 100%);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .vault-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .vault-body {
            padding: 30px;
        }
        
        .vault-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .vault-feature i {
            color: var(--accent);
            margin-right: 10px;
        }
        
        .fcfs-explanation {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .fcfs-explanation h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        /* Security Section */
        .security {
            padding: 80px 0;
            background-color: white;
        }
        
        .security-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .security-feature {
            text-align: center;
            padding: 30px 20px;
        }
        
        .security-icon {
            font-size: 2.5rem;
            color: #00d4aa;
            margin-bottom: 20px;
        }
        
        .security-feature h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .security-note {
            background-color: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 20px;
            margin-top: 40px;
            border-radius: 5px;
        }
        
        /* Facts Section */
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .fact-item {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        .fact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        }
        
        .fact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .fact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }
        
        .fact-item h3 {
            font-size: 1.4rem;
            color: #1e293b;
            margin-bottom: 12px;
        }
        
        .fact-item p {
            color: #64748b;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .terms-download {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #00d4aa;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
		
        
        .contact-form {
            background-color: #b6bbc6;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
		
		.fact-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .fact-item:nth-child(1) { animation-delay: 0.1s; }
        .fact-item:nth-child(2) { animation-delay: 0.2s; }
        .fact-item:nth-child(3) { animation-delay: 0.3s; }
        .fact-item:nth-child(4) { animation-delay: 0.4s; }
        .fact-item:nth-child(5) { animation-delay: 0.5s; }
        
        /* Responsive adjustments */
       
       /* Hamburger button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: 110; /* above nav */
}

/* Mobile Navigation */


       
       
       
       
        @media (max-width: 768px) {
            .facts-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .fact-item {
                padding: 25px 20px;
            }
        }
   /* Hide menu toggle on desktop */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        width: 100%;
        background: var(--secondary);
        position: absolute;
        top: 70px; /* header height */
        left: 0;
        padding: 20px 0;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    nav.show {
        display: block;
    }

    .cta-button {
        display: none; /* hide login button in header on mobile */
    }
}

/* Header layout fix */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 110; /* keep it above nav */
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 20px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 15px;
        top:7px;
    }

    .cta-button {
        position: absolute;
        right: 15px;
        top: 0px;
        padding: 8px 20px;
        font-size: 0.9rem;
        display: block;
    }

    nav.active {
        display: block;
    }

    /* Optional: shrink logo on mobile */
    .logo img {
       
       margin-bottom: -3px;
    }
}

     
        
        
        