:root {
    --red: #E30613;
    --red-dark: #b5040f;
    --red-light: #ff1a2a;
    --dark: #1F2937;
    --dark2: #111827;
    --grey: #374151;
    --light-grey: #F3F4F6;
    --mid-grey: #9CA3AF;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --primary-font: 'Barlow', sans-serif;
    --secondary-font: 'Barlow', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    margin: 0 auto;
    width: 90%;
    max-width: 1300px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark2);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    font-size: 1rem;
    color: var(--grey);
    max-width: 560px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227,6,19,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tag {
    display: inline-block;
    background: rgba(227,6,19,0.1);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* AOS-style animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 18px 0;
}

#header.scrolled {
    background: #111827ba;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#header .container {
    width: 96%;
    max-width: 100%;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.logo-text {
    line-height: 1.1;
}

.logo-text strong {
    display: block;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

.logo-text span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
}

nav a:hover, nav a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 15px;
    padding: 9px 16px;
    border-radius: 50px;
    transition: all 0.2s;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-call:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-quote {
    background: var(--red);
    color: white;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 700;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-quote:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(227,6,19,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
    transition: all 0.3s;
}

@media(max-width: 1024px) {
    nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark2);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    nav.open {
        display: flex;
    }

    nav a {
        width: 100%;
        padding: 12px 16px;
    }

    .hamburger {
        display: flex;
    }

    .btn-call {
        display: none;
    }
}

/* HERO SLIDER */
.hero {
    height: 100vh;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

.swiper-hero {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88) 0%, rgb(17 24 39 / 33%) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    padding-left: 15px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,6,19,0.2);
    border: 1px solid rgba(227,6,19,0.4);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-tag i {
    color: var(--red);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 50px);
    color: white;
    line-height: 1.1;
    margin-bottom: 35px;
}

.hero-title em {
    color: var(--red);
    font-style: normal;
    display: block;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-stats-inner {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 700px;
}

.hero-stat {
    flex: 1;
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat strong {
    display: block;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.hero-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--red);
    border-color: var(--red);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 900;
}

/* ABOUT */
#about {
    /* padding: 100px 0; */
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
}
.stickyBox {
    position: sticky!important;
    top: 100px;
}
.about-img {
    /* position: relative; */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 111px;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--red);
    color: white;
    padding: 24px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-img-badge strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--primary-font);
    line-height: 1;
}

.about-img-badge span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about-content {
    padding-right: 20px;
}

.about-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-item i {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-item p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
}
.about-grid h5 { font-size: 17px;margin-bottom:5px;}
.about-grid h5 span{color:var(--red);}
@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    /* .about-img img {
        height: 280px;
    } */

    .about-img-badge {
        bottom: 10px;
        right: 10px;
    }
}

/* SERVICES */
#services {
    /* padding: 100px 0; */
    background: var(--light-grey);
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header .section-sub {
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    /* cursor: pointer; */
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.35s;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--red);
    transition: all 0.35s;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.35s;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.35s;
}

.service-card:hover h3, .service-card:hover p {
    color: rgba(255,255,255,0.9);
}

@media(max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* HUBS */
#hubs {
    /* padding: 100px 0; */
    background: var(--dark2);
}

.hubs-header {
    text-align: center;
    margin-bottom: 56px;
}

.hubs-header .section-title {
    color: white;
}

.hubs-header .section-sub {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
    text-align: center;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hub-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.hub-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hub-card:hover img {
    transform: scale(1.1);
}

.hub-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(227,6,19,0.85) 100%); */
    transition: all 0.4s;
}

.hub-card:hover .hub-overlay {
    /* background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(180,4,15,0.92) 100%); */
}

.hub-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 18px;
    background: #e3061345;
    backdrop-filter: blur(2px);
}

.hub-info h3 {
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.hub-info span {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media(max-width: 1024px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hub-card {
        aspect-ratio: 1/1;
    }
}

/* WHY US */
#why {
    /* padding: 100px 0; */
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
}

.why-img {
    position: relative;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 111px;
}

.why-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.why-img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: var(--radius);
    z-index: -1;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.why-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light-grey);
    border-radius: var(--radius);
    padding: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-feat:hover {
    background: white;
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.why-feat-icon {
    width: 42px;
    height: 42px;
    background: rgba(227,6,19,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.why-feat-icon i {
    color: var(--red);
    font-size: 1.1rem;
}

.why-feat:hover .why-feat-icon {
    background: var(--red);
}

.why-feat:hover .why-feat-icon i {
    color: white;
}

.why-feat-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 3px;
}

.why-feat-text p {
    font-size: 0.78rem;
    color: var(--grey);
    line-height: 1.5;
}

@media(max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* .why-img img {
        height: 280px;
    } */

    .why-features {
        grid-template-columns: 1fr;
    }
}

/* COUNTER */
#counter {
    background: var(--red);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.counter-item {
    text-align: center;
    padding: 65px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.counter-item:last-child {
    border-right: none;
}

.counter-item:hover {
    background: #d50612;
}

.counter-num {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    display: block;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    font-weight: 500;
}

@media(max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .counter-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .counter-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* PROCESS */
#process {
    /* padding: 100px 0; */
    background: var(--light-grey);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header .section-sub {
    margin: 0 auto;
    text-align: center;
}

.process-timeline {
    display: flex;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(227,6,19,0.2) 100%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-num {
    width: 72px;
    height: 72px;
    background: white;
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
    box-shadow: 0 4px 16px rgba(227,6,19,0.25);
    transition: all 0.3s;
}

.process-step:hover .step-num {
    background: var(--red);
    color: white;
    transform: scale(1.1);
}

.step-icon {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.15);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.6;
}

@media(max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 32px;
    }

    .process-timeline::before {
        display: none;
    }
}

/* TESTIMONIALS */
#testimonials {
    /* padding: 100px 0; */
    background: var(--dark2);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-header .section-title {
    color: white;
}

.testimonials-header .section-sub {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
    text-align: center;
}

.swiper-testimonials {
    padding-bottom: 48px !important;
}

.testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    min-height:445px;
}

.testi-stars {
    color: #FCD34D;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testi-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    gap: 14px;
    align-items: center;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}
.testi-name{width:calc(100% - 58px);}
.testi-name strong {
    display: block;
    font-family: var(--primary-font);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.testi-name span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

.testi-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 4rem;
    color: rgb(227 6 19 / 63%);
    font-family: Georgia;
    line-height: 1;
}

.testi-card {
    position: relative;
    overflow: hidden;
}

/* FAQ */
#faq {
    /* padding: 100px 0; */
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.faq-item {
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--red);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    background: white;
}

.faq-q h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark2);
    line-height: 1.4;
}

.faq-q i {
    color: var(--grey);
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-item.open .faq-q h4 {
    color: var(--red);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--light-grey);
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 16px 22px;
    font-size: 0.87rem;
    color: var(--grey);
    line-height: 1.7;
}

.faq-cta {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: white;
    position: sticky;
    top: 100px;
}

.faq-cta i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.faq-cta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media(max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        position: static;
    }
}

/* CONTACT */
#contact {
    /* padding: 100px 0; */
    background: var(--light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
    /* border: 2px solid transparent; */
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    margin-bottom: 15px;
}

.contact-card:hover {
    /* border-color: var(--red); */
    transform: translateX(4px);
}
.contact-card h4{margin-bottom: 11px;}
.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(227,6,19,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--red);
    font-size: 1.3rem;
}

.contact-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mid-grey);
    margin-bottom: 4px;
}

.contact-text p, .contact-text a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark2);
}

.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-box iframe {
        height: 280px;
    }
}

/* FOOTER */
footer {
    background: var(--dark2);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.footer-about p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #fff;
}

.footer-contact-item i {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-item p, .footer-contact-item a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap:4px;
}
.footer-bottom p:first-child{
    display:unset;
}

.footer-bottom p span {
    color: var(--red);
}

@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

/* FLOATING BUTTONS */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.float-wa a {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    position: relative;
}

.float-wa a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-wa 2s infinite;
}

.float-wa a i {
    position: relative;
    z-index: 1;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-quote {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 900;
}

.float-quote button {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(227,6,19,0.4);
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-quote button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* POPUP */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: none;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    width: 100%;
}

.popup-overlay.open {
    display: block;
}

.popup {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    /* max-height: 90vh; */
    /* overflow-y: auto; */
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
    margin: auto;
}

.popup-head {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
    padding: 28px 32px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.popup-head p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.popup-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.popup-close:hover {
    background: var(--red);
}

.popup-body {
    padding: 28px 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark2);
    transition: border-color 0.2s;
    outline: none;
    background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.popup-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.popup-actions button {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-submit {
    background: var(--red);
    color: white;
}

.btn-submit:hover {
    background: var(--red-dark);
}

.btn-callnow {
    background: var(--dark2);
    color: white;
}

.btn-callnow:hover {
    background: var(--dark);
}

@media(max-width: 560px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .popup-body {
        padding: 20px;
    }

    .popup-head {
        padding: 22px 20px;
    }
}


.footer-contact-item a:hover, .contact-text a:hover {
    color: #e30613;
}


.hero .container {
    width: 90% !important;
}




/* bottom bar */
.hero-bar{position: relative;bottom:0;left:0;right:0;z-index:3;background:var(--red);}
.hero-bar-inner{display:flex;overflow:hidden;height:54px;}
.hero-bar-item{flex:1;display:flex;align-items:center;justify-content:center;gap:10px;padding:0 16px;border-right: 1px solid rgb(255 255 255 / 32%);}
.hero-bar-item:last-child{border-right:none;}
.hero-bar-item i{font-size:1rem;opacity:0.8;color: #fff;}
.hero-bar-item span{font-size: 14px;font-weight:700;letter-spacing: 0.5px;text-transform:uppercase;color:rgba(255,255,255,0.9);font-family: var(--secondary-font);}
@media(max-width:900px){.hero-card{display:none;}}
@media(max-width:600px){.hero-bar-item:nth-child(n+3){display:none;}.hero-bar-item{flex:none;width:50%;}}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-wrap{background: #141a22;padding:0;overflow:hidden;border-top:1px solid rgba(255,255,255,0.05);}
.marquee-track{display:flex;white-space:nowrap;animation:marquee 28s linear infinite;}
.marquee-wrap:hover .marquee-track{animation-play-state:paused;}
.marquee-item{display:inline-flex;align-items:center;gap:16px;padding:18px 36px;font-size: 15px;font-weight:700;letter-spacing: 0.5px;text-transform:uppercase;color:#8a95a3;}
.marquee-item i{color:var(--red);}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}




/* Route  */
.route-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.route-card{
    background:#fff;
    padding: 20px;
    border-radius: 10px;
    position:relative;
    overflow:hidden;
}

.route-card img{
    border-radius:18px;
    height:220px;
    object-fit:cover;
    width: 100%;
}

.route-card h3{
    font-size: 25px;
    margin: 12px 0;
}

.route-card p{
    color: #464748;
    line-height: 24px;
}
/* Route end  */


/* ================= GALLERY ================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:24px;
    position:relative;
}

.gallery-item img{
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}
/* Gallery end  */

/* About Page */
.about-hero{
    height:450px;
    position:relative;
    background:url('../images/slider2.webp') center/cover;
    display:flex;
    align-items:center;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(17,24,39,.9),
        rgba(17,24,39,.55)
    );
}

.about-hero-content{
    position:relative;
    z-index:2;
    max-width:780px;
    color:#fff;
}

.about-hero-content h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.about-hero-content p{
    font-size:18px;
    color:rgba(255,255,255,.8);
    line-height:1.8;
}

.about-story{
    background:#fff;
}

.vision-mission{
    background:var(--light-grey);
}

.vm-grid{
    display:grid;
    /* grid-template-columns: repeat(auto-fit, minmax(410px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
    gap:30px;
}

.vm-card{
    background:#fff;
    padding:40px;
    border-radius:var(--radius);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.vm-card h3{
    margin:20px 0 12px;
    color:var(--dark2);
}

.vm-card p{
    color:var(--grey);
    line-height:1.7;
}

.about-values{/*background:#fff;*/background: var(--light-grey);}

.about-cta{
    padding:100px 0;
    background:var(--dark2);
}

@media(max-width:768px){

    .about-hero{
        height:350px;
    }

    .about-hero-content h1{
        font-size:38px;
    }

    .vm-grid{
        grid-template-columns:1fr;
    }
}
.vision-mission .service-icon{margin:0px 0 20px;}
/* About Page end  */
/* Contact Page  */
.contact-hero{
    padding:180px 0 100px;
    background:linear-gradient(rgba(17,24,39,.85),rgba(17,24,39,.85)),url('../images/slider2.webp') center/cover;
    text-align:center;
    color:#fff;
}

.contact-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-hero span{
    color:var(--red);
}
.contactDetails{
    padding: 70px 0;
}
.contactBox { display: grid; grid-template-columns: repeat(auto-fit, minmax(203px, 1fr)); gap: 30px; margin-bottom: 60px; }
.contactDetails .DetailsCont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(203px, 1fr));
    gap:30px;
}
/* .contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:-60px;
} */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:18px;
    font-family:var(--primary-font);
}

.contact-form textarea{
    min-height:140px;
    resize:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--red);
    outline:none;
}

@media(max-width:768px){

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:36px;
    }
}
.contactLinks{margin-top:20px;}
.contactLinks a{background: var(--red);color:#fff;}
.contact-form p { margin: 15px 0; }
/* Contact Page end  */
/* Faq Page*/
.inner-hero{
    padding:180px 0 100px;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(17,24,39,.88),
    rgba(17,24,39,.88)),
    url('../images/slider3.webp');
    background-size:cover;
}
.inner-hero h1{font-size:54px;font-weight:800;}
.inner-hero span{color:var(--red);}
.why-page-card,.faq-item{
    background:#fff;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.why-page-card:hover{
    transform:translateY(-8px);
    border:2px solid var(--red);
}
.faqPage .about-img{overflow:unset;}
.faqPage .gridFaqBox { position: relative; }
.faqPage .faq-cta {
    position: absolute;
    top: auto;
    bottom: -90px;
    left: -30px;
    width: 70%;
    padding: 20px;
}
.faqPage .faqBtn {
    display: grid;
    /* grid-template-columns:repeat(auto-fit, minmax(183px, 1fr)); */
    grid-template-columns:repeat(auto-fit, minmax(168px, 1fr));
    gap: 20px;
    row-gap: 20px;
    column-gap: 20px;
}
.faqPage .faq-cta i {font-size: 2rem;}
.faqPage .faq-cta .faqBtn .btn{
    padding: 9px 15px;
}
.faqPage .faq-cta .faqBtn i{
    font-size: 1.6rem;
    margin-bottom:0;
}
/* Faq Page end  */
/* why us Page  */
.section-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-title span{
    color:var(--red);
}

.section-sub{
    color:var(--grey);
    line-height:1.8;
}

.tag{
    display:inline-block;
    background:rgba(227,6,19,.1);
    color:var(--red);
    padding:6px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-red{
    background:var(--red);
    color:#fff;
}

.btn-red:hover{
    transform:translateY(-4px);
}

/* HERO */

/* .why-hero{
    padding:160px 0 110px;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(17,24,39,.85),
    rgba(17,24,39,.85)),
    url('images/slider1.webp') center/cover;
} */

.why-hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.why-hero h1 span{
    color:var(--red);
    display:block;
}

.why-hero p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.8);
    line-height:1.8;
}

/* INTRO */
/* .why-intro{padding:100px 0;} */
.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}
.intro-image {position: relative;}
.intro-image img{
    width:100%;
    border-radius:25px;
    height:500px;
    object-fit:cover;
}
.highlights{margin:30px 0;}
.highlight{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}
.highlight i{color:var(--red);font-size:22px;}
.highlight h4{margin-bottom:5px;}

/* ADVANTAGES */

.advantages{
    /* padding:100px 0; */
    background: var(--light-grey);
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.adv-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    border:2px solid transparent;
}

.adv-card:hover{
    transform:translateY(-10px);
    border-color:var(--red);
}

.adv-icon{
    width:80px;
    height:80px;
    margin:auto auto 20px;
    background:rgba(227,6,19,.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.adv-icon i{
    color:var(--red);
    font-size:30px;
}

.adv-card h3{
    margin-bottom:12px;
}

.adv-card p{
    color:var(--grey);
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:992px){

    .intro-grid{
        grid-template-columns:1fr;
    }

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-hero h1{
        font-size:40px;
    }

    .section-title{
        font-size:32px;
    }

    .advantages-grid{
        grid-template-columns:1fr;
    }

}
/* why us Page end  */

/* Full Truck Load Page */

.section-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title span{
    color:var(--red);
}

.section-desc{
    color:var(--text);
    max-width:700px;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-red{
    background:var(--red);
    color:#fff;
}

.btn-red:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:var(--dark);
}

/* HERO */

.ftl-hero{
    padding:180px 0 120px;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(17,24,39,.85),
    rgba(17,24,39,.85)),
    url('images/ftl-banner.jpg') center/cover;
}

.ftl-hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.ftl-hero h1 span{
    color:var(--red);
    display:block;
}

.ftl-hero p{
    max-width:750px;
    margin:auto;
    color:rgba(255,255,255,.85);
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ABOUT */

.about-ftl{background:#fff;padding:70px 0;}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    height:500px;
    object-fit:cover;
}

.feature-list{
    margin-top:30px;
}

.feature-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.feature-item i{
    color:var(--red);
    font-size:22px;
    margin-top:5px;
}

.feature-item h4{
    margin-bottom:6px;
    font-size:20px;
}

.feature-item p{
    color:var(--text);
}

/* BENEFITS */

.ftl-benefits{
    background: var(--light-grey);
    padding:70px 0;
}

.benefits-header{
    text-align:center;
    margin-bottom:60px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:50%;
    background:rgba(227,6,19,.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    font-size:30px;
    color:var(--red);
}

.benefit-card h3{
    margin-bottom:15px;
}

.benefit-card p{
    color:var(--text);
}

/* VEHICLES */

.vehicle-header{
    text-align:center;
    margin-bottom:60px;
}

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.vehicle-card{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.vehicle-card:hover{
    transform:translateY(-10px);
}

.vehicle-image img{
    width:100%;
    /* height:220px; */
    object-fit:cover;
}

.vehicle-content{
    padding:30px;
}

.vehicle-content h3{
    margin-bottom:15px;
}

.vehicle-content ul{
    list-style:none;
}

.vehicle-content li{
    margin-bottom:12px;
    color:var(--text);
}
.vehicle-content li i{
    color:var(--red);
    margin-right:10px;
}
/* RESPONSIVE */
@media(max-width:992px){
    .about-grid{
        grid-template-columns:1fr;
    }
    .benefits-grid,
    .vehicle-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .ftl-hero h1{
        font-size:40px;
    }
    .section-title{
        font-size:32px;
    }
    .benefits-grid,
    .vehicle-grid{
        grid-template-columns:1fr;
    }
}
.pTB{padding:70px 0;}
.text-center{text-align:center;}
/* Full Truck Load Page end  */
.howItWorksBox{background:transparent;}
.wareshousingWhay .why-img img{height:auto;}
#counter.contactBox{margin-bottom:0;}
.contactBox h2{font-size:42px;margin-bottom:15px;}
.contactBox p{margin-bottom:30px;}
.mb-0{margin-bottom:0;}


/* NAV */

#nav .dropdown-content a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

#nav .dropdown-content a:hover,
#nav .dropdown-content a.active{
    color:#e63946;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:5px;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:0;
    min-width:320px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    border-radius:10px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    overflow:hidden;
}

.dropdown-content a{
    display:block;
    padding:12px 18px;
    border-bottom:1px solid #f1f1f1;
}

.dropdown-content a:hover{
    background:#f8f8f8;
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}
.aboutPage .section-title{font-size: 35px;}
.aboutPage .section-sub { line-height: 22px; margin-bottom: 11px; }
.team_intro_box {position: relative;}
.team_intro_box .team_intro_inner { position: relative; overflow: hidden; border-radius: 10px;padding: 10px;}
.team_intro_box .team_intro_inner .image_bg { position: absolute; z-index: 1; width: 100%; height: 100%; left: 0; top: 0; }
.team_intro_box .team_intro_inner .image_bg::before { content: ""; position: absolute; width: 100%; height: 100%; left: 0; top: 0; bottom: 0;background: var(--dark2); opacity: 0.9; z-index: 2; }
.team_intro_box .team_intro_inner .team_intro_start { position: relative; z-index: 3; }
.team_intro_box .team_intro_inner .team_intro_start .left_content {width: 61.5%;position: relative; padding: 80px 50px 80px; }
.team_intro_box .team_intro_inner .team_intro_start .title { margin-bottom: 15px; }
.team_intro_box .team_intro_inner .team_intro_start .title h6 { font-size: 20px; font-weight: 500; color:var(--red); line-height: 20px; margin-bottom: 5px; }
.team_intro_box .team_intro_inner .team_intro_start .title h3 { font-size: 30px; font-weight: 500; color: #fff; line-height: 35px; margin-bottom: 10px; }
.team_intro_box .team_intro_inner .team_intro_start .left_content p { color: #fff; }
.team_intro_box .team_intro_inner .team_intro_start .quotes { position: relative; padding-left: 54px;margin:20px 0px; }
.team_intro_box .team_intro_inner .team_intro_start .quotes span { position: absolute; left: 0; top: 0; font-size: 46px; line-height: 46px; color: #fff;width: 40px;}
.team_intro_box .team_intro_inner .team_intro_start .quotes h5 { font-size: 22px; font-weight: 500; color: #fff; line-height: 25px; margin-bottom: 10px; }
.team_intro_box .team_intro_inner .team_intro_start .authour_dtls h4 { font-size: 18px; font-weight: 600; color: #fff; line-height: 28px; }
.team_intro_box .team_intro_inner .team_intro_start .row{display:flex;}
.team_intro_box .team_intro_inner .team_intro_start .quotes h5 small { font-size: 14px; }
.team_intro_box .image_right {}
.mt-4{margin-top:4rem;}

.area_of_expertise {position:relative;overflow: hidden;height: 100vh;display: flex;align-items: center;}
.area_of_expertise::before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; bottom: 0; right: 0; background: linear-gradient(300deg, #282f3b 40%, rgba(0, 0, 0, 0.09) 100%); opacity: 0.9; z-index: 1; }
.area_of_expertise .simpleParallax { position: absolute; width: 100%; height: 100%; left: 0; right: 0; bottom: 0; top: 0; min-height: 600px; }
.area_of_expertise .simpleParallax img { width: 100% !important; height: 100% !important; -o-object-fit: cover; object-fit: cover; }
.area_of_expertise .title_and_video { position: relative;z-index: 11;width: 100%;}
.title_all_box {width: 45%;position: relative;}
.title_all_box.style_one .title_sections, .title_all_box.style_two .title_sections { position: relative; }
.area_of_expertise .row{display:flex;justify-content:end;}
.title_sections h2{color:#fff;margin-bottom:25px;}
.title_sections p{color:#fff;margin-bottom:15px;text-align:justify;}
.title_all_box .hero-btns { margin-top: 35px; }
.call_to_action { position: relative; text-align: center; overflow: hidden; }
.call_to_action .image { position: absolute; width: 100%; height: 100%; left: 0; right: 0; bottom: 0; top: 0; }
.call_to_action.style_one .image::before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; bottom: 0; right: 0; background:var(--dark2); opacity: 0.80; z-index: 1;}
.call_to_action .image img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.call_to_action.style_one .left_content {position: relative;padding: 100px 120px;}
.call_to_action.style_one .left_content .main_content { position: relative; z-index: 2; }
.call_to_action.style_one .left_content .main_content h2 {color: #fff;font-weight:600; margin-bottom: 15px;font-family: var(--primary-font);}
.call_to_action.style_one .left_content .main_content p { color: #fff; margin-bottom: 5px;}
.call_to_action.style_one .left_content .main_content h6 { color: #fff;margin-top: 20px;margin-bottom:0px;}
.call_to_action.style_one .bottom_content { position: relative;text-align:center;display: flex; justify-content: center;}
.call_to_action.style_one .left_content .main_content .bottom_content{margin-top: 35px; padding-top: 35px; border-top: 1px dashed rgba(255, 255, 255, 0.1); }
.call_to_action.style_one .bottom_content .button_content { display: inline-block; position: relative; top: 9px; }
.call_to_action.style_one .bottom_content .call_content span { position: absolute; left: 0; bottom: 0; top: 5px; font-size: 30px; line-height: 56px; width: 56px; height: 56px; border-radius: 50%; text-align: center; color: #ffffff; background: transparent; border: 1px dashed #ffffff; margin: auto; }
.call_to_action.style_one .bottom_content .call_content .content_bx { margin-left: 70px; padding-top: 9px; text-align: left; }
.call_to_action.style_one .bottom_content .call_content .content_bx h5 { font-size: 15px; line-height: 25px; color: #fff; margin-bottom: 2px; font-weight: 600; }
.call_to_action.style_one .bottom_content .call_content .content_bx p { color: #fff; opacity: 0.9; text-decoration: underline; margin: 0px; padding: 0; border: 0px; }
.text-t{font-size:15px;font-style:italic;}
.why-grid .text-t { margin-top: 22px; }
#services .text-t { text-align: center; margin-top: 30px; }
.footer-contact-item span strong {margin-bottom: 4px;display: block;font-size: 14px;font-weight: 400;}
.process-section .title_all_box { position: relative;width:100%; }
.process_box { position: relative; }
.process_box.style_three .process_box_outer_three .icon { position: relative; margin-bottom: 20px; }
.process_box.style_three .process_box_outer_three .icon img { height: 50px; width: auto; margin-bottom: 5px; }
.process_box.style_three .process_box_outer_three h3{ font-size: 18px; line-height: 26px; margin-bottom: 8px; display: block; font-weight: 700; }
.process_box.style_three .process_box_outer_three p { margin-bottom: 25px; }
.process_box.style_three .process_box_outer_three .number h6 { font-size: 50px; color: #f0f3f9; display: block; line-height: 50px; }
.image_boxes.style_three {position: relative;overflow: hidden;border-radius: 10px;}
.image_boxes.style_three.border_yes { border: 10px solid #f0f3f9; border-radius: 5px;text-align: center;display: flex;justify-content: center;align-items: center;}
.whatSpecialise { grid-template-columns: repeat(auto-fit, minmax(370px, 1fr)); display: grid; gap: 40px; } 
.process-section .title_sections h2{color:#000;text-align:center;}
.process_box:not(:last-child) { border-bottom: 1px solid #e4e7ee;margin-bottom: 25px;padding-bottom: 25px; }
.process_box .icon img{transition:all 0.5s ease}
.process_box:hover .icon img{transform:translateY(-5px)}

@media only screen and (max-width:1322px){
    .whatSpecialise {grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));}
}
@media only screen and (max-width:1289px){
    .whatSpecialise {grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));}
}

@media(max-width:991px){
    .menu-toggle{
        display:block;
    }
    #nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    #nav.show{
        display:flex;
    }

    #nav a,
    .dropdown-btn{
        width:100%;
        padding:15px 20px;
        border-bottom:1px solid #eee;
    }

    .dropdown{
        width:100%;
    }

    .dropdown-content{
        position:static;
        opacity:1;
        visibility:visible;
        display:none;
        box-shadow:none;
        min-width:100%;
        background:#f8f8f8;
    }

    .dropdown.active .dropdown-content{
        display:block;
    }
}
.aTag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media only screen and (max-width:991px){
    nav{padding: 0px 0;}
    #nav a, .dropdown-btn{color:#000;}
    .dropdown-btn {justify-content: space-between; }
    .about-grid,.whyUsSec .why-grid,.why-intro .intro-grid,.faqPage .faq-grid{display:flex;flex-direction: column-reverse;}
    .innerPage .about-grid{gap:20px;}
    .services-header {margin-bottom: 25px;}
    .faqSec .faq-grid,.getInTouchSec .contact-grid{display:flex;flex-direction: column;}
    .why-img-accent{top: -5px;left:-5px;width: 100px;height: 100px;}
    .why-intro .intro-grid{gap: 40px;}
    .pTB,.contactDetails{padding:40px 0;}
    .about-hero-content h1{font-size: 40px;}
    .faqPage .faq-cta{position: unset;margin-top: 15px;width: 100%;}
    .contact-card{padding: 15px;}
    .hero-sub br{display:none;}
    .contact-grid{gap:25px;}
    .team_intro_box .team_intro_inner .team_intro_start .row{flex-direction: column-reverse;}
    .team_intro_box .team_intro_inner .team_intro_start .left_content { width: 100%;padding: 20px; }
    .team-intro .row.mt-4{margin-top:25px;}
    .team-intro .row.mt-4 .team_intro_box .team_intro_inner .team_intro_start  .row{flex-direction: column;}
}
@media only screen and (max-width:956px){
    .whatSpecialise {grid-template-columns: 1fr;}
    .image_boxes.style_three.border_yes { border: 10px solid #f0f3f9; border-radius: 5px; text-align: center; display: flex; justify-content: center; align-items: center; display: inline-block; }
}
@media only screen and (max-width:768px){
    .route-card h3 {font-size: 20px;}
    .route-grid{grid-template-columns: repeat(1, 1fr);}
    .route-card img{height:auto;}
    .process-step{border: 1px solid #ededed;padding: 15px;border-radius: 15px;}
    .about-hero-content h1 {font-size: 33px;}
    .about-hero-content p {font-size: 15px;}
    .about-hero .tag { margin-bottom: 10px; }
    .about-story .about-grid{gap:20px;}
    .contactBox{margin-bottom:30px;gap: 10px;grid-template-columns: 1fr;}
    .contactDetails .DetailsCont{display:flex;flex-direction: column-reverse;}
    .contact-form{padding: 20px 15px;}
    .contactBox h2 {font-size: 36px;}
    .title_all_box{width: 65%;}
    .counter-item{border: 1px solid rgba(255, 255, 255, 0.2)!important;}
    .counter-grid{row-gap: 15px;}
}
@media only screen and (max-width:678px){
    .hero-bar{display:none;}
    .swiper-button-next, .swiper-button-prev{width: 30px;height: 30px;}
    .swiper-button-next::after, .swiper-button-prev::after {font-size: 9px;}
    .footer-grid { grid-template-columns: 1fr;gap: 20px;margin-bottom: 25px;}
    .testimonials-header{margin-bottom: 35px; }
    .footer-bottom{flex-direction: column;}
    .faq-grid{gap: 30px;}
    .hero-stat{display:none;}
    .section-title {font-size: 30px;}
    .process-header {margin-bottom: 30px; }
    .area_of_expertise::before{background: linear-gradient(300deg, #282f3b 100%, rgba(0, 0, 0, 0.03) 100%);opacity: 0.8;}
    .area_of_expertise .row{justify-content: center;}
    .title_all_box { width: 100%; }
    .testi-card{min-height:auto;}
    .faq-cta i { font-size: 2.2rem; margin-bottom: 0;}
    .call_to_action.style_one .left_content {padding: 50px 20px; }
    #contact .text-t { margin-top: 20px; }
    /* .area_of_expertise{height: 70vh;} */
    .hero-stats{display:none;}
    
}
@media only screen and (max-width:576px){
    .logo{width: 220px;}
    .counter-grid { grid-template-columns: repeat(1, 1fr); }
    .counter-item{padding: 35px 10px;}
    .btn-quote{display:none;}
    .gallery-grid{grid-template-columns: repeat(1, 1fr);}
    .about-hero {height: 450px;}
    .about-values .services-header{margin-bottom: 20px;}
    .contactBox h2 {font-size:28px;}
    .gallery-item img{border-radius:24px;}
    .call_to_action.style_one .left_content .main_content .bottom_content .hero-btns{justify-content: center;}

    .footer-grid{text-align:center;}
    .contact-grid{gap: 15px;}
    .footer-logo{justify-content: center;}
    .social-links{justify-content: center;}
    .footer-col h4::after{margin: 0 auto;right: 0;}
    .footer-links{display:unset;}
    .footer-links a{display:inline-flex;align-items:center;gap: 8px;border: 1px solid rgba(255, 255, 255, 0.5);padding: 7px;border-radius: 7px;margin-bottom: 5px;}
    .footer-contact-item{justify-content: center;}
}
@media only screen and (max-width:481px){}
@media only screen and (max-width:320px){}
