/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.loader-logo {
    margin-bottom: 10px;
    position: relative;
}

.loader-svg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.ship-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawShip 1s ease-out forwards;
    transform-origin: center;
}

.wave-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawWave 1.2s ease-out forwards 0.2s;
}

.company-name {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.loading-container {
    margin: 0px 0;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1a73e8, #0dcc72);
    border-radius: 3px;
    transition: width 0.2s ease;
}

.loading-percent {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 3px;
    font-weight: 300;
}

.loading-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
    font-weight: 300;
}

/* Animations */
@keyframes drawShip {
    to {
        stroke-dashoffset: 0;
        transform: translateY(-10px);
    }
}

@keyframes drawWave {
    to {
        stroke-dashoffset: 0;
    }
}


/* Hide when loaded */
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* -----------------------------------SCROLLBAR------------------------------ */
/* Scrollbar styling for WebKit browsers */
::-webkit-scrollbar {
    width: 7px;
    /* width of the entire scrollbar */
    height: 7px;
    /* height of horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #002743;
    /* border-radius: 6px; */
    border: 0px;
    /* creates padding around thumb */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00395d;
}

/* Corner between vertical and horizontal scrollbars */
::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* Buttons (arrows) at the top and bottom */
::-webkit-scrollbar-button {
    display: none;
    /* hide scrollbar buttons */
}

/* -----------------------------------HEADER------------------------------ */

header .navbar-custom {
    /* background: transparent; */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header .navbar-brand {
    margin-left: 50px;

    img {
        width: 140px;
        height: 65px;
        /* filter: brightness(1.8); */
    }
}

header .navbar-nav .nav-item {
    padding-right: 25px;
}

header .navbar-nav .nav-item .nav-link.active {
    font-weight: bolder;
    color: #14344c !important;
    font-weight: bold;
}

header .navbar-nav .nav-item .nav-link.active::after {
    transform: scaleX(1);
}

header .navbar-custom.scrolled {
    background: rgba(209, 209, 209, 0.8);

    .dropdown-menu {
        background: rgba(209, 209, 209, 0.8);
        border-radius: 0;
        border: none;
    }

    .navbar-brand {
        img {
            filter: none;
        }
    }
}

header .navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #000 !important;
    font-weight: 500;
    position: relative;
}

header .navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2.2px;
    background-color: #14344c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

header .navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

header .navbar-toggler {
    border-color: #ffffff;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border-radius: 0;
}

header .dropdown-menu {
    background: rgba(209, 209, 209, 0.8);

    .dropdown-item {
        color: #000;
    }

    .dropdown-item:hover {
        background-color: #14344c;
        color: #fff;
    }

    .dropdown-item.active {
        background-color: #14344c;
        color: #fff;
    }
}

header .dropdown-toggle i::before {
    margin-left: 5px;
    transition: transform 0.7s ease;
}

header .dropdown:hover i::before {
    transform: rotate(540deg);
}

header .dropdown-toggle::after {
    border: 0px;
}


header .overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 209, 209, 0.8);
    z-index: -1;
}

.navbar-toggler {
    width: 60px;
    height: 25px;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    height: 4px;
    background-color: #002743;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* -----------------------HERO SECTION------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-section .hero-content {
    position: absolute;
    top: 25%;
    left: 10%;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section .hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px #000;
    pointer-events: none;
}

.hero-section .hero-content span {
    font-size: 3.3rem;
    color: #34546c;
    animation: pulse-home 2s infinite;
    pointer-events: none;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px #000;
    pointer-events: none;
    font-family: "Roboto Condensed", sans-serif;

}

.btn-main {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 0 25px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-main:hover {
    background-color: #34546c;
    color: #000;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #34546c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes pulse-home {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 350px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content span {
        font-size: 1.6rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .btn-main {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .navbar-nav {
        padding-left: 30px;
        position: fixed;
        top: 0;
        left: 0px;
        height: 100%;
        width: 80%;
        background: rgba(209, 209, 209, 1);
        padding-top: 20px;
        transition: left 0.5s ease-in-out;
    }

    .navbar-nav.show {
        left: 0;
    }

    header .dropdown .dropdown-menu {
        display: block;
        margin-top: 0;
        background: rgba(209, 209, 209, 1);
        border: 0;
    }

    .logistics-services h2 {
        font-size: 28px;
    }

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 14px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        padding: 170px !important;
    }
}


.about-section {
    display: flex;
    padding: 80px 10%;
    background-color: #f7f7f7;
    position: relative;
}

.about-image {
    flex: 1;
    padding: 40px;
    background-image: url('/assets/images/abt-us-home.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.about-image2 {
    flex: 1;
    padding: 40px;
    background-image: url('/assets/images/abt-us-main.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.about-content {
    flex: 1.2;
    padding: 20px 40px;
}



.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;

    font-family: "Roboto Condensed", sans-serif;

}

.about-section .btn-main {
    color: #000;
    border: 1px solid #000;
}


/*--------------------------------------------------SERVICES SECTION-------------------------------------------------- */
.services-section {
    padding: 80px 0px;
    color: #111;
    text-align: center;
}

.services-section .section-header h2,
.beyond-shipment-section .section-header h2,
.faq-section .section-title,
.about-content h1 {
    font-size: 3.4rem;
    margin-bottom: 12px;
    color: #00395d;
    letter-spacing: 1px;
    font-weight: bolder;
    letter-spacing: -2px;
}

.services-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    font-family: "Roboto Condensed", sans-serif;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    /* Makes items equal height */
    ;
    margin: 0 auto;
    /* Center the grid */
    gap: 10px;
}

.service-box {
    position: relative;
    height: 320px;
    width: 275px;
    overflow: hidden;
    border-radius: 0px;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Animated light beam effect */
.service-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1), transparent 60%);
    transform: rotate(0deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.service-box:hover::before {
    transform: rotate(20deg);
}

/* Overlay effect */
.service-box .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    transition: clip-path 0.6s ease;
}

.service-box:hover .overlay {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}

/* Glitch heading effect */
.service-box h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #8b9ba4;
    position: relative;
    font-weight: bolder;
    transition: all 0.3s ease;
}

.service-box:hover h3::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 red;
    animation: glitch 0.5s infinite;
    opacity: 0.6;
}

@keyframes glitch {
    0% {
        clip-path: inset(0 0 30% 0);
    }

    20% {
        clip-path: inset(10% 0 40% 0);
    }

    40% {
        clip-path: inset(20% 0 20% 0);
    }

    60% {
        clip-path: inset(40% 0 10% 0);
    }

    80% {
        clip-path: inset(60% 0 30% 0);
    }

    100% {
        clip-path: inset(0 0 30% 0);
    }
}

.service-box p {
    font-size: 1.1rem;
    color: #ccc;
    filter: blur(3px);
    opacity: 0.4;
    transition: all 0.4s ease;
    font-family: "Roboto Condensed", sans-serif;
}

.service-box:hover p {
    filter: blur(0px);
    opacity: 1;
}

/* Unique backgrounds */
.service-box.ocean {
    background-image: url('/assets/images/abt-us-home.png');
}

.service-box.air {
    background-image: url('/assets/images/service-air.png');
}

.service-box.project {
    background-image: url('/assets/images/service-cargo.png');
}

.service-box.customs {
    background-image: url('/assets/images/service-customs.png');
}

/* -------------------------BEYONF SHIPMENT SECTION---------------------------------------------------- */
.beyond-shipment-section {
    padding: 80px 20px;
    text-align: center;
}

.beyond-shipment-section .section-header p {
    color: #555;
    margin-bottom: 40px;
    font-size: 17px;
    font-family: "Roboto Condensed", sans-serif;
}

.strip-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0 10px;
}

.strip-panel {
    background: #ffffff;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e0e6ed;
    transition: all 0.4s ease;
    /* clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.strip-panel:hover {
    background: linear-gradient(135deg, #dff5ff, #e3f2fd);
    /* clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 95%); */
}

.strip-panel:hover h3 {
    color: #003566;
    letter-spacing: 1px;
}

.strip-panel:hover p {
    color: #333;
    filter: blur(0px);
    pointer-events: none;
}

.strip-panel h3 {
    font-size: 20px;
    color: #004d7a;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.strip-panel p {
    color: #666;
    margin-top: 10px;
    font-size: 17px;
    filter: blur(1px);
    font-family: "Roboto Condensed", sans-serif;
    transition: filter 0.4s ease, color 0.3s ease;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #e6f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 28px;
    color: #0052a5;
    transition: all 0.4s ease;
    position: relative;
}

.strip-panel:hover .icon-circle {
    background: #0052a5;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

/* -----------------------------------------FAQ SEACTION--------------------------------- */
/* Main Section Styling */
.faq-section {
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%); */
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

/* Image Container Effects */
.faq-image {
    position: relative;
    overflow: hidden;
    box-shadow:
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.faq-image:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow:
        30px 30px 60px rgba(0, 0, 0, 0.15),
        -15px -15px 40px rgba(255, 255, 255, 0.9);
}

.faq-image img {
    transition: all 0.8s ease;
    transform: scale(1.05);
    width: 100%;
}

.faq-image:hover img {
    transform: scale(1.1);
}

/* Image Overlay Effects */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.7) 0%, rgba(25, 135, 84, 0.6) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.faq-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.faq-image:hover .image-overlay h2 {
    transform: translateY(0);
    opacity: 1;
}

/* FAQ Content Styling */


.intro-text {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 20px;
    font-family: "Roboto Condensed", sans-serif;
}

/* Accordion Effects */
.accordion {
    --bs-accordion-border-color: rgba(0, 0, 0, 0.08);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-btn-padding-x: 1.75rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-body-padding-x: 1.75rem;
    --bs-accordion-body-padding-y: 1.25rem;
    --bs-accordion-active-color: #0d6efd;
    --bs-accordion-active-bg: rgba(13, 110, 253, 0.05);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.accordion-item {
    margin-bottom: 0.5rem;
    border: none;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
}

.accordion-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #0d6efd, #198754);
    transition: all 0.4s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-item:hover::before {
    height: 100%;
}

.accordion-button {
    font-weight: 600;
    color: #212529;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background: rgba(255, 255, 255, 0.9);
}

.accordion-button:hover {
    color: #0d6efd;
    background: rgba(255, 255, 255, 0.9);
}

.accordion-button::after {
    transition: all 0.4s ease;
}

.accordion-body {
    color: #495057;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.5);
}

/* Floating Animation for FAQ Items */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.accordion-item:hover {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .faq-image {
        margin-bottom: 3rem;
        transform: none;
    }

    .faq-image:hover {
        transform: translateY(-5px);
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title:hover::after {
        width: 80px;
    }

    .intro-text {
        text-align: center;
        padding-left: 0;
    }

    .intro-text::before {
        display: none;
    }
}

/* -------------------------------------------------------IMPORTANCE SECTION-------------------------------------------- */
/* Importance Section */
.importance-section {
    background:
        linear-gradient(rgba(16, 16, 16, 0.85), rgba(12, 11, 11, 0.9)),
        url('/assets/images/whyus-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.importance-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(23, 107, 203, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.importance-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.importance-heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0dcc72);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.importance-section:hover .importance-heading::after {
    width: 150px;
    background: linear-gradient(90deg, #0dcc72, #1a73e8);
}

.importance-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 300;
    font-family: "Roboto Condensed", sans-serif;
}

.importance-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.point {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 25px 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.point::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.point:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.point:hover::before {
    opacity: 1;
    transform: translate(25%, 25%);
}

.point i {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a73e8;
    transition: all 0.4s ease;
    display: inline-block;
}

.point:hover i {
    transform: scale(1.2) translateY(-5px);
    color: #0dcc72;
}

.point h5 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
}

.point:hover h5 {
    color: #1a73e8;
}

.point p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: "Roboto Condensed", sans-serif;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 12px 0;
}

.cta-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    color: #0dcc72;
}

.cta-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .importance-section {
        padding: 100px 0;
    }
}

@media (max-width: 991.98px) {
    .importance-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .importance-heading {
        font-size: 2.2rem;
    }

    .importance-text {
        font-size: 1.15rem;
        margin-bottom: 50px;
    }

    .importance-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .importance-section {
        padding: 70px 0;
    }

    .importance-heading {
        font-size: 1.9rem;
    }

    .importance-points {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .point {
        padding: 35px 25px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* -----------------------------------------------------FOOTER------------------------------------------------------------ */
.site-footer {
    color: #00395d;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(to bottom, #f0f7fc 0%, #e6f1f9 100%); */
    background: rgba(230, 230, 230, 0.8);
}

/* Content Positioning */
.footer-content {
    position: relative;
    z-index: 1;
}

/* Logo Section */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    max-width: 180px;
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.footer-slogan {
    color: #00395d;
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
    width: 250px;
    position: relative;
}

/* Footer Titles */
.footer-title {
    color: #00395d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00395d, #005b8f);
    transition: all 0.3s ease;
}

/* Footer Links */
.footer-links,
.footer-services,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-links a,
.footer-services a {
    color: #00395d;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-contact li {
    color: #00395d;
    opacity: 0.8;
    padding: 5px 0 5px 25px;
}

.footer-contact li a {
    text-decoration: none;
    color: #00395d;
    opacity: 0.8;
}

/* Icons */
.footer-links i,
.footer-services i,
.footer-contact i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
    color: #005b8f;
}

/* Hover Effects */
.footer-links a:hover,
.footer-services a:hover {
    color: #002743;
    opacity: 1;
    transform: translateX(3px);
}

.footer-links li:hover i,
.footer-services li:hover i {
    color: #00395d;
}

.footer-contact li:hover {
    color: #002743;
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact li:hover i {
    color: #00395d;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 57, 93, 0.05);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #00395d;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 57, 93, 0.1), transparent);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .col-md-3 {
        margin-bottom: 30px;
    }

    .footer-title {
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-logo-img {
        max-width: 150px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .footer-services a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-waves {
        height: 60px;
    }
}

/* _________________________________________________________________________________________________________________________________ */
/*---------------------------------------------------- ABOUT US PAGE--------------------------------------------------------------- */
/* Elegant Who We Are Section */
.logistics-excellence {
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: #00395d;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.section-title span {
    color: #00395d;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 57, 93, 0.2);
    z-index: -1;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00395d, transparent);
}

.divider-dot {
    margin: 0 15px;
    color: #00395d;
    font-size: 12px;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pillar-card {
    background: white;
    /* border-radius: 12px; */
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 57, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #00395d;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 57, 93, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 57, 93, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.card-icon i {
    font-size: 32px;
    color: #00395d;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 57, 93, 0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.card-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    pointer-events: none;
}

.card-content p {
    color: #a6a6a6;
    line-height: 1.6;
    margin-bottom: 25px;
    pointer-events: none;
    font-family: "Roboto Condensed", sans-serif;
}

.value-highlight {
    font-family: "Roboto Condensed", sans-serif;

}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #00395d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #002743;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .pillars-container {
        grid-template-columns: 1fr;
    }
}


.mv-section {
    background: #f8f9fa;
    position: relative;
}

/* Background Images with Overlay */
.mission-card {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.vision-card {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 57, 93, 0.3);
    transition: all 0.4s ease;
}

.mv-card:hover .card-bg-overlay {
    background: rgba(0, 57, 93, 0.5);
}

/* Card Styling */
.mv-card {
    border-radius: 0;
    /* Remove rounded corners for full-width effect */
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.mv-card .card-content {
    max-width: 90%;
    margin: 0 auto;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-card .card-icon {
    background-color: rgba(13, 110, 253, 0.15) !important;
}

.vision-card .card-icon {
    background-color: rgba(13, 202, 240, 0.15) !important;
}

/* Text Styling */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.mv-card h3 {
    color: white;
}

/* Divider Styling */
.divider {
    display: flex;
    align-items: center;
    max-width: 300px;
}

.divider .line {
    height: 1px;
    width: 40%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
}

.divider .line:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.divider .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white !important;
}

/* Pillars Styling */
.mv-pillars {
    margin-top: 1.5rem;
}

.pillar {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 17px;
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.mv-card:hover .card-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mv-card {
        min-height: 350px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-lg-6 {
        width: 100%;
    }

    .mv-card {
        min-height: 300px;
        border-radius: 0 !important;
    }

    .mission-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .mv-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }
}


.leadership-message {
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
}

.leader-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.leader-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 57, 93, 0.2) 0%, rgba(0, 57, 93, 0.5) 100%);
}

.message-card {
    position: relative;

    .text-primary {
        color: #004d7a !important;
    }
}

.corner-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 57, 93, 0.1);
    z-index: 1;
}

.corner-decoration.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.divider .line {
    height: 1px;
    width: 40%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(13, 110, 253, 0.4));
}

.divider .line:last-child {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.4), rgba(0, 0, 0, 0));
}

.divider .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.highlight-box {
    position: relative;
    background-color: rgba(0, 57, 93, 0.05) !important;
}

.message-content p {
    margin-bottom: 1.2rem;
    color: #495057;
}

.closing-message {
    border-top: 1px dashed rgba(0, 57, 93, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .leader-image-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .leader-image-container {
        min-height: 300px;
    }

    h2.display-5 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .message-card {
        padding: 1.5rem !important;
    }

    .corner-decoration {
        width: 40px;
        height: 40px;
    }
}


/* ===== SERVICE PAGE STRUCTURE ===== */
.service-hero {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e6f0f9 100%); */
    padding: 10rem 0 6rem;
}

.service-para {
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
}

.head-span {
    color: #00395d;
}

.service-badge {
    display: inline-block;
    background: rgba(0, 57, 93, 0.1);
    color: #00395d;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-map-container {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 57, 93, 0.1);
}

.service-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 57, 93, 0.2) 0%, rgba(0, 57, 93, 0) 100%);
}

.service-tabs {
    /* padding: 5rem 0; */
    /* background: #f8fafc; */
}

.service-nav .nav-link {
    font-size: 17px;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 50px;
    color: #495057;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: "Roboto Condensed", sans-serif;
}

.service-nav .nav-link.active {
    background: #00395d;
    color: white;
    border-color: #00395d;
    box-shadow: 0 5px 15px rgba(0, 57, 93, 0.2);
}

.service-nav .nav-link:not(.active):hover {
    border-color: #00395d;
    color: #00395d;
}

.tab-content {
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 57, 93, 0.08);
    border: 1px solid rgba(0, 57, 93, 0.08);
    padding: 2.5rem;
    margin-bottom: 30px;

    p {
        font-family: "Roboto Condensed", sans-serif;
    }
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    font-family: "Roboto Condensed", sans-serif;
}

.service-features i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #00395d;
    margin-top: 3px;
}

.service-stats {
    background: #00395d;
    color: white;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-map-container {
        min-height: 300px;
    }

    .tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-nav .nav-link {
        padding: 10px 15px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .service-hero,
    .service-tabs {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .service-badge {
        font-size: 12px;
    }

    .tab-content {
        padding: 1.25rem;
    }

    .service-features li {
        font-size: 15px;
    }
}

/* === Premium Header with BG Image === */
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(1, 39, 96, 0.9)),
        url('/assets/images/contact-us-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 180px 0 150px;
    color: white;
    position: relative;
    overflow: hidden;

    p {
        font-family: "Roboto Condensed", sans-serif;
        letter-spacing: -0.9px;
    }
}

.service-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 8px 20px !important;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* === Elegant Card Design === */
.contact-card {
    background: white;
    border: 0;
    /* border-radius: 0; */
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;

    a {
        .btn-main {
            margin-top: 10px;
            color: #003566;
            border-bottom-left-radius: 20px;
        }

        .btn-main:hover {
            color: #fff;
        }
    }

    p {

        font-family: "Roboto Condensed", sans-serif;
    }
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #003566;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #003566;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(15deg) scale(1.1);
}

/* === Sophisticated Form Section === */
.form-section {
    padding: 40px 0 0 0;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;

    .btn-main {
        color: #000;
    }
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0052a5, #002743);
}

.form-control {
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-bottom-color: #0d6efd;
    box-shadow: none;
}

.form-floating>label {
    padding-left: 0;
    color: #6c757d;
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus~label {
    color: #0d6efd;
    transform: translateY(-20px) scale(0.85);
}

/* === Interactive Map Section === */
.map-section {
    padding: 80px 0 0 0;
    background: white;
}

.map-container {
    height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    filter: grayscale(30%) contrast(110%);
    transition: all 0.6s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(100%);
}