/* Importing fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Roboto:wght@400;500&display=swap');

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.hero {
    background: url('img2.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
    transition: padding 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: font-size 0.3s ease;
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

.btn-hero {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    background-color: #00bcd4;
    border-radius: 50px;
    padding: 20px 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #008c8c;
    transform: translateY(-8px);
}

.features {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #007bff;
}

.feature-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}

.sticky .hero {
    padding: 50px 0;
}

.sticky h1 {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .btn-hero {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .features h2 {
        font-size: 2rem;
    }

    .feature-cards {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        width: 90%;
        margin: 0 auto;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .features h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}
