#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(to right, #eafbe1, #d0f2ba);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.letters {
    display: flex;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #5B8E2E;
    letter-spacing: 2px;
    pointer-events: none;
}

.letters span {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.7s ease forwards;
}

.letters span:nth-child(1) {
    animation-delay: 0s;
}

.letters span:nth-child(2) {
    animation-delay: 0.1s;
}

.letters span:nth-child(3) {
    animation-delay: 0.2s;
}

.letters span:nth-child(4) {
    animation-delay: 0.3s;
}

.letters span:nth-child(5) {
    animation-delay: 0.4s;
}

.letters span:nth-child(6) {
    animation-delay: 0.5s;
}

.letters span:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.track-bar {
    width: 180px;
    height: 4px;
    background: #5B8E2E;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.track-bar::after {
    content: "";
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: #a4c639;
    animation: moveBar 1.5s infinite;
}

@keyframes moveBar {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* WebKit Scrollbar Styles */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3e5c2a, #2b4a1c);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5b8e2e, #34501b);
}


/* Base */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #222222;
}

/* Header wrapper */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    z-index: 100;
    position: relative;
}

.header .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eafbe1, #d0f2ba);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.header .animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 130%;
    background: linear-gradient(135deg, #5B8E2E, #A7D08C);
    clip-path: polygon(0 0, 0% 0, 70% -5%, 75% 65%,
            100% 100%, 0% 100%, -5% 180%, 50% 0%);
    opacity: 0.2;
    transform: scale(1.2);
    filter: blur(20px);
}

/* Logo */
.header .main-logo {
    width: 140px;
    height: auto;
}

.header .glow-logo span {
    font-weight: 700;
    font-size: 1.4rem;
    color: #76B947;
}

.header .navbar-brand {
    margin-left: 60px;
}

/* Nav Links */
.header .custom-link {
    color: #222222;
    font-weight: 500;
    margin: 0 16px;
    position: relative;
    transition: color 0.3s ease;
}

.header .custom-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #A4C639;
    transition: width 0.3s ease;
    border: 0;
}

.header .custom-link:hover {
    color: #5B8E2E;
}

.header .custom-link:hover::after {
    width: 100%;
}

/* Toggler */
.header .custom-toggler {
    border: none;
}

.header .custom-toggler:focus {
    box-shadow: none;
}

/* Offcanvas for mobile */
.header .offcanvas {
    background-color: #f6fdf4 !important;
    height: 500px;
    width: 100% !important;
}

.header .offcanvas .offcanvas-title {
    color: #222222;
}

.header .offcanvas .nav-link {
    color: #444;
    font-weight: 500;
}

.header .offcanvas .nav-link:hover {
    color: #5B8E2E;
}

/* ✅ Marquee Bar */
.top-marquee-bar {
    background-color: #f4fbe2;
    color: #5B8E2E;
    padding: 6px 0;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #d0e8be;
    pointer-events: none;
}

/* ✅ Dropdown Styling */
.header .nav-item.dropdown:hover .custom-dropdown {
    display: block;
}

.header .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background: linear-gradient(135deg, #eafbe1, #d0f2ba);
    min-width: 180px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    border: 0;
    padding: 0;
    z-index: 99;
}

.header .custom-dropdown .dropdown-item {
    padding: 10px 20px;
    color: #222222;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header .custom-dropdown .dropdown-item:hover,
.header .custom-dropdown .dropdown-item.active {
    background-color: #f4fbe2;
    color: #5B8E2E;
}

/* ✅ Active Link */
.header .nav-link.active {
    color: #5B8E2E !important;
    font-weight: 600;
}

.header .nav-link.active::after {
    width: 100%;
}

/* Optional: Prevent dropdown from disappearing on small hover delay */
.header .nav-item.dropdown:hover>.custom-link {
    color: #5B8E2E;
}

/* Hide Bootstrap's default toggler icon */
.header .navbar-toggler .navbar-toggler-icon {
    display: none;
}

/* Hamburger Base */
.header .hamburger {
    display: inline-block;
    width: 28px;
    height: 22px;
    position: relative;
}

.header .hamburger span {
    background-color: #5B8E2E;
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Top bar */
.header .hamburger span:nth-child(1) {
    top: 0;
}

/* Middle bar */
.header .hamburger span:nth-child(2) {
    top: 9px;
}

/* Bottom bar */
.header .hamburger span:nth-child(3) {
    top: 18px;
}

/* Unique fixed-on-scroll effect */
.header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    animation: dropSlide 0.4s ease-in-out;
}

/* Logo scale effect */
.header.fixed-header .main-logo {
    transform: scale(0.85);
    transition: transform 0.8s ease;
}

/* Slide-in from top */
@keyframes dropSlide {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* Section wrapper */
.hero-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #ffffff;
}

/* Video background */
.video-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.7) contrast(1.1); */
}

/* Overlay with gradient + blend */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    /* backdrop-filter: blur(2px); */
    z-index: 1;
    pointer-events: none;
}

/* Content on top */
.video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: slideUp 1s ease-in-out;
    pointer-events: none;
}

/* Slogan */
.hero-slogan {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #b4ec51, #429321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Paragraph */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f3f3f3;
}

/* Text entry animation */
@keyframes slideUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* About Company Section Base */
.about-company-section {
    background-color: #ffffff;
    color: #333333;
    position: relative;
    overflow: hidden;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    position: relative;
}

/* Underline Effect for Title */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 4px;
    background-color: #5B8E2E;
    border-radius: 2px;
}

/* Section Text Styling */
.section-text {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Call-to-Action Button Styling */
.btn-cta {
    background: linear-gradient(to right, #5B8E2E, #A7D08C);
    border: none;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 142, 46, 0.3);
}

/* Responsive Image Styling */
.about-company-section img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Extra spacing on small devices */
@media (max-width: 768px) {
    .about-company-section .col-md-6 {
        margin-bottom: 30px;
    }

    .header .custom-dropdown {
        display: block;
        background: inherit;
    }
}

.our-services-section .swiper {
    min-height: 400px;
}

.our-services-section .our-services-section {
    padding: 90px 0;
    background: #f2f6f7;
}

.our-services-section .section-title h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.our-services-section .section-title::after {
    display: none;
}

.our-services-section .sec-title-p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.our-services-section .servicesSwiper {
    padding-bottom: 40px;
}

.our-services-section .service-card {
    height: 440px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.our-services-section .service-card:hover {
    transform: scale(1.02);
}

.our-services-section .service-card .overlay {
    background: linear-gradient(to top, rgba(20, 20, 20, 0.85), rgba(20, 20, 20, 0.5));
    color: #fff;
    padding: 30px 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.our-services-section .overlay .icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #a4e6cb;
}

.our-services-section .overlay h3 {
    margin: 0;
    font-size: 1.6rem;
}

.our-services-section .overlay .short-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.our-services-section .hover-content-glass {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 36, 15, 0.5);
    backdrop-filter: blur(14px);
    color: #fff;
    padding: 24px;
    height: 100%;
    transition: bottom 0.5s ease;
    z-index: 3;
}

.our-services-section .hover-content-glass h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.our-services-section .hover-content-glass p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.our-services-section .hover-content-glass ul {
    padding-left: 18px;
}

.our-services-section .hover-content-glass ul li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    list-style: square;
}

.our-services-section .service-card:hover .hover-content-glass {
    bottom: 0;
}

/* Wrapper */
.line-pagination-wrapper {
    margin-top: 40px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

/* Line-style pagination container */
.line-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    width: 100% !important;
    max-width: 500px;
    height: 20px;
    position: relative !important;
}



/* Each bullet becomes a line */
.line-pagination .swiper-pagination-bullet {
    width: 70px;
    height: 5px;
    background: #515151;
    border-radius: 3px;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

/* Active bullet line */
.line-pagination .swiper-pagination-bullet-active {
    background: #429321;
    opacity: 1;
    box-shadow: 0 0 8px #429321;
    transform: scaleX(1.2);
}

.shipment-process-section {
    background: #f9f9f9;
    position: relative;
    overflow-x: hidden;
}

.shipment-process-section .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #1c1c1c;
    margin-bottom: 40px;
}

.shipment-process-section .section-title::after {
    display: none;
}

.process-timeline-line {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.process-timeline-line::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
    z-index: 1;
}

.step-node {
    position: relative;
    text-align: center;
    flex: 1 1 180px;
    min-width: 180px;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-node .circle-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #429321;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #429321;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.step-node h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.step-node h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: #429321;
    transition: transform 0.4s ease;
    transform-origin: center;
}

.step-node p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    max-width: 220px;
    margin: 0 auto;
    pointer-events: none;
}

.step-node:hover .circle-icon {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.step-node:hover h5::after {
    transform: translateX(-50%) scaleX(1);
}

.step-node:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Dot */
.step-node::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #429321;
    border-radius: 50%;
    z-index: 3;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .process-timeline-line {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline-line::before {
        top: 9%;
        height: 78%;
        width: 4px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .step-node {
        flex: none;
        margin: 40px 0;
    }

    .step-node::before {
        top: 37%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.why-choose-us-section {
    background: #f3fdf6;
    padding: 50px 0 150px;
    position: relative;
}

.why-choose-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 100px;
    color: #2b452d;
}

.why-choose-us-section .section-title::after {
    display: none;
}

.hub-center {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
}

.hub-icon {
    width: 100px;
    height: 100px;
    background-color: #2b4a1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.spokes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
    left: -70px;
}

.spoke-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.spoke-item i {
    font-size: 28px;
    width: 70px;
    height: 70px;
    color: #4b734e;
    background-color: #e5fbe2;
    padding: 18px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.spoke-item p {
    margin-top: 12px;
    font-weight: 500;
    color: #2f4530;
    max-width: 120px;
}

.spoke-item:hover i {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #5b8e2e;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hub-center {
        width: 100%;
        height: 420px;
    }

    .spoke-item {
        transform: rotate(var(--angle)) translate(130px) rotate(calc(-1 * var(--angle)));
    }

    .spoke-item p {
        font-size: 14px;
        max-width: 100px;
    }

    .spokes {
        left: -55px;
    }

    .spoke-item i {
        font-size: 18px;
        width: 50px;
        height: 50px;
    }

    .hub-icon {
        width: 60px;
        height: 60px;
    }
}

.did-you-know-section-home {
    background: url('/assets/images/did-you-know-bg.png') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-attachment: fixed;
}

.did-you-know-section-home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.did-you-know-section-home .container {
    position: relative;
    z-index: 2;
}

.did-you-know-section-home .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #88c67f;
}
.did-you-know-section-home .section-title::after{
    display: none;
}
.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 280px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    color: #fff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.fact-front {
    transition: transform 0.6s ease;
    pointer-events: none;
}

.fact-hover {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    padding: 25px;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.fact-card:hover .fact-hover {
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

.fact-card:hover .fact-front {
    transform: translateY(-100%);
    opacity: 0;
}

.slogan-section {
    background: linear-gradient(130deg, #f1fdf6, #d2f5e1, #e5ffef, #f1fdf6);
    background-size: 400% 400%;
    animation: backgroundShift 12s linear infinite;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slogan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 142, 46, 0.2), rgba(164, 198, 57, 0.15));
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 90%);
    z-index: -1;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.slogan-content {
    max-width: 900px;
    margin: auto;
    position: relative;
    animation: floatSlogan 5s ease-in-out infinite;
}

@keyframes floatSlogan {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.slogan-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2b4a1c;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.slogan-text {
    font-size: 1.2rem;
    color: #3e5c2a;
    line-height: 1.7;
    margin-bottom: 35px;
}

.slogan-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #5B8E2E;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s infinite ease-in-out;
}

.slogan-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.slogan-btn:hover::before {
    left: 100%;
}

.slogan-btn:hover {
    background-color: #76B947;
    transform: scale(1.05);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(117, 191, 72, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(117, 191, 72, 0.6);
    }
}

.site-footer {
    background: #0e0e0e;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    filter: brightness(5);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-add {
    color: #aaa;
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5B8E2E;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-contact li i,
.footer-links li i {
    color: #5B8E2E;
    font-size: 1rem;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #999;
}

.map-modal-content {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 10px;
    border: none;
    overflow: hidden;
}

.map-modal-content .modal-title {
    font-size: 1.5rem;
    color: #fff;
}
 
.map-modal-content .slogan-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 0.5px;
}

.about-intro-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #fff;
    z-index: 1;
}

.about-intro-section .about-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('/assets/images/abt-us-bg.png') center/cover no-repeat;
    z-index: -2;
}

.about-intro-section .about-bg-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.about-intro-section .custom-shape-bg {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 1000px;
    height: 700px;
    background: linear-gradient(135deg, #276423, #192f0e);
    clip-path: polygon(36% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    opacity: 0.3;
    z-index: -1;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(5deg);
    }
}

.about-intro-section .content-layer {
    position: relative;
    z-index: 2;
}

.about-intro-section .section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

.about-intro-section .section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    color: #f0f0f0;
}

.about-intro-section .keywords-float ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.about-intro-section .keywords-float ul li {
    font-weight: 600;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    position: absolute;
    backdrop-filter: blur(4px);
    color: #fff;
    animation: floatKeyword 8s infinite ease-in-out;
    pointer-events: none;
}





.about-intro-section .keywords-float ul li:nth-child(1) {
    top: -160px;
    left: 20px;
    animation-delay: 0s;
}

.about-intro-section .keywords-float ul li:nth-child(2) {
    top: -80px;
    left: 180px;
    animation-delay: 1s;
}

.about-intro-section .keywords-float ul li:nth-child(3) {
    top: 0px;
    left: 10px;
    animation-delay: 2s;
}

.about-intro-section .keywords-float ul li:nth-child(4) {
    top: 80px;
    left: 180px;
    animation-delay: 3s;
}

.about-intro-section .keywords-float ul li:nth-child(5) {
    top: 160px;
    left: 40px;
    animation-delay: 4s;
}

@keyframes floatKeyword {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mission-vision-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background-color: #e8fbe9;
}

.mv-box {
    position: relative;
    padding: 30px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(10, 18, 41, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.mv-content {
    max-width: 600px;
    text-align: left;
    z-index: 2;
    transition: transform 0.6s ease;
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.mv-box h2 {
    font-size: 2.6rem;
    font-weight: bold;
    color: #a7d129;
    margin-bottom: 20px;
}

.mv-box p {
    font-size: 1rem;
    color: #f1f7ec;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Specific backgrounds */
.mission-box {
    background-image: url('/assets/images/mission.png');
}

.vision-box {
    background-image: url('/assets/images/vission.png');
}

/* Hover effect */
.mv-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: 2;
}

.mv-box:hover::before {
    left: 100%;
}

.mv-box:hover .mv-content {
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-clean {
        grid-template-columns: 1fr;
    }

    .mv-box {
        padding: 60px 30px;
        text-align: center;
    }

    .mv-content {
        padding: 20px;
    }

    .mv-box h2 {
        font-size: 2rem;
    }

    .mv-box p {
        font-size: 1rem;
    }
}

.did-you-know-section {
    background: linear-gradient(to right, #f4f9fb, #e7f3f6);
    padding: 80px 30px;
    color: #0a1a2f;
    text-align: center;
}

.did-you-know-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2b452d;
    font-weight: bold;
}

.did-you-know-section .section-title::after {
    display: none;
}

.fact-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.fact-tile {
    background-color: #ffffff;
    padding: 40px 20px;
    /* border-radius: 12px; */
    box-shadow: 0 5px 15px rgba(0, 184, 197, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

.fact-tile span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
    color: #00b8c5;
}

.fact-tile::before {
    content: attr(data-fact);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e0f7fa;
    color: #0a1a2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 20px;
    transition: all 0.6s ease;
    transform: skewX(-20deg);
    z-index: 2;
    /* border-radius: 12px; */
}

.fact-tile:hover::before {
    left: 0;
    transform: skewX(0deg);
}

.fact-tile:hover {
    transform: scale(1.03);
}

.beyond-logistics {
    position: relative;
    background: url('/assets/images/abt-us-beyond-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.beyond-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 41, 0.8);
    /* dark overlay */
    z-index: 1;
}

.beyond-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 60px;
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.ticker-wrapper {
    overflow: hidden;
    height: 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    border-right: 4px solid #A4C639;
    border-left: 4px solid #A4C639;
}

.ticker {
    display: flex;
    animation: tickerMove 12s linear infinite;
    gap: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #A4C639;
    white-space: nowrap;
}

.ticker span {
    padding-right: 60px;
}

@keyframes tickerMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.beyond-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.beyond-content h2 span {
    color: #276423;
}

.beyond-content p {
    font-size: 1.10rem;
    line-height: 1.8;
    color: #cbd5e0;
    max-width: 800px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
    .beyond-inner {
        padding: 60px 30px;
    }

    .beyond-content h2 {
        font-size: 2rem;
    }

    .ticker {
        font-size: 0.95rem;
    }
}

.contact-section {
    position: relative;
    padding: 50px 0;
    background: #f4f6f9;
    overflow: hidden;
}

.contact-clip-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #e3ecf5, #f8fbfd);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #276423;
    font-weight: bold;
}

.contact-info p {
    color: #5c6b80;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #394a5f;
}

.contact-details i {
    margin-right: 10px;
    color: #276423;
}

.contact-details li a {
    color: inherit;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.contact-details li a:hover {
    color: #276423;
    /* or any brand highlight */
    text-decoration: underline;
}


.contact-form {
    /* background: #fff; */
    padding: 40px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04); */
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #276423;
    font-size: 40px;
    font-weight: bold;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #cfd9e2;
    background: #f9fafb;
    font-size: 1rem;
    width: 100%;
    transition: border 0.3s ease;
    outline: none;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #276423;
}

.contact-form button {
    padding: 14px 20px;
    background: #276423;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #264617;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

.service-hero {
    display: flex;
    /* background: #f6f8fa; */
    min-height: 100vh;
    overflow: hidden;
    color: #0a2540;
    justify-content: center;
    align-items: center;
}

.service-image-side {
    flex: 1;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: grayscale(0.1) brightness(0.95);
}

.service-image-side img:hover {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1.1) contrast(1.1);
}

.service-text-side {
    flex: 1.2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-side h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #264617;
}

.service-text-side p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #333;
}

@media (max-width: 991px) {
    .service-hero {
        flex-direction: column;
    }

    .service-image-side {
        min-height: 300px;
    }

    .service-text-side {
        padding: 40px 20px;
    }

    .service-text-side h2 {
        font-size: 2.2rem;
    }

    .service-text-side p {
        font-size: 1.05rem;
    }
}

