* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f8f8fa;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00264d;
    color: white;
    padding: 1rem 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    text-decoration: none;
    font-weight: bold;
}

/* .hero {
    background: linear-gradient(135deg, #003973, #e5e5e5);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
} */

.section {
    padding: 2rem;
    margin: 2rem auto;
    text-align: center;
    background: white;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background: #00264d;
    color: var(--text-light);
}


:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text: #1f2937;
    --text-light: #6b7280;
}

body {
    min-height: 100vh;
    color: var(--text);
    line-height: 1.5;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
}

.logo {
    height: 2.5rem;
    width: auto;
}

.logo svg {
    height: 100%;
    width: auto;
}



/* .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
} */

/* .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 1.5rem;
} */

/* .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}



.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
} */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    /* color: white; */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-top: 6rem;
}

.hero-content span {
    font-size: 3.5rem;
    font-weight: 800;
    /* color: white; */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-top: 6rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    /* transition: background-color 0.3s ease; */
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    /* margin-left: 30%; */
}

.cta-button:hover {
    background: var(--primary-dark);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.success-message {
    display: none;
    color: #059669;
    margin-top: 1rem;
}

.features-section {
    padding: 2rem;
    padding-top: 5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(37, 99, 235, 0.06),
            transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.feature-card {
    /* Existing styles... */
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Feature Modal Styles */
.feature-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.feature-modal-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.feature-modal.active .feature-modal-container {
    transform: translateY(0);
}

.feature-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-modal-content {
    color: var(--text);
    line-height: 1.6;
}

.feature-modal-content ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-modal-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-modal-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.close-feature-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-feature-modal:hover {
    color: var(--primary);
}

.feature-card.coming-soon {
    position: relative;
    background: linear-gradient(to bottom right,
            rgba(59, 130, 246, 0.05),
            rgba(99, 102, 241, 0.05));
    border: 2px dashed rgba(59, 130, 246, 0.2);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.feature-card.coming-soon:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(to bottom right,
            rgba(59, 130, 246, 0.08),
            rgba(99, 102, 241, 0.08));
}

.feature-card.coming-soon .feature-icon {
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    opacity: 0.8;
}

.feature-modal-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-modal-cta p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-waitlist-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-waitlist-btn:hover {
    background: var(--primary-dark);
}

.bot-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
}

.bot-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.bot-cta-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.bot-cta-section button {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* footer {
    background-color: #1a202c;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.footer-links li {
    display: inline-block;
    margin: 0 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
} */

.footer-text {
    font-size: 0.875rem;
    opacity: 0.7;
}

.scroll-indicator {
    display: none;
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
@media (max-width: 992px) {
    .scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 3s infinite;
        color: #6366F1;
        opacity: 0.8;
    }
}


@media (max-width: 768px) {
    /* .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    } */

    .features-section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-modal-container {
        padding: 1.5rem;
    }

    .feature-modal-title {
        font-size: 1.5rem;
    }
}