:root {
    --deep-black: #0a0a0c;
    --navy-blue: #1a237e;
    --electric-blue: #283593;
    --accent-blue: #3f51b5;
}

body.landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

.text-muted {
    color: #a0aec0 !important;
}



/* Background Animation */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--deep-black), var(--navy-blue), var(--deep-black));
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle glow effect */
.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(63, 81, 181, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #9fa8da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.35rem;
    color: #e8eaf6;
    max-width: 800px;
    margin: 0 auto 0;
    line-height: 1.6;
    font-weight: 400;
}


/* Features Section */
.features-section {
    padding: 100px 20px;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
}

.features-section h2 {
    color: #ffffff !important;
}

.features-section p.text-muted {
    color: #a0aec0 !important;
}



.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #cbd5e0;
    margin-bottom: 0;
    font-weight: 300;
}


/* CTA Buttons */
.btn-premium {
    background: var(--navy-blue);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    background: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(63, 81, 181, 0.5);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
}

.btn-outline-premium:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .btn-outline-premium {
        margin-left: 0;
        margin-top: 15px;
    }
}
