@import url("https://fonts.googleapis.com/css?family=Outfit:100,200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Plus Jakarta Sans:100,200,300,400,500,600,700");
@import url(classy-nav.css);

:root {
    --brand: #0F3325;
    --sub: #1A503B;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --green-deep: #1F5E45;
    --green-lime: #78C850;
    --cream: #F8F7F2;
    --beige: #E8E1D5;
    --charcoal: #2C2C2C;
    --gray-bg: #F3F5F4;
    --orange: #F28C28;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(31, 94, 69, 0.10);
    --shadow-card: 0 4px 24px rgba(31, 94, 69, 0.12);
}

html,
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    /* overflow: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #111111;
    font-weight: 400;
    font-family: "Geneva" !important;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize !important;
    color: #707070;
    font-weight: 400;
    line-height: 26px;
}

li {
    list-style: none;
}

.classynav ul {
    margin: 0;
    padding: 0;
}

.classynav ul li {
    margin: 0;
    padding: 0;
}

a {
    color: var(--body);
    text-decoration: none;
}

a:hover {
    color: var(--brand);
    text-decoration: none;
}

.text-brand {
    color: var(--brand);
}

.background-brand {
    background-color: var(--brand);
}

.btn-brand {
    background-color: var(--brand);
    color: white;
}

.btn-brand:hover {
    background-color: white;
    color: var(--brand);
    border: 1px solid var(--brand);
}

/* Topbar */
.topbar .icons a {
    color: black;
    background-color: white;
    border: 1px solid white;
}

.topbar .icons a:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ========================================= BACK TO TOP BUTTON ========================================= */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #1F5E45, #2f9e44);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(31, 94, 69, 0.25), 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 999;
    overflow: hidden;
    transition: 0.35s ease;
}

/* Glow Effect */
.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-120%);
    transition: 0.6s ease;
}

/* Hover */
.back-to-top:hover {
    transform: translateY(-6px);
    color: #fff;
    box-shadow: 0 16px 35px rgba(31, 94, 69, 0.32), 0 6px 16px rgba(0, 0, 0, 0.12);
}

.back-to-top:hover::before {
    transform: translateX(120%);
}

/* =========================================
   FLOAT CONTACT BUTTONS
========================================= */

.float,
.float-2 {
    position: fixed;

    left: 22px;

    width: 45px;
    height: 45px;

    border-radius: 60px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    color: #fff;

    font-size: 20px;

    z-index: 999;

    overflow: hidden;

    text-decoration: none;

    white-space: nowrap;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);

    transition:
        width 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* CALL BUTTON */

.float {
    bottom: 95px;

    background: linear-gradient(135deg,
            #37b6ff,
            #0077ff);
}


/* WHATSAPP BUTTON */

.float-2 {
    bottom: 30px;

    background: linear-gradient(135deg,
            #25d366,
            #0fa958);
}


/* ICON */

.my-float {
    min-width: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}


/* BUTTON TEXT */

.float-text {
    font-size: 14px;
    font-weight: 600;

    margin-left: 14px;

    opacity: 0;

    transform: translateX(10px);

    transition: 0.3s ease;

    color: #fff;
}


/* HOVER EXPAND */

.float:hover,
.float-2:hover {
    width: 170px;

    transform: translateY(-6px);

    color: #fff;
}


/* SHOW TEXT */

.float:hover .float-text,
.float-2:hover .float-text {
    opacity: 1;

    transform: translateX(0);
}


/* Shine Effect */

.float::before,
.float-2::before {
    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);

    transform: translateX(-120%);

    transition: 0.6s ease;
}

.float:hover::before,
.float-2:hover::before {
    transform: translateX(120%);
}


/* Pulse Animation */

.float,
.float-2 {
    animation: floatPulse 2.5s infinite;
}

@keyframes floatPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(47, 158, 68, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(47, 158, 68, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(47, 158, 68, 0);
    }

}


/* MOBILE */

@media only screen and (max-width:767px) {

    .float,
    .float-2 {
        width: 45px;
        height: 45px;

        left: 16px;
    }

    .float {
        bottom: 90px;
    }

    .float-2 {
        bottom: 22px;
    }

    .float:hover,
    .float-2:hover {
        width: 160px;
    }

    .float-text {
        font-size: 13px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width:767px) {

    .back-to-top {
        right: 16px;
        bottom: 22px;

        width: 45px;
        height: 45px;

        border-radius: 50px;

        font-size: 16px;
    }

    .float,
    .float-2 {
        width: 45px;
        height: 45px;

        left: 14px;

        border-radius: 50px;

        font-size: 21px;
    }

    .float {
        bottom: 90px;
    }

    .float-2 {
        bottom: 22px;
    }

}

/* SERVICE FOOTER */
.site-footer {
    background: #0a2414;
    padding: 28px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.575);
    font-size: .82rem;
}

.site-footer p {
    color: #e9e9e9;
}

.site-footer a {
    color: var(--accent) !important;
    text-decoration: none;
}

/* =========================================
   MODERN FOOTER
========================================= */

.footer-section {
    background: #0d1f14;
    position: relative;
    overflow: hidden;
}

.footer-top-line {
    height: 4px;

    background: linear-gradient(90deg,
            #78C850,
            #1F5E45,
            #78C850);
}

.footer-container {
    max-width: 1250px;

    margin: auto;

    padding: 80px 30px 50px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr 1.2fr;

    gap: 50px;
}

.footer-logo {
    color: #fff;

    font-size: 28px;

    margin-bottom: 20px;

    font-weight: 700;
}

.footer-desc {
    color: #eeeeee;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;

    font-size: 18px;

    margin-bottom: 24px;

    position: relative;
}

.footer-col h4::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 40px;
    height: 2px;

    background: #78C850;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #eeeeee;
    text-decoration: none;
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a::before {
    content: '→';
    margin-right: 10px;
    color: #78C850;
    transition: .3s ease;
}

/* Hover Effect */

.footer-col ul li a:hover {
    color: #78C850;
    transform: translateX(6px);
}

.footer-col ul li a:hover::before {
    transform: translateX(4px);
}

.footer-social {
    display: flex;

    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    transition: .35s ease;
}

.footer-social a:hover {
    background: #78C850;

    transform: translateY(-5px) rotate(360deg);
}

.footer-contact p {
    color: #eeeeee;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    line-height: 1.8;

    margin-bottom: 16px;
}

.footer-contact i {
    color: #78C850;

    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    color: #ffffff !important;

    font-size: 14px;
}

.footer-bottom span {
    color: #78C850;
    font-weight: 600;
    font-size: 18x;

    text-decoration: none;
}

.footer-bottom p {
    color: #ececec !important;

    text-decoration: none;
}

.footer-bottom a {
    color: #78C850;

    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .footer-container {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

@media(max-width:768px) {

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .footer-contact {
        margin: 0px 20px;
    }

}

@media(max-width:576px) {

    .footer-container {
        grid-template-columns: 1fr;

        padding: 60px 20px 40px;
    }

    .footer-logo {
        font-size: 24px;
    }

}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   TOP STRIP
========================= */

.top-strip {
    width: 100%;
    background: linear-gradient(90deg, #0d1b2a, #1b263b);
    overflow: hidden;
    position: relative;
    z-index: 999;
    padding: 12px 0;
}

/* =========================
   MARQUEE
========================= */

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Running Content */

.marquee-content {

    display: flex;
    align-items: center;

    width: max-content;

    gap: 50px;

    animation: marqueeScroll 30s linear infinite;
}

/* Pause on Hover */

.marquee-content:hover {
    animation-play-state: paused;
}

/* Text */

.marquee-content span {

    display: flex;
    align-items: center;

    gap: 10px;

    white-space: nowrap;

    color: #fff;

    font-size: 15px;
    font-weight: 500;
}

/* Icons */

.marquee-content span i {
    color: #2f9e44;
    font-size: 14px;
}


/* =========================
   CONTINUOUS ANIMATION
========================= */

@keyframes marqueeScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================
   TABLET VIEW
========================= */

@media only screen and (max-width:991px) {

    .top-strip {
        padding: 10px 0;
    }

    .marquee-content {
        gap: 35px;
        animation-duration: 24s;
    }

    .marquee-content span {
        font-size: 14px;
    }

}


/* =========================
   MOBILE VIEW
========================= */

@media only screen and (max-width:767px) {

    .top-strip {
        padding: 8px 0;
    }

    .marquee-content {
        gap: 28px;
        animation-duration: 18s;
    }

    .marquee-content span {
        font-size: 13px;
        gap: 8px;
    }

    .marquee-content span i {
        font-size: 12px;
    }

}


/* =====================================================
   HEADER WRAPPER
===================================================== */

.main-header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   HEADER FLEX
===================================================== */

.header-flex {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 80px;

    padding: 0 40px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    text-decoration: none;
}

.logo h2 {
    margin: 0;

    color: #0d1b2a;

    font-size: 28px;
    font-weight: 700;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* =====================================================
   MENU LIST
===================================================== */

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;

    list-style: none;

    margin: 0;
    padding: 20px;
}

.nav-menu ul li {
    position: relative;
}


/* =====================================================
   MENU LINKS
===================================================== */

.nav-menu ul li a {
    position: relative;

    text-decoration: none;

    color: #222;

    font-size: 18px;
    font-weight: 600;
    font-family: "Geneva";

    padding: 5px 0;

    transition: 0.3s ease;
}


/* =====================================================
   UNDERLINE HOVER EFFECT
===================================================== */

.nav-menu ul li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #2f9e44;

    transform: translateX(-50%);

    transition: all 0.4s ease;
}


/* Hover */

.nav-menu ul li a:hover::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: #2f9e44;
}


/* =====================================================
   ACTIVE MENU
===================================================== */

.nav-menu ul li.active a {
    color: #2f9e44;
}

.nav-menu ul li.active a::after {
    width: 100%;
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.has-dropdown {
    position: relative;
}


/* =====================================================
   DROPDOWN LINK
===================================================== */

.has-dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}


/* =====================================================
   DROPDOWN ICON
===================================================== */

.has-dropdown>a i {
    font-size: 12px;

    cursor: pointer;

    transition: 0.3s ease;
}


/* Rotate Arrow */

.has-dropdown.active>a i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN CONTAINER
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 120%;
    left: 0;

    width: 280px;

    background: #fff;

    border-radius: 12px;

    padding-bottom: 0;

    margin-top: 0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;

    z-index: 999;

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    max-height: 420px;

    transition: 0.3s ease;
}


/* =====================================================
   SHOW DROPDOWN
===================================================== */

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   SCROLLBAR
===================================================== */

.dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #2f9e44;
    border-radius: 20px;
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;

    width: 100%;

    padding: 14px 20px;

    color: #222;

    font-size: 15px;

    border-bottom: 1px solid #f3f3f3;

    transition: 0.3s ease;
}


/* Last Item */

.dropdown-menu li:last-child a {
    border-bottom: none;
}


/* Hover */

.dropdown-menu li a:hover {
    background: #f8f8f8;

    color: #2f9e44;

    padding-left: 26px;
}


/* =====================================================
   HEADER BUTTONS
===================================================== */

.header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Call Button */

.call-btn {
    padding: 12px 22px;

    border: 2px solid #2f9e44;
    border-radius: 50px;

    text-decoration: none;

    color: #2f9e44;

    font-weight: 600;

    transition: 0.3s ease;
}

.call-btn:hover {
    background: #2f9e44;
    color: #fff;
}


/* Quote Button */

.quote-btn {
    padding: 12px 24px;

    border-radius: 50px;

    text-decoration: none;

    background: #2f9e44;
    color: #fff;

    font-weight: 600;

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #248636;
    color: #FFF;
}


/* =====================================================
   MENU TOGGLE
===================================================== */

.menu-toggle,
.close-menu {
    display: none;
}


/* =====================================================
   TABLET + MOBILE VIEW
===================================================== */

@media only screen and (max-width:991px) {

    /* Header */

    .header-flex {
        padding: 0 20px;

        min-height: 75px;
    }


    /* Logo */

    .logo h2 {
        font-size: 20px;
    }


    /* Toggle */

    .menu-toggle {
        display: block;

        font-size: 28px;

        cursor: pointer;

        color: #000;
    }


    /* =====================================================
       MOBILE NAV MENU
    ===================================================== */

    .nav-menu {
        position: fixed;

        top: 0;
        left: -100%;

        width: 100%;
        height: 100vh;

        background: #fff;

        display: flex;
        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-start;

        padding: 90px 25px 40px;

        overflow-y: auto;

        transition: 0.4s ease;

        z-index: 99999;
    }

    .nav-menu.active {
        left: 0;
    }


    /* Close Button */

    .close-menu {
        display: block;

        position: absolute;

        top: 20px;
        right: 25px;

        font-size: 32px;

        cursor: pointer;

        color: #000;
    }


    /* =====================================================
       MOBILE MENU LIST
    ===================================================== */

    .nav-menu ul {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;

        width: 100%;

        padding: 18px 0;

        border-bottom: 1px solid #eee;

        font-size: 17px;
    }


    /* Remove Underline */

    .nav-menu ul li a::after {
        display: none;
    }

    /* ══════════════════════════════════════════
   DROPDOWN — DESKTOP
══════════════════════════════════════════ */
    @media (min-width: 992px) {

        .dropdown-menu {
            position: absolute;
            top: 120%;
            left: 0;
            width: 280px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            opacity: 0;
            visibility: hidden;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            max-height: 420px;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 999;
            padding: 0;
            margin: 0;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

    }


    /* ══════════════════════════════════════════
   DROPDOWN — MOBILE
══════════════════════════════════════════ */
    @media (max-width: 991px) {

        .dropdown-menu {
            position: static !important;
            width: 100% !important;
            background: #f8faf8;
            border-radius: 8px;
            box-shadow: none !important;

            /* Fully hidden before click — no box, no space */
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            display: flex;
            flex-direction: column;

            padding: 0;
            margin: 0;
            border: none;

            transition: max-height 0.38s ease,
                opacity 0.28s ease,
                visibility 0.28s ease;
        }

        /* Open state — scrollable, fully visible */
        .has-dropdown.active .dropdown-menu {
            max-height: 320px;
            overflow-y: auto;
            opacity: 1;
            visibility: visible;
            margin-top: 6px;
            border: 1px solid rgba(47, 158, 68, 0.15);
        }

        /* Scrollbar */
        .has-dropdown.active .dropdown-menu::-webkit-scrollbar {
            width: 4px;
        }

        .has-dropdown.active .dropdown-menu::-webkit-scrollbar-thumb {
            background: #2f9e44;
            border-radius: 20px;
        }

        /* Menu items inside mobile dropdown */
        .dropdown-menu li a {
            padding: 12px 18px;
            font-size: 14px;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            display: block;
            transition: 0.2s ease;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background: #f0f7f1;
            color: #2f9e44;
            padding-left: 24px;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
            padding-bottom: 0;
        }

        .dropdown-menu {
            padding-bottom: 0 !important;
        }

    }

    /* =====================================================
       MOBILE BUTTONS
    ===================================================== */

    .header-btns {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 15px;

        margin-top: 30px;
    }

    .call-btn,
    .quote-btn {
        width: 100%;

        text-align: center;

        padding: 14px 20px;

        font-size: 16px;
    }

}