.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 111111111111;
}

.load {
    position: relative;
    width: 80px;
    height: 80px;
}

.load hr {
    border: none;
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.load hr:nth-child(1) {
    background: #ff3d00;
    animation-delay: 0s;
    left: 0;
    top: 0;
}

.load hr:nth-child(2) {
    background: #ff9100;
    animation-delay: 0.3s;
    left: 50%;
    top: 0;
}

.load hr:nth-child(3) {
    background: #5b0800;
    animation-delay: 0.6s;
    left: 50%;
    top: 50%;
}

.load hr:nth-child(4) {
    background: #00e676;
    animation-delay: 0.9s;
    left: 0;
    top: 50%;
}

@keyframes spin {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Style the entire scrollbar */
::-webkit-scrollbar {
    width: 6px;
    /* For vertical scrollbar */
}

/* Style the scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Light grey background */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #f8ab04;
    /* Blue thumb */
}

/* Style the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
    /* Darker blue on hover */
}

/* Optional: Style the scrollbar buttons (up/down arrows) */
::-webkit-scrollbar-button {
    background: #3498db;
    border-radius: 50%;
    display: none;
    /* Hides the buttons if not needed */
}

/* Top Info Bar */
.top-bar {
    background: #00264a;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;

    .container {
        justify-content: right;
    }
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}

.top-bar a:hover {
    color: #f8ab04;
}

/* Navbar Styling */
.custom-header {
    background: #fff;
    padding: 15px 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.custom-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 65px;
}

.navbar-nav .nav-link {
    color: #343a40;
    font-size: 1.02rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #f8ab04;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: #f8ab04;
}

.navbar-nav .nav-link.active {
    color: #f8ab04;
    font-weight: 600;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav .dropdown-item {
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar-nav .dropdown-item:hover {
    background: #f8ab04;
    color: #fff;
}

.dropdown-toggle i {
    transition: transform 0.3s ease-in-out;
    font-size: 12px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.quote-btn {
    background: #f8ab04;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0px;
    font-size: 1rem;
    border: 1px solid #f8ab04;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
    margin-left: 20px;
}

.quote-btn:hover {
    background: #fff;
    color: #f8ab04;
}

.quote-btn:active {
    background: #f8ab04;
    color: #fff;
}

header {
    .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Marquee Styling */
.marquee {
    background: #00264a;
    color: white;
    padding: 2px;
    font-size: 1rem;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
}

/* -----------------------------------FOR FOOTER--------------------------------------- */
.custom-footer {
    background: #212529;
    color: white;
    padding: 50px 0 0 0;
}

.custom-footer .footer-title {
    color: #f8ab04;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.custom-footer .footer-list li {
    list-style: none;
    margin-left: 5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.custom-footer .footer-list li a {
    color: white;
    text-decoration: none;
}

.custom-footer .footer-list li a:hover {
    color: #f8ab04;
    /* text-decoration: underline; */
}

.custom-footer .contact-column h5,
.custom-footer .contact-column h5 a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.custom-footer .contact-column h5 a:hover {
  color: #f8ab04;
}

.custom-footer .footer-list {
    padding: 0;
}

.footer-bottom {
    background: #181a1d;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* ----------------------------------------FOR HOME PAGE SWIPER-------------------------------------  */

.shipping-swiper-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(1px);
    text-align: center;
    max-width: 600px;
    transform: translateY(-50%);
    transition: transform 0.5s ease;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-slide-active .slide-content {
    transform: translate(-50%, -50%) scale(1.05);
}

.slide-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 15px;
    margin-bottom: 15px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 26px;
    font-size: 15px;
    color: #fff;
    background: #f8ab04;
    border: 1px solid #f8ab04;
    text-decoration: none;
    border-radius: 0px;
    transition: 0.3s;
}

.learn-more-btn:hover {
    background: #fff;
    color: #f8ab04;
    border: 1px solid #f8ab04;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #ff9800 !important;
    opacity: 1 !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ff9800 !important;
    transition: transform 0.3s ease !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.2) !important;
}

/* ---------------------------------FOR HOME ABOUT US------------------------- */
.logistics-section {
    padding: 60px 100px;
    background-color: #fff;
    position: relative;
}

.logistics-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logistics-content {
    max-width: 50%;
    position: relative;
}

.logistics-welcome {
    color: #f8ab04;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logistics-title {
    color: #2d3748;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

.logistics-subtitle {
    color: #f8ab04;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.logistics-description {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.logistics-btn {
    display: inline-block;
    background-color: #f8ab04;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0px;
    transition: background 0.3s ease;
}

.logistics-btn:hover {
    background-color: #095a85;
}

.logistics-image-container {
    position: relative;
    max-width: 45%;
}

.logistics-image-container img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 0px;
}

.logistics-image-shadow {
    position: absolute;
    top: 45px;
    left: 45px;
    width: 100%;
    height: 100%;
    background: #d3d3d3;
    z-index: 1;
    border-radius: 0px;
}

.logistics-dots-left {
    position: absolute;
    top: -45px;
    left: -105px;
    width: 100px;
    height: 60px;
    background: radial-gradient(circle, #0c72a8 10%, transparent 20%);
    background-size: 10px 10px;
}

.logistics-dots-right {
    position: absolute;
    top: -25px;
    right: -50px;
    width: 100px;
    height: 50px;
    background: radial-gradient(circle, #0c72a8 10%, transparent 20%);
    background-size: 10px 10px;
}

@media (max-width: 768px) {
    .logistics-section {
        padding: 40px 20px;
    }

    .logistics-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logistics-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .logistics-title {
        font-size: 32px;
    }

    .logistics-subtitle {
        font-size: 18px;
    }

    .logistics-description {
        font-size: 16px;
    }

    .logistics-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logistics-image-container {
        max-width: 100%;
    }

    .logistics-image-shadow {
        top: 25px;
        left: 25px;
    }

    .logistics-dots-left {
        top: -30px;
        left: -50px;
        width: 70px;
        height: 40px;
        background-size: 8px 8px;
    }

    .logistics-dots-right {
        top: -15px;
        right: -30px;
        width: 70px;
        height: 40px;
        background-size: 8px 8px;
    }
    .top-bar a{
        font-size: 11px;
    }
}

/* --------------------------FOR HOME WHY CHOOSE US---------------------------------- */
/* Parent class */
.choose-us-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

/* Heading styling */
.choose-us-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #f8ab04;
}

/* Card styling */
.choose-card {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background: #222;
    transition: transform 0.3s ease-in-out;
}

/* Image inside card */
.choose-card .choose-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-in-out;
    z-index: 1;
}

/* Dark overlay */
.choose-card .choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease-in-out;
    z-index: 2;
}

/* Content inside card */
.choose-card .choose-content {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease-in-out;
}

/* Bootstrap Icon */
.choose-card .choose-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    transition: transform 0.4s ease-in-out, color 0.3s ease-in-out;
    color: #f8ab04;
}

/* Heading inside card */
.choose-card h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
}

/* Paragraph inside card */
.choose-card p {
    font-size: 16px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.8;
}

/* Hover Effects */
.choose-card:hover .choose-image {
    transform: scale(1.1);
}

.choose-card:hover .choose-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.choose-card:hover .choose-icon {
    transform: rotate(360deg);
    color: #f8ab04;
}

.choose-card:hover h4 {
    color: #f8ab04;
}

.choose-card:hover p {
    opacity: 1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .choose-us-section h2 {
        font-size: 28px;
    }

    .choose-card {
        height: 220px;
        padding: 60px 15px;
    }

    .choose-card h4 {
        font-size: 18px;
    }

    .choose-card p {
        font-size: 14px;
    }
}

/* -----------------------------FOR SERVICES------------- */
.services-section {
    padding: 60px 100px;
    background-color: #fff;
    position: relative;

    .container {
        text-align: center;

        .row {
            text-align: left;
        }
    }
}

.services-title,
.map-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f8ab04;
    display: inline-block;
}

.map-section {
    text-align: center;
    margin-top: 50px;
}

.services-title span {
    color: #f8ab04;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(60%);
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(90%);
}

.service-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
}

.service-content a {
    color: white;
    text-decoration: none;
    font-size: 14px;

}

.service-card:hover .service-content h3 {
    color: #f8ab04;
    /* transition: 0.3s ease-in-out; */
}

.service-card:hover .service-content a {
    color: #f8ab04;
    text-decoration: underline;
}

.services-section .col-md-6,
.services-section .col-md-4 {
    padding: 0;
    margin: 0;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 40px;
    }

    .service-content h3 {
        font-size: 16px;
    }
}

/* -----------------FOR PROCESS SECTION */
.process-section {
    background-image: url('/assets/images/process-bg.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    padding: 100px 50px;
    color: white;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
}

.process-title {
    font-size: 36px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.process-title span {
    color: #f8ab04;
}

.process-step {
    background: rgba(44, 188, 255, 0.1);
    padding: 30px;
    margin: 20px 0;
    /* border-radius: 12px; */
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 400px;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 251, 22, 0.2);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

.step-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #f8ab04;
    transition: transform 0.5s ease, color 0.3s ease;
}

.process-step:hover .step-icon {
    transform: rotate(360deg);
    color: #fff;
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-size: 80px;
    font-weight: bold;
    opacity: 0.2;
    z-index: 1;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 80px 30px;
    }

    .process-title {
        font-size: 28px;
    }

    .step-icon {
        font-size: 35px;
    }

    .step-number {
        font-size: 60px;
    }
}

/* ------------------------------------------------FOR OUR COMPANY PAGE----------------------------------------------- */
/* intro section */
.about-hero {
    position: relative;
    height: 100vh;
    background: url('/assets/images/about-us.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out, waveMotion 3s infinite ease-in-out alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-70px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveMotion {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ---------------------------------------------------FOR ABOUT OUR COMPANY-------------------------------------- */
/* Parent class to prevent conflicts */
.company-freight-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

/* Company Heading */
.company-heading {
    text-align: center;
    margin-bottom: 50px;
}

.company-heading h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #1D3B6C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-heading h2 span {
    color: #f8ab04;
}

/* Dotted Line Using CSS */
.company-dots {
    height: 4px;
    width: 160px;
    background: repeating-linear-gradient(to right,
            #0096D6,
            #0096D6 8px,
            transparent 8px,
            transparent 16px);
    margin: 10px auto;
}

/* Company Content */
.company-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.company-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Freight Box */
.freight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

/* Freight Text */
.freight-text {
    width: 50%;
}

.freight-text h3 {
    color: #f8ab04;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.freight-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Bullet Points */
.freight-text ul {
    list-style: none;
    padding: 0;
}

.freight-text ul li {
    font-size: 1rem;
    color: #1D3B6C;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

/* Custom Bullet Icon */
.freight-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0096D6;
    font-weight: bold;
}

/* Freight Image */
.freight-image {
    width: 45%;
    display: flex;
    justify-content: center;
}

.freight-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Parent Class for Section */
.core-values {
    background: url('/assets/images/core-bg.png') no-repeat center center/cover;
    position: relative;
    padding: 80px 0;
}

.core-values .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for better readability */
}

.container {
    position: relative;
    z-index: 2;
}

/* Heading Styling */
.core-values-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.core-values-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.core-values-heading h2 span {
    color: #f8ab04;
}

.core-values-heading .dots {
    width: 120px;
    height: 8px;
    background: radial-gradient(circle, #f8ab04 10%, transparent 30%);
    background-size: 12px 12px;
    margin: 10px auto 0;
}

/* Swiper Wrapper */
.core-values-swiper {
    overflow: hidden;
}

/* Card Layout */
.core-value-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    height: auto !important;
    /* Fixed height for all cards */
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: background 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Ensures text is centered */
    align-items: center;
}

/* Icon Styling */
.core-value-box .icon {
    font-size: 40px;
    color: #f8ab04;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease-in-out;
}

/* Title Styling */
.core-value-box h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* Paragraph Styling */
.core-value-box p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.core-value-box:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.3);
}

.core-value-box:hover .icon {
    color: #fff;
}

.core-value-box:hover h3 {
    color: #f8ab04;
}

.core-value-box:hover p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-value-box {
        height: auto;
        /* Adjust height for small screens */
        padding: 20px;
    }
}

/* --------------------------------------------FOR WHY US PAGE----------------------------------------------- */
/* Parent Section Styling */
.why-us-section {
    background: url('/assets/images/why-us-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
    position: relative;
    z-index: 1;
}

/* Overlay Effect for Better Readability */
.why-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.why-us-section .container {
    width: 85%;
    margin: 0 auto;
}

.why-us-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Mission & Vision Blocks */
.why-us-mission,
.why-us-vision {
    flex: 1;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.15); */
    background: rgb(0 0 0 / 30%);
    border-radius: 0px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
    min-height: 400px;
}

.why-us-mission:hover,
.why-us-vision:hover {
    background: rgb(0 0 0 / 45%);

}

.why-us-mission h2,
.why-us-vision h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-mission h2 span,
.why-us-vision h2 span {
    color: #f8ab04;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.why-us-content i {
    font-size: 50px;
    color: #f8ab04;
}

.why-us-mission p,
.why-us-vision p {
    font-size: 1rem;
    line-height: 1.6;
}

/* List Styling */
.why-us-mission ul,
.why-us-vision ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.why-us-mission ul li,
.why-us-vision ul li {
    font-size: 0.95rem;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.why-us-mission ul li::before,
.why-us-vision ul li::before {
    content: "✔";
    color: #f8ab04;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-us-left {
    left: -20px;
    top: 10%;
}

.why-us-right {
    right: -20px;
    bottom: 10%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-us-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-decorative {
        display: none;
    }
}

.choose-us-section {
    background: #f1f1f1;
    /* White Background */
    color: #333;
    /* Dark Text for Readability */
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.choose-us-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #222;
    /* Dark Title Color */
}

.choose-us-heading h2 span {
    color: #f8ab04;
    /* Blue Accent */
}

.choose-us-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    /* Medium Gray for Better Readability */
}

.choose-us-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.choose-us-list li {
    font-size: 1.1rem;
    background: #cacaca;
    /* Light Gray Background */
    padding: 15px 25px;
    border-radius: 0px;
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #ddd;
}

.choose-us-list li i {
    font-size: 1.5rem;
    color: #f8ab04;
    /* Blue Icon */
}

.choose-us-list li:hover {
    background: #e9ecef;
    /* Slightly Darker Background on Hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft Shadow Effect */
}

.cta {
    background: #a56300;
    /* Gradient Blue Background */
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.call-to-action__text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.call-to-action__button .btn {
    background: #ffffff;
    color: #007bff;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 0px;
    font-weight: bold;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 2px solid transparent;
}

.call-to-action__button .btn:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* -----------------------------------SERVICES ALL WEB PAGES CSS--------------------------------------- */
/* Air Freight Section */
.air-freight-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;

    .container {
        .row {
            flex-direction: column;
            gap: 30px
        }
    }
}

.air-freight-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8ab04;
    text-transform: uppercase;
    /* margin-bottom: 30px; */
    position: relative;
    text-align: left;
}

/* Large Background Text */
.air-freight-section__background-text {
    position: absolute;
    top: 500px;
    right: 0;
    font-size: 6.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    /* Very light gray */
    text-transform: uppercase;
    z-index: -1;
    /* Behind other elements */
    white-space: nowrap;
}

/* Image Container */
.air-freight-section__image-container {
    position: relative;
    display: inline-block;
}

.air-freight-section__image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay on Image */
.air-freight-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Content Section */
.air-freight-section__content {
    padding-left: 20px;
}

.air-freight-section__subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

.air-freight-section__underline {
    width: 80px;
    height: 4px;
    background: #f8ab04;
    margin: 10px 0;
}

/* List Styling */
.air-freight-section__list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.air-freight-section__list li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.air-freight-section__list li::before {
    content: "✔";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Air Freight Description */
.air-freight-section__description {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.dotted-line {
    width: 40%;
    border-top: 5px dotted #2ca1c0;
    /* Dotted line */
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #2ca1c0;
    border-radius: 50%;
    position: absolute;
    right: 0;
}

/* Sea Freight Section */
.sea-freight-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;

    .container {
        .row {
            flex-direction: column;
            gap: 30px
        }
    }

}

.sea-freight-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8ab04;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

/* Large Background Text */
.sea-freight-section__background-text {
    position: absolute;
    top: 500px;
    right: 0;
    font-size: 5.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    text-transform: uppercase;
    z-index: -1;
    white-space: nowrap;
}

/* Image Container */
.sea-freight-section__image-container {
    position: relative;
    display: inline-block;
}

.sea-freight-section__image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay on Image */
.sea-freight-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Content Section */
.sea-freight-section__content {
    padding-left: 20px;
}

.sea-freight-section__subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

.sea-freight-section__underline {
    width: 80px;
    height: 4px;
    background: #f8ab04;
    margin: 10px 0;
}

/* List Styling */
.sea-freight-section__list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sea-freight-section__list li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.sea-freight-section__list li::before {
    content: "✔";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Sea Freight Description */
.sea-freight-section__description {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

/* Custom Clearance Section */
.custom-clearance-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;

    .container {
        .row {
            flex-direction: column;
            gap: 30px
        }
    }
}

.custom-clearance-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8ab04;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

/* Large Background Text */
.custom-clearance-section__background-text {
    position: absolute;
    top: 500px;
    right: 0;
    font-size: 5.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    text-transform: uppercase;
    z-index: -1;
    white-space: nowrap;
}

/* Image Container */
.custom-clearance-section__image-container {
    position: relative;
    display: inline-block;
}

.custom-clearance-section__image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay on Image */
.custom-clearance-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Content Section */
.custom-clearance-section__content {
    padding-left: 20px;
}

.custom-clearance-section__subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

.custom-clearance-section__underline {
    width: 80px;
    height: 4px;
    background: #f8ab04;
    margin: 10px 0;
}

/* List Styling */
.custom-clearance-section__list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.custom-clearance-section__list li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.custom-clearance-section__list li::before {
    content: "✔";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Custom Clearance Description */
.custom-clearance-section__description {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

/* Complete Logistics Solutions Section */
.logistics-solutions-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;

    .container {
        .row {
            flex-direction: column;
            gap: 30px
        }
    }
}

.logistics-solutions-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8ab04;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

/* Large Background Text */
.logistics-solutions-section__background-text {
    position: absolute;
    top: 500px;
    right: 0;
    font-size: 5.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    text-transform: uppercase;
    z-index: -1;
    white-space: nowrap;
}

/* Image Container */
.logistics-solutions-section__image-container {
    position: relative;
    display: inline-block;
}

.logistics-solutions-section__image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay on Image */
.logistics-solutions-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Content Section */
.logistics-solutions-section__content {
    padding-left: 20px;
}

.logistics-solutions-section__subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

.logistics-solutions-section__underline {
    width: 80px;
    height: 4px;
    background: #f8ab04;
    margin: 10px 0;
}

/* List Styling */
.logistics-solutions-section__list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.logistics-solutions-section__list li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.logistics-solutions-section__list li::before {
    content: "✔";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Logistics Solutions Description */
.logistics-solutions-section__description {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

/* Transportation & Distribution Section */
.transportation-distribution-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    position: relative;

    .container {
        .row {
            flex-direction: column;
            gap: 30px
        }
    }
}

.transportation-distribution-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8ab04;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

/* Large Background Text */
.transportation-distribution-section__background-text {
    position: absolute;
    top: 500px;
    right: 0;
    font-size: 5.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    text-transform: uppercase;
    z-index: -1;
    white-space: nowrap;
}

/* Image Container */
.transportation-distribution-section__image-container {
    position: relative;
    display: inline-block;
}

.transportation-distribution-section__image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay on Image */
.transportation-distribution-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Content Section */
.transportation-distribution-section__content {
    padding-left: 20px;
}

.transportation-distribution-section__subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

.transportation-distribution-section__underline {
    width: 80px;
    height: 4px;
    background: #f8ab04;
    margin: 10px 0;
}

/* List Styling */
.transportation-distribution-section__list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.transportation-distribution-section__list li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.transportation-distribution-section__list li::before {
    content: "✔";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Transportation & Distribution Description */
.transportation-distribution-section__description {
    font-size: 1.1rem;
    margin-top: 30px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

/* -----------------------------------------------------------CONTACT US PAGE------------------------------------------- */
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

/* Title */
.contact-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Description */
.contact-section__description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Grid Layout */
.contact-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Contact Box */
.contact-section__box {
    padding: 20px;
    background: white;
    border-radius: 0px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.contact-section__box:hover {
    transform: scale(1.03);
}

/* Contact Heading */
.contact-section__heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8ab04;
    margin-bottom: 10px;
}

/* Contact Text */
.contact-section__text {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.6;
}

/* Contact Links */
.contact-section__text a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.contact-section__text a:hover {
    text-decoration: underline;
}

/* Map */
.contact-section__map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: none;
}

/* Career Section */
.career-section {
    padding: 0 0 80px 0;
    background: #f8f9fa;
    text-align: center;
}

/* Title */
.career-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Description */
.career-section__description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Grid Layout */
.career-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Career Box */
.career-section__box {
    padding: 20px;
    background: white;
    border-radius: 0px;
    transition: transform 0.3s ease-in-out;
    cursor:cell;
}

.career-section__box:hover {
    transform: scale(1.02);
}

/* Career Heading */
.career-section__heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f8ab04;
    margin-bottom: 10px;
}

/* Career Text */
.career-section__text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

/* Career Contact */
.career-section__contact {
    margin-top: 40px;
    font-size: 1rem;
    font-weight: bold;
    color: #003366;
}

.career-section__contact a {
    color: #f8ab04;
    font-weight: bold;
    text-decoration: none;
}

.career-section__contact a:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------GET A QUOTE------------------------------------------------- */
/* Get a Quote Page */
.quote-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-page__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
}

.quote-page__title span {
    color: #f8ab04;
}

.quote-page__description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

/* Form Styling */
.quote-page__form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-page__form label {
    font-weight: bold;
    color: #333;
}

.quote-page__input,
.quote-page__select,
.quote-page__textarea {
    border-radius: 0px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 0.9rem;
    width: 100%;
}

/* Checkbox Styling */
.quote-page__checkbox-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
}

/* Submit Button */
.quote-page__btn-submit {
    background: #f8ab04;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.quote-page__btn-submit:hover {
    background: #e65c00;
    transform: scale(1.05);
}

.modal-dialog i,
.modal-dialog a {
    color: #ff9800;
    text-decoration: none;
}

.modal-dialog a:hover {
    text-decoration: underline;
}

.modal-dialog .modal-footer button {
    background-color: #f8ab04;
    border: #f8ab04;
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.video-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-col .logo-part a img {
  max-width: 200px;
  filter: contrast(1.5);
}
.footer-head{
    margin-bottom: 2px;
    color: #f8ab04;
    font-size: 16px;
}