@import url('[https://fonts.googleapis.com/css2?family=Montserrat+Alternates&family=Poppins&family=Reddit+Mono:wght@200..900&family=Syncopate&display=swap](https://fonts.googleapis.com/css2?family=Montserrat+Alternates&family=Poppins&family=Reddit+Mono:wght@200..900&family=Syncopate&display=swap)');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'montserrat alternates', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: white;
}

section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
}

#leaves-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #97bc62;
    opacity: 0.2;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    z-index: 10;
    height: 5rem;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(38, 39, 38, 0.284);
    padding: 0 2rem;
}

.logo {
    font-family: 'Montserrat Alternates', sans-serif;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 160px;
    height: auto;
}

.logo-text {
    display: flex;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #2c5f2d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.logo-text1 {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'montserrat alternates', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f2d;
}

/* Footer Base Styling */
footer.contact {
    background-color: #121415;
    color: #f0f0f0;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer .collab {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

footer .collab h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00b894;
}

footer .collab p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #dcdcdc;
    text-align: center;
}

/* Footer Content Sections */
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.footer-section {
    flex: 1 1 250px;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00cec9;
}

.footer-section p {
    font-size: 15px;
    color: #d3d3d3;
    line-height: 1.5;
}

/* Social Media Links */
.social-links a {
    margin-right: 15px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00b894;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #999;
    font-size: 14px;
}

/* Buttons */
.cta-button {
    background-color: #2c5f2d;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-button:hover {
    background-color: #97bc62;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c5f2d;
    transition: 0.3s;
}

/* ======================== */
/* Responsive Design */
/* ======================== */


/* Large Laptops */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 2rem;
    }

    section {
        padding: 7rem 1.5rem 3.5rem;
    }
}

/* Tablets & Smaller Laptops */
@media (max-width: 1024px) {
    .logo img {
        width: 130px;
    }

    .nav-links {
        position: fixed;
        top: 5rem;
        right: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 70%;
        height: calc(100vh - 5rem);
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 15px;
    }

    .footer-content {
        gap: 30px;
    }

    footer .collab h3 {
        font-size: 24px;
    }
}

/* Medium Tablets / Large Phones */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .logo img {
        width: 120px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }

    section {
        padding: 6rem 1.2rem 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        min-width: unset;
    }
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 5rem;
        right: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 70%;
        height: calc(100vh - 5rem);
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.show {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    footer .collab p {
        text-align: left;
    }

    footer .collab h3 {
        margin-top: -30px;
    }

}

/* Small Devices */
@media (max-width: 480px) {
    .logo img {
        width: 120px;
        margin-left: -25px;
    }

    .logo-text {
        display: none;

    }

    .logo-text1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 11px;
        gap: 2px;
        color: #2c5f2d;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 500;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }

    .footer-section {
        min-width: 200px;
    }

    #us {
        margin-top: -70px;
    }

}