:root {
    --accent: #0b1220;
    --accent-2: #0c6cf6;
    --accent-3: #4F46E5;
    --muted: #777;
    --white: #fff;
    --topbar-height: 48px;
    /* increased height */
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* Fallback chain */
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: #545454;
    /* For body text */
    color: #111;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, Helvetica, sans-serif !important;
}

.container,
.row,
section {
    max-width: 100%;
    overflow: hidden;
    /* temporary safeguard */
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #0b1020;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #0b1c2d;
    color: #fff;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    min-width: 250px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    animation: slideIn .4s ease, fadeOut .4s ease 3s forwards;
}

.toast.success {
    border-left: 4px solid #2ecc71;
}

.toast.error {
    border-left: 4px solid #e74c3c;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Disabled state styling for all buttons and submit inputs */
button:disabled,
input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Spinner for any disabled button/input */
button:disabled::after,
input[type="submit"]:disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    /* position spinner to the right of text */
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.navbar * {
    overflow: visible !important;
    /* optional to override nested overflow:hidden */
}

.navbar a {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #52465e !important;
    line-height: 1 !important;
}

.breadcrumb-bar {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.breadcrumb-content {
    background: #0c6cf6;
    /* Your blue theme */
    color: #ffffff;
    padding: 14px 60px 14px 50px;
    /* Extra right padding to accommodate slant */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    /* Right-leaning parallelogram:
       - Left side slants right (8% 0% to 0% 100%)
       - Right side slants right (100% 0% to 92% 100%)
       Both cuts face the same direction → overall leaning right
    */
    box-shadow: 0 4px 15px rgba(12, 108, 246, 0.3);
}

.dot {
    font-size: 28px;
    margin: 0 18px;
    pointer-events: none;
    font-weight: bold;
    /* Makes dots bolder and more visible */
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 12px;
    opacity: 0.2;
    /* Increased from 0.2 so it's visible but subtle */
    font-weight: bold;
}

.page-title {
    font-size: 65px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 80px 0 0 0;
    letter-spacing: 0px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Responsive — shape and visibility stay perfect */
@media (max-width: 768px) {
    .breadcrumb-bar {
        top: 40px;
    }

    .breadcrumb-content {
        font-size: 16px;
        padding: 12px 50px 12px 40px;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    }

    .dot {
        font-size: 24px;
        margin: 0 14px;
    }

    .page-title {
        font-size: 48px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-content {
        font-size: 14px;
        padding: 10px 40px 10px 35px;
        clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
    }

    .dot {
        font-size: 22px;
        margin: 0 12px;
    }

    .page-title {
        font-size: 40px;
    }
}

/* Modal Overlay */
/* Modal Overlay */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* Show with JS: display: flex */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Content */
.quote-modal-content {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    border-radius: 4px;
}

/* Header - clean centered inside */
.quote-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-modal-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #333333;
}

.header-underline {
    height: 4px;
    width: 80px;
    background: #0c6cf6;
    margin: 12px auto 0;
}

/* Form */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.input-group {
    flex: 1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #0c6cf6;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.12);
}

.input-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit Button */
.quote-submit {
    background: #0c6cf6;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    padding: 16px !important;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: center;
    min-width: 220px;
}

/* .quote-submit:hover {
    background: #e64a19;
    transform: translateY(-2px);
} */

/* Responsive */
@media (max-width: 640px) {
    .quote-modal-content {
        padding: 35px 25px;
        max-width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .quote-modal-header h2 {
        font-size: 24px;
    }

    .quote-submit {
        width: 100%;
        min-width: auto;
    }
}

.quote-submit:disabled,
.quote-submit.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn:disabled,
.submit-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.main-title {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.cursive-part {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    /* Match the title size */
    color: #0c6cf6;
    /* Or #ff0000 for the red highlight */
}

.side-divider {
    padding: 0 1.25rem;
    /* space between content & borders */
    border-left: 1px solid #e5e7eb;
    /* light gray */
    border-right: 1px solid #e5e7eb;
}

@media (max-width: 690px) {
    .main-title {
        font-size: 50px !important;
    }
}


/* Top bar */
.top-bar {
    height: var(--topbar-height);
    background: var(--accent-3);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: transform 280ms ease, opacity 280ms ease;
    z-index: 120;
    /* above page content but below fixed nav when needed */
}

.top-bar .top-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #cfe0ff;
    text-decoration: none;
    margin-left: 12px;
    font-weight: 500;
}

/* hide top bar when .hidden added */
.top-bar.hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

/* initial fixed navbar hidden above screen */
.navbar.fixed-slide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    animation: navSlideDown 520ms ease forwards;
}

/* keyframes for smooth slide-down + fade-in */
@keyframes navSlideDown {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.75;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-bottom-shadow {
    position: relative;
    z-index: 1000;
}

/* bottom-only shadow */
.nav-bottom-shadow::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;

    /* subtle depth */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

/* Logo inside navbar */
.navbar-brand .navbar-logo {
    height: 60px;
    /* default desktop height */
    width: auto;
    /* maintain aspect ratio */
    object-fit: contain;
    /* ensures it scales nicely */
    display: block;
    transition: all 0.3s ease;
}

/* Slightly smaller logo on smaller screens */
@media (max-width: 768px) {
    .navbar-brand .navbar-logo {
        height: 40px;
        /* scale down on tablets/mobiles */
    }
}

/* Optional hover effect */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    /* subtle zoom on hover */
}

/* NAVBAR UI STYLING */
/* NORMAL */
/* Top-level nav items spacing */
.navbar-nav .nav-item {
    margin-left: 30px;
    /* adjust as needed */
}

/* Remove left margin from the first item so it doesn't push off-screen */
.navbar-nav .nav-item:first-child {
    margin-left: 0;
}

@media (max-width: 767px) {
    .navbar-nav .nav-item {
        margin-left: 0;
        /* stack vertically, no horizontal spacing */
        margin-bottom: 12px;
        /* vertical spacing between links */
    }
}

.navbar-nav .nav-link {
    color: #1a1a1a;
}

/* HOVER */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #0d6efd !important;
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    position: relative;
    padding-left: 36px;
    /* reserves space for arrow */
}

/* Arrow */
.navbar-nav .nav-link::before {
    content: "→";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translate(-6px, -50%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #0d6efd;
    font-weight: 600;
}

/* Hover arrow */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: translate(0, -50%);
}

/* Dropdown base */
.dropdown-menu .dropdown-item {
    position: relative;
    padding-left: 40px;
    color: #1a1a1a;
}

/* Hover color */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.08);
}

/* Dropdown arrow */
.dropdown-menu .dropdown-item::before {
    content: "→";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translate(-6px, -50%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #0d6efd;
}

/* Hover arrow */
.dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
}

/* Remove default caret */
.navbar .dropdown-toggle::after {
    display: none;
}

/* HERO */
.hero {
    min-height: 90vh;
    background-image: url('../assets/images/hero.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 70%;
    padding-top: 140px;
    padding-bottom: 120px;
    position: relative;
}

/* ensures hero content is truly centered vertically */
.hero>.container {
    min-height: calc(90vh - 300px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.85));
}

/* Container for input + button */
/* Container: input + button always on same line */
.tracking-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* space between input & button */
    max-width: 900px;
    /* matches hero width */
    margin: 0 auto;
    flex-wrap: wrap;
    /* never wrap */
}

/* Input: grow to fill remaining space next to button */
.tracking-input {
    flex: 1 1 250px;
    /* grow/shrink with min width */
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Button: fixed width */
.btn-animated {
    /* flex: 0 0 130px; */
    /* fixed width, does not shrink */
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    border: none;
    background: #0c6cf6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.track-btn {
    flex: 0 0 130px;
}

/* Top-to-bottom fill animation */
.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #0f1724;
    z-index: 0;
    transition: height 0.35s ease;
}

.btn-animated:hover::before {
    height: 100%;
}

.btn-animated span {
    position: relative;
    z-index: 1;
}

.btn-animated:hover span {
    color: #fff;
}

/* Optional: make input shrink nicely on very small screens */
@media (max-width: 480px) {
    .tracking-input {
        min-width: 140px;
        /* input shrinks to accommodate button */
    }
}

/* Services overlap section */
.services-overlap-section {
    margin-top: -60px;
    /* pulls services upward over hero border */
    z-index: 20;
}

/* Services card wrapper */
.services-card-wrapper {
    padding: 0;
}

/* Prevent full-width stretch on small screens */
.services-overlap-section .container {
    max-width: 1140px;
}

.services-wrapper {
    bottom: -55px;
    width: 100%;
    max-width: 1140px;
}

/* Service cards */
.service-card {
    height: 100%;
    background: #f8f9fa;
    /* border-radius: 12px; */
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: #0b1220;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;

    transition: all 0.25s ease;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #0c6cf6;
    transition: color 0.35s ease;
}

.service-card span {
    color: var(--accent-3);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-3);
    transform: scale(0.3);
    opacity: 0;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.75s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.service-card:hover {
    color: #fff;
}

.service-card:hover span {
    color: #fff;
}

.service-card svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

/* Mobile behavior */
@media (max-width: 768px) {
    .services-wrapper {
        position: relative;
        bottom: auto;
        margin-top: -40px;
    }

    .service-card {
        padding: 22px 16px;
    }

    .services-overlap-section {
        margin-top: -60px;
    }

    .services-card-wrapper {
        padding: 16px;
    }
}

/* SECTION WRAPPER */
.about-section {
    padding: 120px 0;
    background: #ffffff;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 14px;
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12); */
}

/* TEXT */
.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0c6cf6;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #0b1220;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.75;
    color: #5f6c7b;
    margin-bottom: 28px;
}

/* FEATURES */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0b1220;
}

.feature-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(90deg, #0c6cf6, #00c6ff);
    border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 30px;
    }
}

/* LOGISTICS SECTION */
/* SECTION */
.logistics-services-section {
    padding: 120px 0;
    background: #f9fbff;
}

/* HEADER */
.logistics-section-header {
    max-width: 680px;
    margin: 0 auto;
}

/* CARD */
.logistics-service-card {
    background: #ffffff;
    padding: 42px 30px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: all 350ms ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.logistics-service-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.logistics-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c6cf6;
}

.logistics-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0b1220;
}

.logistics-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6c7b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .logistics-services-section {
        padding: 90px 0;
    }
}

.r2s-cta-section {
    position: relative;
    padding: 120px 0;
    background: url("assets/images/cta-bg.jpg") center / cover no-repeat;
    overflow: hidden;
}

.r2s-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 36, 0.9),
            rgba(15, 23, 36, 0.9));
}

.r2s-cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    color: #ffffff;
}

.r2s-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.r2s-cta-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
}

.r2s-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #0c6cf6, #00c6ff);
    text-decoration: none;
    transition: all 300ms ease;
}

.r2s-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 198, 255, 0.35);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .r2s-cta-section {
        padding: 90px 0;
    }

    .r2s-cta-content h2 {
        font-size: 32px;
    }
}

.r2s-process-section {
    padding: 120px 0;
    background: #ffffff;
}

.r2s-process-header {
    max-width: 700px;
    margin: 0 auto;
}

/* PROCESS CARD */
.r2s-process-card {
    background: #f9fbff;
    padding: 40px 28px;
    border-radius: 14px;
    height: 100%;
    text-align: center;
    transition: all 300ms ease;
}

.r2s-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* STEP NUMBER */
.process-step {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: #0c6cf6;
    margin-bottom: 16px;
}

.r2s-process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1220;
}

.r2s-process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6c7b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .r2s-process-section {
        padding: 90px 0;
    }
}

.gl-testimonials {
    position: relative;
    background: url("/assets/images/testimonial.jpg") center / cover no-repeat fixed;
    padding: 100px 0;
    color: #fff;
}

.gl-testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.gl-testimonials-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 60px;
}

.gl-carousel {
    position: relative;
    min-height: 500px;
    /* ensures fade doesn't collapse */
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
}

.gl-testimonial-item {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 20px;
    /* spacing inside the overlay */
    background: rgba(0, 0, 0, 0.6);
    /* overlay directly on slide */
    border-radius: 10px;
}

.gl-testimonial-service {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    color: #f1c40f;
    margin-bottom: 10px;
}

.gl-testimonial-stars {
    font-size: 20px;
    color: #f1c40f;
    margin-bottom: 20px;
}

.gl-testimonial-quote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 35px;
}

.gl-testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gl-testimonial-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1c40f;
}

.gl-testimonial-profile h6 {
    margin: 0;
    font-weight: 600;
}

.gl-testimonial-profile span {
    font-size: 14px;
    color: #ccc;
}

/* Bootstrap arrows override for style */
.carousel-control-prev,
.carousel-control-next {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    top: auto;
    /* remove vertical centering */
    bottom: 20px;
    /* distance from bottom */
    transform: none;
    /* remove translateY */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 30px;
    /* distance from left edge */
}

.carousel-control-next {
    right: 30px;
    /* distance from right edge */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #f1c40f;
    color: #000;
}

/* GL SPONSORS */
.gl-sponsors {
    padding: 60px 0;
    background: #f8fafc;
    /* light neutral background */
}

.gl-sponsors-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* sponsor logos */
.gl-sponsors-inner img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* hover polish */
.gl-sponsors-inner img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (min-width: 992px) {
    .gl-sponsors-inner {
        gap: 160px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gl-sponsors-inner {
        justify-content: center;
        gap: 28px;
    }

    .gl-sponsors-inner img {
        max-height: 50px;
    }
}


/* FAQ STYLING */
.faq-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.bell-icon {
    fill: #e64a19;
    /* Deep orange to match your #0c6cf6 theme */
}

.faq-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.faq-accordion .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}

.faq-accordion .faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.toggle-icon {
    font-size: 32px;
    font-weight: 300;
    color: #bb86fc;
    /* Purple to match the screenshot */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(187, 134, 252, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    color: #bb86fc;
    background: rgba(187, 134, 252, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 0;
}

.faq-answer.show {
    max-height: 300px;
    /* Adjust if longer answers needed */
    padding: 0 0 20px 0;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Hover effect */
.faq-question:hover .toggle-icon {
    background: rgba(187, 134, 252, 0.15);
}

/* contact styling */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
    /* Light background like screenshot */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.header-underline {
    height: 4px;
    width: 80px;
    background: #0c6cf6;
    margin: 0 auto 40px;
}

.contact-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto 80px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    flex: 1;
    text-align: left;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #0c6cf6;
}

.input-group.full-width {
    margin-bottom: 0;
}

.input-group textarea {
    resize: vertical;
    min-height: 160px;
}

/* Contact Info - flexed row */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 300px;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.info-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-form .submit-btn {
    background-color: #0c6cf6;
    outline: none;
    border: none;
    padding: 14px;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .info-item {
        max-width: 400px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .contact-header h2 {
        font-size: 30px;
    }

    .contact-description {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* SERVICES PAGE STYLING */
/* SERVICES PAGE STYLING - CONFLICT-SAFE PREFIXED CLASSES */
.gl-service-detail-layout {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gl-service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.gl-service-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.gl-service-sidebar-title {
    background: #0c6cf6;
    color: #ffffff;
    padding: 18px 24px;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.gl-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    background: #ffffff;
    border: 1px solid #eee;
    border-top: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gl-service-list li {
    border-bottom: 1px solid #eee;
}

.gl-service-list li:last-child {
    border-bottom: none;
}

.gl-service-list li a {
    display: block;
    padding: 18px 24px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

/* Hover effect */
.gl-service-list li a:hover {
    background: #f0f7ff;
    color: #0c6cf6;
    padding-left: 28px;
}

.gl-service-list li a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #0c6cf6;
}

/* Active state */
.gl-service-list li.active a {
    color: #0c6cf6;
    font-weight: 600;
    background: #eef4ff;
    padding-left: 29px;
}

.gl-service-list li.active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #0c6cf6;
}

/* Support box */
.gl-service-support-box {
    background: linear-gradient(rgba(12, 108, 246, 0.85), rgba(12, 108, 246, 0.85)),
        url('https://i.postimg.cc/sDXzxfft/sidebar-support.jpg') center/cover no-repeat;
    /* Overlay: strong blue tint matching #0c6cf6 for contrast */
    /* Background image: subtle global logistics theme */
    color: #ffffff;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(12, 108, 246, 0.35);
    position: relative;
    /* Ensures content stays on top */
}

.gl-service-support-box h3 {
    font-size: 26px;
    margin: 0 0 12px;
}

.gl-service-support-box p {
    font-size: 16px;
    margin: 0 0 24px;
    opacity: 0.9;
}

.gl-service-support-btn {
    display: inline-block;
    background: #ffffff;
    color: #0c6cf6;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.gl-service-support-btn:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}

.gl-service-main-content {
    flex: 1;
    min-width: 0;
}

.gl-service-image {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gl-service-image img {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gl-service-image img:hover {
    transform: scale(1.03);
}

.gl-service-description {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    color: #444;
}

.gl-service-description h1 {
    font-size: 38px;
    color: #0c6cf6;
    margin: 0 0 24px;
}

.gl-service-description h2 {
    font-size: 28px;
    color: #333;
    margin: 40px 0 16px;
}

.gl-service-description h4 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 80px 0 0 0;
    letter-spacing: 0px;
}

.gl-service-description h6 {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0c6cf6;
    margin-bottom: 12px;
}

.gl-service-description ul {
    padding-left: 24px;
}

.gl-service-description ul li {
    margin-bottom: 12px;
    font-size: 17px;
}

.gl-service-description a {
    color: #0c6cf6;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .gl-service-container {
        flex-direction: column;
    }

    .gl-service-sidebar {
        flex: none;
        max-width: 100%;
    }

    .gl-service-image img {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .gl-service-description {
        padding: 30px 20px;
    }

    .gl-service-description h1 {
        font-size: 32px;
    }

    .gl-service-image img {
        min-height: 300px;
    }

    .gl-service-sidebar-title,
    .gl-service-support-box {
        padding: 20px;
    }
}

/* FOOTER */
/* FOOTER: wrapper + background */
.gl-footer {
    position: relative;
    overflow: visible;
    color: #e8eef8;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* background image */
.gl-footer-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/footer_bg.jpg');
    /* replace */
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

/* overlay so text is readable */
.gl-footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 12, 0.2), rgba(3, 6, 12, 0.4));
    z-index: 1;
}

/* content */
.gl-footer-inner {
    position: relative;
    z-index: 2;
    padding: 72px 0;
}

/* logo */
.gl-footer-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 14px;
    border-radius: 4px;
}

/* about text */
.gl-footer-about {
    color: rgba(232, 238, 248, 0.9);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* socials */
.gl-footer-socials {
    display: flex;
    gap: 10px;
}

.gl-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(232, 238, 248, 0.16);
    color: rgba(232, 238, 248, 0.92);
    background: transparent;
    transition: all 280ms ease;
    text-decoration: none;
}

.gl-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gl-social-bar svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* hover animation (color fill + slight scale) */
.gl-social:hover {
    transform: scale(1.06);
    color: #0c6cf6;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(12, 108, 246, 0.14);
}

/* footer headings */
.gl-footer-heading {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* lists */
.gl-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gl-footer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* arrow icon */
.gl-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: rgba(232, 238, 248, 0.8);
    flex-shrink: 0;
}

/* links */
.gl-footer-list a {
    color: rgba(232, 238, 248, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.gl-footer-list a:hover {
    color: #0c6cf6;
}

/* info texts */
.gl-info-item {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(232, 238, 248, 0.95);
}

/* bottom bar */
.gl-footer-bottom {
    background: #000;
    padding: 14px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.gl-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.gl-bottom-logos img {
    height: 28px;
    margin-left: 18px;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: filter .25s ease, opacity .25s ease;
}

.gl-bottom-logos img:hover {
    filter: none;
    opacity: 1;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .gl-footer-inner {
        padding: 48px 0;
    }

    .gl-footer-logo {
        max-width: 140px;
    }

    .gl-footer-about {
        font-size: 13px;
    }

    .gl-footer-socials {
        gap: 8px;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .gl-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gl-bottom-logos {
        display: flex;
        justify-content: center;
    }

    .gl-bottom-logos img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 575px) {
    .gl-footer-inner {
        padding: 36px 0;
    }

    .gl-footer-logo {
        max-width: 125px;
    }

    .gl-social {
        width: 40px;
        height: 40px;
    }

    .gl-bottom-logos img {
        height: 22px;
        margin-left: 10px;
    }
}