/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo img {
    width: 120px; /* Adjust the width to make the logo smaller */
    height: auto; /* Keeps the aspect ratio of the logo */
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-right: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.cta-button .btn {
    background-color: #ffcc00;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url('hero-bg.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #ffcc00;
    color: #000;
    padding: 20px 50px;
    border-radius: 5px;
    text-decoration: none;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.feature-items {
    display: flex;
    justify-content: space-between;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Teams Section */
.teams {
    padding: 60px 20px;
    background-color: #fff;
}

.teams h2, .pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.team-grid {
    display: flex;
    justify-content: space-between;
}

.team {
    text-align: center;
    width: 30%;
}

.team img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.pricing-table {
    display: flex;
    justify-content: space-between;
}

.pricing-plan {
    background: #fff;
    padding: 20px;
    text-align: center;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pricing-plan h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-plan p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .social-links a {
    color: #ffcc00;
    margin-right: 20px;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: #fff;
}

/* Responsive Design - Media Queries */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 10px;
    }

    .feature-items, .team-grid, .pricing-table {
        flex-direction: column;
    }

    .feature, .team, .pricing-plan {
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-button .btn {
        padding: 10px 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button .btn {
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        padding: 10px 20px;
    }

    .feature-items, .team-grid, .pricing-table {
        flex-direction: column;
    }

    .feature, .team, .pricing-plan {
        width: 100%;
        margin-bottom: 15px;
    }
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
}

/* Default state for navigation (desktop) */
.nav ul {
    display: flex;
}

/* Hide nav list on mobile (initially hidden) */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        text-align: center;
    }

    .nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Show the menu when 'active' class is applied */
    .nav ul.active {
        display: flex;
    }
}
