* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

:root {

    --primary: #124a2f;
    --secondary: #2a7d2e;
    --text: #202020;
    --white: #fff;

}

/*==========================
TOP BAR
===========================*/

.top-header {
    background: var(--primary);
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

}

/* Leaf Pattern */

.top-header::before {
    content: "";
    position: absolute;
    right: 150px;
    top: 0;
    width: 420px;
    height: 100%;
    background: url("../images/leaf-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .18;

}

.top-info {
    display: flex;
    gap: 42px;
    align-items: center;

}

.top-info li {
    font-size: 15px;
}

.top-info i {
    margin-right: 8px;
    color: #fff;

}

.social-icons {
    display: flex;
    justify-content: end;
    gap: 20px;

}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: .4s;
    cursor: pointer;

}

.social-icons a:hover {
    color: #53B848;

}

/*==========================
NAVBAR
===========================*/

.navbar {
    background: #fff;
    height: 90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand img {
    width: 230px;
    height: 80px;
    margin-bottom: 12px;

}

.navbar-nav {
    gap: 22px;

}

.nav-link {
    position: relative;
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 400;
    padding: 20px 0;
    transition: .3s;
}

/* Hover par sirf text color change hoga */
.nav-link:hover {
    color: #53B848;
}

/* Dot hidden by default */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 4px;
    height: 4px;
    background: #53B848;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: .3s;
}

/* Sirf active menu me dot show hoga */
.nav-link.active {
    color: var(--secondary) !important;

}

.nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn {
    width: 38px;
    height: 43px;
    border: 2px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #111;
    transition: .4s;
}

.search-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.nav-btn {
    background: var(--secondary);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 400;
    transition: .4s;
}

.nav-btn:hover {
    background: #185c38;
    color: #fff;
}

/* ===========================
   Navbar Dropdown
=========================== */

.navbar .dropdown {
    position: relative;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    width: 270px;
    padding: 10px 0;
    border: none;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    /* Position */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    /* Animation */
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
    z-index: 999;
}

/* Invisible bridge so hover doesn't break */
.navbar .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
}

/* Show Dropdown */
@media (min-width:992px) {

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 10px);
    }

}

/* Dropdown Items */

.navbar .dropdown-item {
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    transition: .3s;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(42, 125, 46, .08);
    color: var(--primary);
    padding-left: 30px;
}

.navbar .dropdown-item.active {
    background: rgba(42, 125, 46, .12);
    color: var(--primary);
    font-weight: 600;
}

/* Mobile */

@media(max-width:991px) {

    .navbar .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 8px;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown::after {
        display: none;
    }

}

/*==========================
        Footer
==========================*/

.footer-section {

    position: relative;
    padding: 100px 0 30px;
    background: #fcfaf7;
    overflow: hidden;
    text-align: center;
}

/* Background Leaves */

.leaf {
    position: absolute;
    opacity: .08;
    pointer-events: none;
}

.leaf-left {
    left: -60px;
    bottom: -30px;
    width: 300px;
}

.leaf-right {
    right: -60px;
    bottom: -30px;
    width: 320px;
}

/* Logo */

.footer-logo img {
    width: 320px;
    margin-bottom: 40px;
}

/* Button */

.footer-btn {
    margin-bottom: 40px;

}

.ftr-btn {
    background: #fff;
    color: #2E7D32;
    border: 1px solid #2E7D32;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    transition: .4s;

}

.ftr-btn i {
    margin-right: 10px;

}

.ftr-btn:hover {
    background: #2E7D32;
    color: #fff;
}

/* Contact */

.footer-contact p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #555;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #2E7D32;
    text-decoration: underline;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    font-size: 14px;
    color: #555;
}

.copyright a {
    text-decoration: none;
    color: #1f7a3b;
    font-weight: 400;
}

.copyright a:hover {
    text-decoration: underline;
}


/*=========================================
        DROPDOWN RESPONSIVE
=========================================*/
@media (max-width:1200px) {

    .navbar .dropdown-menu {

        width: 240px;
    }

}

@media (max-width:991px) {

    .navbar-collapse {

        margin-top: 15px;
        border-radius: 10px;
        overflow: hidden;
    }

    .navbar-nav {

        width: 100%;
    }

    .navbar .nav-item {

        width: 100%;
    }

    .navbar .nav-link {

        padding: 14px 18px;
    }

    .navbar .dropdown-menu {

        width: 100%;
        border-radius: 8px;
        background: #f8f8f8;
        padding: 5px 0;
        margin: 0;
        border-left: 3px solid var(--secondary);
    }

    .navbar .dropdown-item {

        padding: 12px 20px;
        font-size: 14px;
    }

    .navbar .dropdown-item:hover {

        padding-left: 25px;
    }

}

@media (max-width:768px) {

    .navbar .nav-link {

        font-size: 15px;
    }

    .navbar .dropdown-item {

        font-size: 14px;
        padding: 11px 18px;
    }

}

@media (max-width:576px) {

    .navbar-collapse {

        padding: 15px;
    }

    .navbar .nav-link {

        padding: 12px 15px;
        font-size: 14px;
    }

    .navbar .dropdown-item {

        padding: 10px 15px;
        font-size: 13px;
    }

}

@media (max-width:400px) {

    .navbar .nav-link {

        font-size: 13px;
    }

    .navbar .dropdown-item {

        font-size: 12px;
        padding: 9px 12px;
    }

}

@media (max-width:320px) {

    .navbar .dropdown-item {

        font-size: 11px;
        padding: 8px 10px;
    }

}
@media (max-width:240px) {

    .navbar .nav-link {

        font-size: 11px;
        padding: 8px;
    }

    .navbar .dropdown-item {

        font-size: 10px;
        padding: 6px 8px;
    }

}

/*=====================================
        RESPONSIVE HEADER + FOOTER
=====================================*/

/* Large Laptop 1200px */
@media (max-width:1200px) {

    .navbar-brand img {
        width: 200px;
        height: auto;
    }

    .navbar-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .footer-logo img {
        width: 280px;
    }

    .footer-section {
        padding: 80px 0 25px;
    }
}

/* Laptop / Tablet Landscape 992px */
@media (max-width:992px) {

    /* Top Header */
    .top-header {
        height: auto;
        padding: 12px 0;
    }

    .top-info {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .top-info li {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    /* Navbar */
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-brand img {
        width: 180px;
    }

    .navbar-toggler {
        border: 0;
        outline: none;
        box-shadow: none;
        font-size: 28px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-right {
        margin-top: 20px;
        justify-content: center;
    }

    /* Footer */

    .footer-logo img {
        width: 240px;
    }

    .footer-contact p {
        font-size: 15px;
    }

}

/* Tablet 768px */
@media(max-width:768px) {

    /* Top Header */

    .top-info {
        flex-direction: column;
        gap: 8px;
    }

    .social-icons {
        gap: 15px;
    }

    /* Navbar */

    .navbar-brand img {
        width: 160px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .search-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer-section {
        padding: 60px 20px 25px;
    }

    .leaf-left,
    .leaf-right {
        width: 200px;
    }

    .footer-logo img {
        width: 210px;
        margin-bottom: 25px;
    }

    .footer-btn {
        margin-bottom: 30px;
    }

    .ftr-btn {
        font-size: 15px;
        padding: 12px 25px;
    }

    .copyright {
        margin-top: 35px;
        font-size: 13px;
    }
}

/* Mobile 576px */
@media(max-width:576px) {

    .top-header::before {
        display: none;
    }

    .top-info li {
        font-size: 13px;
        text-align: center;
    }

    .social-icons a {
        font-size: 16px;
    }

    /* Navbar */

    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand img {
        width: 140px;
    }

    .navbar-toggler {
        font-size: 24px;
    }

    /* Footer */

    .footer-logo img {
        width: 180px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .ftr-btn {
        padding: 11px 20px;
    }

}

/* Small Mobile 400px */
@media(max-width:400px) {

    .top-info li {
        font-size: 12px;
    }

    .social-icons {
        gap: 12px;
    }

    .navbar-brand img {
        width: 120px;
    }

    .footer-section {
        padding: 45px 15px 20px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .copyright {
        font-size: 12px;
    }

}

/* Extra Small 320px */
@media(max-width:320px) {
    .top-header {
        padding: 10px 5px;
    }

    .top-info li {
        font-size: 11px;
    }

    .social-icons a {
        font-size: 14px;
    }

    .navbar-brand img {
        width: 110px;
    }

    .nav-btn {
        font-size: 13px;
        padding: 10px;
    }

    .footer-logo img {
        width: 130px;
    }

    .ftr-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

}

/* Very Small Device 200px */
@media(max-width:250px) {
    .navbar-brand img {
        width: 90px;
    }

    .navbar-toggler {
        font-size: 20px;
    }

    .top-info li {
        font-size: 10px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-contact p {
        font-size: 11px;
    }

    .copyright {
        font-size: 10px;
    }

}