 /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
}

img {
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* BUTTON */
.btn {
    background: #4CAF50;
    border: none;
    padding: 12px 25px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 10px #ddd;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 60px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-text p {
    margin-bottom: 20px;
}

/* CLIENTS */
.clients {
    text-align: center;
    padding: 60px 0;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.logo-box {
    width: 120px;
}

/* COMMUNITY */
.community {
    padding: 60px 0;
    text-align: center;
}

.community-boxes {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.c-box {
    width: 280px;
}

/* FEATURES */
.features {
    padding: 60px 0;
}

.feature-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* HELP */
.help {
    padding: 60px 0;
}

.help-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

/* CARDS */
.cards {
    padding: 60px 0;
    text-align: center;
}

.card-grid {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    padding: 15px;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.f-col p {
    margin: 8px 0;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablet */
@media screen and (max-width: 992px) {
    .hero-flex,
    .feature-flex,
    .help-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 80px;
        right: 20px;
        padding: 20px;
        box-shadow: 0 0 10px #ddd;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .nav-btn {
        display: none;
    }
}
