/* =========================================
SP ENTERPRISES - MAIN CSS
Premium Wholesale & Retail Website
========================================= */


/* =========================
GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================
ROOT COLORS
========================= */

:root {

    --primary-green: #1f5d2f;
    --dark-green: #10351b;
    --light-green: #7eb34f;

    --primary-red: #d91f26;
    --dark-red: #8d1015;

    --white: #ffffff;
    --black: #111111;
    --text: #666666;
    --gray: #f5f5f5;

    --shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

}


/* =========================================
TOP HEADER
========================================= */

.top-header {

    background:
        linear-gradient(to right,
            #0e2f18,
            #1f5d2f);

    padding: 12px 0;

    overflow: hidden;
}

.top-header-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {

    display: flex;
    align-items: center;
    gap: 30px;
}

.top-contact a {

    color: #fff;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.4s;
}

.top-contact a:hover {

    color: #ff4d4d;
}

.top-contact i {

    margin-right: 8px;
}

.top-text {

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    position: relative;
}


/* =========================================
PREMIUM NAVBAR
========================================= */

.custom-navbar {

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(12px);

   

    transition: 0.4s ease;

    z-index: 9999;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.04);
}


/* =========================================
NAVBAR SCROLL EFFECT
========================================= */

.custom-navbar.scrolled {

  

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
LOGO
========================================= */

.navbar-brand img {

    height: 85px;
    width: auto;

    transition: 0.4s;
}

.custom-navbar.scrolled .navbar-brand img {

    height: 82px;
}


/* =========================================
NAV LINKS
========================================= */

.navbar-nav .nav-link {

    color: #111;

    font-size: 16px;
    font-weight: 600;

    margin: 0 14px;

    padding: 10px 0 !important;

    position: relative;

    text-decoration: none;

    transition: 0.4s;
}


/* LINE ANIMATION */

.navbar-nav .nav-link::before {

    content: '';

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 0%;
    height: 3px;

    border-radius: 50px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    transition: 0.4s;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {

    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #d91f26;
}


/* =========================================
CALL BUTTON
========================================= */

.nav-btn {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 13px 28px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.nav-btn:hover {

    transform: translateY(-5px);

    color: #fff;

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.18);
}


/* =========================================
MOBILE TOGGLE
========================================= */

.navbar-toggler {

    border: none !important;

    box-shadow: none !important;

    padding: 0;
}

.menu-btn span {

    display: block;

    width: 28px;
    height: 3px;

    margin: 6px 0;

    border-radius: 50px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    transition: 0.4s;
}


/* =========================================
MOBILE MENU DESIGN
========================================= */

@media(max-width:991px) {

    .addes {
        display: none;
    }



    .navbar-brand img {

        height: 65px;
    }

    .navbar-collapse {

        margin-top: 18px;

        background: #fff;

        padding: 25px;

        border-radius: 25px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {

        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {

        margin: 10px 0;

        font-size: 17px;

        width: 100%;
    }

    .nav-btn {

        margin-top: 20px;

        width: 100%;

        justify-content: center;
    }

}


/* =========================================
MOBILE HIDE HEADER ON SCROLL
========================================= */

@media(max-width:991px) {

    .custom-navbar.hide-nav {

        transform: translateY(-100%);
    }

}


/* =========================================
EXTRA MOBILE
========================================= */

@media(max-width:767px) {

    .navbar-brand img {

        height: 90px;
    }

    .navbar-collapse {

        padding: 10px;
    }

}




/* =========================================
HERO SECTION
========================================= */

.hero-section {

    position: relative;
}


/* =========================================
HERO SLIDE
========================================= */

.hero-slide {

    height: 100vh;

    position: relative;

    overflow: hidden;
}

.hero-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);

    animation: zoomHero 8s linear infinite;
}


/* IMAGE ZOOM */

@keyframes zoomHero {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }

}

/* =========================================
COMMON SECTION PADDING
USE FOR ALL SECTIONS
========================================= */

.section-padding {

    padding: 120px 0;
}


/* =========================================
SECTION TITLE
========================================= */

.section-title {

    margin-bottom: 70px;
}


/* =========================================
ABOUT SECTION
========================================= */

.about-section {

    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================
SERVICES SECTION
========================================= */

.services-section {

    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================
PRODUCTS SECTION
========================================= */

.products-section {

    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================
CONTACT SECTION
========================================= */

.contact-section {

    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================
FOOTER
========================================= */

.footer {

    padding-top: 100px;
    padding-bottom: 20px;
}


/* =========================================
ROW GAP FIX
========================================= */

.row.g-5 {

    --bs-gutter-y: 3rem;
}


/* =========================================
CONTAINER WIDTH
========================================= */

.container {

    max-width: 1320px;
}


/* =========================================
MOBILE PADDING
========================================= */

@media(max-width:991px) {

    .section-padding,
    .about-section,
    .services-section,
    .products-section,
    .contact-section {

        padding-top: 90px;
        padding-bottom: 90px;
    }

}


@media(max-width:767px) {

    .section-padding,
    .about-section,
    .services-section,
    .products-section,
    .contact-section {

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-title {

        margin-bottom: 50px;
    }

}


/* =========================================
DARK OVERLAY
========================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.35));
}


/* =========================================
HERO CONTENT
========================================= */

.hero-content {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    max-width: 700px;

    z-index: 5;
}


/* TAG */

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;

    border:
        1px solid rgba(255, 255, 255, 0.2);
}


/* TITLE */

.hero-content h1 {

    color: #fff;

    font-size: 78px;
    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

    animation: fadeUp 1s;
}


/* TEXT */

.hero-content p {

    color: #f2f2f2;

    font-size: 18px;

    line-height: 1.8;

    max-width: 620px;

    margin-bottom: 35px;

    animation: fadeUp 1.2s;
}


/* BUTTONS */

.hero-btns {

    display: flex;
    align-items: center;
    gap: 18px;

    flex-wrap: wrap;
}


/* MAIN BUTTON */

.hero-btn {

    padding: 15px 36px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* OUTLINE BUTTON */

.hero-btn-outline {

    padding: 15px 36px;

    border-radius: 60px;

    border: 2px solid #fff;

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;
}

.hero-btn-outline:hover {

    background: #fff;

    color: #111;
}


/* =========================================
BULLETS
========================================= */

.custom-indicators {

    bottom: 40px;
}

.custom-indicators button {

    width: 14px !important;
    height: 14px !important;

    border-radius: 50% !important;

    border: none !important;

    margin: 0 7px !important;

    background: rgba(255, 255, 255, 0.5) !important;

    transition: 0.4s;
}

.custom-indicators .active {

    width: 40px !important;

    border-radius: 50px !important;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26) !important;
}


/* =========================================
SIDE ARROWS
========================================= */

.hero-arrow {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(255, 255, 255, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    transition: 0.4s;
}

.hero-arrow:hover {

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
TEXT ANIMATION
========================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .hero-slide {

        height: 90vh;
    }

    .hero-content h1 {

        font-size: 52px;
    }

}


@media(max-width:767px) {

    .hero-slide {

        height: 85vh;
    }

    .hero-content {

        text-align: center;

        left: 50%;

        transform:
            translate(-50%, -50%);

        width: 100%;

        padding: 0 20px;
    }

    .hero-content h1 {

        font-size: 38px;
    }

    .hero-content p {

        font-size: 15px;
    }

    .hero-btns {

        justify-content: center;
    }

    .hero-arrow {

        width: 48px;
        height: 48px;

        font-size: 20px;
    }

}



/* =========================================
ABOUT SECTION
========================================= */

.about-section {

    position: relative;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f7f7f7);

    overflow: hidden;
}


/* =========================================
IMAGE AREA
========================================= */

.about-image-area {

    position: relative;

    padding-right: 80px;
}


/* MAIN IMAGE */

.about-main-image {

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-main-image img {

    width: 100%;
    height: 650px;

    object-fit: cover;

    transition: 0.5s;
}

.about-main-image:hover img {

    transform: scale(1.06);
}


/* FLOAT IMAGE */

.about-side-image {

    position: absolute;

    right: 0;
    bottom: 50px;

    width: 240px;

    border-radius: 30px;

    overflow: hidden;

    border: 8px solid #fff;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.18);

    animation: floatImage 4s ease-in-out infinite;
}

.about-side-image img {

    width: 100%;
    height: 240px;

    object-fit: cover;
}


/* FLOAT ANIMATION */

@keyframes floatImage {

    0% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-15px);
    }

    100% {

        transform: translateY(0px);
    }

}


/* =========================================
FLOATING BOX
========================================= */

.about-floating-box {

    position: absolute;

    top: 40px;
    left: -20px;

    padding: 24px 28px;

    border-radius: 25px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.2);

    max-width: 240px;

    animation: floatBox 4s ease-in-out infinite;
}

.about-floating-box i {

    font-size: 36px;

    margin-bottom: 12px;
}

.about-floating-box h5 {

    color: #fff;

    font-size: 22px;

    line-height: 1.4;

    margin: 0;
}


/* FLOAT BOX */

@keyframes floatBox {

    0% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-12px);
    }

    100% {

        transform: translateY(0px);
    }

}


/* =========================================
ABOUT CONTENT
========================================= */

.about-content {

    padding-left: 20px;
}


/* TAG */

.about-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


/* TITLE */

.about-content h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

    color: #111;
}


/* TEXT */

.about-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 18px;
}


/* =========================================
FEATURE GRID
========================================= */

.about-feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;
}


/* CARD */

.about-feature-card {

    background: #fff;

    padding: 28px 20px;

    border-radius: 24px;

    text-align: center;

    transition: 0.4s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08);
}


/* ICON */

.feature-icon {

    width: 75px;
    height: 75px;

    margin: auto auto 18px;

    border-radius: 22px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;
}

.about-feature-card h5 {

    font-size: 20px;

    margin: 0;

    line-height: 1.5;
}


/* =========================================
BUTTON
========================================= */

.about-btn {

    display: inline-block;

    margin-top: 40px;

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .about-image-area {

        padding-right: 0;
    }

    .about-content {

        padding-left: 0;
    }

    .about-content h2 {

        font-size: 42px;
    }

    .about-side-image {

        width: 200px;
    }

}


@media(max-width:767px) {

    .about-main-image img {

        height: 450px;
    }

    .about-side-image {

        width: 150px;

        bottom: 20px;
    }

    .about-side-image img {

        height: 150px;
    }

    .about-floating-box {

        padding: 18px 20px;

        max-width: 180px;
    }

    .about-floating-box h5 {

        font-size: 18px;
    }

    .about-content {

        text-align: center;
    }

    .about-content h2 {

        font-size: 34px;
    }

    .about-feature-grid {

        grid-template-columns: 1fr;
    }

}

/* =========================================
SERVICES SECTION
========================================= */

.services-section {

    background:
        linear-gradient(to bottom,
            #f8f8f8,
            #ffffff);

    position: relative;

    overflow: hidden;
}


/* =========================================
SECTION TITLE
========================================= */

.service-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.services-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 20px;
}

.services-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
SERVICE CARD
========================================= */

.service-card {

    position: relative;

    background: #fff;

    padding: 45px 35px;

    border-radius: 35px;

    overflow: hidden;

    transition: 0.5s;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}


/* HOVER EFFECT */

.service-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);

    transition: 0.7s;
}

.service-card:hover::before {

    left: 100%;
}

.service-card:hover {

    transform: translateY(-12px);

    background:
        linear-gradient(to bottom right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
ICON
========================================= */

.service-icon {

    width: 90px;
    height: 90px;

    border-radius: 28px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 38px;

    margin-bottom: 30px;

    transition: 0.4s;
}

.service-card:hover .service-icon {

    background: #fff;

    color: #1f5d2f;
}


/* =========================================
NUMBER
========================================= */

.service-number {

    position: absolute;

    top: 30px;
    right: 35px;

    font-size: 60px;
    font-weight: 800;

    color:
        rgba(0, 0, 0, 0.05);

    transition: 0.4s;
}

.service-card:hover .service-number {

    color:
        rgba(255, 255, 255, 0.15);
}


/* =========================================
CONTENT
========================================= */

.service-content h3 {

    font-size: 32px;
    font-weight: 700;

    margin-bottom: 18px;

    transition: 0.4s;
}

.service-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    transition: 0.4s;
}


/* HOVER TEXT */

.service-card:hover .service-content h3,
.service-card:hover .service-content p {

    color: #fff;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .services-section .section-title h2 {

        font-size: 44px;
    }

}


@media(max-width:767px) {

    .services-section .section-title h2 {

        font-size: 34px;
    }

    .service-card {

        padding: 35px 25px;
    }

    .service-content h3 {

        font-size: 28px;
    }

}

/* =========================================
PRODUCTS SECTION
========================================= */

.products-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
SECTION TITLE
========================================= */

.product-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.products-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.products-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
PRODUCT CARD
========================================= */

.product-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    transition: 0.5s;

    height: 100%;

    position: relative;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.05);
}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.1);
}


/* =========================================
IMAGE
========================================= */

.product-img {

    overflow: hidden;

    position: relative;
}

.product-img img {

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: 0.5s;
}

.product-card:hover .product-img img {

    transform: scale(1.08);
}


/* =========================================
CONTENT
========================================= */

.product-content {

    padding: 24px 20px;

    text-align: center;
}

.product-content h4 {

    font-size: 22px;
    font-weight: 700;

    line-height: 1.5;

    margin: 0;

    color: #111;

    transition: 0.4s;
}

.product-card:hover .product-content h4 {

    color: #d91f26;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .products-section .section-title h2 {

        font-size: 44px;
    }

}


@media(max-width:767px) {

    .products-section .section-title h2 {

        font-size: 34px;
    }

    .product-img img {

        height: auto;
    }

    .product-content h4 {

        font-size: 20px;
    }

}

/* =========================================
PARALLAX SECTION
========================================= */

.parallax-section {

    position: relative;

    padding: 160px 0;

    background:
        url('./img/bg.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    overflow: hidden;
}


/* =========================================
OVERLAY
========================================= */

.parallax-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.55));
}


/* =========================================
CONTENT
========================================= */

.parallax-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    text-align: center;

    margin: auto;
}


/* TAG */

.parallax-content span {

    display: inline-block;

    padding: 12px 26px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


/* TITLE */

.parallax-content h2 {

    font-size: 68px;
    font-weight: 800;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 25px;
}


/* TEXT */

.parallax-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #f2f2f2;

    max-width: 700px;

    margin:
        auto auto 40px;
}


/* =========================================
BUTTONS
========================================= */

.parallax-btns {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}


/* MAIN BUTTON */

.parallax-btn {

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2);
}

.parallax-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* OUTLINE BUTTON */

.parallax-btn-outline {

    padding: 16px 40px;

    border-radius: 60px;

    border: 2px solid #fff;

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;
}

.parallax-btn-outline:hover {

    background: #fff;

    color: #111;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .parallax-section {

        padding: 120px 0;

        background-attachment: scroll;
    }

    .parallax-content h2 {

        font-size: 48px;
    }

}


@media(max-width:767px) {

    .parallax-section {

        padding: 90px 0;
    }

    .parallax-content h2 {

        font-size: 34px;
    }

    .parallax-content p {

        font-size: 15px;
    }

}


/* =========================================
CONTENT IMAGE SECTION
========================================= */

.content-image-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    overflow: hidden;

    position: relative;
}


/* =========================================
TAG
========================================= */

.content-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 22px;
}


/* =========================================
TITLE
========================================= */

.content-box h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}


/* =========================================
TEXT
========================================= */

.content-box p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}


/* =========================================
LIST
========================================= */

.content-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 40px;
}


/* ITEM */

.list-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    border-radius: 20px;

    background: #fff;

    transition: 0.4s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.list-item:hover {

    transform: translateX(10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08);
}


/* ICON */

.list-item i {

    color: #d91f26;

    font-size: 24px;
}


/* TEXT */

.list-item span {

    font-size: 16px;
    font-weight: 600;

    color: #111;
}


/* =========================================
BUTTON
========================================= */

.content-btn {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.content-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
IMAGE
========================================= */

.content-image {

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.content-image img {

    width: 100%;
    height: 700px;

    object-fit: cover;

    transition: 0.5s;
}

.content-image:hover img {

    transform: scale(1.06);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .content-box h2 {

        font-size: 42px;
    }

    .content-image img {

        height: 550px;
    }

}


@media(max-width:767px) {

    .content-box {

        text-align: center;
    }

    .content-box h2 {

        font-size: 34px;
    }

    .list-item {

        text-align: left;
    }

    .content-image img {

        height: 420px;
    }

}

/* =========================================
RUNNING SECTION
========================================= */

.running-section {

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    padding: 22px 0;

    overflow: hidden;

    position: relative;
}


/* =========================================
WRAPPER
========================================= */

.running-wrapper {

    width: 100%;

    overflow: hidden;

    white-space: nowrap;
}


/* =========================================
TRACK
========================================= */

.running-track {

    display: inline-flex;

    align-items: center;

    animation: marquee 22s linear infinite;
}


/* =========================================
ITEM
========================================= */

.running-item {

    color: #fff;

    font-size: 32px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-right: 60px;

    font-family: 'Montserrat', sans-serif;

    text-transform: uppercase;
}


/* =========================================
ANIMATION
========================================= */

@keyframes marquee {

    0% {

        transform: translateX(0);
    }

    100% {

        transform: translateX(-50%);
    }

}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:767px) {

    .running-item {

        font-size: 22px;

        margin-right: 35px;
    }

}

/* =========================================
ENQUIRY SECTION
========================================= */

.enquiry-section {

    position: relative;

    padding: 120px 0;

    background:
        url('./img/BG1.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    overflow: hidden;
}


/* =========================================
OVERLAY
========================================= */

.enquiry-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.65));
}


/* =========================================
FORM BOX
========================================= */

.enquiry-form-box {

    position: relative;

    z-index: 2;

    padding: 60px 50px;

    border-radius: 40px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}


/* =========================================
TITLE
========================================= */

.enquiry-title {

    text-align: center;

    margin-bottom: 40px;
}

.enquiry-title span {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.enquiry-title h2 {

    font-size: 52px;
    font-weight: 800;

    color: #fff;

    margin-bottom: 18px;
}

.enquiry-title p {

    color: #f2f2f2;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
FORM GROUP
========================================= */

.form-group {

    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: none;

    outline: none;

    padding:
        18px 20px 18px 60px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 15px;

    transition: 0.4s;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #eee;
}

.form-group select {

    color: #fff;
}

.form-group select option {

    color: #111;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(255, 255, 255, 0.35);

    background:
        rgba(255, 255, 255, 0.16);
}


/* ICON */

.form-group i {

    position: absolute;

    top: 50%;
    left: 22px;

    transform: translateY(-50%);

    color: #fff;

    font-size: 18px;
}

.form-group textarea+i {

    top: 25px;

    transform: none;
}


/* =========================================
BUTTON
========================================= */

.submit-btn {

    width: 100%;

    border: none;

    padding: 18px 20px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2);
}

.submit-btn i {

    margin-right: 10px;
}

.submit-btn:hover {

    transform: translateY(-5px);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .enquiry-title h2 {

        font-size: 42px;
    }

}


@media(max-width:767px) {

    .enquiry-section {

        padding: 80px 0;

        background-attachment: scroll;
    }

    .enquiry-form-box {

        padding: 40px 25px;
    }

    .enquiry-title h2 {

        font-size: 32px;
    }

}


/* =========================================
CONTACT SECTION
========================================= */

.contact-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
SECTION TAG
========================================= */

.contact-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.contact-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.contact-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
CONTACT WRAPPER
========================================= */

.contact-wrapper {

    margin-top: 30px;
}


/* =========================================
CONTACT INFO BOX
========================================= */

.contact-info-box {

    background: #fff;

    padding: 45px 35px;

    border-radius: 35px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
}


/* =========================================
CONTACT ITEM
========================================= */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border-radius: 24px;

    background: #f8f8f8;

    margin-bottom: 22px;

    transition: 0.4s;
}

.contact-item:hover {

    transform: translateX(10px);

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06);
}


/* =========================================
ICON
========================================= */

.contact-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 22px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;
}


/* =========================================
TEXT
========================================= */

.contact-text span {

    display: block;

    font-size: 14px;
    font-weight: 600;

    color: #666;

    margin-bottom: 6px;
}

.contact-text h5 {

    font-size: 22px;

    line-height: 1.6;

    color: #111;

    margin: 0;
}


/* =========================================
BUTTON
========================================= */

.contact-btn {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 10px;

    padding: 16px 34px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
MAP
========================================= */

.map-box {

    border-radius: 35px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-box iframe {

    width: 100%;

    height: 100%;

    min-height: 620px;

    border: 0;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .contact-section .section-title h2 {

        font-size: 42px;
    }

    .map-box iframe {

        min-height: 500px;
    }

}


@media(max-width:767px) {

    .contact-section .section-title h2 {

        font-size: 34px;
    }

    .contact-info-box {

        padding: 30px 20px;
    }

    .contact-item {

        padding: 18px;
    }

    .contact-icon {

        width: 60px;
        height: 60px;

        min-width: 60px;

        font-size: 24px;
    }

    .contact-text h5 {

        font-size: 18px;
    }

    .map-box iframe {

        min-height: 380px;
    }

}


/* =========================================
TESTIMONIAL SECTION
========================================= */

.testimonial-section {

    background:
        linear-gradient(to bottom,
            #f8f8f8,
            #ffffff);

    overflow: hidden;

    position: relative;
}


/* =========================================
TAG
========================================= */

.testimonial-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.testimonial-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.testimonial-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
CARD
========================================= */

.testimonial-card {

    background: #fff;

    padding: 35px;

    border-radius: 35px;

    height: 100%;

    position: relative;

    overflow: hidden;

    transition: 0.4s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}


/* =========================================
QUOTE ICON
========================================= */

.quote-icon {

    width: 75px;
    height: 75px;

    border-radius: 24px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 34px;

    margin-bottom: 25px;
}


/* =========================================
TEXT
========================================= */

.testimonial-card p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 30px;
}


/* =========================================
USER
========================================= */

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;
}

.testimonial-user img {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    object-fit: cover;
}

.testimonial-user h5 {

    font-size: 22px;

    margin-bottom: 4px;

    color: #111;
}

.testimonial-user span {

    font-size: 14px;

    color: #777;
}


/* =========================================
PAGINATION
========================================= */

.swiper-pagination {

    margin-top: 50px;

    position: relative;
}

.swiper-pagination-bullet {

    width: 14px;
    height: 14px;

    background: #ccc;

    opacity: 1;
}

.swiper-pagination-bullet-active {

    width: 35px;

    border-radius: 50px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .testimonial-section .section-title h2 {

        font-size: 42px;
    }

}


@media(max-width:767px) {

    .testimonial-section .section-title h2 {

        font-size: 34px;
    }

    .testimonial-card {

        padding: 28px 22px;
    }

}


/* =========================================
FAQ SECTION
========================================= */

.faq-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    overflow: hidden;

    position: relative;
}


/* =========================================
TAG
========================================= */

.faq-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.faq-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.faq-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
FAQ WRAPPER
========================================= */

.faq-wrapper {

    max-width: 950px;

    margin: auto;

    margin-top: 20px;
}


/* =========================================
FAQ ITEM
========================================= */

.faq-item {

    background: #fff;

    border-radius: 28px;

    margin-bottom: 22px;

    overflow: hidden;

    transition: 0.4s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}

.faq-item.active {

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
QUESTION
========================================= */

.faq-question {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    padding: 28px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    text-align: left;
}


/* TEXT */

.faq-question span {

    font-size: 22px;
    font-weight: 700;

    color: #111;

    transition: 0.4s;
}

.faq-item.active .faq-question span {

    color: #fff;
}


/* ICON */

.faq-question i {

    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 18px;

    background:
        rgba(31, 93, 47, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1f5d2f;

    font-size: 20px;

    transition: 0.4s;
}

.faq-item.active .faq-question i {

    background:
        rgba(255, 255, 255, 0.15);

    color: #fff;

    transform: rotate(45deg);
}


/* =========================================
ANSWER
========================================= */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.5s ease,
        padding 0.4s ease;
}

.faq-answer p {

    font-size: 16px;

    line-height: 1.9;

    color: #f2f2f2;

    padding:
        0 30px 30px;
}


/* ACTIVE */

.faq-item.active .faq-answer {

    max-height: 300px;
}


/* =========================================
HOVER EFFECT
========================================= */

.faq-item:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .faq-section .section-title h2 {

        font-size: 42px;
    }

}


@media(max-width:767px) {

    .faq-section .section-title h2 {

        font-size: 34px;
    }

    .faq-question {

        padding: 22px 20px;

        gap: 15px;
    }

    .faq-question span {

        font-size: 18px;
    }

    .faq-question i {

        width: 45px;
        height: 45px;

        min-width: 45px;

        font-size: 16px;
    }

    .faq-answer p {

        padding:
            0 20px 25px;

        font-size: 15px;
    }

}

/* =========================================
FOOTER SECTION
========================================= */

.footer-section {

    position: relative;

    background:
        linear-gradient(to right,
            #0d2414,
            #111111);

    overflow: hidden;

    color: #fff;
}


/* =========================================
TOP AREA
========================================= */

.footer-top {

    padding:
        110px 0 70px;

    position: relative;
}


/* =========================================
LOGO
========================================= */

.footer-logo {

    width: 220px;

    margin-bottom: 28px;
}


/* =========================================
ABOUT
========================================= */

.footer-about p {

    font-size: 16px;

    line-height: 1.9;

    color: #d8d8d8;

    margin-bottom: 30px;
}


/* =========================================
SOCIAL ICONS
========================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-social a {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

    transition: 0.4s;
}

.footer-social a:hover {

    transform: translateY(-6px);

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
HEADING
========================================= */

.footer-links h4,
.footer-contact h4 {

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 28px;

    color: #fff;

    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 60px;
    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);
}


/* =========================================
LINKS
========================================= */

.footer-links ul {

    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-links ul li {

    margin-bottom: 16px;
}

.footer-links ul li a {

    color: #d8d8d8;

    font-size: 16px;

    text-decoration: none;

    transition: 0.4s;

    position: relative;
}

.footer-links ul li a:hover {

    color: #fff;

    padding-left: 10px;
}


/* =========================================
CONTACT ITEM
========================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 28px;
}


/* ICON */

.footer-contact-item i {

    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 18px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 22px;
}


/* TEXT */

.footer-contact-item span {

    display: block;

    color: #bdbdbd;

    font-size: 14px;

    margin-bottom: 6px;
}

.footer-contact-item h5 {

    font-size: 18px;

    line-height: 1.7;

    color: #fff;

    margin: 0;
}


/* =========================================
BOTTOM AREA
========================================= */

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 25px 0;
}


/* WRAPPER */

.footer-bottom-wrapper {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}


/* TEXT */

.footer-bottom p {

    margin: 0;

    font-size: 15px;

    color: #d8d8d8;
}


/* LINK */

.footer-bottom a {

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.4s;
}

.footer-bottom a:hover {

    color: #d91f26;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .footer-top {

        padding:
            90px 0 60px;
    }

}


@media(max-width:767px) {

    .footer-top {

        padding:
            70px 0 50px;
    }

    .footer-logo {

        width: 180px;
    }

    .footer-links h4,
    .footer-contact h4 {

        font-size: 24px;
    }

    .footer-bottom-wrapper {

        justify-content: center;

        text-align: center;
    }

}


/* =========================================
FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 99999;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        12px 22px 12px 12px;

    border-radius: 70px;

    background:
        linear-gradient(to right,
            #1ebe5d,
            #12a150);

    text-decoration: none;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);

    animation:
        whatsappPulse 2s infinite;

    transition: 0.4s;
}


/* HOVER */

.whatsapp-float:hover {

    transform: translateY(-6px);

    text-decoration: none;
}


/* =========================================
ICON
========================================= */

.whatsapp-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.whatsapp-icon i {

    color: #1ebe5d;

    font-size: 34px;
}


/* =========================================
TEXT
========================================= */

.whatsapp-text span {

    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;
}

.whatsapp-text p {

    margin: 4px 0 0;

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================
ANIMATION
========================================= */

@keyframes whatsappPulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(30, 190, 93, 0.7);
    }

    70% {

        box-shadow:
            0 0 0 18px rgba(30, 190, 93, 0);
    }

    100% {

        box-shadow:
            0 0 0 0 rgba(30, 190, 93, 0);
    }

}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:767px) {

    .whatsapp-float {

        right: 15px;
        bottom: 15px;

        padding:
            10px 18px 10px 10px;

        gap: 10px;
    }

    .whatsapp-icon {

        width: 52px;
        height: 52px;
    }

    .whatsapp-icon i {

        font-size: 28px;
    }

    .whatsapp-text span {

        font-size: 11px;
    }

    .whatsapp-text p {

        font-size: 15px;
    }

}


/* =========================================
SCROLL TOP BUTTON
========================================= */

#scrollTopBtn {

    position: fixed;

    right: 20px;
    bottom: 105px;

    width: 62px;
    height: 62px;

    border: none;

    outline: none;

    border-radius: 50%;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: 0.4s;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* SHOW BUTTON */

#scrollTopBtn.show {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* HOVER */

#scrollTopBtn:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}


/* ICON */

#scrollTopBtn i {

    line-height: 0;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:767px) {

    #scrollTopBtn {

        width: 54px;
        height: 54px;

        font-size: 20px;

        right: 15px;
        bottom: 90px;
    }

}


/* =========================================
PAGE HEADER
========================================= */

.page-header {

    position: relative;

    height: 70vh;

    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        url('./img/bg2.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}


/* =========================================
OVERLAY
========================================= */

.page-header-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.55));
}


/* =========================================
CONTENT
========================================= */

.page-header-content {

    position: relative;

    z-index: 2;

    text-align: center;
}


/* SMALL TEXT */

.page-header-content span {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


/* =========================================
TITLE
========================================= */

.page-header-content h1 {

    font-size: 90px;
    font-weight: 800;

    color: #fff;

    line-height: 1.1;

    margin-bottom: 25px;

    text-transform: uppercase;
}


/* =========================================
BREADCRUMB
========================================= */

.breadcrumb-box {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 28px;

    border-radius: 60px;

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(255, 255, 255, 0.1);
}


/* LINKS */

.breadcrumb-box a {

    color: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.4s;
}

.breadcrumb-box a:hover {

    color: #d91f26;
}


/* ICON */

.breadcrumb-box i {

    color: #fff;

    font-size: 13px;
}


/* CURRENT PAGE */

.breadcrumb-box p {

    margin: 0;

    color: #fff;

    font-size: 15px;
    font-weight: 600;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .page-header {

        height: 60vh;

        min-height: 480px;

        background-attachment: scroll;
    }

    .page-header-content h1 {

        font-size: 65px;
    }

}


@media(max-width:767px) {

    .page-header {

        height: 55vh;

        min-height: 420px;
    }

    .page-header-content h1 {

        font-size: 42px;
    }

    .breadcrumb-box {

        padding: 12px 22px;

        gap: 10px;
    }

}



/* =========================================
ABOUT COMPANY SECTION
========================================= */

.about-company-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
IMAGE
========================================= */

.about-company-image {

    position: relative;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-company-image img {

    width: 100%;
    height: 700px;

    object-fit: cover;

    transition: 0.5s;
}

.about-company-image:hover img {

    transform: scale(1.06);
}


/* =========================================
FLOAT CARD
========================================= */

.company-float-card {

    position: absolute;

    left: 30px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 24px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    animation: floatCard 4s ease-in-out infinite;
}


/* ICON */

.company-float-card i {

    width: 65px;
    height: 65px;

    border-radius: 20px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;
}


/* TEXT */

.company-float-card h5 {

    color: #fff;

    font-size: 22px;

    margin-bottom: 4px;
}

.company-float-card p {

    margin: 0;

    color: #f2f2f2;

    font-size: 14px;
}


/* =========================================
CONTENT
========================================= */

.about-company-content {

    padding-left: 20px;
}


/* TAG */

.company-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.about-company-content h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}


/* TEXT */

.about-company-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}


/* =========================================
FEATURE LIST
========================================= */

.company-feature-list {

    margin-top: 35px;

    margin-bottom: 40px;
}


/* ITEM */

.company-feature-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    border-radius: 20px;

    background: #fff;

    margin-bottom: 18px;

    transition: 0.4s;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.company-feature-item:hover {

    transform: translateX(10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08);
}


/* ICON */

.company-feature-item i {

    color: #d91f26;

    font-size: 22px;
}


/* TEXT */

.company-feature-item span {

    font-size: 16px;
    font-weight: 600;

    color: #111;
}


/* =========================================
BUTTON
========================================= */

.company-btn {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.company-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
FLOAT ANIMATION
========================================= */

@keyframes floatCard {

    0% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-12px);
    }

    100% {

        transform: translateY(0px);
    }

}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .about-company-content {

        padding-left: 0;
    }

    .about-company-content h2 {

        font-size: 42px;
    }

    .about-company-image img {

        height: 550px;
    }

}


@media(max-width:767px) {

    .about-company-content {

        text-align: center;
    }

    .about-company-content h2 {

        font-size: 34px;
    }

    .about-company-image img {

        height: 420px;
    }

    .company-float-card {

        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 16px;
    }

    .company-feature-item {

        text-align: left;
    }

}

/* =========================================
VISION MISSION SECTION
========================================= */

.vision-mission-section {

    background:
        linear-gradient(to bottom,
            #f8f8f8,
            #ffffff);

    overflow: hidden;

    position: relative;
}


/* =========================================
TAG
========================================= */

.vm-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.vision-mission-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.vision-mission-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
CARD
========================================= */

.vm-card {

    position: relative;

    padding: 50px 40px;

    border-radius: 35px;

    overflow: hidden;

    height: 100%;

    transition: 0.5s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}


/* VISION */

.vision-card {

    background:
        linear-gradient(to bottom right,
            #1f5d2f,
            #2d7a42);
}


/* MISSION */

.mission-card {

    background:
        linear-gradient(to bottom right,
            #d91f26,
            #ff4a4a);
}


/* HOVER */

.vm-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.12);
}


/* =========================================
ICON
========================================= */

.vm-icon {

    width: 95px;
    height: 95px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 40px;

    margin-bottom: 35px;

    transition: 0.4s;
}

.vm-card:hover .vm-icon {

    transform: rotateY(180deg);
}


/* =========================================
CONTENT
========================================= */

.vm-content h3 {

    font-size: 42px;
    font-weight: 800;

    color: #fff;

    margin-bottom: 20px;
}

.vm-content p {

    font-size: 17px;

    line-height: 2;

    color: #f2f2f2;

    margin: 0;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .vision-mission-section .section-title h2 {

        font-size: 42px;
    }

    .vm-content h3 {

        font-size: 34px;
    }

}


@media(max-width:767px) {

    .vision-mission-section .section-title h2 {

        font-size: 34px;
    }

    .vm-card {

        padding: 35px 25px;
    }

    .vm-icon {

        width: 80px;
        height: 80px;

        font-size: 32px;
    }

    .vm-content h3 {

        font-size: 28px;
    }

    .vm-content p {

        font-size: 15px;
    }

}


/* =========================================
SERVICE DETAILS SECTION
========================================= */

.service-details-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
TAG
========================================= */

.service-details-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* =========================================
TITLE
========================================= */

.service-details-content h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}


/* =========================================
TEXT
========================================= */

.service-details-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}


/* =========================================
FEATURE LIST
========================================= */

.service-feature-list {

    margin-top: 35px;

    margin-bottom: 40px;
}


/* ITEM */

.service-feature-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    border-radius: 20px;

    background: #fff;

    margin-bottom: 18px;

    transition: 0.4s;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-feature-item:hover {

    transform: translateX(10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08);
}


/* ICON */

.service-feature-item i {

    color: #d91f26;

    font-size: 22px;
}


/* TEXT */

.service-feature-item span {

    font-size: 16px;
    font-weight: 600;

    color: #111;
}


/* =========================================
BUTTON
========================================= */

.service-btn {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
IMAGE
========================================= */

.service-details-image {

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-details-image img {

    width: 100%;
    height: 720px;

    object-fit: cover;

    transition: 0.5s;
}

.service-details-image:hover img {

    transform: scale(1.06);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .service-details-content h2 {

        font-size: 42px;
    }

    .service-details-image img {

        height: 550px;
    }

}


@media(max-width:767px) {

    .service-details-content {

        text-align: center;
    }

    .service-details-content h2 {

        font-size: 34px;
    }

    .service-details-image img {

        height: 420px;
    }

    .service-feature-item {

        text-align: left;
    }

}



/* =========================================
OUR SERVICES SECTION
========================================= */

.our-services-section {

    background:
        linear-gradient(to bottom,
            #f8f8f8,
            #ffffff);

    position: relative;

    overflow: hidden;
}


/* =========================================
TAG
========================================= */

.our-service-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.our-services-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.our-services-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
CARD
========================================= */

.our-service-card {

    background: #fff;

    border-radius: 35px;

    overflow: hidden;

    transition: 0.5s;

    height: 100%;

    position: relative;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}

.our-service-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.1);
}


/* =========================================
IMAGE
========================================= */

.our-service-image {

    overflow: hidden;

    position: relative;
}

.our-service-image img {

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: 0.5s;
}

.our-service-card:hover .our-service-image img {

    transform: scale(1.08);
}


/* =========================================
CONTENT
========================================= */

.our-service-content {

    padding: 35px 30px 30px;

    text-align: center;

    position: relative;
}


/* ICON */

.our-service-icon {

    width: 85px;
    height: 85px;

    border-radius: 24px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 34px;

    margin:
        -75px auto 25px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}


/* TITLE */

.our-service-content h3 {

    font-size: 32px;
    font-weight: 700;

    color: #111;

    margin-bottom: 18px;
}


/* TEXT */

.our-service-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin: 0;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .our-services-section .section-title h2 {

        font-size: 42px;
    }

}


@media(max-width:767px) {

    .our-services-section .section-title h2 {

        font-size: 34px;
    }

    .our-service-content {

        padding: 30px 22px 25px;
    }

    .our-service-content h3 {

        font-size: 28px;
    }

}


/* =========================================
CONTACT PAGE SECTION
========================================= */

.contact-page-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
LEFT INFO BOX
========================================= */

.contact-page-info {

    background: #fff;

    padding: 50px 40px;

    border-radius: 35px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}


/* TAG */

.contact-page-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.contact-page-info h2 {

    font-size: 52px;
    font-weight: 800;

    color: #111;

    line-height: 1.2;

    margin-bottom: 22px;
}


/* TEXT */

.contact-page-info p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}


/* =========================================
CONTACT ITEM
========================================= */

.contact-page-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border-radius: 24px;

    background: #f8f8f8;

    margin-bottom: 22px;

    transition: 0.4s;
}

.contact-page-item:hover {

    transform: translateX(10px);

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06);
}


/* ICON */

.contact-page-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 22px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;
}


/* TEXT */

.contact-page-text span {

    display: block;

    font-size: 14px;
    font-weight: 600;

    color: #666;

    margin-bottom: 6px;
}

.contact-page-text h5 {

    font-size: 22px;

    line-height: 1.6;

    color: #111;

    margin: 0;
}


/* =========================================
CONTACT FORM
========================================= */

.contact-page-form {

    background: #fff;

    padding: 50px 40px;

    border-radius: 35px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}


/* FORM TITLE */

.contact-form-title {

    margin-bottom: 35px;
}

.contact-form-title h3 {

    font-size: 42px;
    font-weight: 800;

    color: #111;

    margin-bottom: 10px;
}

.contact-form-title p {

    font-size: 16px;

    color: #666;

    line-height: 1.8;
}


/* =========================================
FORM GROUP
========================================= */

.contact-form-group {

    position: relative;
}

.contact-form-group input,
.contact-form-group textarea {

    width: 100%;

    border: none;

    outline: none;

    padding:
        18px 20px 18px 60px;

    border-radius: 20px;

    background: #f8f8f8;

    font-size: 15px;

    color: #111;

    transition: 0.4s;
}

.contact-form-group textarea {

    resize: none;
}


/* FOCUS */

.contact-form-group input:focus,
.contact-form-group textarea:focus {

    background: #fff;

    box-shadow:
        0 0 0 2px rgba(31, 93, 47, 0.15);
}


/* ICON */

.contact-form-group i {

    position: absolute;

    top: 50%;
    left: 22px;

    transform: translateY(-50%);

    color: #1f5d2f;

    font-size: 18px;
}

.contact-form-group textarea+i {

    top: 24px;

    transform: none;
}


/* =========================================
BUTTON
========================================= */

.contact-submit-btn {

    width: 100%;

    border: none;

    padding: 18px 20px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-submit-btn i {

    margin-right: 10px;
}

.contact-submit-btn:hover {

    transform: translateY(-5px);
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .contact-page-info h2 {

        font-size: 42px;
    }

    .contact-form-title h3 {

        font-size: 36px;
    }

}


@media(max-width:767px) {

    .contact-page-info,
    .contact-page-form {

        padding: 35px 22px;
    }

    .contact-page-info h2 {

        font-size: 34px;
    }

    .contact-form-title h3 {

        font-size: 30px;
    }

    .contact-page-item {

        padding: 18px;
    }

    .contact-page-icon {

        width: 60px;
        height: 60px;

        min-width: 60px;

        font-size: 24px;
    }

    .contact-page-text h5 {

        font-size: 18px;
    }

}

/* =========================================
MAP SECTION
========================================= */

.map-section {

    background:
        linear-gradient(to bottom,
            #f8f8f8,
            #ffffff);

    position: relative;

    overflow: hidden;
}


/* =========================================
TAG
========================================= */

.map-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
TITLE
========================================= */

.map-section .section-title h2 {

    font-size: 58px;
    font-weight: 800;

    color: #111;

    margin-bottom: 18px;
}

.map-section .section-title p {

    max-width: 700px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
MAP WRAPPER
========================================= */

.map-wrapper {

    position: relative;

    margin-top: 20px;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.1);
}


/* =========================================
MAP
========================================= */

.map-wrapper iframe {

    width: 100%;

    height: 700px;

    border: none;

    display: block;
}


/* =========================================
FLOAT CARD
========================================= */

.map-contact-card {

    position: absolute;

    left: 40px;
    bottom: 40px;

    max-width: 380px;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 28px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);
}


/* ICON */

.map-contact-icon {

    width: 75px;
    height: 75px;

    min-width: 75px;

    border-radius: 24px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;
}


/* TEXT */

.map-contact-text h5 {

    color: #fff;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 10px;
}

.map-contact-text p {

    color: #f2f2f2;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* BUTTON */

.map-contact-text a {

    display: inline-block;

    padding: 14px 28px;

    border-radius: 60px;

    background: #fff;

    color: #111;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;
}

.map-contact-text a:hover {

    transform: translateY(-5px);

    background: #d91f26;

    color: #fff;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .map-section .section-title h2 {

        font-size: 42px;
    }

    .map-wrapper iframe {

        height: 550px;
    }

}


@media(max-width:767px) {

    .map-section .section-title h2 {

        font-size: 34px;
    }

    .map-wrapper iframe {

        height: 420px;
    }

    .map-contact-card {

        position: relative;

        left: auto;
        bottom: auto;

        max-width: 100%;

        margin: 20px;

        padding: 22px;

        flex-direction: column;
    }

    .map-contact-icon {

        width: 65px;
        height: 65px;

        min-width: 65px;

        font-size: 26px;
    }

    .map-contact-text h5 {

        font-size: 24px;
    }

}

/* =========================================
SINGLE BANNER SECTION
========================================= */

.single-banner-section {

    position: relative;

    overflow: hidden;
}


/* =========================================
IMAGE
========================================= */

.single-banner-img {

    width: 100%;

    overflow: hidden;

    position: relative;
}

.single-banner-img img {

    width: 100%;

    height: 66%;

    display: block;

    object-fit: cover;
}


/* =========================================
OPTIONAL HEIGHT
========================================= */

.single-banner-img {

    height: 700px;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .single-banner-img {

        height: 500px;
    }

}


@media(max-width:767px) {

    .single-banner-img {

        height: 280px;
    }

}


/* =========================================
GRINDING SECTION
========================================= */

.grinding-section {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

    position: relative;

    overflow: hidden;
}


/* =========================================
IMAGE
========================================= */

.grinding-image {

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.grinding-image img {

    width: 100%;
    height: 720px;

    object-fit: cover;

    transition: 0.5s;
}

.grinding-image:hover img {

    transform: scale(1.06);
}


/* =========================================
CONTENT
========================================= */

.grinding-content {

    padding-left: 20px;
}


/* TAG */

.grinding-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.grinding-content h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}


/* TEXT */

.grinding-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}


/* =========================================
FEATURES
========================================= */

.grinding-features {

    margin-top: 35px;

    margin-bottom: 40px;
}


/* ITEM */

.grinding-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    border-radius: 20px;

    background: #fff;

    margin-bottom: 18px;

    transition: 0.4s;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.grinding-item:hover {

    transform: translateX(10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08);
}


/* ICON */

.grinding-item i {

    color: #d91f26;

    font-size: 22px;
}


/* TEXT */

.grinding-item span {

    font-size: 16px;
    font-weight: 600;

    color: #111;
}


/* =========================================
BUTTON
========================================= */

.grinding-btn {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 60px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.grinding-btn:hover {

    transform: translateY(-6px);

    color: #fff;
}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .grinding-content {

        padding-left: 0;
    }

    .grinding-content h2 {

        font-size: 42px;
    }

    .grinding-image img {

        height: 550px;
    }

}


@media(max-width:767px) {

    .grinding-content {

        text-align: center;
    }

    .grinding-content h2 {

        font-size: 34px;
    }

    .grinding-image img {

        height: 420px;
    }

    .grinding-item {

        text-align: left;
    }

}


/* =========================================
ORGANIC SECTION
========================================= */

.organic-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f7f7f7);
}


/* =========================================
BACKGROUND SHAPE
========================================= */

.organic-shape {

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(31, 93, 47, 0.05);
}


/* =========================================
IMAGE
========================================= */

.organic-image {

    position: relative;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.organic-image img {

    width: 100%;
    height: 760px;

    object-fit: cover;

    transition: 0.5s;
}

.organic-image:hover img {

    transform: scale(1.06);
}


/* FLOAT CARD */

.organic-float-card {

    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 22px 25px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    animation:
        organicFloat 4s ease-in-out infinite;
}


/* ICON */

.organic-float-card i {

    width: 70px;
    height: 70px;

    border-radius: 22px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;
}


/* TEXT */

.organic-float-card h5 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 5px;
}

.organic-float-card p {

    margin: 0;

    color: #f2f2f2;

    font-size: 14px;
}


/* =========================================
CONTENT
========================================= */

.organic-content {

    padding-left: 20px;
}


/* TAG */

.organic-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(31, 93, 47, 0.1);

    color: #1f5d2f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.organic-content h2 {

    font-size: 58px;
    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}


/* TEXT */

.organic-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}


/* =========================================
FEATURES
========================================= */

.organic-feature-list {

    margin-top: 35px;
}

.organic-feature-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    border-radius: 20px;

    background: #fff;

    margin-bottom: 18px;

    transition: 0.4s;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.organic-feature-item:hover {

    transform: translateX(10px);
}

.organic-feature-item i {

    color: #d91f26;

    font-size: 22px;
}

.organic-feature-item span {

    font-size: 16px;
    font-weight: 600;

    color: #111;
}


/* =========================================
PACKING
========================================= */

.packing-box {

    margin-top: 35px;

    padding: 30px;

    border-radius: 30px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    color: #fff;
}

.packing-box h5 {

    font-size: 28px;

    margin-bottom: 20px;
}

.packing-sizes {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.packing-sizes span {

    padding: 12px 26px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.15);

    font-size: 16px;
    font-weight: 700;
}


/* =========================================
BRANCH CARD
========================================= */

.branch-card {

    background: #fff;

    padding: 40px 35px;

    border-radius: 35px;

    height: 100%;

    transition: 0.4s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.05);
}

.branch-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}


/* ICON */

.branch-icon {

    width: 85px;
    height: 85px;

    border-radius: 25px;

    background:
        linear-gradient(to right,
            #1f5d2f,
            #d91f26);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 36px;

    margin-bottom: 25px;
}


/* TITLE */

.branch-card h3 {

    font-size: 36px;
    font-weight: 800;

    color: #111;

    margin-bottom: 10px;
}

.branch-card span {

    display: block;

    color: #d91f26;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 18px;
}

.branch-card p {

    font-size: 16px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 22px;
}


/* PHONE */

.branch-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #1f5d2f;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================
ANIMATION
========================================= */

@keyframes organicFloat {

    0% {

        transform: translateY(0px);
    }

    50% {

        transform: translateY(-12px);
    }

    100% {

        transform: translateY(0px);
    }

}


/* =========================================
MOBILE DESIGN
========================================= */

@media(max-width:991px) {

    .organic-content {

        padding-left: 0;
    }

    .organic-content h2 {

        font-size: 42px;
    }

    .organic-image img {

        height: 550px;
    }

}


@media(max-width:767px) {

    .organic-content {

        text-align: center;
    }

    .organic-content h2 {

        font-size: 34px;
    }

    .organic-image img {

        height: 420px;
    }

    .organic-float-card {

        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 16px;
    }

    .organic-feature-item {

        text-align: left;
    }

    .branch-card {

        padding: 30px 22px;
    }

    .branch-card h3 {

        font-size: 28px;
    }

}