/* ========== Preloader Section ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-wrapper {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid transparent;
    border-top: 5px solid #ffbf00;
    border-bottom: 5px solid #ffbf00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    margin: 0 auto 7px;
}

.spinner::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 4px solid transparent;
    border-top: 4px solid #e0a800;
    border-bottom: 4px solid #e0a800;
    border-radius: 50%;
    animation: spin-reverse 1.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

.preloader-text {
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* === Custom WebKit Scrollbar for the entire site === */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
    /* dark flat track */
    box-shadow: inset 0 0 5px #000;
    border: none;
}
  
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6600, #cc5200);
    border: none;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8533, #e65c00);
}

/* Firefox support */
html {
    scrollbar-color: #ff6600 #111;
    scrollbar-width: thin;
}

/* Top bar styling */
.top-bar {
    font-size: 14px;
    padding: 10px 20px;
    text-align: right;
    color: #333;
    font-weight: 500;

    .container {
        max-width: 1200px;
    }
}

.top-bar-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 50px;
}

.top-bar-contact p {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 15px;
}

/* Contact link styles */
.top-bar .contact-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    position: relative;
    padding-left: 5px;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
}

.top-bar .contact-link i {
    margin-right: 2px;
    color: #00a7e1;
    padding-left: 5px;
}

/* Unique gradient swipe + shimmer effect */
.top-bar .contact-link::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 167, 225, 0.2), rgba(255, 255, 255, 0.5), rgba(0, 167, 225, 0.2));
    transition: left 0.4s ease-in-out;
}

.top-bar .contact-link:hover::before {
    left: 100%;
}

.top-bar .contact-link:hover {
    color: #0056b3;
    background: linear-gradient(90deg, #007bff, #00a7e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar container */
.navbar-container {
    position: relative;
    z-index: 1000;

    .container {
        max-width: 1200px;
    }
}

.navbar-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #d79e00, #563f00);
    clip-path: polygon(40% -40%, 100% 0%, 100% 100%, 30% 100%);
    z-index: -1;
}

.navbar-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #d79e00, #563f00);
    clip-path: polygon(-50% 100%, 0% 0%, 15% 0%, 8% 100%);
    z-index: -1;
}

/* Navbar styling */
.navbar {
    transition: all 0.4s ease-in-out;
    transform-origin: top;
}

/* Fixed state with animation */
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
    animation: fadeSlideDrop 0.5s ease-out;

    .navbar-brand {
        margin-left: 50px;
    }

    .dropdown-menu {
        background: #fff;
    }
}

@keyframes fadeSlideDrop {
    0% {
        opacity: 0;
        transform: translateY(-30%) scale(0.98);
    }

    60% {
        opacity: 0.6;
        transform: translateY(10%) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Navbar logo */
.navbar-brand {
    margin-left: 100px;

    img {
        height: 60px;
    }
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    margin-right: 30px;
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #000;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown menu styles */
.dropdown-menu {
    background: linear-gradient(to right, #b28200, #5f4600);
    border-radius: 0px !important;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #333;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.dropdown-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 426px) {
    .top-bar-contact {
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 20%;
        left: 15%;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        background: transparent;
        border: none;
        padding-left: 20px;
    }

    .navbar-brand {
        margin-left: 10px;
    }

    .top-bar {
        .container {
            justify-content: center;
        }

        .top-bar-contact {
            margin-left: 0;
        }
    }
}

/* ---------------------------------------------------HERO SWIPER----------------------------------------------------------- */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;800&display=swap');

.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    font-family: 'Barlow', sans-serif;
}

.swiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
}



/* Backgrounds */
.sea-freight {
    background-image: url('/assets/images/slider-sea-bg.png');
}

.air-freight {
    background-image: url('/assets/images/slider-air-bg.png');
}

.multimodal {
    background-image: url('/assets/images/slider-multi-bg.png');
}

.custom-clearance {
    background-image: url('/assets/images/slider-cust-bg.png');
}

/* Glass Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(3px);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Content centered-left */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    transform: translateX(-5%);
    animation: fadeInLeft 1s ease-in-out both;
}

/* Animate content */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Headings */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Paragraph */
.hero-content p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Better Nav Buttons (minimalist icons) */
.custom-nav {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    color: #563f00 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px;
    font-weight: bolder;
    /* transition: all 0.3s ease; */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
}

.custom-nav:hover {
    color: #000 !important;
}

.swiper-button-prev.custom-nav {
    left: 30px;
}

.swiper-button-next.custom-nav {
    right: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 10px 20px;
    }
}

.about-section {
    padding: 100px 0;
    background: #f9f7f2;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #563f00;
    border-left: 6px solid #ffbf00;
    padding-left: 18px;
    line-height: 1.2;
}

.about-section .about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-section .about-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffbf00;
    color: #563f00;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-section .about-cta-btn:hover {
    background-color: #fff;
    color: #ffbf00;
    border: 2px solid #ffbf00;
}

.about-section .image-side {
    text-align: center;
}

.about-section .about-image {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-section {
    padding: 100px 0;
    background: #fffdf6;
}

/* Swiper styles */
.serviceSwiper {
    padding: 40px 0;
}

.swiper-slide {
    height: 100%;
}

/* Card Base */
.service-card {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
    text-decoration: none;
    position: relative !important;
    /* border-radius: 16px; */
    height: 450px !important;
    color: white;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card .bg-img {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.7s ease;
}

/* Zoom on hover */
.service-card:hover .bg-img {
    transform: scale(1.20) rotateZ(2deg);
}

/* Overlay */
.service-card .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Icon */
.service-icon {
    font-size: 36px;
    background: #fff;
    color: #563f00;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin-bottom: 20px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

/* Text Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #eee;
    line-height: 1.6;
}

/* Set backgrounds */
.sea .bg-img {
    background-image: url('/assets/images/service-sea.png');
}

.air .bg-img {
    background-image: url('/assets/images/service-air.png');
}

.multi .bg-img {
    background-image: url('/assets/images/service-multi.png');
}

.custom .bg-img {
    background-image: url('/assets/images/service-cust.png');
}

.why-choose-us-section {
    position: relative;
    background: url('/assets/images/why-us-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 50px 20px;
    overflow: hidden;
    z-index: 1;
}

.why-choose-us-section .why-choose-us-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Bright semi-transparent white overlay */
    z-index: 1;
    backdrop-filter: blur(3px);
}

.why-choose-us-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-us-section .section-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffc421;
    text-align: center;
    max-width: 400px;
    margin: 0 auto 40px;
    z-index: 3;
}

.why-choose-us-section .timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-us-section .timeline-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding-left: 80px;
}

.why-choose-us-section .timeline-box.right {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 80px;
    text-align: right;
}

.why-choose-us-section .icon-box {
    height: 70px;
    width: 70px;
    background: #ffbf00;
    color: #563f00;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 4px solid #fff;
    box-shadow: 0 0 12px rgba(255, 191, 0, 0.6);
    transition: all 0.4s ease;
}

.why-choose-us-section .timeline-box:hover .icon-box {
    animation: pulseIcon 0.8s ease-in-out;
    background: radial-gradient(circle at top left, #ffcf40, #ffbf00);
    transform: rotateZ(8deg) scale(1.1);
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1) rotateZ(0deg);
    }

    50% {
        transform: scale(1.15) rotateZ(5deg);
    }
}

.why-choose-us-section .content-box {
    max-width: 560px;
    background: #ffffff;
    padding: 15px 20px;
    border-left: 5px solid #ffbf00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform-origin: left;
}

.why-choose-us-section .timeline-box.right .content-box {
    border-left: none;
    border-right: 5px solid #ffbf00;
    transform-origin: right;
}

.why-choose-us-section .timeline-box:hover .content-box {
    transform: scale(1.02) skewX(-1deg);
}

.why-choose-us-section .content-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c1c00;
    margin-bottom: 12px;
}

.why-choose-us-section .content-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 426px) {

    .why-choose-us-section .timeline-box,
    .why-choose-us-section .timeline-box.right {
        flex-direction: column !important;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .why-choose-us-section .timeline-box .content-box,
    .why-choose-us-section .timeline-box.right .content-box {
        border-left: 5px solid #ffbf00;
        border-right: none;
        transform-origin: left;
    }

    .why-choose-us-section .icon-box {
        margin-bottom: 15px;
    }
}

.faq-section {
    background: linear-gradient(135deg, #fffef6, #fdf7e5);
    padding: 100px 20px;
}

.custom-accordion .accordion-item {
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: scale(1.015);
}

.custom-accordion .accordion-button {
    background-color: #fff8e1;
    color: #563f00;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 25px;
    transition: background 0.3s ease;
}

.custom-accordion .accordion-button:hover {
    background-color: #ffeabf;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background: #ffffff;
    padding: 20px 25px;
    font-size: 16px;
    color: #555;
    border-top: 1px solid #f2d399;
}

.custom-accordion .accordion-button i {
    color: #ffbf00;
    font-size: 20px;
}

/* ----------------------------CONTACT US SECTION----------------------------------------- */
.contact-section {
    position: relative;
    background-image: url('/assets/images/contact-us-bg.png');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.contact-section .contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(20, 20, 20, 0.6));
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-section .content-box {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffc107;
}

.contact-section p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #ffda66, #ffaa00);
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 193, 7, 0.5);
}

/* -------------------------------------------FOOTER-------------------------- */

.site-footer {
    position: relative;
    background-color: #121212;
    color: #ddd;
    font-size: 15px;
    padding: 80px 0 30px;
    overflow: hidden;
    z-index: 1;
}

/* Top-right diagonal shape */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 150px;
    background: linear-gradient(135deg, #ffbf00, #000);
    clip-path: polygon(100% 0, 0% 0, 130% 70%);
    z-index: 0;
}

/* Bottom-left diagonal shape */
.site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #ffc107);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 0;
}

.footer-logo {
    filter: invert(1);
}

.site-footer .footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.site-footer .footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #f7c02e;
    margin-bottom: 12px;
}

.site-footer .footer-text {
    padding-top: 20px;
    line-height: 1.8;
    color: #bbb;
    width: 350px;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}

.site-footer .footer-links li i {
    color: #f7c02e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.site-footer .footer-links li:hover i {
    color: #fff;
    text-shadow: 0 0 6px #f7c02e, 0 0 10px #f7c02e;
    transform: scale(1.15);
}

.site-footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.site-footer .footer-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: #f7c02e;
    transition: width 0.3s ease;
}

.site-footer .footer-links a:hover::after {
    width: 100%;
}

.site-footer .footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.site-footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding-top: 20px;
    margin-top: 20px;
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* ---------------------------------------------OUR COMPANY------------------------------------------- */
.our-company-intro {
    background: linear-gradient(to bottom right, #f5f3ef, #fffdf8);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-company-intro .container {
    z-index: 2;
    position: relative;
}

.our-company-intro .company-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #563f00;
    margin-bottom: 25px;
    position: relative;
}

.our-company-intro .company-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.our-company-intro .company-image img {
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* Clip-path background shapes */
.our-company-intro::before,
.our-company-intro::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 300px;
    height: 300px;
    background: #3b2f00;
    opacity: 0.05;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.our-company-intro::before {
    top: 0;
    right: 0;
}

.our-company-intro::after {
    bottom: 0;
    left: 0;
}

.mission-vision-section {
    position: relative;
    padding: 60px 0;
    background: #141414;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.mission-vision-section .mv-overlay::before,
.mission-vision-section .mv-overlay::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffbf00;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.08;
    z-index: 0;
}

.mission-vision-section .mv-overlay::before {
    top: 0;
    right: 0;
}

.mission-vision-section .mv-overlay::after {
    bottom: 0;
    left: 0;
}

.mission-vision-section .mv-title-box {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.mission-vision-section .mv-title-box h2 {
    font-size: 48px;
    color: #ffbf00;
    font-weight: 800;
}

.mission-vision-section .mv-title-box p {
    font-size: 18px;
    color: #e6e6e6;
    margin-top: 10px;
}

.mv-split {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.mv-item {
    background: #1e1e1e;
    padding: 50px 40px;
    flex: 1 1 480px;
    border-left: 6px solid #ffbf00;
    box-shadow: 0 0 25px rgba(255, 191, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.mv-item:hover {
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.2);
    transform: scale(1.02);
}

.mv-item .mv-number {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    top: -30px;
    left: 20px;
    color: rgba(255, 191, 0, 0.07);
    z-index: 0;
    pointer-events: none;
}

.mv-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffbf00;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.mv-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.mv-icon {
    font-size: 36px;
    color: #ffbf00;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.mv-item:hover .mv-icon {
    transform: rotateY(180deg);
}

.core-values-section {
    background: linear-gradient(135deg, #fefaf3, #fff);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.core-values-section .section-title {
    text-align: center;
    font-size: 44px;
    color: #563f00;
    margin-bottom: 30px;
    font-weight: 800;
}

.core-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.core-values-section .value-item {
    position: relative;
    padding-top: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.core-values-section .icon-wrapper {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top left, #ffcf40, #ffbf00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #563f00;
    box-shadow: 0 10px 25px rgba(255, 191, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.core-values-section .value-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(8deg);
}

.core-values-section .text-wrapper {
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    padding: 10px 20px;
    border-radius: 12px;
    opacity: 0.5;
    transform: scale(0.95);
}

.core-values-section .value-item:hover .text-wrapper {
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: scale(1);
}

.core-values-section .text-wrapper h4 {
    font-size: 20px;
    color: #2c1c00;
    margin-bottom: 10px;
    font-weight: 700;
}

.core-values-section .text-wrapper p {
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .core-values-section .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .form-group {
        flex-direction: column;

        input {
            display: flex;
            width: 100%;
        }
    }

    .contact-form-block {
        width: 100%;
    }
}

/* Hero Section */
.service-hero-section {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.service-hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-hero-section .container {
    position: relative;
    z-index: 2;
}

.service-hero-section .hero-content {
    max-width: 600px;
    text-align: left;
}

.service-hero-section .hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-hero-section .hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Overview Section */
.service-overview-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.service-overview-section .overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-overview-section .overview-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}

.service-overview-section .overview-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

/* Background images for hero sections */
.service-hero-section.sea-freight {
    background-image: url('/assets/images/sea-freight-bg.png');
}

.service-hero-section.air-freight {
    background-image: url('/assets/images/air-freight-bg.png');
}

.service-hero-section.multimodal-transportation {
    background-image: url('/assets/images/multi-freight-bg.png');
}

.service-hero-section.custom-clearance {
    background-image: url('/assets/images/cust-freight-bg.png');
}

.service-overview-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fffdf7, #f5f1e5);
}

.service-overview-section .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.service-overview-section .text-block {
    color: #2c1c00;
}

.service-overview-section .text-block h2 {
    font-size: 42px;
    color: #563f00;
    margin-bottom: 25px;
    font-weight: 800;
}

.service-overview-section .text-block p {
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.service-overview-section .image-block {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-overview-section .image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-overview-section .image-block:hover img {
    transform: scale(1.05) rotate(1deg);
}

.contact-page-section {
    background: url('/assets/images/contact-us-bg.png') center/cover no-repeat;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-page-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.contact-page-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    align-items: start;
    color: #fff;
}

.contact-info-block h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-list i {
    font-size: 20px;
    margin-right: 12px;
    color: #ffd700;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-message textarea {
    flex: 1 !important;
    padding: 18px !important;
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff;
    font-size: 15px;
    outline: none !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
}

.form-message textarea {
    width: 100%;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    background: #ffd700;
    color: #000;
    padding: 18px 30px;
    text-transform: uppercase;
    border: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.submit-btn:hover {
    background: #fff;
    color: #000;
}


.career-section {
    padding: 100px 0;
    background: #f6f7f9;
    color: #111;
    text-align: center;
}

.career-section .career-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.career-section .career-intro p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.career-section .why-join-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.career-section .reason {
    background: #fff;
    padding: 30px;
    border: 2px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.career-section .reason h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #005eb8;
}

.career-section .reason p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.career-section .reason:hover {
    transform: translateY(-5px);
    border-color: #005eb8;
    box-shadow: 0 8px 20px rgba(0, 94, 184, 0.15);
}

.career-section .career-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.career-section .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #005eb8;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-size: 16px;
}

.career-section .cta-btn:hover {
    background-color: #004080;
}

/* Contact Modal Style */
.styled-contact-modal {
    background: linear-gradient(135deg, #fefefe 0%, #f1f1f1 100%);
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 20px 20px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative !important;
    overflow: hidden;
}

/* Custom Close Button */
.custom-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #333;
    font-weight: bold;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.custom-close-btn:hover {
    transform: rotate(90deg);
    color: #ff6600;
}

/* Icon Design */
.modal-icon {
    font-size: 52px;
    color: #ff6600;
    margin-bottom: 20px;
}

/* Typography */
.styled-contact-modal .modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.styled-contact-modal .modal-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* CTA Box */
.modal-cta-box {
    background-color: #ffffff;
    padding: 10px 20px;
    margin: 0 auto 20px;
    display: inline-block;
    border-left: 4px solid #ff6600;
    text-align: left;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.modal-cta-box p {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
}

.modal-cta-box a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

.modal-cta-box a:hover {
    color: #cc5200;
    text-decoration: underline;
}

/* Footer Note */
.modal-note {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
}

/* CTA Button */
.modal-footer-btn {
    margin-top: 30px;
}

.close-modal-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.close-modal-btn:hover {
    background-color: #cc5200;
}