:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Inter', sans-serif;
    --theme-color: #FFB300;
    --theme-bg-light: #F9F9F9;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #111111;
    --color-green: #11B76B;
    --color-blue: #0049D0;
    --color-yellow: #FBA707;
    --hero-overlay-color: #01060F;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #111111;
    --footer-bg2: #181818;
    --footer-text-color: #F5FAFF;
}

/*====================
        General css - KEPT ORIGINAL
        ======================*/

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

/*====================
        Header top css - FIXED COLOR TO MATCH FOOTER
        ======================*/

.header-top {
    padding: 8px 0 10px 0;
    position: relative;
    background: var(--color-dark);
    /* Changed to match footer */
    border-bottom: 5px solid var(--theme-color);
    z-index: 1;
}

.header-top::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    border-radius: 0 50px 0 0;
    border-right: 15px solid #fff;
    width: 10%;
    top: 0;
    left: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top::after {
    content: "";
    position: absolute;
    background: var(--theme-color);
    border-radius: 50px 0 0 0;
    border-left: 15px solid #fff;
    width: 10%;
    top: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-contact a {
    color: var(--color-white);
    font-weight: 500;
}

.header-top-contact a i {
    color: var(--theme-color);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-link a {
    color: var(--color-white);
    margin-right: 12px;
}

.header-top-link a:hover {
    color: var(--theme-color);
}

.header-top-social span {
    color: var(--color-white);
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: var(--transition);
}

.header-top-social a:hover {
    color: var(--theme-color);
}

.mail-fix {
    margin-left: 15px;
}

.social-fix {
    margin-right: 15px;
}

@media (max-width: 1350px) {
    .mail-fix {
        margin-left: 80px;
    }

    .social-fix {
        margin-right: 80px;
    }
}

@media (max-width: 1024px) {
    .mail-fix {
        margin-left: 60px;
    }
    .social-fix {
        margin-right: 60px;
    }
}

@media all and (max-width: 1199px) {
    .header-top-contact ul {
        gap: 10px;
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}

@media all and (max-width: 992px) {
    .header-top {
        display: none;
    }
}

/*====================
        Navbar css - UPDATED TO FIX LOGO POSITION AND REMOVE SEARCH
        ======================*/

.navbar {
    background: var(--color-white);
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: var(--box-shadow);
    z-index: 999;
}

.navbar.fixed-top {
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 30px;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--theme-color);
}

.navbar-brand:hover {
    color: var(--color-dark);
    text-decoration: none;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .navbar .nav-right-btn {
        display: none;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 30px 0 30px 0;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--color-dark);
        text-transform: uppercase;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .nav-link {
        position: relative;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-left: 0;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        transition: var(--transition);
    }

    .nav-right-link:hover {
        color: var(--theme-color) !important;
    }

    .nav-right .sidebar-btn .nav-right-link,
    .nav-right .search-btn .nav-right-link {
        border: none;
        background: transparent;
        color: var(--color-dark);
        font-size: 28px;
        padding-right: 0;
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0;
    }

    .nav-right .theme-btn {
        padding: 12px 25px;
    }
}

/* mobile menu */
.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
    }

    .navbar-brand {
        padding-left: 10px;
        font-size: 22px;
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: var(--color-white);
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        transition: var(--transition);
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .search-area.open {
        top: 50px !important;
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .nav-right {
        display: none;
    }
}

/*====================
        Search area css - REMOVED FROM MENU
        ======================*/

.search-area {
    position: absolute;
    top: 85px;
    right: 0;
    background: var(--color-white);
    padding: 15px 15px;
    -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    width: 340px;
    visibility: hidden;
    opacity: 0;
    border-radius: 10px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.search-area.open {
    visibility: visible;
    opacity: 1;
    top: 78px;
}

.search-area .form-group {
    position: relative;
}

.search-area .form-control {
    padding: 12px 45px 12px 20px;
    border-radius: 10px;
    box-shadow: none;
}

.search-area .form-control:focus {
    border-color: var(--theme-color);
}

.search-area .search-icon-btn {
    position: absolute;
    right: 8px;
    top: 6px;
    background: transparent;
    border: none;
    font-size: 20px;
}

/*====================
        Hero Slider Section - FIXED MARGIN AND CENTERED TEXT
        ======================*/

.hero-slider-section {
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.swiper {
    max-width: 100%;
    height: 700px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/red-onion.jpg');
}

.slide-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/Garlic.jpg');
}

.slide-bg-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/RNR-Rice.jpg');
}

.slider-content {
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    /* FIXED: Added perfect centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slider-content h1 {
    color: var(--color-white);
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-content p {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.slider-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    background: var(--slider-arrow-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--theme-color);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color);
    opacity: 1;
}

@media (max-width: 992px) {
    .swiper {
        height: 600px;
    }

    .slider-content h1 {
        font-size: 50px;
    }

    .slider-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 500px;
    }

    .slider-content h1 {
        font-size: 36px;
    }

    .slider-content p {
        font-size: 16px;
        padding: 0 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .slider-btns {
        width: 50%;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .swiper {
        height: 500px;
    }

    .slider-content h1 {
        font-size: 18px;
        padding-right: 45px;

    }

    .slider-content p {
        font-size: 12px;
        padding-right: 45px;
    }

    .slider-btns {
        flex-direction: column;
        align-items: center;
        padding-right: 45px;
        width: 50%;
    }

    .slider-btns .theme-btn {
        width: 100%;
        max-width: 100px;
    }
}

/*====================
        About Us Section - IMPROVED MOBILE RESPONSIVENESS
        ======================*/

.about-section {
    padding: 100px 0;
    background-color: var(--theme-bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--theme-color);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--color-white);
    font-size: 24px;
}

.about-feature-text h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.about-feature-text p {
    margin-bottom: 0;
    font-size: 16px;
}

.about-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-img,
    .about-text {
        width: 100%;
    }

    .about-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-btns {
        flex-direction: column;
        width: 100%;
    }

    .about-btns .theme-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .about-feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .section-title p {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-feature-item {
        margin-bottom: 20px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/*====================
        Theme button
        ======================*/

.theme-btn {
    font-size: 14px;
    color: var(--color-dark);
    padding: 14px 25px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn span {
    margin-right: 5px;
}

.theme-btn2 {
    background: var(--color-white);
    color: var(--color-dark);
}

.theme-btn2::before {
    background: var(--theme-color);
}

.theme-btn2:hover {
    color: var(--color-dark);
}

/*====================
        Our Services Section - IMPROVED MOBILE RESPONSIVENESS
        ======================*/

.service-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 0;
}

.bg {
    background: var(--theme-bg-light);
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 10px;
}

.site-title-tagline::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    background: var(--theme-color);
    opacity: .2;
    left: -2px;
    bottom: 0;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.site-title span {
    color: var(--theme-color);
}

.heading-divider {
    display: inline-block;
    position: relative;
    border: 3px solid var(--theme-color);
    width: 90px;
    height: 10px;
    border-radius: 50px;
    margin: 10px 0 20px 0;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 7px;
    width: 15px;
    border-radius: 50px;
    background: var(--theme-color);
    animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(72px);
    }

    100% {
        transform: translateX(-1px);
    }
}

.service-item {
    position: relative;
    padding: 0 20px 20px 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    z-index: 1;
}

.service-item::before {
    content: "";
    position: absolute;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    width: 100%;
    left: 0px;
    top: 130px;
    bottom: 0px;
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-img {
    overflow: hidden;
    border-radius: 30px;
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    margin-top: 5px;
}

.service-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    line-height: 82px;
    background: var(--theme-color);
    font-size: 50px;
    color: var(--color-white);
    text-align: center;
    border-radius: 50%;
    margin-top: -50px;
    right: 40px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-arrow {
    margin-top: 25px;
}

.service-title a {
    font-size: 22px;
    margin: 20px 0;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
    display: block;
}

.service-title a:hover {
    color: var(--theme-color);
}

.service-text {
    margin: 15px 0;
    min-height: 100px;
}

.service-arrow .theme-btn {
    padding: 10px 22px;
}

@media all and (max-width: 1199px) {
    .service-item {
        padding: 0 15px 20px 15px;
    }

    .service-icon {
        right: 30px;
        width: 80px;
        height: 80px;
        line-height: 72px;
        margin-top: -45px;
    }
}

@media all and (max-width: 991px) {
    .service-item {
        margin-bottom: 50px;
    }

    .service-img img {
        height: 220px;
    }

    .site-title {
        font-size: 38px;
    }

    .service-icon {
        right: 40px;
    }
}

@media all and (max-width: 767px) {
    .service-area {
        padding: 80px 0;
    }

    .site-title {
        font-size: 32px;
    }

    .site-title-tagline {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .service-item {
        padding: 0 15px 20px 15px;
        margin-bottom: 40px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        line-height: 62px;
        margin-top: -40px;
        right: 25px;
    }

    .service-icon img {
        width: 40px;
        height: 40px;
    }

    .service-title a {
        font-size: 20px;
    }

    .service-text {
        min-height: auto;
        margin: 10px 0;
    }
}

@media all and (max-width: 576px) {
    .service-area {
        padding: 60px 0;
    }

    .site-title {
        font-size: 28px;
    }

    .site-title-tagline {
        font-size: 15px;
    }

    .service-item {
        padding: 0 10px 20px 10px;
    }

    .service-icon {
        right: 20px;
        width: 60px;
        height: 60px;
        line-height: 52px;
        margin-top: -35px;
    }

    .service-title a {
        font-size: 18px;
    }

    .service-text {
        font-size: 15px;
    }
}

/*====================
        Why Choose Us Section - IMPROVED MOBILE RESPONSIVENESS
        ======================*/

.why-choose-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.why-choose-content {
    margin-top: 50px;
}

.choose-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.choose-feature-item {
    flex: 1 1 calc(50% - 30px);
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--theme-bg-light);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.choose-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.choose-feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--color-white);
    font-size: 28px;
    transition: var(--transition);
}

.choose-feature-item:hover .choose-feature-icon {
    background: var(--color-dark);
    transform: rotateY(360deg);
}

.choose-feature-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.choose-feature-text p {
    font-size: 16px;
    margin-bottom: 0;
}

.choose-statistics {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding: 40px 20px;
    background: var(--color-dark);
    border-radius: 20px;
    color: var(--color-white);
    text-align: center;
}

.stat-item h3 {
    font-size: 45px;
    color: var(--theme-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .choose-feature-item {
        flex: 1 1 calc(50% - 15px);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .choose-feature-item {
        flex: 1 1 100%;
        padding: 20px;
    }

    .choose-statistics {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 20px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 30px);
        margin-bottom: 20px;
    }

    .stat-item h3 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .choose-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .choose-feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 35px;
    }

    .stat-item p {
        font-size: 16px;
    }

    .choose-feature-text h4 {
        font-size: 18px;
    }

    .choose-feature-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .choose-feature-item {
        padding: 15px;
    }

    .choose-statistics {
        padding: 20px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .stat-item {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 15px;
    }

    .choose-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/*====================
        Our Gallery Section - REMOVED LAST IMAGE AND IMPROVED MOBILE RESPONSIVENESS
        ======================*/

.gallery-section {
    padding: 100px 0;
    background-color: var(--theme-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.gallery-content p {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-icon {
    width: 45px;
    height: 45px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-icon:hover {
    background: var(--color-white);
    color: var(--theme-color);
}

.gallery-btn {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-overlay {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-content h4 {
        font-size: 18px;
    }

    .gallery-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 250px;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-btn .theme-btn {
        width: 100%;
        max-width: 280px;
    }
}

/*====================
        Footer Area - MATCHES HEADER COLOR
        ======================*/

.footer-area {
    background: var(--color-dark);
    /* Same as header top */
    position: relative;
    z-index: 1;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.9);
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-widget-wrapper {
    padding: 120px 0 70px 0;
}

.footer-widget-box {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--theme-color);
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 600;
    z-index: 1;
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 0;
    left: 0;
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 18px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding-left: 0;
    list-style: none;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    text-decoration: none;
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color);
}

.footer-list li a:hover {
    padding-left: 10px;
    color: var(--theme-color);
}

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    margin-bottom: 20px;
}

.footer-contact {
    padding-left: 0;
    list-style: none;
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--footer-text-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-contact li a {
    color: var(--footer-text-color);
    transition: 0.3s;
    text-decoration: none;
}

.footer-contact li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 50px;
    background: var(--theme-color);
    text-align: center;
    transition: 0.3s;
    color: var(--color-white);
}

.footer-contact li a:hover {
    color: var(--theme-color);
}

.subscribe-form .form-control {
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: none;
    border: none;
    width: 100%;
    margin-bottom: 15px;
}

.copyright {
    position: relative;
    padding: 20px 0;
    background: var(--footer-bg2);
    border-bottom: 5px solid var(--theme-color);
    z-index: 1;
}

.copyright::before {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    bottom: -1px;
    background: var(--theme-color);
    width: 50%;
    clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.footer-menu {
    margin: 0;
    padding: 0;
    text-align: right;
    list-style: none;
}

.footer-menu li {
    display: inline-block;
    margin-left: 25px;
    font-size: 16px;
}

.footer-menu li a {
    color: var(--footer-text-color);
    transition: var(--transition);
    text-decoration: none;
}

.footer-menu li a:hover {
    color: var(--theme-color);
}

.copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0px;
    font-size: 16px;
}

.copyright-text a {
    color: var(--theme-color);
    font-weight: 500;
    text-decoration: none;
}

@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom: 50px;
    }

    .footer-widget-wrapper {
        padding: 100px 0 60px 0;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrapper {
        padding: 80px 0 50px 0;
    }

    .copyright .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left;
    }

    .copyright .footer-menu li {
        margin-left: 0;
        margin-right: 15px;
    }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding: 60px 0 30px 0;
    }

    .copyright::before {
        clip-path: polygon(30% 1%, 100% 0, 100% 100%, 0% 100%);
    }

    .copyright .copyright-text a {
        color: var(--theme-color);
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu li {
        display: block;
        margin: 10px 0;
    }

    .footer-widget-title {
        font-size: 20px;
    }

    .footer-logo {
        font-size: 28px;
    }
}

@media all and (max-width: 576px) {
    .footer-widget-wrapper {
        padding: 50px 0 25px 0;
    }

    .footer-contact li {
        font-size: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact li i {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .footer-list li a {
        font-size: 15px;
    }

    .subscribe-form .form-control {
        padding: 14px 15px;
    }

    .copyright {
        padding: 15px 0;
    }
}

/* Container */
@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}

/* Main Content Area */
.main-content {
    flex: 1;
    background: var(--theme-bg-light);
    padding: 50px 0;
}

.main-content h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Product Category Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme-color);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Improved Responsive Container Padding */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* contact us form */
.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 12px;
    overflow: hidden;
}

.contact-form h3 {
    font-family: var(--heading-font);
    color: var(--color-dark);
    margin-bottom: 20px;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.btn-theme {
    background: var(--theme-color);
    color: var(--color-dark);
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-theme:hover {
    background: #e6a100;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* enquiry form css */
.enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.btn-theme {
    background: #FFB300;
    border: none;
    color: #111;
    font-weight: 600;
}

.btn-theme:hover {
    background: #e6a100;
}


/* bread crumb */
/* Breadcrumb section */
.breadcrumb-section {
    position: relative;
    background: url('./img/Ginger.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    /* height of the section */
    text-align: center;
    color: #fff;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* overlay for readability */
}

.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb a {
    color: #FFB300;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .breadcrumb-item.active {
    color: #fff;
}