:root {
    --primary: #2E3192;
    --primary-dark: #1A1466;
    --secondary: #1BFFFF;
    --accent: #6A0DAD;
    --dark: #1A1A2E;
    --light: #F5F5F5;
    --gray: #6B7280;
    --success: #10B981;
    --error: #EF4444;
    --whatsapp: #25D366;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles - Redesigned */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(90deg, #FF0080, #FF8C00, #40E0D0, #FF0080, #FF8C00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientAnimation 6s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
}
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}
.nav-links li {
    margin-left: 30px;
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}
.nav-links a:hover {
    color: white;
}
.nav-links a:hover::before {
    transform: scaleX(1);
}
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Hero Section - Enhanced with more effects */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark);
    margin-top: -1px; /* Remove white space above navigation */
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    z-index: 1;
}
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 49, 146, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
}
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}
.shape-2 {
    width: 250px;
    height: 250px;
    background-color: var(--secondary);
    bottom: 15%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: 2s;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    top: 50%;
    right: 30%;
    animation-duration: 22s;
    animation-delay: 5s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-5deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}
/* Floating particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
}
.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rise linear infinite;
    pointer-events: none;
}
@keyframes rise {
    0% { 
        transform: translateY(100vh) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.4; 
    }
    90% { 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(-100px) scale(1); 
        opacity: 0; 
    }
}
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}
.hero-badge {
    display: inline-block;
    background-color: rgba(46, 49, 146, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--secondary);
    border: 1px solid rgba(46, 49, 146, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}
.hero-badge.floating {
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 900px;
    line-height: 1.2;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}
.btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(46, 49, 146, 0.4);
    background-color: var(--primary-dark);
}
.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s ease;
}
.feature:hover {
    transform: translateY(-10px);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 49, 146, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid rgba(46, 49, 146, 0.2);
    transition: all 0.3s ease;
}
.feature:hover .feature-icon {
    background-color: rgba(46, 49, 146, 0.25);
    box-shadow: 0 10px 20px rgba(46, 49, 146, 0.3);
}
.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}
.feature-description {
    font-size: 0.9rem;
    color: #94a3b8;
}
/* Events Section */
.events {
    padding: 80px 0;
    background-color: white;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.event-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.event-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
}
.event-content {
    padding: 25px;
}
.event-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}
.event-description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}
.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.event-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(46, 49, 146, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.event-buttons {
    display: flex;
    gap: 10px;
}
.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}
/* WhatsApp Community Section */
.whatsapp-community {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
}
.community-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.community-icon {
    font-size: 4rem;
    color: var(--whatsapp);
    margin-bottom: 20px;
}
.whatsapp-community h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.whatsapp-community p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
/* Mentorship Section - Redesigned */
.mentorship {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.mentorship::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mentorship-content {
    position: relative;
    z-index: 1;
}
.mentorship-header {
    text-align: center;
    margin-bottom: 50px;
}
.mentorship h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.mentorship p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
.coming-soon-banner {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.coming-soon-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.coming-soon-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}
.mentors-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.mentor-preview-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mentor-preview-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.mentor-preview-logo {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}
.mentor-preview-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.mentor-preview-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}
/* Footer - Redesigned */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: white;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}
.whatsapp-link:hover {
    background-color: var(--whatsapp);
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    font-size: 14px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}
.modal-close:hover {
    color: var(--dark);
}
.modal-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.modal p {
    color: var(--gray);
    margin-bottom: 25px;
}
/* Registration Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 238, 246, 0.858);
}
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}
.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio-checkmark {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s;
}
.radio-option:hover .radio-checkmark {
    background-color: #ccc;
}
.radio-option input:checked ~ .radio-checkmark {
    background-color: var(--primary);
}
.radio-option input:checked ~ .radio-checkmark:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}
#successMessage h3 {
    color: var(--success);
}
.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.error-icon {
    font-size: 4rem;
    color: var(--error);
    margin-bottom: 20px;
}
#errorMessage h3 {
    color: var(--error);
}

/* Launch Modal Styles */
.launch-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #e8e8ef 0%, #c1c2c7 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: modalFadeIn 0.5s ease;
    overflow: hidden;
}

/* Add animated background shapes */
.modal-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 49, 146, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.modal-logo {
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #FF0080, #FF8C00, #40E0D0, #FF0080, #FF8C00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientAnimation 6s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    min-width: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.countdown-item:hover::before {
    transform: translateX(100%);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.countdown-item span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(27, 255, 255, 0.3);
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #cbd5e1;
}

.launch-info {
    margin: 25px 0;
    font-size: 1rem;
    color: #cbd5e1;
    position: relative;
    z-index: 1;
}

.launch-info span {
    font-weight: 600;
    color: var(--secondary);
}

/* Responsive styles for modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-logo {
        font-size: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 12px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
        width: 95%;
    }
    
    .modal-logo {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .countdown-container {
        gap: 8px;
        margin: 20px 0;
        flex-wrap: nowrap; /* Prevent wrapping to keep all items in one row */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
        justify-content: center;
        padding-bottom: 5px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
        flex: 1; /* Make items equal width */
        max-width: 80px; /* Limit max width */
    }
    
    .countdown-item span:first-child {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .countdown-item span:last-child {
        font-size: 0.7rem;
    }
    
    .launch-info {
        margin: 15px 0;
        font-size: 0.9rem;
    }
    
    /* Add a subtle animation to the countdown numbers */
    .countdown-item span:first-child {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
}

/* Responsive styles for modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-logo {
        font-size: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 12px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
        width: 95%;
    }
    
    .modal-logo {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .countdown-container {
        gap: 8px;
        margin: 20px 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .countdown-item span:last-child {
        font-size: 0.7rem;
    }
    
    .launch-info {
        margin: 15px 0;
        font-size: 0.9rem;
    }
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    padding: 20px;
    max-width: 300px;
    animation: slideIn 0.3s ease forwards;
    transition: opacity 0.5s ease;
}

.notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.notification-icon {
    font-size: 2rem;
    color: var(--success);
    margin-bottom: 10px;
}

.notification h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.notification p {
    margin: 0;
    color: var(--gray);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        margin-bottom: 0;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        width: 100%;
        max-width: 300px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-small {
        flex: 1;
    }
    
    .whatsapp-community {
        padding: 60px 0;
    }
    
    .whatsapp-community h2 {
        font-size: 2rem;
    }
    
    .whatsapp-community p {
        font-size: 1rem;
    }
    
    .coming-soon-banner {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.8rem;
    }
    
    .mentors-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mentor-preview-card {
        padding: 15px;
    }
    
    .mentor-preview-logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    /* Modal responsive styles */
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-logo {
        font-size: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 12px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        max-width: 200px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-community h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-community p {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .coming-soon-banner {
        padding: 15px;
    }
    
    .coming-soon-icon {
        font-size: 2rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    .mentors-preview {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal h3 {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Modal responsive styles */
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal-logo {
        font-size: 1.8rem;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.6rem;
    }
}
