/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(-45deg, #ff416c, #ff4b2b, #1d2b64, #f8cdda);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    background: #fff;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #333;
    color: white;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
    animation: fadeIn 2s ease-in;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about p {
    max-width: 600px;
    margin: auto;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
