:root {
    --primary-color: #3698d2;
    --secondary-color: #19799f;
    --dark-color: #011a23;
    --dark-light: #575a7b;
}

html,
body {
    overflow-x: hidden;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    background-color: #f6f8fc !important;
}

.container {
    margin-top: 20px;
}

.font-primary {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-dark {
    color: #141b34 !important;
}

.text-dark-light {
    color: var(--dark-light) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navbar */
.custom-navbar {
    background: transparent !important;
    box-shadow: none;
    border-bottom: 1.5px solid rgba(54, 152, 210, 0.15);
    z-index: 10;
    transition: background 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.custom-navbar.scrolled {
    background: var(--dark-color) !important;
    opacity: 0.95;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199.98px) {

    /* Ensure navbar and collapse menu are above everything when open */
    .custom-navbar {
        z-index: 1050 !important;
        transition: background-color 0.2s ease !important;
    }

    /* Background visible when menu is opening or open */
    .custom-navbar.menu-opening,
    .custom-navbar.menu-open,
    .custom-navbar:has(.collapse.show) {
        background-color: var(--dark-color) !important;
        transition: background-color 0.2s ease !important;
    }

    /* Keep background visible during closing - controlled by JavaScript */
    .custom-navbar.menu-closing {
        background-color: var(--dark-color) !important;
        transition: none !important;
        /* No transition while closing - keep it solid */
    }

    /* When menu-closing is removed, fade out the background */
    .custom-navbar:not(.menu-closing):not(.menu-open):not(.menu-opening):not(:has(.collapse.show)) {
        transition: background-color 0.25s ease !important;
    }

    .navbar-collapse.show {
        z-index: 1051 !important;
        position: relative;
    }

    /* Hide menu items initially - they will only appear with animation */
    .navbar-collapse .navbar-nav .nav-item {
        opacity: 0;
        transform: translateY(-10px);
    }

    /* Animate menu items to appear after background */
    .navbar-collapse.show .navbar-nav .nav-item {
        animation: fadeInNavItem 0.3s ease 0.15s forwards;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        animation-delay: 0.15s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.18s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.21s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.24s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.27s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) {
        animation-delay: 0.30s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(7) {
        animation-delay: 0.33s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(8) {
        animation-delay: 0.36s;
    }
}

@keyframes fadeInNavItem {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu close button */
.navbar-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.2s, transform 0.2s, opacity 0.2s, visibility 0.2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.navbar-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.navbar-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.navbar-close-btn .material-icons {
    font-size: 28px;
}

/* Tablet logo sizing */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .custom-navbar .navbar-brand img {
        height: 87px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        position: relative;
    }

    .navbar-close-btn {
        display: flex;
    }

    /* Show hamburger when menu is closed - default state */
    .navbar-toggler {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
        position: relative;
    }

    /* Hide hamburger when menu is open - use class-based approach */
    .custom-navbar.menu-open .navbar-toggler {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    /* Show close button when menu is open - make it clickable */
    .custom-navbar:has(.navbar-collapse.show) .navbar-close-btn {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Hide close button when menu is closed - so it doesn't block hamburger */
    .navbar-close-btn {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Buttons */
.btn-primary,
.btn-navbar-portal,
.hero-cta,
.track-trace-btn,
a.btn-primary {
    padding: 11px 35px;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    text-transform: uppercase;
    font-size: 14px;
}

a:hover {
    color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-navbar-portal:hover,
.btn-navbar-portal:focus,
.hero-cta:hover,
.hero-cta:focus,
.track-trace-btn:hover,
.track-trace-btn:focus {
    background: var(--secondary-color) !important;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    /* Height of navbar */
    padding-bottom: 40px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    /* black with 65% opacity for stronger contrast */
    z-index: 1;
    /* behind content */
    pointer-events: none;
    /* allows clicks through overlay */
}

/* .hero-title {
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4);
} */

.hero-cta {
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
}

.hero-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-action {
    background: #1976d2;
    color: #fff;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.btn-action:hover,
.btn-action:focus {
    background: #1565c0;
}

.hero-icon-label {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 0 0.5rem 0.7rem;
    border-radius: 0 24px 24px 0;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 0;
    overflow: hidden;
    transition: opacity 0.2s, visibility 0.2s,
        width 0.35s cubic-bezier(0.77, 0, 0.18, 1),
        right 0.35s cubic-bezier(0.77, 0, 0.18, 1),
        border-radius 0.35s cubic-bezier(0.77, 0, 0.18, 1),
        padding 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.hero-icon-btn:hover .hero-icon-label,
.hero-icon-btn:focus-within .hero-icon-label {
    opacity: 1;
    visibility: visible;
    left: 0;
    width: 160px;
    padding: 0.5rem 1.2rem 0.5rem 0.7rem;
    border-radius: 0 24px 24px 0;
}

.material-icons {
    font-size: 1.7rem;
    vertical-align: middle;
    margin-right: 8px;
    font-size: 1.3rem;
    vertical-align: middle;
}

.navbar-tagline {
    margin-left: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    margin-right: 13px;
    letter-spacing: 1px;
    transition: color 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
    /* prevent items like ABOUT US / CONTACT US from breaking into two lines on tablet */
}

.navbar-authbtn {
    background-color: var(--primary-color);
    color: white;
    font-size: 13px;
    border-radius: 4px;
    padding: 13px 30px;
    align-items: center;
    text-decoration: none !important;
    text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-toggle.active {
    color: var(--primary-color) !important;
}

/* Track & Trace Section */
.track-trace-section {
    background: #f6f8fc;
}

.track-trace-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    display: inline-block;
    position: relative;
}

.track-trace-underline {
    display: block;
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    content: "";
}

.track-trace-desc {
    font-size: 1rem;
    color: #222;
    margin-bottom: 2rem;
}

.track-trace-form-wrapper {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(54, 152, 210, 0.08);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    border: 4px solid #eaf3fa;
}

.track-trace-form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.track-trace-select-box {
    min-width: 180px;
    border-right: 1px solid #eaeaea;
    display: flex;
    align-items: center;
}

.track-trace-input-box {
    flex: 1 1 0;
    border-right: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    min-width: 0;
}

.track-trace-input {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    color: #222;
    height: 54px;
    box-shadow: none;
    padding-left: 1rem;
}

.track-trace-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0 4px 4px 0;
    height: 54px;
    min-width: 140px;
    box-shadow: none;
    border: none;
    transition: background 0.2s;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-trace-btn .material-icons {
    font-size: 1.5rem;
}

.track-trace-btn:hover,
.track-trace-btn:focus {
    background: var(--secondary-color) !important;
}

/* Service Card */
.service-card {
    position: relative;
    width: 99%;
    height: 570px;
    aspect-ratio: 434 / 570;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(54, 152, 210, 0.1);
    background: #eee;
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.3s;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background 0.3s;
}

.service-card:hover .overlay {
    background: rgba(0, 0, 0, 0.5);
}

.service-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 32px 28px 32px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service-card-content-middle {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 32px 28px 32px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-card-number {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 8px;
}

.service-card-title {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.service-card-desc {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s, max-height 0.3s;
    font-size: 20px;
    color: #bababa;
    margin-bottom: 0;
    margin-top: 12px;
    font-weight: 500;
}

.service-card-footerTitle {
    transition: opacity 0.3s, max-height 0.3s;
    font-size: 36px;
    color: #000000;
    margin-top: 12px;
    font-weight: 800;
    line-height: 38.4px;
    letter-spacing: -0.32px;
}

.service-card-footerTitle .custom-underline {
    width: 76px;
}

.service-card:hover .service-card-desc {
    opacity: 1;
    max-height: 200px;
}

.service-card:hover+.service-card-footerTitle {
    color: var(--secondary-color) !important;
}

.service-card:hover+.service-card-footerTitle .custom-underline {
    width: 183px;
}

.service-card-readmore {
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 700;
    color: #fff;
    margin-top: 18px;
    display: inline-block;
    text-decoration: underline;
    font-size: 1rem;
}

.service-card:hover .service-card-readmore {
    opacity: 1;
}

.service-card-icon {
    font-size: 2.2rem;
    margin-top: 18px;
    opacity: 0.85;
}

@media (max-width: 1200px) {
    .service-card {
        width: 100%;
        max-width: 434px;
        height: auto;
        aspect-ratio: 434 / 570;
    }
}

@media (max-width: 991px) {
    .service-card {
        width: 100%;
        max-width: 350px;
        aspect-ratio: 434 / 570;
        height: auto;
    }

    .service-card-content {
        padding: 18px 14px;
    }

    .service-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .service-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1.2;
        min-width: 180px;
        height: auto;
    }

    .service-card-content {
        padding: 12px 8px;
    }
}

.head-1 {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -2px;
}

.head-2 {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
}

.head-2-6 {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -0.44px;
}

.head-2-5 {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 38.4px;
}

.head-3 {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 27.5px;
}

@media (max-width: 991px) {
    .head-1 {
        font-size: 50px;
        line-height: 50px;
    }

    .head-2 {
        font-size: 36px;
        line-height: 36px;
    }

    /* .head-2-6 {
    font-size: 28px;
    line-height: 28px;
  }
  .head-2-5 {
    font-size: 24px;
    line-height: 28px;
  }
  .head-3 {
    font-size: 20px;
    line-height: 24px;
  } */
}

.head-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.custom-underline {
    display: block;
    position: absolute;
    left: 2.5px;
    bottom: -8px;
    width: 220px;
    height: 7px;
    background: var(--secondary-color);
    content: "";
    transition: width 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    /* Smooth width animation */
}

.custom-underline:hover {
    width: 236px;
}

.sectionhero-banner {
    min-height: 90vh;
    width: 100vw;
    /* background: url("assets/img/hero_bg.png") center center/cover no-repeat; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Reduce hero banner height on mobile only */
@media (max-width: 767.98px) {
    .sectionhero-banner {
        min-height: 50vh;
    }

    /* Align Read More button to left on mobile before Logistics Services */
    .home-list+div.justify-content-center.d-flex,
    section .home-list~div.justify-content-center.d-flex {
        justify-content: flex-start !important;
    }
}

.sectionhero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-color: #0f313a;
    /* black with 42% opacity */
    z-index: 1;
    /* behind content */
    pointer-events: none;
    /* allows clicks through overlay */
}

.info-box-white {
    background-color: white;
    border-radius: 5px;
    height: 128px;
    align-items: center;
}

.info-box-white h3 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.4;
    line-height: 40px;
}

.info-box-white p {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.2;
    line-height: 24px;
    padding: 0;
    margin: 0;
}

/* Prevent overlap of 100K / Shipments Delivered on mid screens by allowing auto height and stacking text */
@media (max-width: 1199.98px) {
    .info-box-white {
        height: 116px;
        min-height: 116px;
        padding: 16px !important;
    }

    .info-box-white h3,
    .info-box-white p {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }

    .info-box-white h3 {
        margin-bottom: 4px;
    }

    /* Match phone box height with 100K box on the same breakpoint */
    .info-box-black-transparent {
        height: 116px !important;
        min-height: 116px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.info-box-black-transparent {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
    cursor: pointer;

    border-radius: 5px;
    height: 128px;
    padding: 1rem 1.5rem;

    /* Glass effect */
    background: rgba(0, 0, 0, 0.4);
    /* semi-transparent black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* subtle border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* soft shadow */

    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: #ffffff;

    transition: all 0.3s ease;
    /* smooth hover effect */
}

/* Optional hover effect to make it pop */
.info-box-black-transparent:hover {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Swipper Dots */
.swipper-dots {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 8px;
}

.swipper-dots .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d6d6d6;
    display: inline-block;
    transition: background 0.2s;
    cursor: pointer;
}

.swipper-dots .dot.active {
    background: #19799f;
}

.blog-section {
    background: #f6f8fc;
}

.blog-title {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    margin-bottom: 2.5rem;
}

.blog-title .text-primary {
    color: #3698d2 !important;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(54, 152, 210, 0.1);
    overflow: hidden;
    width: 100%;
    /* margin: 0px 20px; */
    /* max-width: 340px; */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 24px rgba(54, 152, 210, 0.18);
}

.blog-card-img {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #3698d2;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 22px 20px 18px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-card-date {
    font-size: 0.98rem;
    color: #19799f;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    /* gap: 6px; */
}

.blog-card-title {
    font-size: 1.15rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3698d2;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid #eaf3fa;
    border-radius: 6px;
    padding: 6px 18px;
    background: #f6f8fc;
    transition: background 0.2s, color 0.2s;
}

.blog-card-readmore:hover {
    background: #3698d2;
    color: #fff;
}

.blog-readmore-btn {
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 7px;
    background: #3698d2;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(54, 152, 210, 0.1);
    transition: background 0.2s;
}

.blog-readmore-btn:hover {
    background: #19799f;
}

@media (max-width: 991px) {
    .blog-card {
        max-width: 100%;
    }

    .blog-card-img {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 1.5rem;
    }

    .blog-card-img {
        height: 120px;
    }

    .blog-card-body {
        padding: 14px 10px 12px;
    }
}

.readmore-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #3698d2;
    background: #fff;
    border: 1px solid #c3c3e1;
    width: fit-content;
    border-radius: 6px;
    padding: 16px 27px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(54, 152, 210, 0.06);
    text-decoration: none;
}

.readmore-btn .arrow {
    font-size: 2.4rem;
    color: #3698d2;
    transition: color 0.2s;
}

.readmore-btn:hover,
.readmore-btn:focus {
    color: #19799f;
    border-color: #19799f;
    background: #f6f8fc;
}

.readmore-btn:hover .arrow,
.readmore-btn:focus .arrow {
    color: #19799f;
}

.subscribe-input-wrapper {
    position: relative;
    width: 50%;
    max-width: 50%;
}

.subscribe-input {
    /* Match Request A Quote! form input styling */
    width: 100%;
    padding: 10px 44px 10px 18px;
    border-radius: 8px;
    /* soft blue outline like reference image */
    border: 1px solid #9acbe8;
    background: #fbfdff;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    color: #415a66;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.subscribe-input::placeholder {
    color: #d0d4d9;
    opacity: 1;
    font-size: 14px;
}

.subscribe-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 1px rgba(25, 121, 159, 0.15);
}

/* Make subscribe input full-width on mobile */
@media (max-width: 767.98px) {
    .subscribe-input-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

.subscribe-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #cfd6ee;
    font-size: 1.6rem;
    pointer-events: none;
}

.subscribe-btn {
    /* Match global .btn.btn-primary look (like READ MORE) */
    padding: 11px 35px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.subscribe-btn:hover,
.subscribe-btn:focus {
    background: var(--secondary-color) !important;
}

.subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-response {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.newsletter-response.text-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-response.text-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.subscribe-illustration {
    max-width: 340px;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .subscribe-section h2 {
        font-size: 2rem;
    }

    .subscribe-illustration {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .subscribe-section h2 {
        font-size: 1.3rem;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 12px;
    }

    .subscribe-illustration {
        max-width: 160px;
        margin-top: 24px;
    }
}

.footer-section {
    background: #0a5598;
    color: #fff;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.footer-title {
    /* text-align: center; */
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 12px;
}

.footer-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-list li .material-icons {
    flex-shrink: 0;
    font-size: 28px;
    color: #fff;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #ffffff;
    padding: 8px;
    margin-top: 2px;
    margin-right: 0;
    display: inline-block;
    box-sizing: content-box;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer-list a:hover {
    color: #9acbe8;
    /* text-decoration: underline; */
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.footer-social-icon:hover img {
    background: #9acbe8;
}

.footer-bottom {
    font-size: 0.98rem;
}

.footer-policy {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policy:hover {
    color: #9acbe8;
}

.footer-font-bold {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .footer-section .row>div {
        margin-bottom: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* hero fixed icons */
/* container stuck to right side */

.hero-section {
    position: relative;
    /* important so absolute children position inside */
}

.hero-icons-fixed {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    /* keep buttons flush to the right edge */
}

/* base button */
.icon-btn {
    position: relative;
    /* needed for absolute tooltip inside */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* icon stays at right inside the small button */
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 8px 0 0 8px;
    /* round on the right side */
    background: var(--primary-color, #19799f);
    color: #fff;
    overflow: visible;
    /* allow absolute tooltip to show */
    box-shadow: 0 2px 8px rgba(54, 152, 210, 0.12);
    transition: width 0.25s ease, background 0.2s;
    cursor: pointer;
}

/* icon area */
.icon-btn .material-icons {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 48px;
    margin: 0;
}

/* tooltip positioned absolutely so it doesn't change layout of siblings */
.icon-btn .tooltip-text {
    position: absolute;
    right: 48px;
    /* sits to the left of the icon */
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    padding: 6px 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    font-size: 14px;
    color: #fff;
}

/* ONLY the hovered or focused button expands */
.icon-btn:hover,
.icon-btn:focus {
    width: 220px;
    background: var(--secondary-color, #0f4f63);
}

/* show tooltip only for hovered/focused button */
.icon-btn:hover .tooltip-text,
.icon-btn:focus .tooltip-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
    .hero-icons-fixed {
        position: absolute;
        /* bottom: 1px; */
        bottom: 0;
        /* cancel vertical centering */
        right: 50%;
        /* center horizontally */
        transform: translateX(50%);
        /* pull back to align correctly */
        flex-direction: row;
        gap: 12px;
    }

    .icon-btn {
        width: 180px;
        /* always expanded */
        height: 44px;
        border-radius: 8px 8px 0 0;
        justify-content: center;
        /* icon + text center inside */
        padding: 0;
        margin: 0;
        background: var(--secondary-color, #0f4f63);
        transition: none;
        /* remove animation */
    }

    /* .icon-btn .material-icons {
    margin: 0;
    padding: 0;
  } */

    .icon-btn .tooltip-text {
        position: static;
        /* normal inline next to icon */
        transform: none;
        opacity: 1;
        /* always visible */
        padding: 0;
        padding-left: 10px;
    }

    .icon-btn .material-icons {
        flex: 0;
    }
}

/* about */
.breadcrumb {
    background: transparent;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1px;
    font-weight: 700;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb .active {
    color: #f2f2f2 !important;
    opacity: 64%;
}

.journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journey-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: rgba(87, 90, 123, 1);
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

/* Ensure hero banner breadcrumbs (Home, /, Page name) are fully white */
.hero-section .breadcrumb-item a,
.hero-section .breadcrumb-item,
.hero-section .breadcrumb .active {
    color: #ffffff !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.hero-section .breadcrumb-item a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
}

.hero-section .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Make the "/" divider in hero breadcrumbs visible (white) */
.hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Add spacing between large hero title and breadcrumb on inner pages */
.hero-section .head-1 {
    margin-bottom: 1rem;
}

.hero-section .breadcrumb {
    margin-top: 0.25rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-section nav[aria-label="breadcrumb"] {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-section>div[class*="d-flex"] {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.hero-section .container,
.hero-section .row,
.hero-section .col-lg-8,
.hero-section .col-md-10 {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Mobile-specific breadcrumb clickability fixes */
@media (max-width: 767px) {
    .hero-section>div[class*="d-flex"] {
        z-index: 10;
        pointer-events: auto !important;
    }

    .hero-section .breadcrumb-item {
        display: inline-block;
        z-index: 15;
        pointer-events: auto !important;
    }

    .hero-section .breadcrumb-item a {
        z-index: 20 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5) !important;
        touch-action: manipulation !important;
        display: inline-block !important;
        position: relative !important;
    }

    .hero-section nav[aria-label="breadcrumb"] {
        z-index: 15 !important;
        pointer-events: auto !important;
    }

    .hero-section .breadcrumb {
        z-index: 15 !important;
        pointer-events: auto !important;
    }

    /* When mobile menu is open, ensure breadcrumb is below it */
    body.mobile-menu-open .hero-section .breadcrumb {
        z-index: 5 !important;
    }

    body.mobile-menu-open .hero-section .breadcrumb-item a {
        z-index: 5 !important;
    }

    body.mobile-menu-open .hero-section nav[aria-label="breadcrumb"] {
        z-index: 5 !important;
    }

    body.mobile-menu-open .hero-section .breadcrumb-item {
        z-index: 5 !important;
    }
}

/* Blog detail hero – make long titles look balanced */
.blog-detail-hero .blog-detail-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    max-width: 820px;
}

.blog-detail-hero .breadcrumb {
    font-size: 14px;
}

.journey-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #19799f;
    border-radius: 50%;
    display: inline-block;
}

.journey-images {
    position: relative;
    min-width: 320px;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.journey-img-main {
    width: 580px;
    height: 422px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(54, 152, 210, 0.1);
    position: relative;
    z-index: 1;
}

.journey-img-overlap {
    width: 435px;
    height: 341px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(54, 152, 210, 0.1);
    position: absolute;
    right: -28px;
    bottom: -50px;
    z-index: 2;
    background: #eaf3fa;
}

@media (max-width: 991px) {
    .journey-images {
        min-width: 220px;
        min-height: 140px;
    }

    .journey-img-main {
        width: 99%;
        height: 80%;
    }

    .journey-img-overlap {
        width: 70%;
        height: 50%;
        right: -10px;
        bottom: -50px;
    }
}

.about-stats-section {
    position: relative;
    min-height: 180px;
    padding: 48px 0;
    overflow: hidden;
    background: none;
}

.about-stats-bg {
    position: absolute;
    inset: 0;
    background: url("/assets/img/about/number.png") center center / cover no-repeat;

    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}

.about-stats-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    /* black overlay at 50% */
    z-index: 2;
}

.about-stats-section .container {
    position: relative;
    z-index: 2;
}

.about-stats-icon {
    width: 64px;
    height: 64px;
    background: #3698d2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.about-stats-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.about-stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.about-stats-label {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .about-stats-section {
        padding: 32px 0;
    }

    .about-stats-icon {
        width: 48px;
        height: 48px;
    }

    .about-stats-icon img {
        width: 28px;
        height: 28px;
    }

    .about-stats-number {
        font-size: 1.6rem;
    }

    .about-stats-label {
        font-size: 0.98rem;
    }
}

.operate-icon {
    width: 56px;
    height: 56px;
    background: #3698d2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.operate-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.operate-desc {
    font-size: 0.98rem;
    color: #19799f;
    opacity: 0.9;
    margin: 0 20px;
}

/* Leadership */

.leader-card-box {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(54, 152, 210, 0.12);
    padding: 32px 28px;
    background: #fff;
    height: 100%;
}

.leader-card-bottom-right {
    border-bottom: 4px solid #3698d2;
    border-right: 4px solid #3698d2;
}

.leader-card-top-left {
    border-top: 4px solid #3698d2;
    border-left: 4px solid #3698d2;
}

.leader-img-box {
    background: #eaeaea;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    box-shadow: 0 2px 12px rgba(54, 152, 210, 0.1);
}

.leader-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

@media (max-width: 991px) {
    .leader-img-box {
        height: 200px;
    }

    .leader-card-box {
        padding: 18px 12px;
        font-size: 1rem;
        max-width: 100%;
        height: auto;
    }
}

/* Tablet: keep leadership images nicely square */
@media (min-width: 768px) and (max-width: 991.98px) {
    .leader-img-box {
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 260px;
    }

    .leader-img-main {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {

    /* .leader-img-box {
    width: 120px;
    height: 120px;
  } */
    .leader-card-box {
        padding: 12px 6px;
        font-size: 0.95rem;
        max-width: 100%;
        height: auto;
    }
}

/* Services overlay: hidden by default, show only on hover */
.service-provide-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-provide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 28, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    transform: translateY(6px);
}

.service-provide-desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.45;
    max-height: 120px;
    overflow: hidden;
    text-align: left;
    width: 100%;
}

.overlay-arrow {
    float: right;
    margin-left: 8px;
    vertical-align: middle;
    font-size: 20px;
    color: #fff;
}

/* keep titles visible and simple when not hovered */
.service-provide-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f2130;
    padding: 12px 0;
    border-bottom: 4px solid transparent;
}

.service-provide-title.active {
    color: #19799f;
    border-bottom-color: #19799f;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: block;
    background: #000;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.55) saturate(0.95);
}

/* content sits above the bg image */
.cta-content {
    position: relative;
    z-index: 2;
    padding: 48px 0;
}

/* headline */
.cta-headline {
    color: #fff;
    margin: 0;
    font-weight: 800;
    line-height: 1.02;
    /* responsive size */
    font-size: clamp(28px, 6vw, 56px);
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* CTA button - use existing btn-primary but tighten spacing for CTA */
.cta-button {
    --bs-btn-padding-y: 0.6rem;
    --bs-btn-padding-x: 1.2rem;
    margin-top: 16px;
    box-shadow: 0 6px 18px rgba(25, 121, 159, 0.18);
}

/* stats card overlapping the CTA area */
.cta-stats-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    padding: 14px 18px;
    min-width: 220px;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(7, 18, 28, 0.12);
    z-index: 3;
}

/* left block: number + label */
.cta-stats-left {
    text-align: left;
    min-width: 0;
}

.cta-stats-number {
    font-weight: 800;
    color: #0f4f63;
    font-size: 1.45rem;
    line-height: 1;
}

.cta-stats-label {
    font-size: 0.9rem;
    color: #465a65;
    font-weight: 600;
    margin-top: 4px;
}

/* thin divider */
.cta-stats-divider {
    width: 1px;
    height: 48px;
    background: rgba(15, 79, 99, 0.06);
    border-radius: 1px;
}

/* right block: phone icon + number */
.cta-stats-right {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cta-phone-icon {
    color: #19799f;
    font-size: 20px;
}

.cta-phone {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}

/* responsive: stats card smaller & stack behavior */
@media (max-width: 991px) {
    .cta-content {
        padding: 32px 0;
    }

    .cta-stats-card {
        min-width: 180px;
        max-width: 320px;
        padding: 12px 14px;
    }

    .cta-headline {
        font-size: clamp(24px, 6.5vw, 42px);
    }
}

/* mobile: stack headline, button, stats card vertically and center */
@media (max-width: 575px) {
    .cta-content .row {
        align-items: flex-start;
    }

    .cta-stats-card {
        margin-top: 16px;
        width: 100%;
        max-width: 420px;
        justify-content: flex-start;
    }

    .cta-stats-divider {
        display: none;
    }

    .cta-headline {
        text-align: left;
    }
}

/* Service Detail Navigator Section (sd = service detail) */
/* .service-detail-navigator {
  background: #f6f8fc;
} */

/* small reusable card used in left column */
.sd-card {
    background: #ffffff20;
    /* padding: 16px; */
    box-shadow: 0 6px 18px rgba(7, 18, 28, 0.06);
    padding-bottom: 10px;
}

.sd-card-header {
    padding: 10px;
    font-weight: 800;
    background-color: #006db5;
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.16;
}

.sd-service-list {
    margin: 12px;
}

/* Services nav list */
.sd-service-list li {
    background: #ffffff;
    padding: 8px 12px;
    margin-bottom: 5px;
    color: var(--dark-light);
    font-size: 16px;
    font-weight: 600;
    line-height: 27.2px;
    letter-spacing: 0.5;
    border: solid 1px #ededed;
}

.sd-service-list .active {
    color: #fff;
    background: var(--primary-color);
}

.sd-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.18s;
    color: #213642;
    background: transparent;
    text-decoration: none;
}

.sd-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(25, 121, 159, 0.06);
}

.sd-service-item.active {
    background: linear-gradient(90deg, #eaf3fa, #fff);
    border-left: 4px solid var(--primary-color, #19799f);
    color: var(--primary-color, #19799f);
    font-weight: 700;
}

/* contact list items */
.sd-contact-list {
    margin-top: 14px;
}

.sd-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 79, 99, 0.04);
}

.sd-contact-list li:last-child {
    border-bottom: none;
}

/* circular icon box */
.sd-contact-list .logo {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(25, 121, 159, 0.05);
    margin-top: 2px;
    flex-shrink: 0;
}

.sd-contact-list .logo .mi,
.sd-contact-list .logo .material-icons {
    color: white;
    font-size: 22px;
}

/* contact text */
.sd-contact-list .head {
    font-weight: 700;
    color: #0c3740;
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
    line-height: 1.4;
}

.sd-contact-list a,
.sd-contact-list .info {
    color: #415a66;
    font-size: 0.95rem;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    display: block;
}

.sd-contact-list li .flex-grow-1 {
    flex: 1;
    min-width: 0;
}

/* Location specific styling */
.sd-contact-list li.location-item {
    padding: 12px 0 16px 0;
}

.sd-contact-list .location-address {
    margin-top: 6px;
    padding-right: 8px;
    line-height: 1.6;
}

/* compact for small screens */
@media (max-width: 575px) {
    .sd-contact-list .logo {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .sd-contact-list .mi,
    .sd-contact-list .material-icons {
        font-size: 18px;
    }

    .sd-card.sd-contact-card .sd-card-header {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* slightly smaller icons & text on tablets */
@media (min-width: 576px) and (max-width: 991.98px) {
    .sd-contact-list .logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .sd-contact-list .mi,
    .sd-contact-list .material-icons {
        font-size: 18px;
    }

    .sd-contact-list .head {
        font-size: 0.9rem;
    }

    .sd-contact-list a,
    .sd-contact-list .info {
        font-size: 0.85rem;
    }
}

/* Reduce font size for email on service details CONTACT INFO between 992px and 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
    .sd-contact-list .head {
        font-size: 0.85rem;
    }

    .sd-contact-list a,
    .sd-contact-list .info {
        font-size: 0.78rem;
        word-break: break-all;
    }
}

/* list container */
.sd-brochure-list {
    margin: 12px;
}

/* each brochure row */
.sd-brochure-list li {
    margin-bottom: 14px;
}

.sd-brochure-list li {
    background: #ffffff;
    /* padding: 8px 12px; */
    margin-bottom: 5px;
    color: var(--dark-light);
    font-size: 16px;
    font-weight: 600;
    line-height: 27.2px;
    letter-spacing: 0.5;
    border: solid 1px #ededed;
}

/* anchor styled as full-width card */
/* .brochure-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 6px;
  padding: 0 14px;
  box-shadow: 0 6px 18px rgba(7, 18, 28, 0.04);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
} */

/* left square icon */
.sd-brochure-list li .brochure-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 5px;
    box-shadow: 0 4px 12px rgba(25, 121, 159, 0.06);
}

.brochure-item {
    text-decoration: none;
}

/* text block */
.brochure-item .brochure-text {
    font-weight: 800;
    color: var(--dark-light);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 22.1px;
    text-decoration: none;
}

/* responsive */
@media (max-width: 575px) {
    .brochure-item {
        padding: 12px;
        gap: 12px;
    }

    .brochure-item .brochure-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .brochure-item .brochure-text {
        font-size: 0.95rem;
    }
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-bulletin {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(25, 121, 159, 0.05);
    color: #fff;
}

.bulletin-section {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #0f313a;
    font-size: 16px;
    font-weight: 800;
}

.sd-contact-form {
    border-radius: 20px;
    padding: 26px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(7, 18, 28, 0.04);
    max-width: 100%;
}

.sd-contact-form .form-label {
    font-weight: 400;
    color: #6a747b;
    margin-bottom: 6px;
    font-size: 15px;
}

.sd-contact-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(15, 79, 99, 0.08);
    background: #fbfdff;
    padding: 10px 12px;
    height: 44px;
    box-shadow: none;
}

.sd-contact-form .form-control::placeholder {
    color: #d0d4d9;
    /* light gray-blue */
    opacity: 1;
    /* ensure it's not faded */
    font-size: 14px;
    /* optional: match your design */
}

.sd-contact-form textarea.form-control {
    min-height: 96px;
    resize: vertical;
    padding-top: 10px;
}

.sd-contact-form .text-danger {
    color: #d9534f;
}

/* submit button style like image */
.sd-submit {
    background: linear-gradient(180deg, #2f9cc3, #19799f);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(25, 121, 159, 0.18);
    font-weight: 700;
    letter-spacing: 0.6px;
    position: relative;
    min-width: 150px;
}

.sd-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.sd-submit .btn-spinner {
    margin-left: 8px;
    vertical-align: middle;
}

.sd-submit .btn-text {
    display: inline-block;
}

/* layout: ensure same spacing as design */
@media (min-width: 992px) {
    .sd-contact-form {
        padding: 32px;
    }
}

/* mobile: single column full width and tighter padding */
@media (max-width: 575px) {
    .sd-contact-form {
        padding: 18px;
        border-radius: 10px;
    }

    .sd-contact-form .form-control {
        height: 42px;
    }

    .sd-submit {
        width: 100%;
    }
}

/* Add margin to Request A Quote description on mobile/tablet */
@media (max-width: 767.98px) {
    .sd-intro {
        margin-bottom: 24px !important;
    }
}

/* Custom File Upload Styles */
.custom-file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-file-upload .file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.custom-file-upload .file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px dashed #d0d4d9;
    border-radius: 8px;
    background: #fbfdff;
    color: #6a747b;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.custom-file-upload .file-upload-btn:hover {
    border-color: var(--primary-color);
    background: rgba(54, 152, 210, 0.05);
    color: var(--primary-color);
}

.custom-file-upload .file-upload-btn .material-icons {
    font-size: 20px;
    color: var(--primary-color);
}

.custom-file-upload .file-name {
    font-size: 13px;
    padding-left: 4px;
    min-height: 18px;
}

.custom-file-upload.has-file .file-upload-btn {
    border-color: var(--primary-color);
    background: rgba(54, 152, 210, 0.1);
    color: var(--primary-color);
}

.custom-file-upload.has-file .file-name {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 575px) {
    .custom-file-upload .file-upload-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .custom-file-upload .file-upload-btn .material-icons {
        font-size: 18px;
    }
}

/* ...existing code... */

/* Page centered watermark/logo shown between hero end and privacy end */
.page-watermark {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.02);
    pointer-events: none;
    z-index: 0;
    /* behind main content (ensure main content has z-index >=1) */
    width: min(68vw, 760px);
    max-width: 92%;
    opacity: 0;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.page-watermark img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.12;
}

/* visible state */
.page-watermark.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* smaller screens: reduce watermark size or hide */
/* @media (max-width: 900px) {
  .page-watermark {
    width: min(50vw, 420px);
  }
  .page-watermark img {
    opacity: 0.06;
  }
}
@media (max-width: 480px) {
  .page-watermark {
    display: none;
  }
} */

/* Privacy policy list styling (policy-list) */
.privacy-section {
    background: #ffffff;
}

.privacy-section .head-3 {
    color: var(--primary-color, #19799f);
    font-weight: 700;
    margin-top: 1.25rem;
}

.privacy-section .font-primary {
    color: #4b5d63;
    line-height: 1.65;
}

/* policy bullet list with circular blue check markers */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.6rem;
}

.policy-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 10px;
    color: #455a63;
    font-size: 0.98rem;
}

.policy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color, #19799f);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(25, 121, 159, 0.08);
    font-size: 13px;
}

/* compact spacing for smaller screens */
@media (max-width: 767px) {
    .privacy-section {
        padding: 28px 16px;
    }

    .policy-list li {
        padding-left: 32px;
        font-size: 0.95rem;
    }

    .policy-list li::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

.navbar-light .navbar-toggler-icon {
    /* background-color: #006db5; */
    /* border: 1px solid #006db5; */
    /* border-radius: 3px; */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,2555,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.mt-8 {
    margin-top: 40px !important;
}

.ca-contact-list {
    margin-top: 14px;
    margin: 5px 2px;
}

.ca-contact-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 79, 99, 0.04);
}

.ca-contact-list li:last-child {
    border-bottom: none;
}

/* circular icon box */
.ca-contact-list .logo {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    /* background: var(--primary-color); */
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(25, 121, 159, 0.05);
}

.ca-contact-list .logo .mi,
.ca-contact-list .logo .material-icons {
    color: #0f1b24;
    font-size: 22px;
}

/* contact text */
.ca-contact-list .head {
    font-weight: 700;
    color: #0c3740;
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.ca-contact-list a,
.ca-contact-list .info {
    color: #415a66;
    font-size: 0.95rem;
    text-decoration: none;
}

/* Reduce font size on tablet to prevent overlap with form */
@media (min-width: 768px) and (max-width: 991.98px) {
    .ca-contact-list .head {
        font-size: 0.85rem;
    }

    .ca-contact-list a,
    .ca-contact-list .info {
        font-size: 0.65rem;
        word-break: break-all;
    }
}

/* compact for small screens */
@media (max-width: 575px) {
    .ca-contact-list .logo {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .ca-contact-list .mi,
    .ca-contact-list .material-icons {
        font-size: 20px;
    }
}

/* Social icons style for ca-social-icons */
.ca-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.ca-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 35px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
    text-decoration: none;
}

.ca-social-btn:hover,
.ca-social-btn:focus {
    border-color: #0f6ea0;
    background: #eaf3fa;
    box-shadow: 0 4px 18px rgba(25, 121, 159, 0.1);
}

.ca-social-ic {
    font-size: 2rem;
    color: #222;
    font-family: inherit;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 575px) {
    .ca-social-btn {
        width: 48px;
        height: 48px;
    }

    .ca-social-ic {
        font-size: 1.3rem;
    }

    .ca-social-icons {
        gap: 16px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 32px 0;
    text-align: left;
}

.faq-section .head-2-5 {
    font-size: 42px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(25, 121, 159, 0.06);
    overflow: hidden;
    transition: box-shadow 0.18s;
}

.faq-item.active,
.faq-item:focus-within {
    box-shadow: 0 8px 30px rgba(25, 121, 159, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 18px 22px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.18s;
}

.faq-item.active .faq-question,
.faq-question:hover {
    background: #f9f8f8;
    /* color: var(--primary-color); */
    box-shadow: 0 8px 30px rgba(25, 121, 159, 0.1);
}

.faq-q-text {
    font-size: 1.08rem;
    font-weight: 600;
    text-align: left;
}

.faq-toggle-icon {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-left: 12px;
    transition: color 0.18s;
}

.faq-item.active .faq-toggle-icon {
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    background: #fff;
    padding: 0 22px 18px 22px;
    font-size: 1rem;
    color: #415a66;
    border-top: 1px solid #eaf3fa;
}

.faq-answer.show {
    display: block;
}

.faq-answer-inner {
    margin-top: 12px;
    text-align: left;
}

.faq-bullet-list {
    margin: 8px 0 0 0;
    padding-left: 18px;
    list-style: disc;
    color: #415a66;
    font-size: 0.98rem;
    text-align: left;
}

@media (max-width: 767px) {
    .faq-section {
        text-align: left;
    }

    .faq-question {
        text-align: left;
        justify-content: space-between;
    }

    .faq-q-text {
        text-align: left;
    }

    .faq-answer {
        text-align: left;
    }

    .faq-answer-inner {
        text-align: left;
    }

    .faq-bullet-list {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 18px 0;
        text-align: left;
    }

    .faq-question {
        padding: 14px 12px;
        font-size: 1rem;
        text-align: left;
        justify-content: space-between;
    }

    .faq-q-text {
        text-align: left;
    }

    .faq-answer {
        padding: 0 12px 12px 12px;
        font-size: 0.97rem;
        text-align: left;
    }

    .faq-answer-inner {
        text-align: left;
    }

    .faq-bullet-list {
        text-align: left;
    }
}

/* .transporting-section {
  background: #81abff;
  padding-top: 0;
  padding-bottom: 0;
} */
.transporting-row {
    padding-top: 50px;
    width: 100%;
    min-height: 170px;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.transporting-box {
    background: var(--primary-color);
    /* border-radius: 14px 0 0 20px; */
    min-height: 170px;
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(25, 121, 159, 0.1);
    position: relative;
    z-index: 2;
}

.transporting-content {
    color: #fff;
    z-index: 2;
    padding-left: 100px !important;
    padding-right: 0;
}

.transporting-title {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.18;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.transporting-highlight {
    margin-left: 2px;
    font-weight: 800;
    font-size: 2rem;
    display: block;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.transporting-img-outer {
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 150px;
    height: 100%;
    z-index: 3;
}

.transporting-img {
    height: 100%;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .transporting-row {
        min-height: 0;
        justify-content: center;
    }

    .transporting-box {
        justify-content: center;
        max-width: 100%;
    }

    .transporting-img-outer {
        display: none;
    }

    .transporting-content {
        padding: 0 !important;
        margin: 0 !important;
        text-align: center;
    }

    .transporting-title,
    .transporting-highlight {
        font-size: 1.1rem;
    }
}

.map-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Career Opportunities Section */
.career-opportunities-section {
    /* background: #f6f8fc; */
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Positions List */
.career-positions-list {
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Position Card */
.career-position-card {
    background: #f1f1f1;
    box-shadow: 0 4px 18px rgba(25, 121, 159, 0.06);
    overflow: hidden;
    transition: box-shadow 0.18s;
    margin-bottom: 0;
}

.career-position-card.active,
.career-position-card:focus-within {
    box-shadow: 0 8px 30px rgba(25, 121, 159, 0.1);
    background-color: var(--primary-color);
    opacity: 1 !important;
}

/* Toggle Button */
.career-position-toggle {
    width: 100%;
    border: none;
    outline: none;
    padding: 18px 22px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.career-position-toggle:hover,
.career-position-card.active .career-position-toggle {
    background: var(--primary-color);
    color: #fff;
    opacity: 1 !important;
}

.career-toggle-icon {
    font-size: 1.5rem;
    color: var(--dark-light);
    margin-left: 12px;
}

.career-toggle-active {
    background: #3a9ed6;
    color: #fff;
}

.career-position-toggle:hover,
.career-position-card.active .career-toggle-icon,
.career-toggle-active .career-toggle-icon {
    color: #fff;
}

/* Details Panel */
.career-position-details {
    display: none;
    background: #f1f1f1;
    border: 3px solid var(--primary-color);
}

.career-position-details.show {
    display: block;
}

/* Details Content */
.career-details-content {
    padding: 18px 12px;
}

.career-details-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #19799f;
}

.career-details-desc {
    font-size: 0.98rem;
    color: #415a66;
}

/* Skills List */
.career-skills-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.career-skills-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    color: #415a66;
    margin-bottom: 6px;
}

.career-skill-icon {
    color: #19799f;
    font-size: 1.1rem;
}

/* Apply Form */
.career-apply-form {
    background: #f6f8fc;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(25, 121, 159, 0.06);
}

.career-form-input {
    border-radius: 6px;
    border: 1px solid #eaf3fa;
    background: #fff;
    font-size: 0.98rem;
    padding: 8px 12px;
    margin-bottom: 0;
}

.career-apply-btn {
    background: linear-gradient(180deg, #2f9cc3, #19799f);
    border: none;
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(25, 121, 159, 0.18);
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 767px) {
    .career-opportunities-section {
        padding: 24px 0;
    }

    .career-title {
        font-size: 1.1rem;
    }

    .career-family-title {
        font-size: 1rem;
    }

    .career-hiring-title {
        font-size: 1rem;
    }

    .career-position-toggle {
        padding: 14px 12px;
        font-size: 1rem;
    }

    .career-details-content {
        padding: 12px 6px;
    }

    .career-apply-form {
        padding: 10px;
    }
}

/* Associates Content Section */
.associates-content-section {
    background: #f6f8fc;
    padding-top: 32px;
    padding-bottom: 32px;
}

.associates-content-section p {
    color: #415a66;
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.65;
}

.associates-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.associates-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 6px;
    padding: 6px 12px;
}

/* Mobile responsive */
@media (max-width: 575px) {
    .associates-content-section {
        padding: 18px 0;
    }

    .associates-content-section p {
        font-size: 0.97rem;
    }

    .associates-logos {
        gap: 12px;
    }

    .associates-logo {
        height: 50px;
        padding: 4px 6px;
    }
}

/* Section background */
.tracking-section {
    width: 100%;
    background: #f5f8ff;
    /* light background like your screenshot */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Flex container */
.tracking-container {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Dropdown */
.tracking-select {
    flex: 1;
    border: none;
    padding: 40px 30px;
    font-size: 18px;
    color: #0000008d;
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 15px center;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    border-right: 1px solid #eee;
}

/* Textbox */
.tracking-input {
    flex: 2;
    border: none;
    padding: 40px 30px;
    font-size: 16px;
    color: #444;
    outline: none;
    /* border-right: 1px solid #eee; */
}

/* Button */
.tracking-btn {
    /* Make Track Now button similar to READ MORE but vertically centered in the bar */
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 11px 35px;
    margin: 0 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    align-self: center;
    /* keep button smaller and vertically centered */
}

.tracking-btn span {
    font-size: 18px;
}

.tracking-btn:hover {
    background: #1976d2;
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-container {
        flex-direction: column;
    }

    .tracking-select,
    .tracking-input {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 14px 18px;
        font-size: 15px;
    }

    .tracking-btn {
        justify-content: center;
        margin: 16px 0 14px 0;
        /* small top and bottom spacing */
        padding: 8px 24px;
        /* slightly smaller button */
        font-size: 12px;
        /* smaller text */
        align-self: flex-start;
    }
}

.home-list {
    margin-top: 14px;
    margin: 5px 2px;
}

.home-list li {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 0;
    /* border-bottom: 1px solid rgba(15, 79, 99, 0.04); */
}

.home-list li:last-child {
    border-bottom: none;
}

/* circular icon box */
.home-list .logo {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;

    /* background: var(--primary-color); */
    /* border: 1px solid var(--primary-color); */
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.home-list .logo .mi,
.home-list .logo .material-icons {
    color: #0f1b24;
    font-size: 22px;
}

/* contact text */
.home-list .head {
    font-weight: 700;
    color: #0c3740;
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.home-list a,
.home-list .info {
    color: #415a66;
    font-size: 0.95rem;
    text-decoration: none;
}

/* compact for small screens */
@media (max-width: 575px) {
    .home-list .logo {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .home-list .mi,
    .home-list .material-icons {
        font-size: 20px;
    }
}

/* blog section */

/* Blog Section Styles */
.blog-section {
    background: #f6f8fc;
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(25, 121, 159, 0.06);
    overflow: hidden;
    transition: box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(25, 121, 159, 0.12);
}

.blog-card-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 18px 16px 16px 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-card-meta {
    font-size: 0.92rem;
    color: #19799f;
    display: flex;
    gap: 16px;
    align-items: center;
}

.blog-card-date .material-icons {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 2px;
}

.blog-card-category {
    background: #eaf3fa;
    color: #19799f;
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.92rem;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
    margin: 8px 0 12px 0;
}

.blog-card-readmore {
    color: #19799f;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: underline;
    margin-top: auto;
    align-self: flex-start;
    transition: color 0.18s;
}

.blog-card-readmore:hover {
    color: #0f6ea0;
}

/* Pagination */
.blog-pagination .pagination {
    gap: 4px;
}

.blog-pagination .page-link {
    border-radius: 6px !important;
    color: #19799f;
    font-weight: 600;
    background: #fff;
    border: 1px solid #eaf3fa;
    transition: background 0.18s, color 0.18s;
}

.blog-pagination .page-item.active .page-link,
.blog-pagination .page-link:hover {
    background: #19799f;
    color: #fff;
    border-color: #19799f;
}

/* Sidebar */
.blog-sidebar {
    padding-left: 16px;
}

.blog-search .input-group {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffff;
    border-radius: 8px;
    border: 1px solid #e5e7e8;
}

.blog-search .input-group .form-control {
    border: none;
}

.blog-search .input-group::placeholder {
    font-size: 16px;
    font-weight: 400;
}

.blog-search .form-control {
    padding: 10px 15px;
}

.blog-search .btn {
    color: #19799f;
}

.blog-latest,
.blog-categories {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7e8;
    padding: 30px 20px;
}

.blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #19799f;
    margin-bottom: 10px;
}

.blog-categories ul,
.blog-latest ul {
    padding-left: 0;
    margin-bottom: 0;
}

.blog-categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.97rem;
    border-bottom: 1px solid #e5e7e8;
}

.blog-categories li:last-child {
    border: none;
}

.blog-latest li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.97rem;
}

.blog-categories a,
.blog-latest a {
    color: #151515;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}

.blog-categories a:hover,
.blog-latest a:hover {
    color: #0f6ea0;
}

.contact-card {
    background: #0f2f38;
    /* dark background */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-card .contact-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #19799f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 150px;
    /* overlap between image & card */
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
}

.contact-icon img {
    width: 30px;
}

.contact-content {
    padding: 60px 20px 20px;
    /* top padding to push below icon */
}

.contact-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-content p {
    margin: 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 18px 0;
    }

    .blog-card-img-wrap {
        height: 120px;
    }

    .blog-card-body {
        padding: 12px 10px 10px 10px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-sidebar {
        margin-top: 24px;
    }
}

.latest-posts li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.latest-posts li .material-icons {
    margin: 0;
    color: var(--primary-color);
    font-size: 15px;
}

.latest-posts img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

.latest-posts .post-info {
    flex: 1;
}

.latest-posts .post-info small {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.latest-posts .post-info a {
    color: #151515;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s;
}

.latest-posts .post-info a:hover {
    color: #0f6ea0;
}

.fw-image {
    width: 100%;
}

.blog-time-desc {
    display: flex;
    justify-content: center;
    color: #575a7b;
}

.blog-time-desc .material-icons {
    color: var(--primary-color);
}

.text-black {
    color: #151515;
    font-weight: 700;
}

.client-logo {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.client-logo img {
    width: 50%;
}

.services-scroll {
    display: flex;
    flex-wrap: nowrap;
    /* prevents wrapping */
    overflow-x: auto;
    /* enable horizontal scroll */
    scroll-behavior: smooth;
    gap: 20px;
    /* spacing between cards */
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    /* snap scrolling */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

.services-scroll::-webkit-scrollbar {
    display: none;
    /* hide scrollbar */
}

.services-scroll>div {
    flex: 0 0 auto;
    /* cards don't shrink */
    scroll-snap-align: start;
    /* snap to start of each card */
}

/* Mobile: Make cards full width */
@media (max-width: 767px) {
    .services-scroll {
        gap: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .services-scroll>div {
        width: calc(100vw - 30px) !important;
        /* full viewport width minus container padding */
        min-width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        flex: 0 0 calc(100vw - 30px) !important;
        padding: 0 !important;
        margin-right: 15px !important;
    }

    .services-scroll>div:last-child {
        margin-right: 0 !important;
    }

    .services-scroll>div .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .services-scroll>div.col-12,
    .services-scroll>div.col-lg-4,
    .services-scroll>div.col-md-6 {
        max-width: calc(100vw - 30px) !important;
        flex: 0 0 calc(100vw - 30px) !important;
    }
}

.tracking-error {
    margin-top: 15px;
    text-align: center;
    background-color: #ffff;
    color: red;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    display: none;
}

/* Tracking Results Styling */
.tracking-results-container {
    margin-top: 20px;
}

.tracking-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tracking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.tracking-card .card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-bottom: none;
    padding: 15px 20px;
    font-weight: 600;
}

.tracking-card .card-header h5 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin: 0;
}

.tracking-card .card-header .material-icons {
    font-size: 24px;
}

.tracking-card .card-body {
    padding: 25px;
    background-color: #fff;
}

.tracking-info-item {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tracking-info-item:last-child {
    border-bottom: none;
}

.tracking-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.tracking-label .material-icons {
    font-size: 18px;
    margin-right: 5px;
    color: #0d6efd;
}

.tracking-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 600;
    word-break: break-word;
}

.tracking-value.text-info {
    color: #0dcaf0;
}

.tracking-value.text-success {
    color: #198754;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tracking-card .card-body {
        padding: 15px;
    }

    .tracking-info-item {
        padding: 10px 0;
    }

    .tracking-label {
        font-size: 0.8rem;
    }

    .tracking-value {
        font-size: 0.9rem;
    }
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* align properly */
        background-color: var(--secondary-color);
    }

    .nav-item.dropdown:hover .dropdown-menu a {
        color: white;
        font-weight: 500;
        margin-top: 5px;
    }

    .nav-item.dropdown:hover .dropdown-menu a:hover {
        color: var(--secondary-color);
        font-weight: 600;
    }
}

/* Mobile dropdown menu styles */
@media (max-width: 1199.98px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100%;
        margin-top: 0;
        background-color: rgba(54, 152, 210, 0.1);
        border: none;
        box-shadow: none;
        padding-left: 20px;
        padding-top: 0;
        padding-bottom: 0;
        display: none !important;
        /* Hidden by default */
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        max-height: 500px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        overflow: visible !important;
    }

    .navbar-nav .dropdown-item {
        color: #fff !important;
        padding: 8px 15px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        width: 100%;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: rgba(54, 152, 210, 0.2);
        color: var(--primary-color) !important;
    }

    .navbar-nav .dropdown-toggle {
        cursor: pointer;
        position: relative;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: 8px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown-toggle[aria-expanded="true"] {
        color: var(--primary-color) !important;
    }

    /* Ensure dropdown container doesn't hide overflow */
    .navbar-nav .dropdown {
        position: relative;
        overflow: visible;
    }

    .navbar-collapse {
        overflow: visible !important;
    }
}

.clients-slider {
    overflow: hidden;
}

.client-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.client-logo img {
    display: block;
    width: 100%;
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

/* Scroll right */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Scroll left */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.career-skills-list ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
    margin: 0;
}

.career-skills-list ul li {
    position: relative;
    padding-left: 30px;
    /* space for icon */
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Add a check icon before each item */
.career-skills-list ul li::before {
    content: "\e834";
    /* material icon 'check_box' unicode */
    font-family: "Material Icons";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #007bff;
    /* icon color */
}