* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212; 
    color: #f0f0f0; 
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.navbar {
    background-color: #121212;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #ff69b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-circle span {
    color: white;
    font-weight: bold;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff69b4;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    color: #f0f0f0;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    color: #ff69b4;
}

.signup-btn {
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: #ff5ba7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}


.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 8px; 
}

.hero-image:hover img {
    transform: scale(1.05);
}

h1 {
    color: #f0f0f0; 
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, transparent);
    transform: translateX(-100%);
    animation: slide-in 2s forwards;
}


h1.no-underline::after {
    display: none;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #d0d0d0; 
}

.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #ff69b4; 
    color: white;
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: #f0f0f0; 
    border: 2px solid #ff69b4; 
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3); 
}


.how-it-works {
    padding: 60px 0;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    color: #f0f0f0; 
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff69b4; 
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.step {
    flex: 1;
    padding: 30px 20px;
    background-color: #1e1e1e; /* Darker step background */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #ff69b4; /* Pink background */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #f0f0f0; /* Light text */
}

.step p {
    color: #d0d0d0; 
}

/* Impact Section */
.impact {
    padding: 60px 0;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
}

.stat {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #1e1e1e; 
}

.stat:hover {
    background: #2a2a2a; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff69b4; 
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #f0f0f0; 
}

/* Call to Action */
.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(30,30,30,0.9), rgba(20,20,20,0.9)), url('background-pattern.jpg');
    background-size: cover;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    margin-bottom: 30px;
    color: #f0f0f0; 
}

.cta-btn {
    display: inline-block;
    background-color: #ff69b4; 
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background-color: #ff5ba7; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3); 
}


.cta-btn-modified {
    background-color: #ff69b4; 
    color: white;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3); 
    animation: pulse 2s infinite;
    margin-top: 10px;
}

.cta-btn-modified:hover {
    background-color: #ff5ba7; 
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.5);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply animations to elements */
.hero-content h1, .hero-content .subtitle {
    animation: fadeInUp 1s ease-out;
}

.hero-content .btn-container {
    animation: fadeIn 1.5s ease-out;
}


@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #121212;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav-links.show ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .auth-buttons.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 210px;
        left: 0;
        right: 0;
        background-color: #121212;
        padding: 20px;
        z-index: 1000;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .steps {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    .btn-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .step {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}