/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff, #dedede);
    /* Light blue gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
    transition: transform 1s ease-out;
}

/* Container holding the logo */
.preloader-container {
    text-align: center;
}

/* Logo styling */
.preloader-container .logo {
    width: 120px;
    /* Adjust the size of your logo */
    height: auto;
    animation: tiltLogo 1.5s ease-out infinite;
    pointer-events: none;
}

/* 3D Tilt Effect */
@keyframes tiltLogo {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(45deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

/* Slide-out effect for preloader */
#preloader.slide-out {
    transform: translateY(-100%);
}

/* Hide Preloader Once Page is Loaded */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ----------------------------------------SCROLLBAR-------------------------------------- */
/* Scrollbar styling for WebKit browsers */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #f39c12;
    /* border-radius: 6px; */
    border: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #001f3f;
}

/* 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 */
}

.top-marquee {
    background: #f0f0f0;
    /* Light background color */
    color: #333;
    /* Dark text for contrast */
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    border-bottom: 1px solid #ddd;
    /* Optional border for separation */
    pointer-events: none;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee-scroll 30s linear infinite;
    /* Increased duration for smoothness */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.custom-header {
    background: linear-gradient(160deg, #dddddd 50%, #b7b7b7 50%);
    z-index: 9999;
    transition: all 0.3s ease;
}

.custom-header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #3c2c84 !important;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    margin-right: 20px;
    padding: 5px 3px;
}

.custom-header .nav-link:hover {
    color: #1a1a1a !important;
}

.custom-header .nav-link::after {
    content: '';
    position: absolute;
    border: 0;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #4b4b4b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-header .nav-link:hover::after {
    width: 100%;
}

.custom-header .nav-link.active {
    color: #1a1a1a !important;
}

.custom-header .nav-link.active::after {
    width: 100%;
}

/* Dropdown Styling */
.custom-header .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.custom-header .dropdown-item {
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    color: #3c2c84;
}

.custom-header .dropdown-item:hover {
    background-color: #c6c6c6;
    color: #1a1a1a;
}

.custom-header .dropdown-item.active,
.custom-header .dropdown-item:active {
    background-color: #c6c6c6 !important;
}

/* Hamburger Style */
.custom-header .hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.custom-header .hamburger span {
    display: block;
    height: 3px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.custom-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.custom-header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.custom-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.custom-header .mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-header .mobile-nav .nav-link,
.custom-header .mobile-nav .dropdown-item {
    padding: 10px 0;
    color: #3c2c84;
    font-size: 16px;
}

/* Toggle active menu */
.custom-header .mobile-nav.show {
    display: flex;
}

.custom-header.scrolled {
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(100, 100, 100, 0.1);
    animation: slideFix 0.9s ease forwards;
    position: fixed;
    top: 0;
    width: 100%;

    .logo {
        width: 90px;
    }
}

.custom-header.scrolled .nav-link {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideFix {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.custom-header .dropdown-icon {
    display: inline-block;
    margin-left: 2px;
    margin-bottom: 3px;
    transition: transform 0.8s ease;
    font-size: 12px;
    vertical-align: middle;
}

.custom-header .dropdown-icon.rotate {
    transform: rotate(540deg);
}


@media screen and (max-width: 480px) {
    .custom-header .container {
        padding: 0 40px;
    }

    .mobile-nav .dropdown .collapse {
        padding-left: 30px;
    }

}

.custom-footer {
    background: linear-gradient(135deg, #f7f7f7 50%, #e2e2e2 50%);
    color: #333;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.custom-footer .footer-logo {
    max-width: 160px;
}

.custom-footer .footer-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 270px;
    pointer-events: none;

}

.custom-footer .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
    border-bottom: 2px solid #888;
}

.custom-footer .footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.custom-footer .footer-links a {
    color: #333;
    text-decoration: none;
    position: relative;
    padding-left: 3px;
    transition: all 0.3s ease;
}

.custom-footer .footer-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background-color: #000;
    transition: width 0.3s ease;
}

.custom-footer .footer-links a:hover::before {
    width: 100%;
}

.custom-footer .footer-links a:hover {
    color: #000;
}

.custom-footer .footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.custom-footer .footer-contact li:hover {
    transform: translateX(5px);
}

.custom-footer .footer-contact i {
    margin-right: 10px;
    color: #555;
    font-size: 18px;
    transition: color 0.3s;
}

.custom-footer .footer-contact .contact-link {
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.custom-footer .footer-contact .contact-link:hover {
    color: #000;
    text-decoration: underline;
}

.custom-footer .footer-bottom {
    background: #d8d8d8;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.3px;
    color: #444;
}

/* Optional soft glow on hover */
.custom-footer .footer-links li:hover i,
.custom-footer .footer-contact li:hover i {
    color: #000;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


.freight-swiper-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 0;

    .swiper {
        height: 100%;
    }
}

.freight-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.freight-swiper .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    /* z-index: 1; */
}

.freight-swiper .slide-content {
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

.freight-swiper .slide-content h2 {
    font-size: 3.8rem;
    font-weight: 1000;
    margin-bottom: 1rem;
    color: #7b5fff;
}

.freight-swiper .slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #f48c1c;
    font-weight: 600;

}

.freight-swiper-section .slide-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 16px;
    /* border-radius: 50px; */
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #fff;
}

.freight-swiper-section .slide-btn span {
    position: relative;
    z-index: 2;
}

.freight-swiper-section .slide-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.freight-swiper-section .slide-btn:hover::before {
    left: 150%;
}

.freight-swiper-section .slide-btn:hover {
    /* background: #2c5364; */
    box-shadow: 0 0 15px rgba(44, 83, 100, 0.5);
}


/* Minimal Custom Swiper Buttons */
.freight-swiper-section .custom-swiper-button {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.freight-swiper-section .swiper-button-prev {
    left: 20px;
}

.freight-swiper-section .swiper-button-next {
    right: 20px;
}

.freight-swiper-section .swiper-button-next::after,
.freight-swiper-section .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.freight-swiper-section .custom-swiper-button:hover {
    transform: translateY(-50%) scale(1.1);
    border-color: #1a1a1a;
    background: #f48c1c;
    border: 2px solid #f48c1c;
}

.company-overview-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-overview-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.overview-text h2 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 1000;
    color: #3c2c84;
}

.overview-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #212121;
    margin-bottom: 20px;
}

.overview-image {
    position: relative;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    --_g: 10%/45% 45% no-repeat conic-gradient(#000 0 0);
    mask:
        left var(--_i, ) top var(--_g),
        bottom var(--_i, ) left var(--_g),
        top var(--_i, ) right var(--_g),
        right var(--_i, ) bottom var(--_g);
    filter: grayscale(.4);
    transition: .3s linear;
    pointer-events: none;
}

.overview-image:hover img {
    --_i: 10%;
    filter: grayscale(0);
}

@media screen and (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .overview-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .overview-text p {
        font-size: 0.95rem;
        text-align: justify;
    }

    .overview-image {
        max-width: 90%;
        margin: 0 auto;
    }
}

.capabilities-grid-section {
    padding: 0px 20px 50px;
}

.capabilities-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.capabilities-grid-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #001f3f;
}

.capabilities-grid-section .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.capabilities-grid-section .capability-card {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 350px;
}

.capabilities-grid-section .capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
    transition: transform 0.5s ease;
}

/* Assign background images */
.capabilities-grid-section .capability-card.sea::before {
    background-image: url('/assets/images/sea-swiper.png');
}

.capabilities-grid-section .capability-card.air::before {
    background-image: url('/assets/images/air-swiper.png');
}

.capabilities-grid-section .capability-card.warehousing::before {
    background-image: url('/assets/images/logi-swiper.png');
}

/* Content */
.capabilities-grid-section .capability-card .icon,
.capabilities-grid-section .capability-card h3,
.capabilities-grid-section .capability-card p {
    position: relative;
    z-index: 1;
    color: #ccc;
}

/* Card Hover Effect */
.capabilities-grid-section .capability-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Background Zoom Effect */
.capabilities-grid-section .capability-card:hover::before {
    transform: scale(1.2);
}

.capabilities-grid-section .offer-subtitle {
    font-size: 22px;
    text-align: center;
    margin: 12px auto 30px;
    max-width: 800px;
    font-weight: 600;
    position: relative;
    color: #222;
    padding-bottom: 15px;
    background: linear-gradient(90deg, #003948, #03181d, #006576);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseGlow 1.5s ease-in-out infinite alternate;
    /* width: 720px; */
}

/* Unique Pulse Glow Animation */
@keyframes pulseGlow {
    0% {
        letter-spacing: 0px;
        text-shadow: 0 0 5px rgba(0, 183, 255, 0.3);
    }

    100% {
        letter-spacing: 1px;
        text-shadow: 0 0 15px rgba(0, 183, 255, 0.6);
    }
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .capability-card {
        padding: 30px 20px;
    }

    .capability-card .icon {
        font-size: 36px;
    }

    .capability-card h3 {
        font-size: 20px;
    }

    .offer-subtitle {
        font-size: 16px;
        max-width: 300px;
    }

    .mid-layer {
        width: 80% !important;
    }

    .back-layer {
        width: 105% !important;
    }
}

.beyond-shipping-upgraded {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #ffffff;
}

.beyond-shipping-upgraded .background-layer {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, #f8fafc, #eceef1);
    transform: rotate(3deg);
    z-index: 1;
}

.beyond-shipping-upgraded .content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.beyond-shipping-upgraded .image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-right: 40px;
}

.beyond-shipping-upgraded .image-container {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.beyond-shipping-upgraded .main-image {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.beyond-shipping-upgraded .image-container:hover .main-image {
    transform: scale(1.08) rotate(2deg);
}

.beyond-shipping-upgraded .text-side {
    flex: 1;
    color: #1e293b;
}

.beyond-shipping-upgraded .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.beyond-shipping-upgraded .main-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
    position: relative;
}

.beyond-shipping-upgraded .highlight {
    background: linear-gradient(90deg, #3c2c84, #45368c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.beyond-shipping-upgraded .quote {
    font-style: italic;
    font-size: 20px;
    color: #334155;
    margin-top: 20px;
    border-left: 4px solid #3b82f6;
    padding-left: 15px;
    background-color: white;
}

/* QUOTE MARQUEE STYLING */
.quote-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: white;
    border-left: 4px solid #3c2c84;
    padding: 10px 0;
    pointer-events: none;
}

.quote-text {
    font-style: italic;
    font-size: 18px;
    color: #334155;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marqueeMove 20s linear infinite;
}

/* Continuous Moving Keyframes */
@keyframes marqueeMove {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* Responsive */
@media screen and (max-width: 768px) {
    .beyond-shipping-upgraded .content-wrapper {
        flex-direction: column;
        /* text-align: center; */
        align-items: start;
    }

    .beyond-shipping-upgraded .image-side {
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .beyond-shipping-upgraded .text-side {
        width: -webkit-fill-available;
        padding: 0 10px;
    }

    .beyond-shipping-upgraded .section-title {
        font-size: 28px;
    }

    .beyond-shipping-upgraded .main-description {
        font-size: 16px;
    }

    .beyond-shipping-upgraded .quote {
        font-size: 18px;
    }
}

.quote-cta-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    background: url('/assets/images/contact.png') no-repeat center center / cover;
    background-attachment: fixed;
}

.quote-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 28, 45, 0.5);
    /* nice dark overlay with opacity */
    z-index: 1;
}

.quote-cta-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    /* content above overlay */
}


.quote-cta-layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 1;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.back-layer {
    background: linear-gradient(135deg, #d1ffe9, #ffffff);
    transform: translateX(-50%) rotate(-3deg);
    width: 120%;
}

.mid-layer {
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    transform: translateX(-50%) rotate(3deg);
    width: 125%;
}

.quote-cta-content {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.quote-cta-content.active {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.quote-cta-title {
    font-size: 40px;
    font-weight: 700;
    color: #203a43;
    margin-bottom: 20px;
}

.quote-cta-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quote-cta-buttons {
    display: flex;
    justify-content: center;
}

.quote-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 16px;
    /* border-radius: 50px; */
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    background: #203a43;
    transition: all 0.3s ease;
}

.quote-btn span {
    position: relative;
    z-index: 2;
}

.quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.quote-btn:hover::before {
    left: 150%;
}

.quote-btn:hover {
    background: #2c5364;
    box-shadow: 0 0 15px rgba(44, 83, 100, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-cta-title {
        font-size: 32px;
    }

    .quote-cta-text {
        font-size: 16px;
    }

    .quote-cta-content {
        padding: 40px 20px;
    }
}

/* Modern Delivery Process Section */
.delivery-process {
    background: #f8fafc;
    padding: 60px 0 120px;
    position: relative;
    overflow: hidden;
}

.delivery-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(58, 79, 126, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.delivery-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.delivery-process .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.delivery-process .section-subtitle {
    display: block;
    font-size: 16px;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.delivery-process .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2b3c46;
    position: relative;
}

.delivery-process .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.delivery-process .divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(58, 79, 126, 0.3), rgba(243, 156, 18, 0.6), rgba(58, 79, 126, 0.3));
}

.delivery-process .divider-icon {
    margin: 0 15px;
    color: #f39c12;
    font-size: 20px;
}

/* Process Track */
.delivery-process .process-track {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

.delivery-process .process-step {
    position: relative;
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delivery-process .step-connector {
    position: absolute;
    top: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(58, 79, 126, 0.3), rgba(243, 156, 18, 0.6));
    z-index: 1;
}

.delivery-process .step-connector.left {
    left: 0;
    right: 50%;
}

.delivery-process .step-connector.right {
    left: 50%;
    right: 0;
}

.delivery-process .step-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #3a4f7e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(58, 79, 126, 0.2);
    transition: all 0.3s ease;
}

.delivery-process .node-icon {
    width: 24px;
    height: 24px;
    fill: #3a4f7e;
    transition: all 0.3s ease;
}

.delivery-process .node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.delivery-process .step-content {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    position: relative;
    cursor: context-menu;
}

.delivery-process .step-content h3 {
    font-size: 20px;
    color: #2b3c46;
    margin-bottom: 10px;
    font-weight: 600;
}

.delivery-process .step-description {
    color: #6c7c88;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.delivery-process .step-details {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.delivery-process .step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.delivery-process .step-details ul li {
    padding: 8px 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.delivery-process .step-details ul li span {
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

/* Hover Effects */
.delivery-process .process-step:hover .step-node {
    background: #3a4f7e;
    border-color: #3a4f7e;
    transform: scale(1.1);
}

.delivery-process .process-step:hover .node-icon {
    fill: white;
}

.delivery-process .process-step:hover .node-pulse {
    opacity: 1;
    transform: scale(1.3);
}

.delivery-process .process-step:hover .step-description {
    color: #3a4f7e;
    font-weight: 500;
}

.delivery-process .process-step:hover .step-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .delivery-process .process-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .delivery-process .process-step {
        width: 45%;
        margin-bottom: 50px;
    }

    .delivery-process .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .delivery-process .section-title {
        font-size: 28px;
    }

    .delivery-process .process-step {
        width: 100%;
        max-width: 350px;
    }
}

/* About Company Section */
.about-company {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.about-company::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(58, 79, 126, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2b3c46;
    margin-bottom: 20px;
    position: relative;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(58, 79, 126, 0.3), rgba(243, 156, 18, 0.6), rgba(58, 79, 126, 0.3));
}

.divider-icon {
    margin: 0 15px;
    color: #f39c12;
    font-size: 20px;
}

/* Content Sections */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 28px;
    color: #2b3c46;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.about-mission {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 79, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon svg {
    width: 30px;
    height: 30px;
    fill: #3a4f7e;
}

.mission-card h4 {
    font-size: 20px;
    color: #2b3c46;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbe8ff;
}

/* Details Sections */
.details-section {
    margin-bottom: 60px;
}

.details-section h3 {
    font-size: 26px;
    color: #2b3c46;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.details-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3a4f7e, #f39c12);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 15px;
}

.capability-item h5 {
    font-size: 18px;
    color: #2b3c46;
    margin-bottom: 15px;
}

.capability-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c7c88;
}

/* Advantages Section */
.advantages {
    margin-top: 40px;
}

.advantage-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-number {
    font-size: 24px;
    font-weight: 700;
    color: rgba(58, 79, 126, 0.2);
    min-width: 50px;
}

.advantage-content h5 {
    font-size: 18px;
    color: #2b3c46;
    margin-bottom: 10px;
}

.advantage-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c7c88;
}

/* Values Section */
.about-values {
    margin-top: 60px;
}

.about-values h3 {
    font-size: 26px;
    color: #2b3c46;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-values h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3a4f7e, #f39c12);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #3a4f7e;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card h5 {
    font-size: 18px;
    color: #2b3c46;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.value-card h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 3px;
    background: #f39c12;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c7c88;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
    }

    .intro-text,
    .intro-image {
        flex: none;
        width: 100%;
    }

    .about-mission {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .details-section h3,
    .about-values h3 {
        font-size: 22px;
    }

    .advantage-item {
        flex-direction: column;
        gap: 15px;
    }
}


/* ------------ABOUT US-------------------------- */
:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Company Intro Section */
.company-overview {
    padding: 5rem 0 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.overview-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3c2c84, #f48c1c);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.overview-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overview-image {
    padding-top: 50px;
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-text {
    flex: 1;
}

.text-content {
    background: #ffffff;
    padding: .5rem;
    border-radius: 8px;
}

.lead-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.overview-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #252c37;
    margin-bottom: 1.5rem;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

/* Hover Effects */
.overview-image:hover .featured-image {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }

    .overview-image {
        min-height: 400px;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .company-overview {
        padding: 3rem 0;
    }

    .text-content {
        padding: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .overview-text p {
        font-size: 1rem;
    }
}

/* Mission Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: url('/assets/images/mission-vision-bg.png') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    color: white;
}

.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3) 0%, rgba(46, 134, 193, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all 0.5s ease;
}

.mission-card:hover .mission-icon {
    transform: rotate(15deg) scale(1.2);
    color: white;
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 0;
    background-color: white;
}

.capability-item {
    background: white;
    border-radius: 0px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 390px;
}

.capability-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255, 166, 71) 0%, rgba(154, 80, 0, 0.6) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.capability-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.capability-item:hover::before {
    opacity: 1;
}

.capability-item:hover .capability-icon {
    background: white;
    color: var(--secondary);
}

.capability-item:hover h4,
.capability-item:hover p {
    color: white;
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

/* Values Section */
.company-values {
    padding: 6rem 0;
    background-color: var(--light);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(44, 62, 80, 0.1);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.value-card:hover .value-number {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-header {
        padding: 6rem 0 4rem;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .stat-item::after {
        display: none;
    }

    .company-values {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 5rem 0 3rem;
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    }

    .title-highlight::after {
        height: 10px;
        bottom: 3px;
    }

    .company-values {
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }
}

/* ------------------------------------------------------CONTACT US---------------------------------------------------------- */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.contact-header h2 {
    font-size: 2.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header .subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.wave-divider {
    margin-top: 2rem;
    height: 60px;
    overflow: hidden;
}

.wave-divider svg {
    height: 100%;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1967d2, #00c6fb);
}

.contact-card h3 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 2rem;
    position: relative;
}

.contact-form input:invalid,
.contact-form textarea:invalid {
    border-color: red;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.floating input,
.form-group.floating textarea {
    width: 100%;
    padding: 1rem 0.75rem 0.5rem;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group.floating textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group.floating label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    color: #718096;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
    outline: none;
    /* border-color: #1967d2;s */
}

.form-group.floating input:focus+label,
.form-group.floating textarea:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0;
    font-size: 0.75rem;
    color: #1967d2;
}

.contact-grid .highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1967d2;
    transition: width 0.3s ease;
}

.form-group.floating input:focus~.highlight,
.form-group.floating textarea:focus~.highlight {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #1967d2, #00c6fb);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    overflow: hidden;
}

.submit-btn svg {
    margin-left: 0.5rem;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    box-shadow: 0 5px 15px rgba(25, 103, 210, 0.3);
    transform: translateY(-2px);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(25, 103, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.info-content a {
    color: #1967d2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #00c6fb;
    text-decoration: underline;
}

.operating-hours {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.operating-hours h4 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.operating-hours p {
    color: #4a5568;
    line-height: 1.6;
}

/* Decorative elements */
.contact-globe {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231967d2" opacity="0.05"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.contact-ship {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231967d2" opacity="0.05"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header .subtitle {
        font-size: 1rem;
    }

    .contact-card,
    .info-card {
        padding: 1.5rem;
        width: 90%;
    }

    .info-section {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-globe,
    .contact-ship {
        display: none;
    }
}


/* Modal content enhancements */
.modal {
    background-color: rgba(138, 138, 138, 0.6);
    z-index: 11111;
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    background: #fff;
    animation: fadeInScale 0.4s ease-in-out;
}

.modal-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
}

.modal-body p {
    font-size: 1rem;
    color: #4a5568;
}

.modal-body ul {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.modal-body li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.modal-body a {
    color: #1967d2;
    text-decoration: none;
    font-weight: 500;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* Button styling inside modal */
.modal-footer .btn-primary {
    background: linear-gradient(to right, #1967d2, #00c6fb);
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(to right, #154c9e, #00a1cc);
}

/* Smooth fade and scale animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Common Service Hero Section */
.service-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
}

/* Common Overlay */
.service-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 34, 69, 0.6), rgba(0, 0, 0, 0.8));
}

/* Content inside Hero */
.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    animation: waveFloat 6s ease-in-out infinite;
    pointer-events: none;
}

/* Slogan/Heading */
.service-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgb(255, 166, 71, 0.5), 0 0 30px rgba(0, 183, 255, 0.1);
    line-height: 1.4;
    max-width: 80%;
    margin: 0 auto;
    animation: sloganBounce 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes waveFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Bounce Animation */
@keyframes sloganBounce {
    0% {
        transform: scale(1) translateY(0);
    }

    30% {
        transform: scale(1.1) translateY(-10px);
    }

    60% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}


.sea-freight-section {
    background: linear-gradient(to right, #e6f0ff, #f8fbff);
    padding: 100px 0;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #003f7d;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: #1a73e8;
    max-width: 600px;
    margin: 10px auto 0;
    font-weight: 500;
}

.service-card {
    --primary: #3c2c84;
    --secondary: #f48c1c;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Unique Corner Highlight */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary) transparent transparent;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Simple but effective hover */
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.service-card:hover::before {
    border-width: 0 60px 60px 0;
    opacity: 1;
}

/* Icon with subtle twist */
.service-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: var(--secondary);
    color: white;
    /* transform: rotate(-5deg); */
}

/* Typography */
.service-card h3 {
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    pointer-events: none;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 40px;
    background: var(--secondary);
}

.service-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    pointer-events: none;
}

/* Add a floating dot animation */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #f48c1c;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateY(-10px) translateX(-10px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .service-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-card .icon {
        margin-bottom: 15px;
    }
}

.service-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f5f9ff, #ffffff);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

.service-section:nth-of-type(even) {
    background: linear-gradient(to right, #ffffff, #f9f9ff);
}

.service-section .overview-image {
    width: 600px;
    padding-top: 20px;
    min-height: 450px;
}
