* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Verdana';
        background: #000;
        overflow-x: hidden;
        position: relative;
        color: white;
    }

    h2,h3 {
        font-family: 'Georgia';
    }

    a {
        font-family: 'Georgia';
    }

    /* Ultra Dynamic Background Canvas */
    #dynamicCanvas {
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    }

    /* Floating Particles */
    .particle {
        position: absolute;
        background: rgba(59, 130, 246, 0.6);
        border-radius: 50%;
        pointer-events: none;
        animation: float 15s infinite ease-in-out;
    }

    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg);
            opacity: 0;
        }
        10% { opacity: 1; }
        90% { opacity: 1; }
        50% { 
            transform: translateY(-100px) rotate(180deg);
            opacity: 0.8;
        }
    }

    .header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 20px 50px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav {
        font-family: 'Georgia';
        padding-top: 20px;
        padding-right: 20px;
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .nav-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .nav-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .nav-btn:hover::before {
        left: 100%;
    }

    .login-btn {
        background: rgba(59, 130, 246, 0.1);
        color: white;
        border: 1px solid rgba(59, 130, 246, 0.5);
    }

    .login-btn:hover {
        background: rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    .signup-btn {
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        color: white;
        border: none;
        box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
    }

    .signup-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(30, 64, 175, 0.5);
    }

    /* Hero Section */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 100px 20px;
        text-align: center;
        position: relative;
    }

    .logo {
        font-family: 'Georgia';
        font-size: 5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff 0%, #3b82f6 30%, #10b981 60%, #f59e0b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        animation: logoGlow 3s ease-in-out infinite alternate;
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        position: relative;
    }

    .logo::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #3b82f6, #10b981, #f59e0b);
        opacity: 0.1;
        border-radius: 20px;
        filter: blur(20px);
        z-index: -1;
        /* animation: logoHalo 4s ease-in-out infinite; */
    }

    .tagline {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 50px;
        font-weight: 300;
        line-height: 1.6;
        animation: fadeInUp 1s ease-out 0.5s both;
    }

    .tagline strong {
        background: linear-gradient(135deg, #10b981, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    /* CTA Buttons */
    .cta-section {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        animation: fadeInUp 1s ease-out 0.8s both;
    }

    .cta-btn {
        padding: 20px 40px;
        border: none;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        min-width: 250px;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        backdrop-filter: blur(20px);
        z-index: 10;
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .cta-btn:hover::before {
        left: 100%;
    }

    .primary-btn {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #10b981 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
    }

    .primary-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(30, 64, 175, 0.5);
    }

    .secondary-btn {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #f59e0b 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    }

    .secondary-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
    }

    /* Content Sections */
    .content-section {
        min-height: 100vh;
        padding: 100px 50px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #3b82f6, #10b981);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 0.8s ease-out;
    }

    .section-subtitle {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 60px;
        line-height: 1.6;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .feature-card {
        background: rgba(30, 64, 175, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        transition: left 0.8s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }

    .feature-desc {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(16, 185, 129, 0.1));
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 60px;
        margin-top: 60px;
    }

    .stat-item {
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .stat-number {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(135deg, #f59e0b, #10b981);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-bottom: 15px;
    }

    .stat-label {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
    }

    /* How It Works */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        margin-top: 60px;
    }

    .step-card {
        text-align: center;
        position: relative;
        padding: 40px 20px;
        background: rgba(16, 185, 129, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 20px;
        transition: all 0.4s ease;
    }

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    }

    .step-number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 30px 0 20px;
        color: white;
    }

    .step-desc {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section-full {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(245, 158, 11, 0.2));
        border-top: 1px solid rgba(59, 130, 246, 0.3);
        text-align: center;
    }

    .cta-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #ffffff, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-desc {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 50px;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        background: rgba(0, 0, 0, 0.9);
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        padding: 60px 50px 30px;
        text-align: center;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #3b82f6, #10b981);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
    }

    .footer-text {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .footer-link:hover {
        color: #3b82f6;
        transform: translateY(-2px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        padding-top: 30px;
        color: rgba(255, 255, 255, 0.5);
    }

    .fade-in-up {
        animation: fadeInUp 0.8s ease-out;
    }

    /* Animations*/
    @keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.8));
        transform: scale(1.05);
    }
    }

    @keyframes logoHalo {
        0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
        50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        25% { background-position: 100% 50%; }
        50% { background-position: 100% 100%; }
        75% { background-position: 0% 100%; }
        100% { background-position: 0% 50%; }
    }

    /* Scroll Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    

    /* Responsive */
    @media (max-width: 768px) {
        .header {
            padding: 15px 20px;
        }

        .logo {
            font-size: 3.5rem;
        }

        .tagline {
            font-size: 1.2rem;
        }

        .cta-section {
            flex-direction: column;
            gap: 20px;
        }

        .cta-btn {
            min-width: 200px;
        }

        .content-section {
            padding: 80px 20px;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .features-grid, .stats-grid, .steps-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer {
            padding: 40px 20px 20px;
        }

        .footer-links {
            flex-direction: column;
            gap: 20px;
        }
    }

    /* Mouse Trail Effect */
    .mouse-trail {
        position: fixed;
        width: 6px;
        height: 6px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: all 0.1s ease;
    }

    /* Intersection Observer Animation Classes */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Timeline Container */
.timeline-container {
    position: relative;
    padding: 60px 0 40px 0;
    margin-top: 40px;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 80px; /* Adjust based on your step-number height */
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #40e0d0, #48cae4, #0077b6);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline Steps Container */
.timeline-steps {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Individual Step Item */
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    position: relative;
}

/* Step Number Wrapper */
.step-number-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

/* Step Number Styling */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #40e0d0, #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
    position: relative;
}

/* Step Card */
.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 208, 0.6);
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.2);
}

/* Step Title */
.step-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #40e0d0;
    margin-bottom: 15px;
}

/* Step Description */
.step-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Connector Arrows */
.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50px; /* Adjust to align with step number */
    font-size: 2rem;
    color: #40e0d0;
    z-index: 4;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .timeline-line {
        width: 4px;
        height: calc(100% - 60px);
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #40e0d0, #48cae4, #0077b6);
    }
    
    .step-item {
        max-width: 500px;
        width: 100%;
    }
    
    .step-item:not(:last-child)::after {
        content: '↓';
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        top: auto;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-card {
        padding: 20px 15px;
        min-height: 180px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-desc {
        font-size: 0.9rem;
    }
    
    .timeline-container {
        padding: 40px 0 30px 0;
    }
}

.floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 1; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.6; }
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.1;
}

.geo-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: rotateShape 20s linear infinite;
}

@keyframes rotateShape {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    height: 180px;
    border-radius: 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
    cursor: pointer;
}

.card:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.card1 {
background: linear-gradient(135deg, #1e40af 0%, #1a3d99 100%);
animation: cardFloat1 4s ease-in-out infinite;
}
.card2 {
background: linear-gradient(135deg, #0d6e5f 0%, #10b981 100%);
animation: cardFloat2 4s ease-in-out infinite 1s;
}
.card3 {
background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
animation: cardFloat3 4s ease-in-out infinite 2s;
}


@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-15px) rotateZ(2deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-20px) rotateZ(-2deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-12px) rotateZ(1deg); }
}

.card-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-number {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.card-name {
    font-size: 16px;
    font-weight: 500;
}

.card-date {
    font-size: 14px;
    opacity: 0.9;
}

/* Add button disabled state */
.cta-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Update button styles */
.cta-btn {
    transition: all 0.3s ease;
}

.feature-link.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* Add to existing button styles */
.nav-btn {
  transition: all 0.3s ease;
}