@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
  font-family: 'Inter', sans-serif;
}

/* ------------------------------------✅ Home Page CSS Start------------------------------ */

/* ✅ Navbar CSS Start */

/* Page Load Animation */
.ezy__nav4 {
    --bs-body-color: #304656;
    --bs-body-bg: #fff;
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    background-color: var(--bs-body-bg);
    animation: slideFadeIn 0.8s ease-in-out both;
    position: sticky !important;
    top: 0;
    z-index: 1030;
    background-color: #fff;
}

.ezy__nav4,
.ezy__nav4 * {
    font-family: 'Inter', sans-serif;
}


@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gray .ezy__nav4,
.ezy__nav4.gray {
    --bs-body-bg: rgb(246, 246, 246);
}

.dark-gray .ezy__nav4,
.ezy__nav4.dark-gray {
    --bs-body-color: #fff;
    --bs-body-bg: rgb(30, 39, 53);
}

.dark .ezy__nav4,
.ezy__nav4.dark {
    --bs-body-color: #fff;
    --bs-body-bg: rgb(11, 23, 39);
}

.ezy__nav4 .navbar-brand {
    font-weight: 800;
    font-size: 30px;
    color: var(--bs-body-color);
}

/*  Animated Toggler */
.ezy__nav4 .navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.ezy__nav4 .navbar-toggler>span {
    display: flex;
    align-items: center;
    height: 32px;
}

.ezy__nav4 .navbar-toggler>span>span {
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--bs-body-color);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.35s ease-in-out;
}

.ezy__nav4 .navbar-toggler>span>span::before,
.ezy__nav4 .navbar-toggler>span>span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--bs-body-color);
    border-radius: 5px;
    transition: all 0.35s ease-in-out;
}

.ezy__nav4 .navbar-toggler>span>span::before {
    top: -7px;
}

.ezy__nav4 .navbar-toggler>span>span::after {
    bottom: -7px;
}

.ezy__nav4 .navbar-toggler[aria-expanded="true"]>span>span {
    background-color: transparent;
}

.ezy__nav4 .navbar-toggler[aria-expanded="true"]>span>span::before {
    top: 0;
    transform: rotate(-45deg);
}

.ezy__nav4 .navbar-toggler[aria-expanded="true"]>span>span::after {
    bottom: 0;
    transform: rotate(45deg);
}

.ezy__nav4 .navbar-nav .nav-link {
    color: var(--bs-body-color);
    opacity: 0.6;
}

.ezy__nav4 .navbar-nav .nav-link:hover,
.ezy__nav4 .navbar-nav .nav-link:focus,
.ezy__nav4 .navbar-nav .nav-link.active {
    color: var(--bs-body-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .ezy__nav4 .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;

    }
}

.ezy__nav4 .btn {
    border-radius: 20px;
}

.ezy__nav4 .btn-outline-light {
    border-color: #25D366;
    color: #25D366;
}

.ezy__nav4 .btn-outline-light:hover {
    background-color: #25D366;
    color: var(--bs-body-bg);
}

.ezy__nav4 .navbar {
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
}

.btn-locateus img {
    transition: filter 0.3s ease;
    filter: grayscale(0%) brightness(1);
}

.btn-locateus:hover img {
    filter: grayscale(100%) brightness(3);
    /* Simulates white on dark */
}


/* Dropdown on Hover for Desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        background-color: #fff;
        min-width: 200px;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 16px;
        font-size: 14px;
        color: #333;
        transition: background-color 0.2s ease;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.03);
    }

    .dropdown:hover>.dropdown-menu {
        pointer-events: auto;
    }
}

@media (max-width: 991.98px) {
    .ezy__nav4 .navbar-collapse .navbar-nav {
        justify-content: center !important;
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .ezy__nav4 .navbar-collapse .dropdown-menu {
        text-align: center;
    }

    .ezy__nav4 .navbar-collapse .dropdown-menu .dropdown-item {
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 991.98px) {
    .ezy__nav4 {
        position: sticky !important;
        top: 0;
        z-index: 1030;
        background-color: #fff;
    }
}



/* ✅ Navbar CSS End */

/* ✅ Hero Section CSS Start */
.ezy__header13 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: #304656;
    --bs-body-bg: #fff;
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-shadow: 0px 4px 44px rgb(255, 255, 255);
    --ezy-feature-img-shadow: 0px -5px 44px rgb(255, 255, 255);
    background-color: var(--bs-body-bg);
    padding-top: 0px;
    position: relative;
}

@media (min-width: 768px) {
    .ezy__header13 {
        padding-top: 25px;
    }
}

.ezy__header13-heading {
    font-weight: bold;
    font-size: 42px;
    line-height: 48px;
    color: var(--bs-body-color);
}

@media (min-width: 768px) {
    .ezy__header13-heading {
        font-size: 72px;
        line-height: 80px;
    }
}

.ezy__header13-sub-heading {
    color: var(--bs-body-color);
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.ezy__header13-registration-note {
    color: var(--bs-body-color);
    font-size: 16px;
    opacity: 0.8;
}

.ezy__header13-btn {
    padding: 8px 22px;
    font-size: 16px;
    color: #25D366;
    border: 1px solid #25D366;
    transition: all 0.3s ease;
    box-shadow: var(--ezy-shadow);
}

.ezy__header13-btn:hover {
    background-color: #25D366;
    color: #fff;
}

.ezy__header13-feature-img {
    border-radius: 20px 20px 0 0;
    box-shadow: var(--ezy-feature-img-shadow);
}

.whatsapp-btn {
    transition: all 0.1s ease;
}

/* Animation (initial hidden) */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible,
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.1s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* ✅ Hero Section CSS End */

/* ✅ #1 About Section CSS Start */

.hero-section {
    font-family: 'Inter', sans-serif;
    position: relative;
    height: 90vh;
    width: calc(100% - 60px);
    margin: 30px 30px 0;
    overflow: hidden;
    background-color: black;
    border-radius: 50px;

    /* ✨ Start hidden for animation */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #304656f9, rgba(0, 0, 0, 0.250));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 32pt;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.hero-content p {
    font-size: 14pt;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .hero-content h2 {
        font-size: 48pt;
    }

    .hero-content p {
        font-size: 14pt;
    }
}

/* ✅ #1 About Section CSS End */


/* ✅ Why Choose Us Section CSS Start */


.ezy__featured47 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: #304656;
    --bs-body-bg: #fff;
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;

    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 60px 0;
    overflow-x: hidden;
    /* Ensure sticky context is not blocked */
}

@media (min-width: 768px) {
    .ezy__featured47 {
        padding: 100px 0;
    }
}

.ezy__featured47-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .ezy__featured47-heading {
        font-size: 72px;
    }
}

.ezy__featured47-sub-heading {
    font-size: 16px;
    line-height: 30px;
    opacity: 0.8;
}

.ezy__featured47-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ezy__featured47-content {
    opacity: 0.8;
}

.ezy__featured47-bg-holder {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 200px;
}

.ezy__featured47-shape {
    position: relative;
}

.ezy__featured47-shape:before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.object-fit-cover {
    object-fit: cover;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ✅ Why Choose Us Section CSS End */

/* ✅ Counter Section CSS Start */

.ezy__numbers12 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: #2b323c;
    --bs-body-bg: rgb(255, 255, 255);
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;

    color: #fff;
    overflow: hidden;
    padding: 80px 30px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    border-radius: 50px;
    /* Rounded corners */
    margin-left: 30px;
    /* Left space */
    margin-right: 30px;
    /* Right space */
}

@media (min-width: 768px) {
    .ezy__numbers12 {
        padding: 150px 50px;
    }
}

.numbers-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
    border-radius: 20px;
    /* Match rounding */
}

.ezy__numbers12-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to bottom, #304656f9, rgba(0, 0, 0, 0.500));
    border-radius: 20px;
    /* Match rounding */
}

.ezy__numbers12-heading {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

@media (min-width: 768px) {
    .ezy__numbers12-heading {
        font-size: 72px;
    }
}

.ezy__numbers12-sub-heading {
    font-size: 16px;
    line-height: 1;
}

/* ✅ Counter Section CSS End */

/* ✅ Our Service Section CSS Start */
.ezy__service17 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: rgb(50, 62, 80);
    --bs-body-bg: #fff;

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-card-bg: #ffffff;
    --ezy-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);

    background-color: var(--bs-body-bg);
}

/* Gray Block Style */
.gray .ezy__service17,
.ezy__service17.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__service17,
.ezy__service17.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);

    /* Easy Frontend variables */
    --ezy-card-bg: #243242;
    --ezy-card-box-shadow: 0 21px 65px 0 rgba(70, 70, 70, 0.25);
}

/* Dark Block Style */
.dark .ezy__service17,
.ezy__service17.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);

    /* Easy Frontend variables */
    --ezy-card-bg: #162231;
    --ezy-card-box-shadow: 0 21px 65px 0 rgba(55, 55, 55, 0.25);
}

.ezy__service17-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--bs-body-color);
}

@media (min-width: 768px) {
    .ezy__service17-heading {
        font-size: 72px;
    }
}

.ezy__service17-sub-heading {
    font-size: 16px;
    color: var(--bs-body-color);
    line-height: 1.5;
    opacity: 0.8;
}

.ezy__service17-separator {
    padding: 75px 0;
}

.ezy__service17-card {
    transition: 0.4s;
    background-color: var(--ezy-card-bg);
}

.ezy__service17-card:hover {
    box-shadow: var(--ezy-card-box-shadow);
    transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
}

.ezy__service17-card-icon {
    font-size: 40px;
    color: var(--bs-body-color);
}

.ezy__service17-card-title {
    color: var(--bs-body-color);
    font-size: 32px;
    font-weight: 600;
}

.ezy__service17-card-sub-title {
    color: var(--bs-body-color);
    font-size: 16px;
    opacity: 0.7;
}

.ezy__service17-card-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-body-color);
    padding: 0;
}

.ezy__service17-card-btn:hover {
    color: var(--ezy-theme-color);
}

/* ✅ Our Service Section CSS End */


/* ✅ Our Enquiry Section CSS Start */


.ezy__travel2-wrapper {
    padding: 30px;
}

.ezy__travel2 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: #414058;
    --ezy-theme-color: #304656;
    --ezy-theme-color-rgb: 13, 110, 253;

    position: relative;
    background-color: #000;
    padding: 60px 15px;
    border-radius: 50px;
    overflow: hidden;
    min-height: 90vh;
}

@media (min-width: 768px) {
    .ezy__travel2 {
        padding: 100px 40px;
    }
}

.section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, #304656f9, rgba(0, 0, 0, 0.5));
}

.ezy__travel2 .container {
    position: relative;
    z-index: 3;
}

.ezy__travel2-heading {
    font-weight: 700;
    font-size: 42px;
    color: #fff;
}

@media (min-width: 768px) {
    .ezy__travel2-heading {
        font-size: 72px;
    }
}

.ezy__travel2-sub-heading {
    font-size: 16px;
    line-height: 28px;
    color: #f1f1f1;
    opacity: 0.9;
}

.ezy__travel2-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.form-control {
    min-height: 50px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--ezy-theme-color);
}

.ezy__travel2-submit-btn {
    background-color: var(--ezy-theme-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}

.ezy__travel2-submit-btn:hover {
    background-color: #bebebe;
}

@keyframes fadeInOnScroll {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ezy__travel2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ezy__travel2.fade-in {
    animation: fadeInOnScroll 1s ease-out forwards;
}

/* ✅ Our Enquiry Section CSS End */

/* ✅ Our Differentiator Section CSS Start */
.ezy__about3 {
    font-family: 'Inter', sans-serif;
    --bs-body-bg: rgb(255, 255, 255);
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;

    background-color: var(--bs-body-bg);
    color: #304656;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

@media (min-width: 768px) {
    .ezy__about3 {
        padding: 100px 0;
    }
}

.gray .ezy__about3,
.ezy__about3.gray {
    --bs-body-bg: rgb(246, 246, 246);
}

.dark-gray .ezy__about3,
.ezy__about3.dark-gray {
    --bs-body-color: #ffffff;
    --bs-body-bg: #304656;
}

.dark .ezy__about3,
.ezy__about3.dark {
    --bs-body-color: #ffffff;
    --bs-body-bg: #304656;
}

.ezy__about3-heading {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

@media (min-width: 768px) {
    .ezy__about3-heading {
        font-size: 72px;
    }
}

.ezy__about3 .card {
    background-color: transparent;
    border: 0;
}

.ezy__about3-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ezy__about3-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.ezy__about3 .card-title {
    font-size: 24px;
    color: #304656;
    font-weight: 600;
}

.ezy__about3 .card-text {
    font-size: 16px;
    opacity: 0.8;
    color: #304656
}

@keyframes fadeInOnScroll {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state */
.ezy__about3 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animate when in view */
.ezy__about3.fade-in {
    animation: fadeInOnScroll 1s ease-out forwards;
}

/* ✅ Our Differentiator Section CSS End */


/* ✅ Our FAQ Section CSS End */
.ezy__faq3 {
    /* Bootstrap variables */
    font-family: 'Inter', sans-serif;
    --bs-body-color: #28303b;
    --bs-body-bg: rgb(255, 255, 255);

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-item-bg: #ffffff;
    --ezy-item-shadow: 0px 4px 44px rgba(159, 190, 218, 0.37);

    background-color: var(--bs-body-bg);
    overflow: hidden;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .ezy__faq3 {
        padding: 10px 0;
        padding-bottom: 50px;
    }
}

/* Gray Block Style */
.gray .ezy__faq3,
.ezy__faq3.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__faq3,
.ezy__faq3.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: #304656;

    /* Easy Frontend variables */
    --ezy-item-bg: #304656;
    --ezy-item-shadow: #304656;
}

/* Dark Block Style */
.dark .ezy__faq3,
.ezy__faq3.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: #304656;

    /* Easy Frontend variables */
    --ezy-item-bg: #304656;
    --ezy-item-shadow: #304656;
}

.ezy__faq3-heading {
    font-weight: bold;
    font-size: 48px;
    line-height: 50px;
    color: #304656;
}

@media (min-width: 768px) {
    .ezy__faq3-heading {
        font-size: 72px;
        line-height: 80px;
    }
}

.ezy__faq3-sub-heading {
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
    color: var(--bs-body-color);
}

.ezy__faq3-item {
    background-color: transparent;
    border-radius: 10px;
}

.ezy__faq3-item * {
    color: var(--bs-body-color);
}

.ezy__faq3-btn-collapse {
    border: none;
}

.ezy__faq3-btn-collapse [class*="fa-"] {
    display: none;
    transition: transform 0.25s ease-in-out;
}

.ezy__faq3-btn-collapse:focus {
    box-shadow: none;
}

.ezy__faq3-btn-collapse .fa-minus {
    animation: 0.5s ease 0s 1 normal none running ezy__faq3-spin-inverse;
}

.ezy__faq3-btn-collapse[aria-expanded="true"] .fa-minus {
    display: block;
}

.ezy__faq3-btn-collapse .fa-plus {
    animation: 0.5s ease 0s 1 normal none running ezy__faq3-spin;
}

.ezy__faq3-btn-collapse[aria-expanded="false"] .fa-plus {
    display: block;
}

.ezy__faq3 .collapsing,
.ezy__faq3 .collapse {
    background-color: var(--ezy-item-bg);
    box-shadow: var(--ezy-item-shadow);
    border-radius: 15px;
}

@keyframes ezy__faq3-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

@keyframes ezy__faq3-spin-inverse {
    0% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* ✅ Our FAQ Section CSS End */


/* ✅ Our Footer CSS Start */
.ezy__footer6 {
    font-family: 'Inter', sans-serif;
    --bs-body-color: #ffffff;
    --bs-body-bg: #0b1727;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 60px 0;
}

@media (min-width: 768px) {
    .ezy__footer6 {
        padding: 60px 0 100px 0;
    }
}

.ezy__footer6-social li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
}

.ezy__footer6-social li a {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.ezy__footer6-social li a:hover {
    opacity: 1;
}

.ezy__footer6-quick-links li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ezy__footer6-quick-links li a,
.ezy__footer6-quick-links li span {
    color: var(--bs-body-color);
    opacity: 0.85;
    text-decoration: none;
    transition: color 0.35s ease-in-out;
}

.ezy__footer6-quick-links li a:hover {
    opacity: 1;
}

.footer-heading {
    font-weight: bold;
    text-align: left;
}

.ezy__footer6-copyright a {
    color: var(--bs-body-color);
    text-decoration: none;
}

/* 📱 Mobile Center Alignment */
@media (max-width: 767.98px) {
    .ezy__footer6 .text-md-start {
        text-align: center !important;
    }

    .ezy__footer6 h5,
    .ezy__footer6 ul,
    .ezy__footer6 div,
    .ezy__footer6 p {
        text-align: center !important;
    }

    .ezy__footer6-quick-links li {
        justify-content: center !important;
    }

    .ezy__footer6-social {
        justify-content: center !important;
    }
}

/* ✅ Our Footer CSS End */

/* ------------------------------------✅ Home Page CSS End------------------------------ */

/* ------------------------------------✅ Spices Page CSS Start------------------------------ */

/* ✅ Hero Section CSS Start */
.spices-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    animation: spicesFadeIn 1.2s ease-in-out forwards;
    opacity: 0;
}

@keyframes spicesFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.spices-hero-bg {
    inset: 0;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
}

.spices-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spices-hero-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.spices-hero-title {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.spices-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.spices-hero-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .spices-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .spices-hero-title {
        font-size: 2.2rem;
    }

    .spices-hero-desc {
        font-size: 1rem;
    }

    .spices-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .spices-hero-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .spices-hero-title {
        font-size: 48px;
    }

    .spices-hero-desc {
        font-size: 16px;
    }

    .spices-hero-side-img {
        max-height: 150px;
    }
}

/* ✅ Hero Section CSS End */

/* ✅ Spice Category Grid CSS Start */
.spices__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --spices-body-color: rgb(50, 62, 80);
    --spices-body-bg: #fff;
    --spices-theme-color: rgb(13, 110, 253);
    --spices-card-bg: #ffffff;
    --spices-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--spices-body-bg);
    margin-bottom: 30px;
}

.spices__services-heading {
    margin-top: 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--spices-body-color);
}

@media (min-width: 768px) {
    .spices__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.spices__services-sub-heading,
.spices__services-card-sub-title,
.spices__services-extra-text {
    font-size: 16px;
    color: var(--spices-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.spices__services-separator {
    padding: 0px 0;
}

.spices__services-card {
    transition: 0.4s;
    background-color: var(--spices-card-bg);
}

.spices__services-card:hover {
    box-shadow: var(--spices-card-box-shadow);
    transform: translateY(-5px);
}

.spices__services-card-icon {
    font-size: 40px;
    color: var(--spices-body-color);
}

.spices__services-card-title {
    color: var(--spices-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Spice Category Grid CSS End */

/* ✅ Spice Whatsapp Button CSS Start */

.custom-whatsapp-section {
    background-color: #fff;
}

.custom-whatsapp-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.custom-whatsapp-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.custom-whatsapp-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .custom-whatsapp-heading {
        font-size: 48px;
    }

    .custom-whatsapp-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Spice Whatsapp Button  CSS End */

/* ------------------------------------✅ Spices Page CSS End------------------------------ */

/* ------------------------------------✅ Building Supplies Page CSS Start------------------------------ */


/* ✅ Building Section Hero CSS Start */
.build-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    opacity: 0;
    animation: buildFadeIn 1.2s ease-in-out forwards;
}

@keyframes buildFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.build-hero-bg-img {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
}

.build-gradient-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.build-hero-section h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.build-hero-section p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.build-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .build-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .build-hero-section h1 {
        font-size: 2.2rem;
    }

    .build-hero-section p {
        font-size: 1rem;
    }

    .build-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .build-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .build-hero-section h1 {
        font-size: 48px;
    }

    .build-hero-section p {
        font-size: 16px;
    }

    .build-side-img {
        max-height: 150px;
    }
}

/* ✅ Building Section Hero CSS End */

/* ✅ Building Section Grid CSS Start */
.build__services {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    --build-body-color: rgb(50, 62, 80);
    --build-body-bg: #fff;
    --build-theme-color: rgb(13, 110, 253);
    --build-card-bg: #ffffff;
    --build-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--build-body-bg);
    margin-bottom: 20px;
}

.build__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--build-body-color);
}

@media (min-width: 768px) {
    .build__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.build__services-sub-heading,
.build__services-card-sub-title,
.build__services-extra-text {
    font-size: 16px;
    color: var(--build-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.build__services-separator {
    padding: 0px 0;
}

.build__services-card {
    transition: 0.4s;
    background-color: var(--build-card-bg);
}

.build__services-card:hover {
    box-shadow: var(--build-card-box-shadow);
    transform: translateY(-5px);
}

.build__services-card-icon {
    font-size: 40px;
    color: var(--build-body-color);
}

.build__services-card-title {
    color: var(--build-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Building Section Grid CSS End */

/* ✅ Building Section Chemical Grid CSS Start */
.chem__services {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    --chem-body-color: rgb(50, 62, 80);
    --chem-body-bg: #fff;
    --chem-theme-color: rgb(13, 110, 253);
    --chem-card-bg: #ffffff;
    --chem-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--chem-body-bg);
    margin-bottom: 20px;
}

.chem__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--chem-body-color);
}

@media (min-width: 768px) {
    .chem__services-heading {
        font-size: 72px;
        margin-top: 50px;
    }
}

.chem__services-sub-heading,
.chem__services-card-sub-title,
.chem__services-extra-text {
    font-size: 16px;
    color: var(--chem-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.chem__services-separator {
    padding: 0px 0;
}

.chem__services-card {
    transition: 0.4s;
    background-color: var(--chem-card-bg);
}

.chem__services-card:hover {
    box-shadow: var(--chem-card-box-shadow);
    transform: translateY(-5px);
}

.chem__services-card-icon {
    font-size: 40px;
    color: var(--chem-body-color);
}

.chem__services-card-title {
    color: var(--chem-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Building Section Chemical Grid CSS End */

/* ✅ Rental Grid CSS End */

.rent__services {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    --rent-body-color: rgb(50, 62, 80);
    --rent-body-bg: #fff;
    --rent-theme-color: rgb(13, 110, 253);
    --rent-card-bg: #ffffff;
    --rent-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--rent-body-bg);
    margin-bottom: 20px;
}

.rent__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--rent-body-color);
}

@media (min-width: 768px) {
    .rent__services-heading {
        font-size: 72px;
        margin-top: 50px;
    }
}

.rent__services-sub-heading,
.rent__services-card-sub-title,
.rent__services-extra-text {
    font-size: 16px;
    color: var(--rent-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.rent__services-separator {
    padding: 0px 0;
}

.rent__services-card {
    transition: 0.4s;
    background-color: var(--rent-card-bg);
}

.rent__services-card:hover {
    box-shadow: var(--rent-card-box-shadow);
    transform: translateY(-5px);
}

.rent__services-card-icon {
    font-size: 40px;
    color: var(--rent-body-color);
}

.rent__services-card-title {
    color: var(--rent-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Rental Grid CSS End */


/* ✅ Building Whstapp button CSS Start */
.whchat-section {
    background-color: #fff;
}

.whchat-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.whchat-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whchat-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.whchat-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .whchat-heading {
        font-size: 48px;
    }

    .whchat-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Building Whatsapp Button CSS End */

/* ✅ Building Extra Paragraph CSS Start */
.build__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: rgb(50, 62, 80);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .build__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ Building Extra Paragraph End */


/* ------------------------------------✅ Building Supplies Page CSS End------------------------------ */


/* ------------------------------------✅ Vehicle Import Page CSS Start------------------------------ */


/* ✅ Vehcile Hero Section CSS Start */
.hero__vehicle {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    opacity: 0;
    animation: fadeIn__vehicle 1.2s ease-in-out forwards;
}

@keyframes fadeIn__vehicle {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-bg__vehicle {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
}

.gradient__overlay-vehicle {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.hero__vehicle h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero__vehicle p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.side-img__vehicle {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .hero__vehicle {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .hero__vehicle h1 {
        font-size: 2.2rem;
    }

    .hero__vehicle p {
        font-size: 1rem;
    }

    .hero__vehicle .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .side-img__vehicle {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .hero__vehicle h1 {
        font-size: 48px;
    }

    .hero__vehicle p {
        font-size: 16px;
    }

    .side-img__vehicle {
        max-height: 150px;
    }
}

/* ✅ Vehicle Hero Section CSS End */


/* ✅ Vehcile Grid Section CSS Start */
.vehicle__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --vehicle-body-color: rgb(50, 62, 80);
    --vehicle-body-bg: #fff;
    --vehicle-theme-color: rgb(13, 110, 253);
    --vehicle-card-bg: #ffffff;
    --vehicle-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--vehicle-body-bg);
    margin-bottom: 30px;
}

.vehicle__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--vehicle-body-color);
}

@media (min-width: 768px) {
    .vehicle__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.vehicle__services-sub-heading,
.vehicle__services-card-sub-title,
.vehicle__services-extra-text {
    font-size: 16px;
    color: var(--vehicle-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.vehicle__services-separator {
    padding: 0px 0;
}

.vehicle__services-card {
    transition: 0.4s;
    background-color: var(--vehicle-card-bg);
}

.vehicle__services-card:hover {
    box-shadow: var(--vehicle-card-box-shadow);
    transform: translateY(-5px);
}

.vehicle__services-card-icon {
    height: 40px;
    color: var(--vehicle-body-color);
}

.vehicle__services-card-title {
    color: var(--vehicle-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Vehicle Grid Section CSS End */


/* ✅ Vehcile Extra Paragraph CSS Start */
.vehicle__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: rgb(50, 62, 80);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .vehicle__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ Vehicle Extra Paragraph CSS End */


/* ✅ Vehcile Whatsapp CTA CSS Start */
.vehicle-whatsapp-section {
    background-color: #fff;
}

.vehicle-whatsapp-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.vehicle-whatsapp-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vehicle-whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.vehicle-whatsapp-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .vehicle-whatsapp-heading {
        font-size: 48px;
    }

    .vehicle-whatsapp-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Vehicle Whatsapp CTA CSS End */


/* ------------------------------------✅ Vehicle Import Page CSS End------------------------------ */


/* ------------------------------------✅ Wholesale Vegetable Page CSS Start------------------------------ */

/* ✅ Vegetable Hero CSS Start */
.fruit-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    opacity: 0;
    animation: fruitFadeIn 1.2s ease-in-out forwards;
}

@keyframes fruitFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fruit-hero-bg-img {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
}

.fruit-gradient-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.fruit-hero-section h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.fruit-hero-section p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.fruit-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .fruit-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .fruit-hero-section h1 {
        font-size: 2.2rem;
    }

    .fruit-hero-section p {
        font-size: 1rem;
    }

    .fruit-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .fruit-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .fruit-hero-section h1 {
        font-size: 48px;
    }

    .fruit-hero-section p {
        font-size: 16px;
    }

    .fruit-side-img {
        max-height: 150px;
    }
}

/* ✅ Vegetable Hero CSS End */

/* ✅ Vegetable Grid CSS Start */
.produce__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --produce-body-color: rgb(50, 62, 80);
    --produce-body-bg: #fff;
    --produce-theme-color: rgb(13, 110, 253);
    --produce-card-bg: #ffffff;
    --produce-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--produce-body-bg);
    margin-bottom: 30px;
}

.produce__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--produce-body-color);
}

@media (min-width: 768px) {
    .produce__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.produce__services-sub-heading,
.produce__services-card-sub-title,
.produce__services-extra-text {
    font-size: 16px;
    color: var(--produce-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.produce__services-separator {
    padding: 0px 0;
}

.produce__services-card {
    transition: 0.4s;
    background-color: var(--produce-card-bg);
}

.produce__services-card:hover {
    box-shadow: var(--produce-card-box-shadow);
    transform: translateY(-5px);
}

.produce__services-card-icon {
    font-size: 40px;
    color: var(--produce-body-color);
}

.produce__services-card-title {
    color: var(--produce-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Vegetable Grid CSS End */

/* ✅ Vegetable Whatsapp CTA CSS Start */
.fruits-whatsapp-section {
    background-color: #fff;
}

.fruits-whatsapp-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.fruits-whatsapp-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fruits-whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.fruits-whatsapp-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .fruits-whatsapp-heading {
        font-size: 48px;
    }

    .fruits-whatsapp-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Vegetable Whatsapp CTA CSS End */

/* ✅ Vegetable Additional Paragraph CSS Start */
.fruits__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: rgb(50, 62, 80);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .fruits__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ Vegetable Additional Paragraph CSS End */


/* ------------------------------------✅ Wholesale Vegetable Page CSS End------------------------------ */


/* ------------------------------------✅ FMCG Page CSS Start------------------------------ */


/* ✅ FMCG Products Hero CSS Start */
.fmcg-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    opacity: 0;
    animation: fmcgFadeIn 1.2s ease-in-out forwards;
}

@keyframes fmcgFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fmcg-hero-bg-img {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
}

.fmcg-gradient-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.fmcg-hero-section h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.fmcg-hero-section p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.fmcg-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

@media (max-width: 992px) {
    .fmcg-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .fmcg-hero-section h1 {
        font-size: 2.2rem;
    }

    .fmcg-hero-section p {
        font-size: 1rem;
    }

    .fmcg-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .fmcg-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .fmcg-hero-section h1 {
        font-size: 48px;
    }

    .fmcg-hero-section p {
        font-size: 16px;
    }

    .fmcg-side-img {
        max-height: 150px;
    }
}

/* ✅ FMCG Products Hero CSS End */

/* ✅ FMCG Products Grid CSS Start */
.fmcg__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --fmcg-body-color: rgb(50, 62, 80);
    --fmcg-body-bg: #fff;
    --fmcg-theme-color: rgb(13, 110, 253);
    --fmcg-card-bg: #ffffff;
    --fmcg-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--fmcg-body-bg);
    margin-bottom: 30px;
}

.fmcg__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fmcg-body-color);
}

@media (min-width: 768px) {
    .fmcg__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.fmcg__services-sub-heading,
.fmcg__services-card-sub-title,
.fmcg__services-extra-text {
    font-size: 16px;
    color: var(--fmcg-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.fmcg__services-separator {
    padding: 0px 0;
}

.fmcg__services-card {
    transition: 0.4s;
    background-color: var(--fmcg-card-bg);
}

.fmcg__services-card:hover {
    box-shadow: var(--fmcg-card-box-shadow);
    transform: translateY(-5px);
}

.fmcg__services-card-icon {
    font-size: 40px;
    color: var(--fmcg-body-color);
}

.fmcg__services-card-title {
    color: var(--fmcg-body-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ FMCG Products Grid CSS End */

/* ✅ FMCG Products 4 Points CSS Start */
.fmcg__points-section {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    border: 1px solid #304656;
    border-radius: 50px;
    height: 40vh;
    margin: 20px 20px;
    display: flex;
    align-items: center;
}

.fmcg__points-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fmcg__point-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.fmcg__point-item img {
    flex-shrink: 0;
}

.fmcg__point-text {
    font-size: 16px;
    color: #304656;
    opacity: 0.9;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 576px) {
    .fmcg__point-text {
        font-size: 15px;
    }

    .fmcg__point-item {
        justify-content: flex-start;
    }

    .fmcg__points-section {
        height: auto;
        border-radius: 30px;
        padding: 40px 15px;
    }
}

/* ✅ FMCG Products 4 Points CSS End */

/* ✅ FMCG Products Whatsapp CTA CSS Start */
.fmcg-whatsapp-section {
    background-color: #fff;
}

.fmcg-whatsapp-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.fmcg-whatsapp-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fmcg-whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.fmcg-whatsapp-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .fmcg-whatsapp-heading {
        font-size: 48px;
    }

    .fmcg-whatsapp-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ FMCG Products Whatsapp CTA CSS End */

/* ✅ FMCG Products Additional Paragraph CSS Start */
.fmcg__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: rgb(50, 62, 80);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .fmcg__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ FMCG Products Additional Paragraph CSS End */

/* ------------------------------------✅ FMCG Page CSS End------------------------------ */

/* ------------------------------------✅ Personal Cargo Page CSS Start------------------------------ */

/* ✅ Personal Cargo Hero CSS Start */
.personal-cargo-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    opacity: 0;
    animation: personalCargoFadeIn 1.2s ease-in-out forwards;
}

@keyframes personalCargoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.personal-cargo-hero-bg-img {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
}

.personal-cargo-gradient-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.personal-cargo-hero-section h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.personal-cargo-hero-section p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.personal-cargo-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

@media (max-width: 992px) {
    .personal-cargo-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .personal-cargo-hero-section h1 {
        font-size: 2.2rem;
    }

    .personal-cargo-hero-section p {
        font-size: 1rem;
    }

    .personal-cargo-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .personal-cargo-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .personal-cargo-hero-section h1 {
        font-size: 48px;
    }

    .personal-cargo-hero-section p {
        font-size: 16px;
    }

    .personal-cargo-side-img {
        max-height: 150px;
    }
}

/* ✅ Personal Cargo Hero CSS End */

/* ✅ Personal Cargo Grid CSS Start */
.personal__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --personal-body-color: #324050;
    --personal-body-bg: #fff;
    --personal-card-bg: #ffffff;
    --personal-card-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--personal-body-bg);
    margin-bottom: 30px;
}

.personal__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--personal-body-color);
}

@media (min-width: 768px) {
    .personal__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.personal__services-sub-heading,
.personal__services-card-sub-title {
    font-size: 16px;
    color: var(--personal-body-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.personal__services-separator {
    padding: 0px 0;
}

.personal__services-card {
    transition: 0.4s;
    background-color: var(--personal-card-bg);
}

.personal__services-card:hover {
    box-shadow: var(--personal-card-box-shadow);
    transform: translateY(-5px);
}

.personal__services-card-icon {
    font-size: 40px;
    color: var(--personal-body-color);
}

.personal__services-card-title {
    color: var(--personal-body-color);
    font-size: 28px;
    font-weight: 600;
}

/* ✅ Personal Cargo Grid CSS End */


/* ✅ Personal Cargo How It Works CSS Start */
/* ✅ Personal Cargo How It Works CSS End */

/* ✅ Personal Cargo Online Order CSS Start */
.personal-cargo-timeline-wrapper {
    padding: 60px 15px;
    background-color: transparent;
    font-family: 'Inter', sans-serif;

}

.personal-cargo-timeline-wrapper h5,
.personal-cargo-timeline-wrapper p {
    color: #304656;
}


.personal-cargo-timeline-heading {
    color: #304656;
}

.personal-cargo-timeline-heading .timeline-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
}

.personal-cargo-timeline-heading .timeline-description {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.85;
}

@media (max-width: 576px) {
    .personal-cargo-timeline-heading .timeline-title {
        font-size: 48px;
    }

    .personal-cargo-timeline-heading .timeline-description {
        font-size: 16px;
    }
}

.personal-cargo-timeline-container {
    max-width: 1140px;
    margin: 0 auto;
}

.circle {
    padding: 13px 20px;
    border-radius: 50%;
    background-color: #304656;
    color: #fff;
    max-height: 50px;
    z-index: 2;
}

.personal-cargo-step .col-2 {
    align-self: stretch;
    position: relative;
}

.personal-cargo-step .col-2::after {
    content: "";
    position: absolute;
    border-left: 3px solid #304656;
    z-index: 1;
}

.personal-cargo-step .col-2.bottom::after {
    height: 50%;
    left: 50%;
    top: 50%;
}

.personal-cargo-step .col-2.full::after {
    height: 100%;
    left: calc(50% - 3px);
    top: 0;
}

.personal-cargo-step .col-2.top::after {
    height: 50%;
    left: 50%;
    top: 0;
}

.timeline-line div {
    padding: 0;
    height: 40px;
}

.timeline-line hr {
    all: unset;
    display: block;
    height: 0;
    border: 0;
    border-top: 3px solid #304656;
    margin: 0;
    position: relative;
    top: 17px;
}

.timeline-line .col-2 {
    display: flex;
    overflow: hidden;
    position: relative;
}

.timeline-line .corner {
    border: 3px solid #304656;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.timeline-line .top-right {
    left: 50%;
    top: -50%;
}

.timeline-line .left-bottom {
    left: -50%;
    top: calc(50% - 3px);
}

.timeline-line .top-left {
    left: -50%;
    top: -50%;
}

.timeline-line .right-bottom {
    left: 50%;
    top: calc(50% - 3px);
}

/* ✅ Personal Cargo Online Order CSS End */

/* ✅ Personal Cargo Important Notice CSS Start */
.cargo-disclaimer-box {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    border: 1px solid #ba3127;
    border-radius: 50px;
    padding: 40px 20px;
    margin: 20px;
    display: flex;
    align-items: center;
    min-height: 10vh;
}

.cargo-disclaimer-point {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.cargo-disclaimer-text {
    font-size: 16px;
    color: #ba3127;
    opacity: 0.9;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 576px) {
    .cargo-disclaimer-box {
        border-radius: 30px;
        padding: 30px 15px;
        min-height: auto;
    }

    .cargo-disclaimer-point {
        flex-direction: row;
        align-items: flex-start;
    }

    .cargo-disclaimer-text {
        font-size: 15px;
    }
}

/* ✅ Personal Cargo Important Notice CSS End */



/* ✅ Personal Cargo Whatsapp CTA CSS Start */
.personal-cargo-whatsapp-section {
    background-color: #fff;
}

.personal-cargo-whatsapp-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.personal-cargo-whatsapp-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.personal-cargo-whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.personal-cargo-whatsapp-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .personal-cargo-whatsapp-heading {
        font-size: 48px;
    }

    .personal-cargo-whatsapp-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Personal Cargo Whatsapp CTA CSS End */

/* ✅ Personal Cargo Extra Paragraph CSS Start */
.personal-cargo__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: #304656;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .personal-cargo__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ Personal Cargo Extra Paragraph CSS End */



/* ------------------------------------✅ Personal Cargo Page CSS End------------------------------ */


/* ------------------------------------✅ About Us Page CSS Start------------------------------ */

/* ✅ About Page Hero CSS Start */
.ezy__about14 {
    font-family: 'Inter', sans-serif;
    color: #304656;
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    border-radius: 50px;
    margin: 20px 20px;
}

.ezy__about14-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.ezy__about14-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: -1;
    opacity: 0.75;
}

.ezy__about14-heading {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .ezy__about14-heading {
        font-size: 72px;
        line-height: 82px;
    }
}

.ezy__about14-sub-heading {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
}

.ezy__about14-head {
    border: 10px solid #304656;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.ezy__about14-btn {
    border-radius: 25px !important;
    background-color: #ffffff;
    color: #263b4a;
    padding: 10px 25px;
    transition: 0.3s ease;
    border: 1px solid #263b4a;
}

.ezy__about14-btn:hover {
    background-color: #263b4a;
    color: #fff;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.page-loaded .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.page-loaded .delay-1 {
    transition-delay: 0.1s;
}

.page-loaded .delay-2 {
    transition-delay: 0.2s;
}

/* ✅ About Page Hero CSS End */

/* ✅ About Mission Section CSS Start */
.ezy__featured5 {
    --bs-body-color: #304656;
    --bs-body-bg: #ffffff;
    --ezy-theme-color: #304656;
    --ezy-theme-color-rgb: 48, 70, 86;
    --ezy-item-bg: #f6f6f6;
    --ezy-item-icon-bg: #ffffff;

    background-color: var(--bs-body-bg);
    overflow: hidden;
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .ezy__featured5 {
        padding: 50px 0;
    }
}

.ezy__featured5-heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--bs-body-color);
}

@media (min-width: 768px) {
    .ezy__featured5-heading {
        font-size: 72px;
    }
}

.ezy__featured5-sub-heading {
    font-size: 18px;
    color: var(--bs-body-color);
    line-height: 1.6;
    opacity: 0.8;
}

.ezy__featured5-title {
    font-size: 18px;
    color: var(--bs-body-color);
}

.ezy__featured5-content {
    font-size: 16px;
    color: var(--bs-body-color);
    opacity: 0.7;
    line-height: 1.6;
}

.ezy__featured5-item {
    background-color: var(--ezy-item-bg);
    border-radius: 20px;
}

[class*="ezy__featured5-shape-"]::before {
    content: "";
    background-color: var(--ezy-theme-color);
    border-radius: 20px;
    position: absolute;
    top: -25px;
    bottom: -25px;
    width: 33%;
    z-index: -1;
}

.ezy__featured5-shape-start::before {
    left: -25px;
}

.ezy__featured5-shape-end::before {
    right: -25px;
}

.ezy__featured5-icon {
    width: 74px;
    height: 74px;
    background-color: var(--ezy-item-icon-bg);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 34px 0 rgba(163, 190, 241, 0.12);
}

/* Animation */
.ezy-animate-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.ezy-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.ezy-animate-up.delay-1 {
    transition-delay: 0.2s;
}

.ezy-animate-up.delay-2 {
    transition-delay: 0.4s;
}

/* ✅ About Mission Section CSS End */

/* ✅ About Page Team Section CSS Start */
.ezy__team1 {
    --bs-body-color: #304656;
    --bs-body-bg: #ffffff;
    --ezy-theme-color: #304656;
    --ezy-theme-color-rgb: 48, 70, 86;
    --ezy-item-bg: #ffffff;
    --ezy-item-shadow: 0px 4px 44px rgba(159, 190, 218, 0.17);
    background: var(--bs-body-bg);
    overflow: hidden;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .ezy__team1 {
        padding: 50px 0px;
        margin-bottom: 50px;
    }
}

.ezy__team1-heading {
    font-weight: 700;
    font-size: 48px;
    color: var(--bs-body-color);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .ezy__team1-heading {
        font-size: 72px;
    }
}

.ezy__team1-sub-heading {
    font-size: 16px;
    line-height: 1.6;
    color: var(--bs-body-color);
    opacity: 0.8;
}

.ezy__team1-item {
    background-color: var(--ezy-item-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ezy-item-shadow);
    transition: transform 0.25s ease-in-out;
}

.ezy__team1-item:hover {
    transform: translateY(-5px);
}

.ezy__team1-item img {
    border-radius: 20px;
}

.ezy__team1-content * {
    color: var(--bs-body-color);
}

.ezy__team1-name {
    font-size: 18px;
    font-weight: 600;
}

.ezy__team1-role {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.ezy__team1-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
}

.ezy__team1-btn {
    padding: 8px 24px;
    min-width: 120px;
    border-color: var(--ezy-theme-color);
    border-radius: 20px;
    text-decoration: none;
}

.ezy__team1-btn:hover {
    color: #fff;
    background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
    border-color: rgba(var(--ezy-theme-color-rgb), 0.9);
}

/* Unique Fade-in Animation Classes */
.fade-in-team {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-team.show-team {
    opacity: 1;
    transform: translateY(0);
}

.delay-team-1 {
    transition-delay: 0.1s;
}

.delay-team-2 {
    transition-delay: 0.2s;
}

.delay-team-3 {
    transition-delay: 0.3s;
}

.delay-team-4 {
    transition-delay: 0.4s;
}

/* ✅ About Page Team Section CSS End */

/* ✅ About Page Map Heading and Description CSS Start */
.bhx__map-heading__section {
    --bhx-body-color: #304656;
    --bhx-body-bg: #ffffff;
    background: var(--bhx-body-bg);
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .bhx__map-heading__section {
        padding: 0px 0;
    }
}

.bhx__map-heading__title {
    font-weight: 700;
    font-size: 48px;
    color: var(--bhx-body-color);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .bhx__map-heading__title {
        font-size: 72px;
    }
}

.bhx__map-heading__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--bhx-body-color);
    opacity: 0.8;
}

.fade-in-map-heading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-map-heading.show-map-heading {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ About Page Map Heading and Description CSS End */



/* ✅ About Page Map CSS Start */
.bhx__map-wrapper {
    height: 90vh;
    margin: 0 20px;
    border-radius: 50px;
    overflow: hidden;
    background: #d3d3d3;
    position: relative;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 100px
}

.bhx__map-inner {
    width: 100%;
    height: 100%;
}

.bhx__map-marker {
    width: 12px;
    height: 12px;
    background-color: #304656;
    border-radius: 50%;
    box-shadow: 0 0 10px #304656;
    animation: bhx__map-blink 1s infinite;
}

@keyframes bhx__map-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px #304656;
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 5px #304656;
    }
}

.leaflet-tooltip.bhx__map-tooltip {
    background: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
}

/* ✅ About Page Map CSS End */




/* ------------------------------------✅ About Us Page CSS End------------------------------ */


/* ------------------------------------✅ Contact Us Page CSS Start------------------------------ */

/* ✅ Contact Us Page Hero CSS Start */
.bhx__contact-map__section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    background-color: #fff;
    color: #304656;
}

.bhx__contact-map__overlay {
    background-color: rgba(255, 255, 255, 0.85);
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: 1;
    opacity: 80%;
}


.bhx__contact-map__bg {
    object-fit: cover;
    z-index: 0;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;

}

.bhx__contact-map__heading {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #304656;
}

.bhx__contact-map__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #304656;
    opacity: 0.95;
}

.bhx__contact-map__image {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Animations */
.bhx__fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: bhx__fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.bhx__slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: bhx__slideInRight 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes bhx__fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bhx__slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .bhx__contact-map__section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .bhx__contact-map__heading {
        font-size: 2.2rem;
    }

    .bhx__contact-map__desc {
        font-size: 1rem;
    }

    .bhx__contact-map__image {
        max-height: 180px;
        margin-top: 30px;
    }

    .text-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .bhx__contact-map__heading {
        font-size: 48px;
    }

    .bhx__contact-map__desc {
        font-size: 16px;
    }

    .bhx__contact-map__image {
        max-height: 150px;
    }
}

/* ✅ Contact Us Page Hero CSS End */

/* ✅ Contact Us Page Get in Touch CSS Start */
.bh__contactinfo-section {
    --bs-body-color: #304656;
    --bs-body-bg: #ffffff;
    --item-bg: #ffffff;
    --item-shadow: 0 4px 140px rgba(231, 231, 234, 0.66);
    --icon-bg: #ffffff;
    --icon-shadow: 0 4px 34px rgba(163, 190, 241, 0.12);
    background-color: var(--bs-body-bg);
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .bh__contactinfo-section {
        padding: 50px 0;
    }
}

.bh__contactinfo-heading {
    font-weight: bold;
    font-size: 48px;
    line-height: 1.2;
    color: var(--bs-body-color);
}

@media (min-width: 992px) {
    .bh__contactinfo-heading {
        font-size: 72px;
    }
}

.bh__contactinfo-subheading {
    font-size: 16px;
    line-height: 25px;
    color: var(--bs-body-color);
    opacity: 0.7;
}

.bh__contactinfo-icon {
    background-color: var(--icon-bg);
    box-shadow: var(--icon-shadow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bh__contactinfo-title {
    color: var(--bs-body-color);
}

.bh__contactinfo-content {
    color: var(--bs-body-color);
    opacity: 0.8;
}

.bh__contactinfo-item {
    background-color: var(--item-bg);
    transition: box-shadow 0.3s ease-in-out;
}

.bh__contactinfo-item:hover,
.bh__contactinfo-item.active {
    box-shadow: var(--item-shadow);
    z-index: 1;
}

/* Scroll Animation */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ Contact Us Page Get in Touch CSS End */

/* ✅ Contact Us Page Form Submission CSS Start */
.bh__contactform-section-wrapper {
    padding: 30px;
}

.bh__contactform-section {
    font-family: 'Inter', sans-serif;
    --bh-theme-color: #304656;

    position: relative;
    background-color: #000;
    padding: 60px 15px;
    border-radius: 50px;
    overflow: hidden;
    min-height: 90vh;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bh__contactform-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .bh__contactform-section {
        padding: 100px 40px;
    }
}

.bh__contactform-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bh__contactform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, #304656f9, rgba(0, 0, 0, 0.5));
}

.bh__contactform-section .container {
    position: relative;
    z-index: 3;
}

.bh__contactform-heading {
    font-weight: 700;
    font-size: 42px;
    color: #fff;
}

@media (min-width: 768px) {
    .bh__contactform-heading {
        font-size: 72px;
    }
}

.bh__contactform-subheading {
    font-size: 16px;
    line-height: 28px;
    color: #f1f1f1;
    opacity: 0.9;
}

.bh__contactform-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.form-control {
    min-height: 50px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bh-theme-color);
}

.bh__contactform-submit-btn {
    background-color: var(--bh-theme-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}

.bh__contactform-submit-btn:hover {
    background-color: #bebebe;
}

/* ✅ Contact Us Page Form Submission CSS End */

/* ✅ Contact Us Page Testimonials CSS Start */
.bh__testimonial-section {
    background: #fff;
    padding: 50px 0;
    --bh-grey: #304656;
}

@media (min-width: 768px) {
    .bh__testimonial-section {
        padding: 100px 0;
    }
}

.bh__testimonial-heading {
    font-weight: bold;
    color: var(--bh-grey);
    font-size: 48px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .bh__testimonial-heading {
        font-size: 72px;
    }
}

.bh__testimonial-subheading {
    font-size: 16px;
    color: var(--bh-grey);
    opacity: 0.7;
}

.bh__testimonial-item {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 44px rgba(159, 190, 218, 0.15);
    transition: transform 0.25s ease-in-out;
}

.bh__testimonial-item:hover {
    transform: translateY(-5px);
}

.bh__testimonial-content * {
    color: var(--bh-grey);
}

.bh__testimonial-rating [class*="fa-"] {
    color: rgba(255, 215, 0, 0.2);
}

.bh__testimonial-rating .active {
    color: #FFD700;
}

/* Animation */
.bh__testimonial-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.bh__testimonial-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ Contact Us Page Testimonials CSS End */

/* ✅ Contact Us Page Map CSS Start */
.contact-map-embed {
    height: 60vh;
    border-radius: 50px;
    overflow: hidden;
    margin: 50px 20px 60px 20px;
    /* top, right, bottom, left */

}

/* ✅ Contact Us Page Map CSS End */


/* ------------------------------------✅ Contact Us Page CSS End------------------------------ */



/* ------------------------------------✅ Perishable Items Page CSS Start------------------------------ */

/* ✅ Perishable Items Page Hero CSS Start */
.perishable-hero-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 20px 20px;
    border-radius: 50px;
    height: 80vh;
    padding: 60px 0;
    color: white;
    animation: perishableFadeIn 1.2s ease-in-out forwards;
    opacity: 0;
}

@keyframes perishableFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.perishable-hero-bg {
    inset: 0;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
}

.perishable-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.perishable-hero-overlay {
    background: linear-gradient(to bottom, #304656, rgba(0, 0, 0, 0.8));
    border-radius: 50px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.perishable-hero-title {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.perishable-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.perishable-hero-side-img {
    max-height: 250px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .perishable-hero-section {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .perishable-hero-title {
        font-size: 2.2rem;
    }

    .perishable-hero-desc {
        font-size: 1rem;
    }

    .perishable-hero-section .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .perishable-hero-side-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .perishable-hero-title {
        font-size: 48px;
    }

    .perishable-hero-desc {
        font-size: 16px;
    }

    .perishable-hero-side-img {
        max-height: 150px;
    }
}

/* ✅ Perishable Items Page Hero CSS End */

/* ✅ Perishable Items Page Grid CSS Start */
.perishable__services {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    --perishable-color: rgb(50, 62, 80);
    --perishable-bg: #fff;
    --perishable-theme: rgb(13, 110, 253);
    --perishable-card-bg: #ffffff;
    --perishable-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--perishable-bg);
    margin-bottom: 30px;
}

.perishable__services-heading {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--perishable-color);
}

@media (min-width: 768px) {
    .perishable__services-heading {
        font-size: 72px;
        margin-top: 100px;
    }
}

.perishable__services-sub-heading,
.perishable__services-card-sub-title,
.perishable__services-extra-text {
    font-size: 16px;
    color: var(--perishable-color);
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 30px;
}

.perishable__services-separator {
    padding: 0;
}

.perishable__services-card {
    transition: 0.4s ease;
    background-color: var(--perishable-card-bg);
}

.perishable__services-card:hover {
    box-shadow: var(--perishable-shadow);
    transform: translateY(-5px);
}

.perishable__services-card-icon {
    height: 40px;
    width: auto;
    color: var(--perishable-color);
}

.perishable__services-card-title {
    color: var(--perishable-color);
    font-size: 32px;
    font-weight: 600;
}

/* ✅ Perishable Items Page Grid CSS End */

/* ✅ Perishable Items Page Whatsapp CTA CSS Start */
.perishable-whatsapp-cta-section {
    background-color: #fff;
}

.perishable-whatsapp-cta-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #304656;
}

.perishable-whatsapp-cta-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #25D366;
    background-color: #ffffff;
    border: 1px solid #25D366;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.perishable-whatsapp-cta-btn:hover {
    background-color: #25D366;
    color: #ffffff;
}

.perishable-whatsapp-cta-btn i {
    font-size: 20px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .perishable-whatsapp-cta-heading {
        font-size: 48px;
    }

    .perishable-whatsapp-cta-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ✅ Perishable Items Page Whatsapp CTA CSS End */

/* ✅ Perishable Items Page Additional Paragraph CSS Start */
.perishable-extra__paragraph-text {
    margin-top: 0px;
    font-size: 16px;
    color: #304656;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .perishable-extra__paragraph-text {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* ✅ Perishable Items Page Additional Paragraph CSS End */

/* ------------------------------------✅ Perishable Items Page CSS End------------------------------ */