        /* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap'); */
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 300; /* Maps to Light */
            font-display: swap; /* Recommended for performance */
            src: url('../fonts/inter.woff2') format('woff2'),
                /* url('./fonts/inter.woff2') format('woff2'); Fallback */
        }

        * {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /* background: linear-gradient(90deg, #667eea 0%, #764ba2 100%); */
            /* background-color: #e8e8e8; */
        }
        
        .glass-effect {
            /* background: rgba(255, 255, 255, 0.1); */
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .verification-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .progress-bar {
            background: linear-gradient(90deg, #10b981, #059669) !important;
            transition: width 0.3s ease;
        }
        
        .status-valid { color: #10b981; }
        .status-invalid { color: #ef4444; }
        .status-warning { color: #f59e0b; }
        .status-info { color: #3b82f6; }
        
        .email-row {
            transition: all 0.2s ease;
        }
        
        .email-row:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .typing-effect {
            border-right: 2px solid #667eea;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { border-color: #667eea; }
            51%, 100% { border-color: transparent; }
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .slide-in {
            animation: slideIn 0.6s ease-out;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }


/* Footer Start */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    /* padding: 3rem 0 1rem; */
}

/* .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
} */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-col ul li a:hover {
    color: white;
}
.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    /* background: var(--warning); */
    background: white;
    transition: width 0.3s;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Footer End */


/* Start Professional Alert Modal */
.alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-modal.show {
    opacity: 1;
    visibility: visible;
}

.alert-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-20px);
    transition: all 0.3s ease;
    text-align: center;
}

.alert-modal.show .alert-content {
    transform: translateY(0);
}

.alert-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.alert-body {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.alert-footer {
    display: flex;
    justify-content: center;
}

.alert-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.alert-btn-primary {
    background-color: #8b5cf6;
    color: white;
}

.alert-btn-primary:hover {
    background-color: #7c3aed;
}
/* End Professional Alert Modal */

/* Start CTA */
.step-number {
    width: 60px;
    height: 60px;
    color: white;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 3rem; */
    font-weight: bold;
    margin: 0 auto 1rem;
}
/* End CTA */

.btn-primary-large {
    color: #7c3aed;
    background: white;
}

.btn-secondary-large {
    color: white;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    border-image: initial;
}

.btn-primary-large, .btn-secondary-large {
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    cursor:pointer
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: rgba(255, 255, 255, 0.3) 0px 10px 30px;
}

.btn-secondary-large:hover {
    color: #7c3aed;
    background: white;
}