@font-face {
    font-family: main;
    src: url(/assets/fonts/Manrope-VariableFont_wght.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


::-webkit-scrollbar {
    width: 10px;
}

/* TRACK */
::-webkit-scrollbar-track {
    background: #000000;
}

/* THUMB */
::-webkit-scrollbar-thumb {
    background: #fff1ad;
    border-radius: 100px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

/* HOVER */
::-webkit-scrollbar-thumb:hover {
    background: #ffe88a;
}



/* main-navbar-start */



/* ─── STICKY WRAPPER ────────────────────────────────────── */
.main-navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-family: main;
    /* white bar at top */
}

/* ─── TOP BAR ───────────────────────────────────────────── */
.main-navbar-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 64px; */
    padding: 15px 32px;
    /* background: #ffffff; */
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    position: relative;
    z-index: 10;
}

/* Logo */
.main-navbar-logo {
    /* font-size: 18px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    user-select: none;
    transition: color 0.3s ease; */
    display: flex;
    align-items: center;
    justify-content: start;
    width: 5%;
}

.main-navbar-logo img {
    width: 100%;
}

.main-navbar-logo-about {
    width: 5%;
}

.main-navbar-logo-about img {
    width: 100%;
}


.main-navbar-wrapper.is-open .main-navbar-logo {
    color: #000000 !important;
}

.main-navbar-logo sup {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: super;
}

/* Hamburger / Cross — centred via absolute */
.main-navbar-toggle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    transition: background .2s;
}

.main-navbar-toggle:hover {
    background: rgba(0, 0, 0, .05);
}

.main-navbar-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #ffffff;
    transform-origin: center;
    transition: transform .35s cubic-bezier(.77, 0, .18, 1),
        opacity .25s ease,
        width .3s ease;
}

.main-navbar-toggle-line-about {
    background: #000;
}

.main-navbar-wrapper.is-open .main-navbar-toggle-line {
    background-color: #000000 !important;
}

/* cross state */
.main-navbar-wrapper.is-open .main-navbar-toggle-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.main-navbar-wrapper.is-open .main-navbar-toggle-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.main-navbar-wrapper.is-open .main-navbar-toggle-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* CTA button */
.main-navbar-cta {
    font-family: main;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 9px 18px;
    border-radius: 2px;
    transition: all 0.4s ease;
    transition: border-color 0.3s ease !important;
    white-space: nowrap;
}

.main-navbar-cta-about {
    color: #000;
    border: 1px solid #000;
}

.main-navbar-cta:hover {
    background: #111111;
    color: #ffffff !important;
    border: 1px solid #000000;
}

.main-navbar-wrapper.is-open .main-navbar-cta {
    color: #000000 !important;
    border: 1px solid #000000 !important;
    transition: all 0.4s ease !important;
}

.main-navbar-wrapper.is-open .main-navbar-cta:hover {
    color: #fff !important;
}

/* ─── FULL-SCREEN OVERLAY ───────────────────────────────── */
.main-navbar-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9;
    /* starts collapsed above the bar */
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.main-navbar-wrapper.is-open .main-navbar-overlay {
    pointer-events: all;
}

/* spacer so content starts below the fixed bar */
.main-navbar-overlay-spacer {
    flex-shrink: 0;
    height: 64px;
}


.main-navbar-overlay-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* ─── OVERLAY INNER ─────────────────────────────────────── */
.main-navbar-overlay-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 4fr 1.5fr;
    align-items: center;
    gap: 0;
    padding: 0px 200px;
    /* overflow: hidden; */
    width: 70%;
}

.main-navbar-overlay-inner-2 {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
    gap: 0;
    /* padding: 0px 200px; */
    overflow: hidden;
}

/* col labels */
.main-navbar-col-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .35);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(10px);
}

/* ─── MAIN LINKS ────────────────────────────────────────── */
.main-navbar-links-col {
    /* grid-column: 1; */
    padding-right: 24px;
}

.main-navbar-link-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.main-navbar-link {
    display: inline-block;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    letter-spacing: -.03em;
    color: #111111;
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(40px);
    transition: color .2s;
    position: relative;
}

.main-navbar-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #FEDB5B;
    transition: width .35s cubic-bezier(.77, 0, .18, 1);
}

.main-navbar-link:hover::after {
    width: 100%;
}

.main-navbar-link:hover {
    color: #111111;
}

/* Services toggle */
.main-navbar-link--services {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.main-navbar-link--services .main-navbar-link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}

.main-navbar-link--services.sub-open .main-navbar-link-arrow {
    transform: rotate(90deg);
}

/* ─── SUBLINKS ──────────────────────────────────────────── */
.main-navbar-sublinks {
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s cubic-bezier(.77, 0, .18, 1);
    padding-left: 4px;
}

.main-navbar-sublinks.sub-open {
    max-height: 340px;
}

.main-navbar-sublink {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    padding: 6px 0;
    opacity: 0.75;
    letter-spacing: .01em;
    transition: opacity .2s, color .2s, padding-left .25s;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.main-navbar-sublink:last-child {
    border-bottom: none;
}

.main-navbar-sublink .main-navbar-sublink-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FEDB5B;
    flex-shrink: 0;
    transform: scale(0);
    transition: transform .25s .05s;
}

.main-navbar-sublink:hover {
    opacity: 1;
    padding-left: 6px;
    color: #111111;
}

.main-navbar-sublink:hover .main-navbar-sublink-dot {
    transform: scale(1);
}

/* ─── SECOND NAV COL ────────────────────────────────────── */
/* .main-navbar-links-col-2 {
    grid-column: 2;
    padding-left: 16px;
} */

/* ─── LOCATION COL ──────────────────────────────────────── */
/* .main-navbar-info-col {
    grid-column: 3;
    padding-left: 24px;
} */

.main-navbar-address {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 1.6);
    opacity: 0;
    transform: translateY(16px);
    font-weight: 500;
}

.main-navbar-address strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 8px;
}

/* ─── CONTACT COL ───────────────────────────────────────── */
.main-navbar-contact-col {
    /* grid-column: 4; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    /* padding-left: 24px; */
}

.main-navbar-btn {
    font-family: main;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: transform .2s, opacity .2s;
    opacity: 0;
    transform: translateY(16px);
    /* width: 100%; */
    text-align: center;
}

.main-navbar-btn:hover {
    transform: translateY(-1px);
    opacity: 1 !important;
}

.main-navbar-btn--dark {
    background: #111111;
    color: #ffffff;
}

.main-navbar-btn--accent {
    background: #FEDB5B;
    color: #111111;
}

/* ─── SOCIALS ───────────────────────────────────────────── */
.main-navbar-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(16px);
}

.main-navbar-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 16px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}

.main-navbar-social-link:hover {
    background: #FEDB5B;
    border-color: #FEDB5B;
    color: #111111;
}

/* ─── DIVIDER ───────────────────────────────────────────── */
.main-navbar-divider {
    height: 1px;
    background: rgba(0, 0, 0, .1);
    margin: 32px 48px 24px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.main-navbar-overlay-footer {
    padding: 0 48px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
}

.main-navbar-footer-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.main-navbar-footer-copy {
    font-size: 11px;
    color: rgba(0, 0, 0, .35);
    letter-spacing: .06em;
}



@media(max-width: 768px) {
    .main-navbar-cta {
        display: none;
    }

    .main-navbar-wrapper {
        width: 100%;
    }

    .main-navbar-bar {
        width: 100%;
        padding-left: 20px;
    }

    .main-navbar-toggle {
        left: 80%;
    }

    .main-navbar-overlay {
        justify-content: space-between;
    }

    .main-navbar-overlay-inner {
        grid-template-rows: 1fr;
        gap: 40px;
        grid-template-columns: none;
        padding: 0px 20px;
    }

    .main-navbar-overlay-inner-2 {
        display: none;
    }

    .main-navbar-overlay-outer {
        gap: 40px;
        height: auto;
    }

    .main-navbar-overlay-footer {
        flex-direction: column;
        gap: 20px;
        align-items: start;
        padding: 0px 20px 40px 20px;
    }

    .main-navbar-divider {
        margin: 0;
    }

    .main-navbar-logo {
        width: 15%;
    }

    .main-navbar-logo img {
        width: 100%;
    }
}

/* main-navbar-end   */



/* home-hero-section-start */
.home-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    position: relative;
    overflow: hidden;
}

.home-hero-overlay {
    background: #0000006c;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

.home-hero-video {
    position: absolute;
    /* width: 100%;
    height: 100%; */
    z-index: 5;
}

.home-hero-container {
    position: relative;
    z-index: 15;
    padding: 50px 100px 0px 100px;
    display: flex;
}

.home-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home-hero-heading {
    font-size: 4rem;
    font-weight: 600;
    width: 50%;
    color: #fff;
    /* text-transform: uppercase; */
    letter-spacing: -1px;
    margin: 0;
}

.home-hero-para {
    font-size: 1.2rem;
    font-weight: 600;
    width: 30%;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}


.home-hero-para span {
    color: #FEDB5B;
}


@media(max-width: 768px) {
    .home-hero-container {
        padding: 20px;
    }

    .home-hero-content {
        flex-direction: column;
        align-items: start;
        gap: 50px;
    }

    .home-hero-heading {
        font-size: 2.2rem;
        width: 100%;
    }

    .home-hero-br-desktop {
        display: none;
    }

    .home-hero-para {
        width: 100%;
        font-weight: 500;
        font-size: 1rem;
    }
}

/* home-hero-section-end   */








/* home-affiliation-section-start */
.home-affiliation-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    font-family: main;
}

.home-affiliation-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-affiliation-heading {
    font-size: 3.2rem;
    letter-spacing: -1px;
    font-weight: 500;
}


.home-affiliation-slider .slick-track {
    display: flex;
    align-items: center;
    -webkit-transition-timing-function: linear !important;
    -moz-transition-timing-function: linear !important;
    -ms-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

/* Individual slide container */
.home-affiliation-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    padding: 0 30px;
}

/* Logo image styling */
.home-affiliation-image {
    max-width: 150px;
    height: auto;
    display: block;
}


@media(max-width: 768px) {
    .home-affiliation-slider-wrapper {
        padding: 80px 20px 0px 20px;
        width: auto;
    }

    .home-affiliation-heading {
        font-size: 2rem;
        text-align: center;
    }

    .home-affiliation-image {
        max-width: 230px;
        height: 80px;
    }

    .home-affiliation-slider .slick-track {
        gap: 130px;
    }

    .home-affiliation-slide {
        padding: 0;
    }
}

/* home-affiliation-section-end   */





/* wcu-section-start */
.wcu-section {
    padding: 80px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    position: relative;
}

.wcu-asset {
    position: absolute;
    left: -20%;
    top: 10%;
    opacity: 0.5;
    z-index: -10;
}

.wcu-container {
    width: 100%;
    padding: 0px 100px 0px 100px;
    display: flex;
    align-items: start;
}

.wcu-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #333333;
    padding-top: 50px;
    gap: 50px;
}

.wcu-left-text-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.parallax-frame {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Adjust height of the frame as needed */
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 130%;
    /* Taller than the frame to allow movement */
    object-fit: cover;
}

.wcu-left span {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 800;
}

.wcu-left i {
    font-weight: 800;
    font-size: 1rem;
}

.wcu-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 800px;
    border-top: 1px solid #333333;
    padding-top: 50px;
}

.wcu-right-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-para {
    font-weight: 600;
    font-size: 1.7rem;
    margin: 0;
    max-width: 850px;
    color: #333333;
    /* text-transform: uppercase; */
}

.wcu-para .line {
    display: block;
    overflow: hidden;
}

.wcu-right-middle {
    display: flex;
    align-items: center;
    justify-content: start;
}

.wcu-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    width: 80%;
}

@media(max-width: 1650px) {
    .wcu-card-grid {
        width: 100%;
    }
}

.wcu-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* padding: 20px; */
}

.wcu-card i {
    background-color: #FEDB5B;
    font-size: 1.2rem;
    font-weight: 100;
    padding: 12px;
    border-radius: 6px;
    color: #333333;
}

.wcu-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
}

.wcu-card-content p {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.wcu-right-bottom {
    display: flex;
    align-items: start;
}

.wcu-btn {
    padding: 10px 40px;
    background-color: #4e4e4e;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

.wcu-btn:hover {
    background-color: #000;
}



@media(max-width: 768px) {
    .wcu-container {
        flex-direction: column;
        padding: 20px;
    }

    .wcu-left {
        width: 100%;
    }

    .parallax-frame {
        height: 40vh;
    }

    .parallax-img {
        width: 100%;
        height: 100%;
    }

    .wcu-right {
        width: 100%;
        height: fit-content;
        gap: 30px;
        align-items: center;
    }

    .wcu-para {
        width: 100%;
        font-size: 1.2rem;
    }

    .wcu-card-grid {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }

    .wcu-card {
        flex-direction: row;
        gap: 20px;
    }

    .wcu-card-content h3 {
        margin-top: 0px;
    }

    .wcu-right-bottom {
        width: 100%;
    }

    .wcu-btn {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}

/* wcu-section-end   */


/* achieve-section-start */
.achieve-section {
    font-family: main, 'Manrope', sans-serif;
    display: flex;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

/* ── CARD ── */
.achieve-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.achieve-card:last-child {
    border-right: none;
}

.achieve-card-bg {
    position: absolute;
    inset: -6%;
    /* extra room so scrub scale never shows edge */
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.achieve-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.62) 50%,
            rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

/* Content starts at top, GSAP moves it downward on scroll */
.achieve-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 32px 28px 0;
    will-change: transform;
}

.achieve-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px dotted rgba(255, 255, 255, 1.3);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1.65);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.achieve-icon-wrap {
    margin-bottom: 12px;
}

.achieve-icon-wrap i {
    font-size: 26px;
    color: #FEDB5B;
    display: block;
    line-height: 1;
}

.achieve-number {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.achieve-number-value {
    display: inline-block;
}

.achieve-number-suffix {
    font-size: 0.52em;
    font-weight: 500;
    color: #FEDB5B;
}

.achieve-heading {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
    line-height: 1.25;
}

.achieve-rule {
    width: 100%;
    height: 2px;
    background: #FEDB5B;
    margin-bottom: 10px;
    border: none;
    opacity: 0.9;
}

.achieve-body {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.72;
    /* max-width: 300px; */
}

/* images */
.achieve-card:nth-child(1) .achieve-card-bg {
    background-image: url('https://images.unsplash.com/photo-1616432043562-3671ea2e5242?q=80&w=687');
}

.achieve-card:nth-child(2) .achieve-card-bg {
    background-image: url('https://images.unsplash.com/photo-1670121180530-cfcba4438038?q=80&w=687');
}

.achieve-card:nth-child(3) .achieve-card-bg {
    background-image: url('https://images.unsplash.com/photo-1690555710341-6c54e9c3abec?q=80&w=687');
}


@media(max-width: 768px) {
    .achieve-section {
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .achieve-card {
        overflow: visible;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: auto;
    }

    .achieve-card-bg {
        inset: 0;
    }

    .achieve-card-content {
        position: relative;
        z-index: 100;
        padding: 30px;
    }
}

/* achieve-section-end   */




/* home-about-section-start */
.home-about-section {
    padding: 120px 0px 80px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
}

.home-about-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding: 0px 100px;
    gap: 50px;
}

.home-about-top {
    display: flex;
    justify-content: center;
    height: 300px;
}

.home-about-top-left {
    width: 50%;
    display: flex;
    align-items: start;
    gap: 30px;
}

.home-about-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #000;
}

.home-about-tag div {
    height: 5px;
    width: 5px;
    background-color: #FEDB5B;
    border-radius: 50px;
}

.home-about-tag span {
    color: #fff;
}

.home-about-heading {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 600;
    color: #333;
}



.home-about-top-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    gap: 40px;
}

.home-about-btn {
    background-color: #4e4e4e;
    padding: 10px 40px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
}

.home-about-btn:hover {
    background-color: #000;
}


.home-about-paras {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.home-about-paras p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.home-about-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}


.home-about-parallax-frame {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.home-about-parallax-img {
    /* position: absolute; */
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 130%;
    object-fit: cover;
}



@media(max-width: 768px) {
    .home-about-section {
        height: fit-content;
        padding: 60px 0px;
    }

    .home-about-container {
        padding: 0px 20px;
    }

    .home-about-top {
        flex-direction: column;
    }

    .home-about-top-left {
        width: 100%;
        flex-direction: column;
    }

    .home-about-paras {
        flex-direction: column;
        gap: 0px;
    }

    .home-about-top {
        height: auto;
        gap: 30px;
    }

    .home-about-heading {
        font-size: 2.2rem;
    }

    .home-about-br-desktop {
        display: none;
    }

    .home-about-top-right {
        width: 100%;
    }

    .home-about-parallax-frame {
        height: 30vh;
    }

    .home-about-parallax-img {
        height: 130%;
    }
}

/* home-about-section-end   */



/* home-service-section-start */
.home-service-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px 80px 0px;
    font-family: main;
    height: fit-content;
}

.home-service-container {
    width: 100%;
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.home-service-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.home-service-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #FEDB5B;
    padding: 5px 10px;
}

.home-service-tag div {
    height: 5px;
    width: 5px;
    background-color: #333;
    border-radius: 50px;
}

.home-service-heading {
    font-size: 3rem;
    font-weight: 600;
    max-width: 1000px;
    margin: 0;
    color: #333 !important;
}

.home-service-heading span {
    color: #333;
}

.home-service-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.home-service-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.home-serivce-card {
    height: 0px;
    /* padding: 20px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    text-decoration: none;
}

.home-serivce-card-2 {
    height: 0px;
    /* padding: 20px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    text-decoration: none;
}


.home-service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000028;
}

.home-serivce-card:nth-child(1) {
    background-image: url(https://images.unsplash.com/photo-1591419478162-a4dd21b7ec0a?q=80&w=687);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-serivce-card:nth-child(2) {
    background-image: url(https://images.unsplash.com/photo-1696592783645-33e966c4c274?q=80&w=687);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-serivce-card:nth-child(3) {
    background-image: url(https://images.unsplash.com/photo-1716561210729-c3350e95d1ad?q=80&w=736);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-serivce-card-2:nth-child(1) {
    background-image: url(https://images.unsplash.com/photo-1742940796376-8f34cb25be44?q=80&w=687);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-serivce-card-2:nth-child(2) {
    background-image: url(https://images.unsplash.com/photo-1616432043562-3671ea2e5242?q=80&w=687);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-serivce-card-2:nth-child(3) {
    background-image: url(https://images.unsplash.com/photo-1675388773022-e82caedee672?q=80&w=735);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-service-card-cont {
    position: relative;
    z-index: 10;
    background-color: #ffffff27;
    backdrop-filter: blur(50px);
    padding: 20px;
}

.home-service-card-cont h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
}

.home-service-card-cont p {
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
}


@media(max-width: 768px) {
    .home-service-section {
        padding: 60px 0px;
        overflow: hidden;
    }

    .home-service-container {
        padding: 0px 20px;
    }

    .home-service-header {
        flex-direction: column;
        gap: 20px;
    }

    .home-service-heading {
        font-size: 1.5rem;
    }

    .home-service-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-service-grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-service-card-cont h3 {
        font-size: 1.3rem;
        margin-top: 0px;
    }

    .home-service-card-cont p {
        font-size: 0.9rem;
        margin-bottom: 0px;
    }
}

/* home-service-section-end   */



/* home-testimonial-section-start */
.home-testimonial-section {
    font-family: main;
    /* background: #F0EDE8; */
    padding: 72px 0 160px 0px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background-color: #fff;
}


.home-testimonial-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

.home-testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.home-testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.18);
    /* border-radius: 40px; */
    padding: 5px 13px 5px 10px;
    margin-bottom: 20px;
}

.home-testimonial-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c0392b;
    flex-shrink: 0;
}

.home-testimonial-heading {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.03em;
    line-height: 1.08;
    max-width: 560px;
}

.home-testimonial-arrows {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 6px;
    flex-shrink: 0;
}

.home-testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #FEDB5B;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 20px;
    line-height: 1;
    transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease;
    flex-shrink: 0;
    outline: none;
}

.home-testimonial-arrow:hover {
    background: #111;
    color: #FEDB5B;
    transform: scale(1.07);
}

.home-testimonial-arrow:active {
    transform: scale(0.95);
}

.home-testimonial-slider-wrap {
    padding-left: 64px;
    max-width: 1300px;
    width: 100%;
}

.home-testimonial-slider .slick-list {
    overflow: visible !important;
}

.home-testimonial-slider .slick-track {
    display: flex !important;
}

.home-testimonial-slider .slick-slide {
    height: auto !important;
    margin: 0 15px;
}

/* .home-testimonial-slider .slick-slide>div {
    height: 100%;
} */

.home-testimonial-card {
    background: #F0EDE8;
    border-radius: 6px;
    padding: 32px 28px 28px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    min-height: 310px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    outline: none;
}

.home-testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.home-testimonial-card-company {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
}

.home-testimonial-card-company-icon {
    font-size: 17px;
    color: #555;
    line-height: 1;
}

.home-testimonial-card-company-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.home-testimonial-card-quote {
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.78;
    flex: 1 !important;
    margin-bottom: 36px;
}

.home-testimonial-card-author-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}

.home-testimonial-card-author-role {
    font-size: 12px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.42);
    letter-spacing: 0.01em;
}

.home-testimonial-progress-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 28px;
    display: none;
}

.home-testimonial-progress-track {
    flex: 1;
    max-width: 260px;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.home-testimonial-progress-fill {
    height: 100%;
    background: #111;
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-testimonial-progress-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.08em;
    white-space: nowrap;
}


@media(max-width: 768px) {
    .home-testimonial-section {
        padding: 60px 0px;
    }

    .home-testimonial-container {
        padding: 0px 20px;
    }

    .home-testimonial-header {
        flex-direction: column;
    }

    .home-testimonial-header-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .home-testimonial-heading {
        font-size: 2.5rem;
        margin-top: 0px;
    }

    .home-testimonial-arrows {
        align-self: flex-end;
    }

    /* .home-testimonial-slider .slick-slide{
        margin: 0;
    } */

    /* .home-testimonial-slider .slick-track{
        gap: 0px;
    } */

    .home-testimonial-slider-wrap {
        padding: 0px;
    }
}

/* home-testimonial-section-end   */





/* main-cta-section-start */
.main-cta-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    font-family: 'main', sans-serif;
    box-sizing: border-box;
}

/* Background Video Setup */
.main-cta-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Top & Bottom Vignette Overlay */
.main-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 25%, rgb(20, 20, 18, 0.5) 75%, rgb(20, 20, 18) 100%);
    z-index: 2;
}

/* Layout Content Grid */
.main-cta-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    height: 100%;
    padding: 6% 8%;
    box-sizing: border-box;
    align-items: center;
}

/* Left-aligned Elements */
.main-cta-left-box {
    align-self: center;
    box-sizing: border-box;
}

.main-cta-heading {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
    box-sizing: border-box;
}

.main-cta-italic {
    font-style: italic;
    font-weight: 300;
}

/* Right-aligned Elements (Bottom Right Placement) */
.main-cta-right-box {
    align-self: flex-end;
    justify-self: flex-end;
    max-width: 440px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.main-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 32px 0;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

/* Action Buttons */
.main-cta-button-group {
    display: flex;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
}

.main-cta-btn-primary {
    background-color: #ffe88a;
    /* Logistics Brand Orange */
    color: #000000;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
}

.main-cta-btn-primary:hover {
    background-color: #FEDB5B;
    /* color: #fff; */
}

.main-cta-btn-secondary {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.main-cta-btn-secondary:hover {
    opacity: 0.8;
}

.main-cta-arrow {
    margin-left: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Responsive adjustments for Tablets/Mobile */
@media (max-width: 768px) {
    .main-cta-container {
        height: 60vh;
    }

    .main-cta-content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        align-items: center;
        padding: 80px 40px;
    }

    .main-cta-right-box {
        align-self: flex-start;
        justify-self: flex-start;
        max-width: 500px;
    }

    .main-cta-description {
        font-weight: 600;
    }
}

/* main-cta-section-end   */










/* Scoped Footer Wrap Block */
.main-footer-container {
    background-color: rgb(20, 20, 18);
    /* Dark minimal tone matching image background */
    padding: 70px 6% 80px 6%;
    font-family: 'main', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* Top Container System */
.main-footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 60px;
    box-sizing: border-box;
}

/* Left Brand Panel */
.main-footer-brand-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.main-footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.main-footer-logo-icon {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.main-footer-logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.main-footer-headline {
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 28px 0;
    letter-spacing: -0.01em;
    box-sizing: border-box;
}

.main-footer-btn-quote {
    background-color: #e6e4e0;
    color: #141412;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
}

.main-footer-btn-quote:hover {
    background-color: #ffffff;
}

/* Right Meta Panel (Copyright high / Socials low) */
.main-footer-meta-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    box-sizing: border-box;
}

.main-footer-copyright-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 4px;
}

.main-footer-social-links {
    display: flex;
    gap: 24px;
    margin-bottom: 4px;
    box-sizing: border-box;
}

.main-footer-social-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.main-footer-social-item:hover {
    /* opacity: 0.7; */
    color: #FEDB5B;
}

.main-footer-arrow {
    font-size: 0.85rem;
    margin-left: 1px;
    display: inline-block;
}

/* Horizontal Partition Details */
.main-footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 0 50px 0;
    box-sizing: border-box;
}

/* Bottom Directory Setup */
.main-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Bottom Left Return Action */
.main-footer-scroll-wrapper {
    align-self: flex-end;
    box-sizing: border-box;
    display: flex;
    gap: 50px;
}

.main-footer-back-to-top {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.main-footer-back-to-top:hover {
    /* opacity: 0.7; */
    color: #FEDB5B;
}

.main-footer-up-arrow {
    margin-right: 4px;
}

/* Navigation Directory Grid */
.main-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    gap: 48px;
    box-sizing: border-box;
}

.main-footer-links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.main-footer-column-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.main-footer-nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s ease;
    box-sizing: border-box;
}

.main-footer-nav-link:hover {
    /* color: #ffffff; */
    color: #FEDB5B;
}

/* Responsive Adaptive Breaking Points */
@media (max-width: 768px) {
    .main-footer-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .main-footer-meta-panel {
        align-items: flex-start;
        text-align: left;
        gap: 30px;
    }

    .main-footer-bottom-row {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .main-footer-scroll-wrapper {
        align-self: flex-start;
    }

    .main-footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .main-footer-container {
        padding: 70px 6% 110px 6%;
    }

    .main-footer-social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: center;
    }
}



/* about-hero-section-start */
.about-hero__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.about-hero__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.about-hero__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    padding: 0 3vw 1.5vw;
    z-index: 1;
}

.about-hero__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}

.about-hero__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.about-hero__heading-arrow i {
    color: #999;
    font-size: 5rem;
}


@media(max-width: 768px) {
    .about-hero__heading {
        font-size: 2.5rem;
    }

    .about-hero__heading-wrap {
        height: 30vh;
    }
}

/* about-hero-section-end   */


/* wwa-section-start */
.wwa-section {
    /* background-color: #111111; */
    background-color: #fff;
    position: relative;
    z-index: 10;
    padding: 200px 0px;
    font-family: main;
}

.wwa-container {
    padding: 0px 100px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.wwa-left {
    display: flex;
    align-items: start;
    justify-content: start;
}

.wwa-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* background-color: #ffffff; */
    background-color: #000;
    padding: 5px 10px;
}

.wwa-tag div {
    width: 10px;
    height: 10px;
    background-color: #FEDB5B;
    border-radius: 50px;
}

.wwa-tag span {
    color: #ffffff;
    font-size: 1rem;
}

.wwa-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.wwa-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.wwa-right-bottom {
    display: flex;
    gap: 40px;
}

.wwa-right-bottom p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: justify;
    color: #999;
}


@media(max-width: 768px) {
    .wwa-container {
        padding: 0px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wwa-heading {
        font-size: 1.6rem;
    }

    .wwa-right-bottom {
        flex-direction: column;
    }

    .wwa-section {
        padding: 60px 0px;
    }
}

/* wwa-section-end   */





/* amv-section-start */
.amv-section {
    /* background-color: #333; */
    padding: 80px 0px;
    position: relative;
    z-index: 10;
    font-family: main;
}

.amv-container {
    padding: 0px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 50px;
}

.amv-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    padding: 50px;
    background-color: #fff;
}

.amv-card:nth-child(1) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.amv-card:nth-child(2) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.amv-card-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.amv-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #FEDB5B;
}

.amv-tag div {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50px;
}

.amv-card-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.amv-card-top img {
    width: 20%;
}

.amv-card-top h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.amv-card-top h3 span {
    color: #c0392b;
}

.amv-card-bottom {
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}


@media(max-width: 768px) {

    .amv-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .amv-container {
        width: 100%;
        padding: 0px 20px;
    }

    .amv-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 0px 0px;
    }

    .amv-card {
        height: auto;
        padding: 25px;
    }

    .amv-card-top h3 {
        font-size: 1.3rem;
    }

    .amv-card-bottom p {
        margin-bottom: 0px;
        font-size: 0.9rem;
    }
}

/* amv-section-end   */





/* about-wcu-section-start */
.about-wcu {
    font-family: main;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 9vw 5vw 10vw;
}

.about-wcu__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: start;
    padding-bottom: 5vw;
    border-bottom: 1px solid #d8d8d5;
}

.about-wcu__left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-wcu__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999;
}

.about-wcu__eyebrow-mark {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FEDB5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-wcu__heading {
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 300;
    color: #1e1e1e;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 14ch;
}

.about-wcu__right {
    padding-top: 0.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

.about-wcu__body {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    max-width: 100ch;
}

.about-wcu__pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5vw;
    border-left: 1px solid #d8d8d5;
}

.about-wcu__pillar {
    padding: 2.5rem 2.2rem 2.5rem 2.2rem;
    border-right: 1px solid #d8d8d5;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transition: background 0.3s ease;
}

.about-wcu__pillar:hover {
    background: #eaeae7;
}

.about-wcu__pillar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-wcu__pillar-index {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #bbb;
}

.about-wcu__pillar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-wcu__pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1e1e1e;
    stroke-width: 1.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-wcu__pillar-divider {
    width: 28px;
    height: 2px;
    background: #FEDB5B;
}

.about-wcu__pillar-title {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 500;
    color: #1e1e1e;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about-wcu__pillar-body {
    font-size: 0.82rem;
    font-weight: 300;
    color: #777;
    line-height: 1.75;
}

.about-wcu__strip {
    margin-top: 5vw;
    padding-top: 3rem;
    border-top: 1px solid #d8d8d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-wcu__strip-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaa;
}

.about-wcu__strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e1e1e;
    text-decoration: none;
    border-bottom: 1.5px solid #1e1e1e;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.about-wcu__strip-cta:hover {
    color: #FEDB5B;
    border-color: #FEDB5B;
}

.about-wcu__strip-cta-arrow {
    font-size: 1em;
    transition: transform 0.2s;
}

.about-wcu__strip-cta:hover .about-wcu__strip-cta-arrow {
    transform: translateX(4px);
}

/* about-wcu-section-end   */




/* about-counter-section-start */
.about-counter {
    font-family: main;
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 8vw 5vw;
}

.about-counter__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4vw;
    align-items: center;
}

.about-counter__left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-counter__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.8rem;
    font-weight: 1000;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.8rem;
}

.about-counter__heading {
    font-size: 3.4rem;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.about-counter__left-bottom {
    margin-top: auto;
    padding-top: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 1.6rem;
}

.about-counter__image-frame {
    width: 100%;
    aspect-ratio: 2.5 / 3;
    overflow: hidden;
}

.about-counter__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
}

.about-counter__body {
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    line-height: 1.2;
    max-width: 38ch;
}

.about-counter__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    height: 90%;
}

.about-counter__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem 1.8rem;
    min-height: 240px;
}

.about-counter__card--black {
    background: #040404;
    transform: translateY(-50px);
}

.about-counter__card--grey {
    background: #C9C9C9;
    transform: translateY(50px);
}

.about-counter__card--yellow {
    background: #FEDB5B;
    transform: translateY(-50px);
}

.about-counter__card--dark {
    background: #333333;
    transform: translateY(50px);
}

.about-counter__card-number {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0;
}

.about-counter__card--black .about-counter__card-number {
    color: #fff;
}

.about-counter__card--grey .about-counter__card-number {
    color: #1e1e1e;
}

.about-counter__card--yellow .about-counter__card-number {
    color: #1e1e1e;
}

.about-counter__card--dark .about-counter__card-number {
    color: #fff;
}

.about-counter__card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-counter__card-divider {
    height: 1px;
}

.about-counter__card--black .about-counter__card-divider {
    background: #333;
}

.about-counter__card--grey .about-counter__card-divider {
    background: #b0b0ad;
}

.about-counter__card--yellow .about-counter__card-divider {
    background: #e8c840;
}

.about-counter__card--dark .about-counter__card-divider {
    background: #444;
}

.about-counter__card-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.about-counter__card--black .about-counter__card-label {
    color: #aaa;
}

.about-counter__card--grey .about-counter__card-label {
    color: #555;
}

.about-counter__card--yellow .about-counter__card-label {
    color: #555;
}

.about-counter__card--dark .about-counter__card-label {
    color: #aaa;
}



@media(max-width: 768px) {
    .about-counter__grid {
        grid-template-columns: 1fr;
    }

    .about-counter__heading {
        font-size: 2.4rem;
    }

    .about-counter__left-bottom {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .about-counter__mosaic {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .about-counter__card--black {
        transform: translateY(0px);
    }

    .about-counter__card--grey {
        transform: translateY(0px);
    }

    .about-counter__card--yellow {
        transform: translateY(0px);
    }

    .about-counter__card--dark {
        transform: translateY(0px);
    }

    .about-counter__card-number {
        font-size: 2rem;
    }

    .about-counter__card {
        min-height: 110px;
    }

    .about-counter__card-label {
        font-size: 0.7rem;
    }

    .about-counter__image {
        height: 100%;
    }

    .about-counter__image-frame {
        aspect-ratio: 5/3;
    }

}

/* about-counter-section-end   */





/* about-cta-section-start */
.about-cta {
    font-family: main;
    background-color: #FEDB5B;
    position: relative;
    z-index: 10;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(to right,
            rgba(0, 0, 0, 0.07) 0px,
            rgba(0, 0, 0, 0.07) 1px,
            transparent 1px,
            transparent calc(100% / 20)),
        repeating-linear-gradient(to bottom,
            rgba(0, 0, 0, 0.07) 0px,
            rgba(0, 0, 0, 0.07) 1px,
            transparent 1px,
            transparent 80px);
    pointer-events: none;
    z-index: 0;
}

.about-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 1000px;
}

.about-cta__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.68rem;
    font-weight: 1000;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

.about-cta__heading {
    font-size: 3rem;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-cta__tags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-cta__tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.4em 0.9em;
    border-radius: 999px
}

.about-cta__tag-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

/* hide the last dot */
.about-cta__tag-dot:last-child {
    display: none;
}

.about-cta__btn {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.about-cta__btn:hover {
    background: #fff;
    color: #111;
}



@media(max-width: 768px) {
    .about-cta {
        min-height: 75vh;
    }

    .about-cta__heading {
        font-size: 1.4rem;
    }

    .about-cta__content {
        padding: 0px 30px;
        max-width: 350px;
    }

    .about-cta__tags {
        flex-wrap: nowrap;
    }
}

/* about-cta-section-end   */








/* rt-section-start */
.rt__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.rt__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.rt__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}


.rt__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
}

.rt__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}

@media(max-width: 1650px) {
    .rt__heading {
        font-size: 3.5rem;
    }
}

.rt__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.rt__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.rt__heading-arrow i {
    color: #999;
    font-size: 5rem;
}



@media(max-width: 768px) {
    .rt__heading {
        font-size: 2.5rem;
    }

    .rt__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 50px 3vw;
    }

    .rt__canvas {
        height: 130vh;
    }

    .rt__para {
        font-size: 1rem;
    }
}

/* rt-section-end   */










/* service-over-section-start */
.service-over-section {
    /* background-color: #111111; */
    background-color: #fff;
    position: relative;
    z-index: 10;
    padding: 200px 0px;
    font-family: main;
}

.service-over-container {
    padding: 0px 100px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.service-over-left {
    display: flex;
    align-items: start;
    justify-content: start;
}

.service-over-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* background-color: #ffffff; */
    background-color: #000;
    padding: 5px 10px;
}

.service-over-tag div {
    width: 10px;
    height: 10px;
    background-color: #FEDB5B;
    border-radius: 50px;
}

.service-over-tag span {
    color: #ffffff;
    font-size: 1rem;
}

.service-over-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.service-over-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.service-over-right-bottom {
    display: flex;
    gap: 40px;
}

.service-over-right-bottom p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: justify;
    color: #999;
}



@media(max-width: 768px) {
    .service-over-section {
        padding: 60px 0px;
    }

    .service-over-container {
        padding: 0px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-over-heading {
        font-size: 1.1rem;
    }

    .service-over-right-bottom {
        flex-direction: column;
    }

    .service-over-right-bottom p {
        font-size: 0.9rem;
        font-weight: 500;
    }
}

/* service-over-section-end   */




/* service-cta-section-start */
.service-cta-section {
    padding: 100px 200px 100px 200px;
    position: relative;
    z-index: 10;
    font-family: main;
    /* background-color: #fff; */
}

.service-cta-overlay {
    background-color: #00000074;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
}

.service-cta-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.service-cta-cont {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 11;
}

.service-cta-heading {
    font-size: 5rem;
    width: 70%;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    letter-spacing: -3px;
}

@media(max-width: 1650px) {
    .service-cta-heading {
        font-size: 4rem;
    }
}

.service-cta-heading span {
    color: #FEDB5B;
}

.service-cta-btn-wrapper {
    background-color: #FEDB5B;
    padding: 5px 5px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-cta-btn-wrapper i {
    padding: 15px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.service-cta-btn-wrapper span {
    font-weight: 500;
    transition: all 0.2s ease;
    color: #000;
}

@media(max-width: 1650px) {
    .service-cta-btn-wrapper span {
        font-size: 15px;
    }
}

.service-cta-btn-wrapper:hover {
    background-color: #000;
}


.service-cta-btn-wrapper:hover>i {
    color: #000;
    background-color: #FEDB5B;
    transform: rotate(-45deg);
}

.service-cta-btn-wrapper:hover>span {
    color: #FEDB5B;
}


@media(max-width: 768px) {
    .service-cta-section {
        padding: 60px 20px;
    }

    .service-cta-cont {
        flex-direction: column;
        gap: 70px;
    }

    .service-cta-heading {
        width: 100%;
        font-size: 2rem;
    }
}

/* service-cta-section-end   */











/* lttl-section-start */
.lttl__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.lttl__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.lttl__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.lttl__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
    justify-content: space-between;
}

.lttl__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}


@media(max-width: 1650px) {
    .lttl__heading {
        font-size: 3.5rem;
    }
}

.lttl__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.lttl__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.lttl__heading-arrow i {
    color: #999;
    font-size: 5rem;
}



@media(max-width: 768px) {
    .lttl__heading {
        font-size: 2.5rem;
    }

    .lttl__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 50px 3vw;
    }

    .lttl__canvas {
        height: 130vh;
    }

    .lttl__para {
        font-size: 1rem;
    }
}

/* lttl-section-end   */





/* drayage-section-start */
.drayage__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.drayage__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.drayage__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.drayage__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
    justify-content: space-between;
}

.drayage__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}

@media(max-width: 1650px) {
    .drayage__heading {
        font-size: 3.5rem;
    }
}

.drayage__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.drayage__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.drayage__heading-arrow i {
    color: #999;
    font-size: 5rem;
}


@media(max-width: 768px) {
    .drayage__heading {
        font-size: 2.5rem;
    }

    .drayage__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 80px 3vw;
    }

    .drayage__canvas {
        height: 130vh;
    }

    .drayage__para {
        font-size: 1rem;
    }
}

/* drayage-section-end   */







/* auto-ship-section-start */
.auto-ship__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.auto-ship__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.auto-ship__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.auto-ship__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
    justify-content: space-between;
}

.auto-ship__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}

@media(max-width: 1650px) {
    .auto-ship__heading {
        font-size: 3.5rem;
    }
}

.auto-ship__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.auto-ship__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.auto-ship__heading-arrow i {
    color: #999;
    font-size: 5rem;
}



@media(max-width: 768px) {
    .auto-ship__heading {
        font-size: 2rem;
        align-self: start;
        gap: 4rem;
    }

    .auto-ship__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 30px 3vw;
    }

    .auto-ship__canvas {
        height: 130vh;
    }

    .auto-ship__para {
        font-size: 1rem;
    }
}

/* auto-ship-section-end   */


/* trailer-relocation-section-start */
.trailer-relocation__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.trailer-relocation__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.trailer-relocation__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.trailer-relocation__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
    justify-content: space-between;
}

.trailer-relocation__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}

@media(max-width: 1650px) {
    .trailer-relocation__heading {
        font-size: 3.5rem;
    }
}

.trailer-relocation__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.trailer-relocation__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.trailer-relocation__heading-arrow i {
    color: #999;
    font-size: 5rem;
}


@media(max-width: 768px) {
    .trailer-relocation__heading {
        font-size: 2.5rem;
        align-self: start;
        gap: 4rem;
    }

    .trailer-relocation__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 40px 3vw;
    }

    .trailer-relocation__canvas {
        height: 130vh;
    }

    .trailer-relocation__para {
        font-size: 1rem;
    }
}

/* trailer-relocation-section-end   */




/* warehouse-section-start */
.warehouse__image-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.warehouse__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transform: scale(1.2);
}


.warehouse__canvas {
    font-family: main;
    position: relative;
    z-index: 1;
    height: 120vh;
    overflow: hidden;
}

.warehouse__heading-wrap {
    position: relative;
    /* width: 100%; */
    height: 50vh;
    background: #fff;
    display: flex;
    align-items: flex-end;
    gap: 100px;
    padding: 0 3vw 1.5vw;
    z-index: 1;
    justify-content: space-between;
}

.warehouse__heading {
    font-size: 5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: end;
    gap: 0.4rem;
    margin: 0;
    letter-spacing: -3px;
}


@media(max-width: 1650px) {
    .warehouse__heading {
        font-size: 3.5rem;
    }
}

.warehouse__para {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #777;
    max-width: 700px;
}

.warehouse__heading-arrow {
    display: inline-block;
    transform: translateY(0.06em);
}

.warehouse__heading-arrow i {
    color: #999;
    font-size: 5rem;
}


@media(max-width: 768px) {
    .warehouse__heading {
        font-size: 2.5rem;
        align-self: start;
        gap: 4rem;
    }

    .warehouse__heading-wrap {
        flex-direction: column;
        padding: 100px 3vw 100px 3vw;
    }

    .warehouse__canvas {
        height: 130vh;
    }

    .warehouse__para {
        font-size: 1rem;
    }
}

/* warehouse-section-end   */












.main-contact {
    font-family: main;
    background: #fff;
    color: #1e1e1e;
}

/* ══════════════════════════════════════════════════════
       HERO STRIP
    ══════════════════════════════════════════════════════ */
.main-contact__hero {
    background: #fff;
    padding: 9vw 5vw 6vw;
    border-bottom: 1px solid #e8e8e5;
}

.main-contact__hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: end;
}

.main-contact__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2rem;
}

.main-contact__hero-heading {
    font-size: 6rem;
    font-weight: 500;
    color: #1e1e1e;
    line-height: 1.0;
    letter-spacing: -0.03em;
}

.main-contact__hero-heading span {
    color: #FEDB5B;
}

.main-contact__hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 0.4rem;
}

.main-contact__hero-body {
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    line-height: 1.85;
    max-width: 46ch;
}

.main-contact__hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.main-contact__hero-meta-item {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.02em;
}

.main-contact__hero-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FEDB5B;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
       MAIN BODY: info left + form right
    ══════════════════════════════════════════════════════ */
.main-contact__body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 80vh;
}

/* ── LEFT: info panel ─────────────────────────────── */
.main-contact__info {
    padding: 6vw 4vw 6vw 5vw;
    border-right: 1px solid #e8e8e5;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.main-contact__info-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.main-contact__info-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #616161;
    margin-bottom: 0.4rem;
}

.main-contact__info-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1e1e1e;
    line-height: 1.6;
}

.main-contact__info-value a {
    color: #1e1e1e;
    text-decoration: none;
    border-bottom: 1px solid #e8e8e5;
    padding-bottom: 1px;
    transition: border-color 0.2s, color 0.2s;
}

.main-contact__info-value a:hover {
    color: #000;
    border-color: #FEDB5B;
}

.main-contact__info-divider {
    width: 28px;
    height: 2px;
    background: #FEDB5B;
}

/* Hours grid */
.main-contact__hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
}

.main-contact__hours-day {
    font-size: 1rem;
    font-weight: 500;
    color: #505050;
}

.main-contact__hours-time {
    font-size: 1rem;
    font-weight: 500;
    color: #505050;
}

/* Response badge */
.main-contact__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #f5f5f3;
    padding: 0.6em 1em;
    font-size: 0.7rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.main-contact__badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FEDB5B;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ── RIGHT: form panel ────────────────────────────── */
.main-contact__form-panel {
    padding: 6vw 5vw 6vw 5vw;
    background: #fafaf8;
}

.main-contact__form-heading {
    font-size: 3rem;
    font-weight: 500;
    color: #1e1e1e;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

/* ─── FORM ──────────────────────────────────────── */
.main-contact__form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Two-col row */
.main-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #e8e8e5;
}

.main-contact__form-row .main-contact__field:first-child {
    border-right: 1px solid #e8e8e5;
}

/* Full-width field */
.main-contact__field {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e8e8e5;
}

.main-contact__form-row .main-contact__field {
    border-bottom: none;
}

.main-contact__field-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6f6f6f;
    padding: 1.2rem 1.4rem 0;
}

.main-contact__field input,
.main-contact__field select,
.main-contact__field textarea {
    font-family: main;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e1e1e;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 1.4rem 1.2rem;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.main-contact__field input::placeholder,
.main-contact__field textarea::placeholder {
    color: #ccc;
}

.main-contact__field textarea {
    resize: none;
    min-height: 140px;
}

/* Dropdown wrapper — custom arrow */
.main-contact__select-wrap {
    position: relative;
}

.main-contact__select-wrap::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #bbb;
    pointer-events: none;
}

.main-contact__field select option {
    color: #1e1e1e;
}

/* Focus highlight */
.main-contact__field:focus-within {
    background: #fff;
}

.main-contact__field:focus-within .main-contact__field-label {
    color: #1e1e1e;
}

/* Submit row */
.main-contact__form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 0;
    gap: 2rem;
}

.main-contact__form-note {
    font-size: 1.2rem;
    font-weight: 600;
    color: #202020;
    line-height: 1.6;
    max-width: 32ch;
}

.main-contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: #1e1e1e;
    color: #fff;
    font-family: main;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #1e1e1e;
    padding: 1.1em 2.2em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
}

.main-contact__btn:hover {
    background: transparent;
    color: #1e1e1e;
}

.main-contact__btn-arrow {
    transition: transform 0.2s;
}

.main-contact__btn:hover .main-contact__btn-arrow {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════
       LOADER OVERLAY
    ══════════════════════════════════════════════════════ */
.main-contact__loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.main-contact__loader-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid #e8e8e5;
    border-top-color: #1e1e1e;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-contact__loader-text {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

/* ══════════════════════════════════════════════════════
       POPUP
    ══════════════════════════════════════════════════════ */
.main-contact__popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.main-contact__popup-box {
    background: #fff;
    padding: 3rem 3.5rem;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.main-contact__popup-mark {
    width: 36px;
    height: 3px;
    background: #FEDB5B;
}

.main-contact__popup-msg {
    font-size: 0.92rem;
    font-weight: 300;
    color: #1e1e1e;
    line-height: 1.75;
}

.main-contact__popup-close {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    background: #1e1e1e;
    color: #fff;
    font-family: main;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    padding: 0.9em 1.8em;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}

.main-contact__popup-close:hover {
    background: #333;
}





@media(max-width: 768px) {
    .main-contact__hero {
        padding: 19vw 5vw 6vw;
    }

    .main-contact__hero-inner {
        grid-template-columns: 1fr;
    }

    .main-contact__hero-heading {
        font-size: 3rem;
    }

    .main-contact__body {
        grid-template-columns: 1fr;
    }

    .main-contact__info {
        gap: 1.5rem;
    }

    .main-contact__form-heading {
        font-size: 2.4rem;
    }

    .main-contact__form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        border: none;
    }

    .main-contact__form-row .main-contact__field:first-child {
        border: none;
    }

    .main-contact__field input {
        border-bottom: 1px solid #e8e8e5;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .main-contact__form-submit {
        flex-direction: column-reverse;
    }
}