/* ======================= General Reset ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

/* ======================= Links ======================= */
a {
    text-decoration: none;
    color: #0d3b1f;
}
a:hover {
    color: #00ff88;
}

/* ======================= Buttons ======================= */
button, .btn {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 12px 25px;
}
button:hover, .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ======================= Navbar ======================= */
.navbar {
    background-color: #0d3b1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    width: 60px;
    height: auto;
}

.logo-container .company-name {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #ffffff;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    background-color: #00ff88;
    color: #0d3b1f;
}

.contact-btn {
    background-color: #00ff88;
    color: #0d3b1f;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: bold;
}

.contact-btn:hover {
    background-color: #0d3b1f;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* ======================= Hero Section ======================= */
.hero {
    position: relative;
    margin: 0;
    padding: 0;
}

.hero img {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    margin: 15px 0;
}

.hero-text .btn {
    border-radius: 25px;
}

/* ======================= Sections ======================= */
section {
    padding: 60px 20px;
}

section h2, section h3 {
    margin-bottom: 20px;
}

section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ======================= Flex Containers ======================= */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ======================= Cards ======================= */
.card {
    width: 300px;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ======================= Team Section ======================= */
.team-section {
    background: #eafbea;
}

.flex-team {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.team-text {
    flex: 1 1 400px;
}

.team-text h2 {
    font-size: 36px;
    color: #0d3b1f;
}

.team-text p {
    font-size: 16px;
    line-height: 1.6;
}

.team-btn {
    background-color: #0d3b1f;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
}

.team-btn:hover {
    background-color: #00ff88;
    color: #0d3b1f;
}

.team-img {
    flex: 1 1 400px;
    text-align: center;
}

.team-group-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    object-fit: cover;
}

/* ======================= Footer ======================= */
footer {
    background-color: #0d3b1f;
    color: white;
    padding: 40px 20px;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

footer p, footer a {
    color: white;
}

footer a:hover {
    color: #00ff88;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

/* ======================= Responsive ======================= */
@media (max-width: 1024px) {
    .flex-container, .flex-team {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        display: none;
        background-color: #0d3b1f;
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero img {
        height: 350px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Team */
    .flex-team {
        flex-direction: column;
        text-align: center;
    }

    .team-group-img {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .team-text {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero img {
        height: 250px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .card {
        width: 90%;
        padding: 20px;
    }
}
