:root {
    --primary: #2E3192;
    --primary-dark: #1A1466;
    --secondary: #1BFFFF;
    --accent: #6A0DAD;
    --dark: #1A1A2E;
    --light: #F5F5F5;
    --gray: #6B7280;
    --success: #10B981;
    --error: #EF4444;
    --whatsapp: #25D366;
    --space: #0F0C29;
    --space-light: #302B63;
    --space-accent: #24243e;
    --cosmic-purple: #8A2BE2;
    --cosmic-blue: #00BFFF;
    --cosmic-pink: #FF1493;
    --gradient-1: linear-gradient(45deg, #FF416C, #FF4B2B);
    --gradient-2: linear-gradient(45deg, #56CCF2, #2F80ED);
    --gradient-3: linear-gradient(45deg, #11998e, #38ef7d);
    --gradient-4: linear-gradient(45deg, #F2994A, #F2C94C);
    --gradient-5: linear-gradient(45deg, #EB5757, #F2994A);
    --gradient-6: linear-gradient(45deg, #DA22FF, #9733EE);
    --gradient-7: linear-gradient(45deg, #00B4DB, #0083B0);
    --gradient-8: linear-gradient(45deg, #F7971E, #FFD200);
    --gradient-9: linear-gradient(45deg, #4158D0, #C850C0, #FFCC70);
    --gradient-10: linear-gradient(45deg, #00C9FF, #92FE9D);
    --gradient-11: linear-gradient(45deg, #FF9A9E, #FAD0C4);
    --gradient-12: linear-gradient(45deg, #A1C4FD, #C2E9FB);
    --gradient-13: linear-gradient(45deg, #d4fc79, #96e6a1);
    --gradient-14: linear-gradient(45deg, #84FAB0, #8FD3F4);
    --gradient-15: linear-gradient(45deg, #FA8BFF, #2BD2FF, #2BFF88);
}
* {
    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 */
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);
}
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}
.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;
}
/* ConnectZone Section - Enhanced Design */
.connectzone {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F0C29, #302B63, #24243e);
    overflow: hidden;
}
.connectzone-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    filter: blur(2px);
}
.floating-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}
.floating-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 10%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: 2s;
}
.floating-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    top: 50%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: 5s;
}
.floating-shapes .shape-4 {
    width: 100px;
    height: 100px;
    background: var(--gradient-4);
    bottom: 30%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: 3s;
}
.floating-shapes .shape-5 {
    width: 120px;
    height: 120px;
    background: var(--gradient-5);
    top: 20%;
    right: 40%;
    animation-duration: 26s;
    animation-delay: 1s;
}
.floating-shapes .shape-6 {
    width: 180px;
    height: 180px;
    background: var(--gradient-15);
    top: 30%;
    left: 25%;
    animation-duration: 32s;
    animation-delay: 4s;
}
.floating-shapes .shape-7 {
    width: 140px;
    height: 140px;
    background: var(--gradient-10);
    bottom: 20%;
    right: 30%;
    animation-duration: 24s;
    animation-delay: 6s;
}
.floating-shapes .shape-8 {
    width: 90px;
    height: 90px;
    background: var(--gradient-14);
    top: 60%;
    left: 40%;
    animation-duration: 29s;
    animation-delay: 7s;
}
@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); }
}
.connectzone-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
.section-badge {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-15);
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(250, 139, 255, 0.3);
    animation: pulse 2s infinite;
}
.section-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(250, 139, 255, 0.2);
}
.section-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 500;
}
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-10);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 201, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}
.register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 201, 255, 0.4);
}
.register-btn:hover::before {
    transform: translateX(0);
}
.register-btn i {
    transition: transform 0.4s ease;
}
.register-btn:hover i {
    transform: translateX(8px);
}
.connectzone-showcase {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}
.showcase-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}
.showcase-card:nth-child(1)::before {
    background: var(--gradient-1);
}
.showcase-card:nth-child(2)::before {
    background: var(--gradient-2);
}
.showcase-card:nth-child(3)::before {
    background: var(--gradient-3);
}
.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.showcase-card:nth-child(1) .card-icon {
    background: var(--gradient-1);
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3);
}
.showcase-card:nth-child(2) .card-icon {
    background: var(--gradient-2);
    box-shadow: 0 10px 20px rgba(86, 204, 242, 0.3);
}
.showcase-card:nth-child(3) .card-icon {
    background: var(--gradient-3);
    box-shadow: 0 10px 20px rgba(17, 153, 142, 0.3);
}
.showcase-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}
.showcase-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}
.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    transition: all 0.4s ease;
    font-size: 18px;
}
.showcase-card:nth-child(1) .card-arrow {
    background: var(--gradient-1);
}
.showcase-card:nth-child(2) .card-arrow {
    background: var(--gradient-2);
}
.showcase-card:nth-child(3) .card-arrow {
    background: var(--gradient-3);
}
.showcase-card:hover .card-arrow {
    transform: translateX(8px);
}
/* New Features Section */
.connectzone-features-new {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
.feature-heading {
    text-align: center;
    margin-bottom: 60px;
}
.feature-heading h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}
.feature-heading p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}
.feature-card-bg {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.feature-card:nth-child(1) .feature-card-bg {
    background: var(--gradient-1);
}
.feature-card:nth-child(2) .feature-card-bg {
    background: var(--gradient-2);
}
.feature-card:nth-child(3) .feature-card-bg {
    background: var(--gradient-3);
}
.feature-card:nth-child(4) .feature-card-bg {
    background: var(--gradient-4);
}
.feature-card:nth-child(5) .feature-card-bg {
    background: var(--gradient-5);
}
.feature-card:nth-child(6) .feature-card-bg {
    background: var(--gradient-6);
}
.feature-icon {
    font-size: 28px;
    color: white;
    z-index: 1;
}
.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}
/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}
.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, .footer-links a.active {
    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: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}
.modal-close:hover {
    color: var(--dark);
}
.modal-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}
#launchModal .modal-icon {
    color: var(--gradient-10);
}
#comingSoonModal .modal-icon {
    color: var(--cosmic-purple);
}
.modal h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1F2937;
    font-weight: 700;
}
.modal p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.modal p strong {
    color: var(--primary);
    font-weight: 700;
}
/* Button Styles */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(46, 49, 146, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 49, 146, 0.4);
    background-color: var(--primary-dark);
}
/* Responsive Styles for ConnectZone */
@media (max-width: 992px) {
    .connectzone-showcase {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .connectzone {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .connectzone-showcase {
        margin-bottom: 60px;
    }
    
    .showcase-card {
        padding: 30px 20px;
    }
    
    .showcase-card h3 {
        font-size: 1.6rem;
    }
    
    .showcase-card p {
        font-size: 1rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .feature-heading h3 {
        font-size: 2.2rem;
    }
    
    .feature-heading p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .register-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal h3 {
        font-size: 1.8rem;
    }
    
    .modal p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .section-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .showcase-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .showcase-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-heading h3 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .register-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal h3 {
        font-size: 1.6rem;
    }
    
    .modal-icon {
        font-size: 3.5rem;
    }
}
