
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1.2rem 3rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

/* addded */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ends */

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

.launch-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #ff1b8d;
    border-radius: 50px;
    color: #ff1b8d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.launch-btn:hover {
    background: #5B5FEF;
    color: white;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

/* video stlying starts here */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: auto;
    object-fit: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDgwIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjEwODAiIGZpbGw9InVybCgjZ3JhZGllbnQpIi8+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkaWVudCIgeDE9IjAiIHkxPSIwIiB4Mj0iMTkyMCIgeTI9IjEwODAiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwYTE2MjgiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzFlM2E4YSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBhMTYyOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjwvc3ZnPg==');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
/* video styling ends here*/

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 27, 141, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 2rem;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 0;
    color: #60a5fa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.hero-label::before,
.hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: #ff1b8d;
}

.hero-label::before {
    left: -100px;
}

.hero-label::after {
    right: -100px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #ff1b8d;
    border-radius: 50px;
    color: #ff1b8d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.hero-btn:hover {
    background: #5B5FEF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.3);
}

/* Section Styling */
.section {
    padding: 120px 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-dark {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    color: #60a5fa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #999;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 100px;
}

.feature-card {
    background: #111;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1b8d, #ff1b8d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(255, 27, 141, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li::before {
    content: '→';
    color: #ff1b8d;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background: #111;
    padding: 100px 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 27, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #999;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 150px 3rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 27, 141, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 1.2rem 3.5rem;
    background: #ff1b8d;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.4);
}

/* Footer */
footer {
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: #0a0a0a;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 600;
}

footer p {
    color: #666;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .launch-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-label::before,
    .hero-label::after {
        width: 30px;
        /* left: -50px; */
    }

    .hero-label::before {
        left: -40px;
    }

    .hero-label::after {
        right: -40px;
    }

    .section {
        padding: 80px 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
    .feature-card {
        padding: 2rem;
    }
}


