/*****************************************************************
1.  Homepage
    1.1 Header Section
    1.2 Hero Section
    1.3 Trust & Credentials Section
    1.4 Category Section
	1.5 Work Process Section ( How it Works )
	1.6 Fleet Section
	1.7 Why Choose Us Section
	1.8 Industries We Serve
	1.9 Service Locations Section
	1.10 Call To Action (CTA) Section 
	1.11 Testimonial Section 
    1.12 Latest Updates / Blogs Section
    1.13 FAQ Section
	1.14 Footer Section
*****************************************************************/


/*==============================
    Jost Google Font
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800&display=swap");
/*==============================
    Default Style
==============================*/
:root{
	--primary: #cdd8f6;
	--primary-2: #0f2854;
	--secondary: #ed7d05;
	--body-text-color: #464646;
	--green-light: #e1f3e1;
	--white: #fff;
	--black: #050d1e;
    --gray-color: #e3e3e3;
    --dark-gray-color: #8d8d8d;
	--subtle-gray: #cfc7d7;
  
    /* some change on theme */
    --midnight-navy:#000435;
    --deep-indigo-blue: #080E4B;
    --royal-indigo: #151C62;
    ---classic-indigo:#282E78;
    --state-blue: #3F468F;
    --soft-periwinkle: #5B62A5;
    --muted-lavender-blue: #7D82BB;
    --pale-blue: #A3A7D2;
    --misty-lavender: #CED0E8;

	--heading-1: 54px;
	--heading-2: 44px;
	--heading-3: 30px;
	--heading-4: 26px;
	--heading-5: 22px;
	--heading-6: 18px;

	--font-18:18px;

	--fw-300: 300;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--fw-800: 800;

	--body-font-size: 16px;
	--font-jost: "Jost", sans-serif;
	--radius-10: 10px;
	--radius-20: 20px;
	--radius-40: 40px;
	--ease-transition: all 0.4s ease-in-out;


    --hue: 267; 
    --bg: #251b31; 
    --fg: hsl(var(--hue), 90%, 80%);
    --trans-dur: 0.3s;
}
/*==============================
    Typography Styles
==============================*/
body{
	margin: 0;
    font-family: var(--font-jost);
    font-size: var(--body-font-size);
    font-weight: var(--fw-400);
    line-height: 20px;
    color: var(--body-text-color);
    transition: var(--ease-transition);
	overflow-x: hidden;
}
a{	
    text-decoration: none;
	transition: var(--ease-transition);
	color: var(--secondary);
}
a:hover{
	color: var(--primary);
}
h1, h2, h3, h4, h5, h6{
	color: var(--secondary);
}
h1{
	font-size: var(--heading-1);
	line-height: 60px;
	font-weight: var(--fw-700);
}
h2{
	font-size: var(--heading-2);
	line-height: 50px;
	font-weight: var(--fw-700);
}
h3{
	font-size: var(--heading-3);
	line-height: 36px;
	font-weight: var(--fw-700);
}
h4{
	font-size: var(--heading-4);
	line-height: 30px;
	font-weight: var(--fw-700);
}
h5{
	font-size: var(--heading-5);
	line-height: 28px;
	font-weight: var(--fw-500);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-500);
}
p{
	font-size: var(--body-font-size);
	line-height: 26px;
}
ul{
    padding: 0;
    margin: 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea{
    font-size: var(--body-font-size);
    padding: 12px 16px;
    width: 100%;
    color: var(--black);
    font-family: var(--font-jost);
    border: 1px solid var(--gray-color);
	min-height: 52px;
	border-radius: var(--radius-10);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.theme-btn{
	background-color: var(--primary);
	font-weight: var(--fw-500);
	color: var(--white);
	border-radius: var(--radius-40);
    padding: 16px 32px;
	transition: var(--ease-transition);
	border: none;
	display: inline-block;
	min-width: 128px;
	text-align: center;
}
.theme-btn2{
	background-color: var(--primary);
	font-weight: var(--fw-500);
	color: var(--white);
	border-radius: var(--radius-10);
    padding: 16px 32px;
	transition: var(--ease-transition);
	border: none;
	display: inline-block;
}
/* .outline-btn{
	background-color: transparent;
	color: var(--black);
	border: 1px solid var(--dark-gray-color);
	padding: 15px 32px;
} */
.outline-btn {
    position: relative;
    display: inline-block;
    padding: 15px 32px;
    border: 1px solid #ed7d05; 
    color: #ed7d05;             
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}
.outline-btn:hover {
    color: #fff;                  
    background-color: #251b31;    
    transform: scale(1.05);      
}
.outline-small{
	background-color: transparent;
	font-weight: var(--fw-500);
	border-radius: var(--radius-40);
    padding: 12px 24px;
	color: var(--black);
	border: 1px solid var(--dark-gray-color);
	display: inline-block;
}
.theme-btn-small{
	background-color: var(--primary);
    font-weight: var(--fw-500);
    color: var(--white);
    border-radius: var(--radius-40);
    padding: 12px 24px;
    transition: var(--ease-transition);
    border: none;
    display: inline-block;
    text-align: center;
}
.theme-btn:hover,
.theme-btn:focus,
.outline-btn:hover,
.outline-btn:focus,
.theme-btn2:hover,
.theme-btn2:focus,
.theme-btn-small:hover,
.theme-btn-small:focus{
	background-color: var(--primary-2);
	color: var(--white);
}
.bbottom_btn{
	font-weight: var(--fw-500);
	text-decoration: underline;
	color: var(--body-text-color);
}

.container-fluid{
	width: calc(100% - 60px)
}
/* Header Section Css */
.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
}
.header  .row {
    background: rgba(247, 246, 246, 0.856);   /* light transparent */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid #ffff;
    border-radius: 10px;

    box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.15);
    transition: all 0.35s ease;
}
.header.scrolled .row {
    background: #fff;       /* solid white */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.header .nav {
    position: relative;
}
.nav>.nav-item{
	padding-top: 15px;
	padding-bottom: 15px;
}
.nav>.nav-item:not(:last-child){
	margin-right: 20px;
}
.nav .nav-link{
	color: var(--midnight-navy);
	padding: 5px 10px;
    font-size: var(--font-18);
}
.nav .nav-link.active,
.nav .nav-link:hover{
	color: var(--midnight-navy);
}

.menu-area .nav .nav-link.active{
	font-weight: var(--fw-600);
    font-size: var(--font-18)
}
.site-logo {
    width: 100px;
    height: 100px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* SVG base state */
.nav-link svg {
    transition: transform 0.35s ease;
    transform-origin: center;
}

/* Hover rotate */
.nav-link:hover svg {
    transform: rotate(180deg);
}

/* preloader */
/* #preloader {
    position: fixed;
    inset: 0;
    background: #0f1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.truck {
    color: var(--secondary);
} */

/* Wheels rotate */
/* .truck__wheel-spin {
    animation: wheel-spin 0.8s linear infinite;
    transform-origin: center;
} */

/* Truck bounce */
/* .truck {
    animation: truck-move 1.2s ease-in-out infinite;
}

@keyframes wheel-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes truck-move {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(6px); }
    100% { transform: translateX(0); }
} */

/* Hero Section Css */

/* Overlay */
.nav .nav-item .nav-link {
	position: relative !important;
}
.nav .nav-item .nav-link:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e0d6d6 !important;
    content: "";
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
/* some changes  */
.Hright {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.hero-left {
	max-width: 980px;
	margin-bottom: 30px;
    padding-top: 170px;
    margin: 0 auto;
}
.hero-left h1 {
	color: #fcfcfc;
	margin-bottom: 30px;
    text-align: center;
}
.hero-left p {
	color: #fcfcfc;
	font-size: var(--font-18);
	font-weight: var(--fw-700);
    text-align: center;
    margin-bottom: 40px;
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 900px;
    padding: 120px 0 0;
    overflow: hidden;
}
/* Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(18 19 42 / 64%);
    z-index: 1;
}
.hero-section .container,
.hero-section .row,
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}
/* Content above video */
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section a.hero-btn {
    background-color: #3F468F;
    border: 1px solid #3F468F !important ;
    color: #ffff;
}
.hero-section a.hero-btn:hover {
    background-color: transparent;
    border: 1px solid #ffff !important;
}
.hero-section a.hero-bg-btn {
    background-color: transparent;
    border: 1px solid #fff ;
    color: #ffff;
}
.hero-section a.hero-bg-btn:hover {
    background-color: #3F468F;
    border: 1px solid #3F468F ;
    color: #ffff;
}

.header .btn-box a {
    border: 1px solid #3F468F !important;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    background-color: #3F468F;
}
.header .btn-box a:hover {
    border: 1px solid var(--dark-gray-color) !important;
    background-color: transparent !important;
    color: var(--midnight-navy);
}
.bottom-menu {
    position: absolute;
    bottom: -290px;       
    width: calc(100% + 60px);
    left: -30px;
    background: transparent;
    z-index: 10;
}

.bottom-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Each item */
.nav-bitem {
    display: flex;
    align-items: center;
}

/* Link styling */
.nav-bitem a {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--midnight-navy);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.nav-bitem img {
    transition: filter 0.3s ease;
}

.nav-bitem:hover img {
    filter: brightness(0) saturate(100%)
            invert(32%) sepia(20%)
            saturate(1950%) hue-rotate(213deg)
            brightness(96%) contrast(98%);
}

/* Icon */
.nav-bicon img {
    width: 35px;
    height: auto;
}

/* Vertical separator */
.separation {
    width: 1px;
    height: 30px;
    background: #ffffff;
}

/* Hover effect */
.nav-bitem a:hover {
    color: #3F468F;
    transform: translateY(-2px);
}
.column-content {
    background-color: #ffff;
    padding: 30px;
    border: 1px solid var(--midnight-navy);
}

/* Footer Section Css  */

.footer-row {
    display: flex;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-wraper {
    background: var(--midnight-navy);
    color: #fff;
    padding: 60px 0px 0;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-wraper h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-wraper ul {
    list-style: none;
    padding: 0;
}

.footer-wraper ul li {
    margin-bottom: 10px;
}

.footer-wraper ul li a {
    color: #cfd6df;
    text-decoration: none;
	font-size: 16px;
}

.footer-wraper ul li a:hover {
    color: var(--secondary);
}
.Hleft.footer-logos {
    width: 56px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
    filter: invert(1);
}
.footer-copy {
    background: rgb(6 31 64);
    padding: 15px 0;
    text-align: center;
	margin-top: 30px;
}

.footer-copy p {
    margin: 0;
    font-size: 14px;
    color: #cfd6df;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}
.footer-social ul {
    display: flex;
    gap: 20px;
}

.footer-social ul li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    background: rgb(255 255 255 / 10%);
}
.footer-social ul li a svg {
    opacity: 0.8;
}
.footer-social ul li a:hover {
    background-color: var(--secondary);
}


/* Preloader overlay */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Truck animation */
.truck__body,
.truck__line,
.truck__outside1,
.truck__outside2,
.truck__outside3,
.truck__wheel,
.truck__wheel-spin,
.truck__window1,
.truck__window2 {
    animation: truck-body 3s linear infinite;
}

.truck__line { animation-name: truck-line; }
.truck__outside1 { animation-name: truck-outside1; }
.truck__outside2 { animation-name: truck-outside2; }
.truck__outside3 { animation-name: truck-outside3; }
.truck__wheel-spin { animation-name: truck-wheel-spin; transform-origin: 6.5px 17px; }
.truck__window1 { animation-name: truck-window1; }
.truck__window2 { animation-name: truck-window2; }

/* Keyframes */
@keyframes truck-body {
    0%,12.5%,25%,37.5%,50%,62.5%,75%,87.5%,100% { transform: translate(0,0) rotate(0deg); }
    6.25%,18.75%,31.25%,43.75%,56.25%,68.75%,81.25%,93.75% { transform: translate(0,1px) rotate(-0.75deg); }
}

@keyframes truck-line { from { stroke-dashoffset: -18; } to { stroke-dashoffset: 78; } }
@keyframes truck-outside1 { from { stroke-dashoffset: 105; } to { stroke-dashoffset: -105; } }
@keyframes truck-outside2 { from { stroke-dashoffset: 168; } to { stroke-dashoffset: -42; } }
@keyframes truck-outside3 { from { stroke-dashoffset: 192; } to { stroke-dashoffset: -18; } }
@keyframes truck-wheel-spin { from { transform: rotate(0deg); stroke-dashoffset:-15.71; } to { transform: rotate(-1440deg); stroke-dashoffset:15.71; } }
@keyframes truck-window1 { from { stroke-dashoffset:-21; } to { stroke-dashoffset:189; } }
@keyframes truck-window2 { from { stroke-dashoffset:-39; } to { stroke-dashoffset:171; } }


/* First wheel */
.truck__wheel:first-of-type .truck__wheel-spin {
    transform-origin: 6.5px 17px;
    animation: truck-wheel-spin 1s linear infinite;
}

/* Second wheel */
.truck__wheel:last-of-type .truck__wheel-spin {
    transform-origin: 27px 17px;
    animation: truck-wheel-spin 1s linear infinite;
}

/* Wheel spin keyframes */
@keyframes truck-wheel-spin {
    0% { transform: rotate(0deg); stroke-dashoffset: -15.71; }
    100% { transform: rotate(-1440deg); stroke-dashoffset: 15.71; }
}
/* trust sections */
.trust-section {
	padding: 120px 0 120px;
	background-color: #fff;
	position: relative;
}
/* Pseudo-element for bottom-right image */
.trust-section::after {
    content: ""; 
    position: absolute;
    bottom: 0;
    right: 0;
    width: 360px; 
    height: 400px; 
    background-image: url('/assets/images/home3-about-shape-img.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1; 
}
.trust-section .service-img-wrap {
    -webkit-mask-image: url(/assets/images/home3-about-shape.png);
    mask-image: url(/assets/images/home3-about-shape.png);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.trust-right h2 {
	color: #251b31;
	font-family: var(--font-jost);
	text-transform: capitalize;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}
.trust-right p {
	font-size: var(--font-18);
	font-weight: var(--fw-700);
	color: var(--body-text-color);
}

.trust-section .row {
    display: flex;             
    align-items: stretch;                      
    flex-wrap: wrap;          
}


/* Inner content to take full height */
.trust-left,
.trust-right {
    flex: 1;                   
    display: flex;             
    flex-direction: column;
}
.service-img-wrap img {
    width: 100%;
    max-height: 733px;
}
.trust-right h5 {
    color: var(--body-text-color);
	margin-top: 20px;
}
.trust-right .service-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 25px;
    margin-top: 40px;
}
.trust-right .service-list li {
    font-family: var(--font-jost);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-2);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 23px;
    border: 1px solid var(--body-text-color);
    border-radius: 100px;
}
.trust-section a.discover-btn.theme-btn {
    margin-top: 50px;
	color: #ffffff;
	background-color: var(--midnight-navy);
	border-radius: 10px !important;
}
.trust-section a.discover-btn.theme-btn:hover {
    background-color: transparent;
    color: var(--body-text-color);                
    border: 1px solid var(--body-text-color);
	transition: all 0.5s ease-in-out;     
}
/* =====================
   SECTION COMMON
===================== */
.card-section,
.service-section {
    padding: 120px 0;
    overflow: hidden;
}

.card-section {
    background-color: var(--midnight-navy);
}

/* =====================
   TITLES
===================== */
/* .cards-title {
    text-align: center;
    max-width: 1150px;
    margin: 0 auto 50px;
} */

.cards-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #251b31;
}

.cards-title p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

/* Dark section override */
.card-section h2,
.card-section p {
    color: #fff;
}

/* =====================
   SWIPER LAYOUT
===================== */
.main-cards {
    position: relative;
}

.teamSwiper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

/* .card-section .swiper {
    overflow: auto;
} */

.card-section .swiper-wrapper {
    will-change: transform;
}


/* =====================
   TEAM CARD
===================== */
.team-card {
    width: 320px;
    background: #251b31;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* glow layer */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(237,125,5,0.35),
        transparent 60%
    );
    opacity: 0;
    transition: 0.4s;
}

/* hover */
.team-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.team-card:hover::before {
    opacity: 1;
}

/* image */
.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ed7d05;
    margin-bottom: 20px;
}

/* text */
.team-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.team-card span {
    display: block;
    font-size: 14px;
    color: #ed7d05;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* =====================
   SWIPER CONTROLS
===================== */
.teamSwiper .swiper-button-prev,
.teamSwiper .swiper-button-next {
    width: 55px;
    height: 55px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed7d05;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    transition: 0.35s ease;
}

/* arrow icon */
.teamSwiper .swiper-button-prev::after,
.teamSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* hover */
.teamSwiper .swiper-button-prev:hover,
.teamSwiper .swiper-button-next:hover {
    background-color: #ed7d05;
    transform: scale(1.1);
}

/* border ring */
.teamSwiper .swiper-button-prev::before,
.teamSwiper .swiper-button-next::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(237,125,5,0.6);
    opacity: 0;
    transform: scale(0.85);
    transition: 0.3s ease;
}

.teamSwiper .swiper-button-prev:hover::before,
.teamSwiper .swiper-button-next:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* positions */
.teamSwiper .swiper-button-prev {
    left: 5px;
}

.teamSwiper .swiper-button-next {
    right: 5px;
}

/* svg arrow */
.swiper-button-prev svg,
.swiper-button-next svg {
    width: 10px;
    color: #fff;
}


/* service section css */

.service-section {
    background-color: #fff;
    position: relative;
}
/* Image Box Wrapper */
.image-box {
  max-width: 300px;          /* adjust as needed */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
}

/* Hover effect */
.image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */
.image-box-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.image-box:hover .image-box-img img {
  transform: scale(1.05);
}

/* Content */
.image-box-content {
  padding: 15px 10px;
}

/* Title */
.image-box-title {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

.image-box-title a {
  color: #251b31;
  text-decoration: none;
}

.image-box-title a:hover {
  color: #ed7d05;
}

/* Description */
.image-box-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.card-section p.cards-paragraph {
margin-bottom: 50px;
}
/* Sliders  */

.our-traders-say-sec .container {
    max-width: calc(50% + 600px);
    margin-left: auto;
    margin-right: inherit;
}

.inner-container {
    max-width: 1296px;
    margin-right: auto;
}

.traders-say-list {
    height: auto;
   border: solid 1px var(--dark-gray-color);
    padding: 40px 60px 30px 40px;
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
    cursor: pointer;
}

.traders-say-list:hover {
    border: solid 1px var(--dark-gray-color);
    background-color: var(--primary-2);;
}

.traders-say-head {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.traders-say-head .traders-name h4 {
    font-weight: 600;
    margin: 0 0 6px;
}

.traders-say-head .traders-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.traders-say-head .traders-name {
    padding-left: 20px;
    width: calc(100% - 60px);
}

.traders-say-head .traders-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.traders-say-text {
    padding-top: 30px;
    width: 100%;
    border-top: solid 1px #eee;
}

.traders-rating ul {
    display: flex;
    margin: 20px 0 0;
}

.traders-rating ul li {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows {
    display: flex;
    gap: 10px;
    /* max-width: 1174px; */
    width: 100%;
    justify-content: flex-end;
    margin: -88px 0 40px;
}

.traders-say-slider {
    padding-top: 88px;
    margin-top: -88px;
    overflow: hidden;
}

.slider-arrows .swiper-button-next,
.slider-arrows .swiper-button-prev {
    position: initial;
    margin: 0;
    padding: 0;
    height: 48px;
    width: 48px;
    background-size: 13px;
    opacity: 1;
    border: solid 1px var(--dark-gray-color);
    border-radius: 50%;
}

.slider-arrows .swiper-button-prev:hover {
    background-color: var(--primary-2);
}

.slider-arrows .swiper-button-next:hover {
    background-color: var(--primary-2);
}

/* Service Sections */

.service-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.service-cards {
    position: relative;
    border-radius: 18px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;

    text-align: left;
    overflow: hidden;

    transition: all .4s ease;

}

/* Accent line */
.service-cards::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    opacity: .8;
}
.service-cards .contents {
    padding: 10px;
}

/* Hover glow */
.service-cards::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--x,50%) var(--y,50%),
        rgba(255,183,3,.25),
        transparent 40%
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.service-cards:hover::after {
    opacity: 1;
}

/* Hover motion */
.service-cards:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    cursor: pointer;
}

/* Image */
.service-cards img {
    object-fit: cover;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
    width: 100%;
    height: 250px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Title */
.service-cards h6 {
    font-size: 20px;
    margin: 0 0 14px;
    font-weight: 600;
}

/* Text */
.service-cards p {
    font-size: 15px;
    line-height: 1.7;
    opacity: .85;
    color: var(--body-text-color);
}
.service-section .cities-sec {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 40px;
    gap: 24px;
}
.service-section .city {
    text-align: center;
}
.service-section .city h3 {
    font-size: 16px;
    color: var(--body-text-color);
    margin-top: 8px;
}
.cities-title {
    margin-top: 30px;
}

/* Parallax section */
.parallax-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.icow-lorry img,
.icow-contact img,
.icow-plane img,
.icow-ship img,
.icow-storage img,
.icow-box img {
    width: 50px;
    transition: filter 0.3s ease;
}
.tracking-text {
    font-weight: 700;
    font-size: 18px;
}


.trust-section {
    position: relative;
    min-height: 500px; 
}

/* Hero Truck Animation */
.round-truck {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;

    box-shadow: 
        0 0 0 4px rgba(255,165,0,0.4),
        0 0 40px rgba(255,165,0,0.6);

    animation: float 4s ease-in-out infinite;
}

.round-truck img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 50%;
}

/* 🔹 LEFT IMAGE */
.truck-left {
    top: 36%;
    left: 12%;
    transform: translate(-50%, -50%);
}

/* 🔹 BOTTOM IMAGE */
.truck-bottom {
    bottom: 7%;
    left: 27%;
    transform: translateX(-50%);
}

/* FLOATING ANIMATION (safe with position) */
@keyframes float {
    0% {
        transform: translate(var(--x, 0), var(--y, 0)) scale(1);
    }
    50% {
        transform: translate(var(--x, 0), calc(var(--y, 0) - 15px)) scale(1.03);
    }
    100% {
        transform: translate(var(--x, 0), var(--y, 0)) scale(1);
    }
}

/* Custom transform vars */
.truck-left {
    --x: 3%;
    --y: -2%;
}

.truck-bottom {
    --x: 10%;
    --y: 0;
}

/* Work Section css */



/* SECTION STYLING */
.work-section {
    position: relative;       /* important for canvas absolute */
    padding: 120px 0;         /* vertical spacing */
    background: var(--midnight-navy);      /* fallback background */
    overflow: hidden;
}

/* CANVAS BACKGROUND */
#bubbleCanvas {
    position: absolute;
    inset: 0;                  /* top:0; bottom:0; left:0; right:0 */
    width: 100%;
    height: 100%;
    z-index: 1;                /* behind content */
}

/* CONTENT ABOVE CANVAS */
.cards-title {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 1200px; */
    /* margin: auto; */
    color: #fff;
    cursor: pointer;
}

/* SECTION TITLE */
.work-titles {
    font-size: 36px;
    margin-bottom: 60px;
} 
.work-section h2.work-titles {
    margin-bottom: 50px;
    color: #ffffff;
}

/* STEPS CONTAINER */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;                  /* horizontal + vertical gap */
}

/* INDIVIDUAL STEP */
.step {
    background: rgba(255,255,255,0.08);  /* glass-like card */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    border-color: rgba(255,165,0,0.6);
}

/* STEP NUMBER */
.step-number {
    display: block;
    font-size: 46px;
    font-weight: 700;
    color: #fff7f7;
    margin-bottom: 15px;
}

/* STEP HEADINGS */
.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* STEP PARAGRAPH */
.step p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps {
        grid-template-columns: 1fr;
    }
}


/* counter sections */

.counter-section {
    position: relative;
    min-height: 500px;
    background-image: url("/assets/images/hero-img.jpg"); /* apni image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* PARALLAX */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark overlay */
.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 58, 0.75);
    z-index: 1;
}

.counter-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.counter-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s ease;
    cursor: pointer;
}

.counter-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 165, 0, 0.6);
}

.counter {
    font-size: 54px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.counter-box p {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: 1fr;
    }
}

/* Faq Sections */

.faq-split-section {
    padding: 120px 0 120px;
    background: var(--midnight-navy);
}

.faq-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT IMAGE */
.faq-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* RIGHT CONTENT */
.faq-content {
    color: #fff;
}

.faq-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
}

/* FAQ ITEM */
.faq-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255,165,0,0.6);
}

.faq-question {
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.faq-question span {
    font-size: 26px;
    transition: 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: orange;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: #ddd;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 22px 20px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    .faq-image {
        order: -1;
    }
}
h2.counter-titles {
    color: #ffff;
    margin-bottom: 50px;
}
.card-section h2, .service-section h2 {
    margin-bottom: 30px;
}
.why-choose-section {
    padding: 120px 0 120px;
}
.mega-dropdown .row {
    padding: 0 20px 20px;
    background: #fff;
}
/* Contact Us Section */
.contact-pro-section {
   padding: 120px 0 120px;
   background: var(--primary-2);;
}

/* Main Card */
.contact-box {
    border-radius: 24px;
    overflow: hidden;
}

/* LEFT IMAGE */
.contact-pro-image {
    height: 520px;
    background: url('/assets/images/contact.jpg') center/cover no-repeat;
    position: relative;
}


.contact-pro-image h2 {
    font-size: 50px;
    font-weight: 800;
    margin-top: 20px;
}

.contact-pro-image p {
    font-size: 18px;
    margin-top: 15px;
}

/* RIGHT FORM (GLASS EFFECT) */
.contact-pro-form {
    padding: 60px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    color: #fff;
    border-radius: 20px;
}

.contact-pro-form h3 {
    font-size: 32px;
    font-weight: 700;
}

.contact-pro-form p {
    color: #fff;
}

/* INPUTS */
.form-control {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
}

.form-control:focus {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 0 0.2rem rgba(255,193,7,.35);
    color: #fff;
}

.form-floating label {
    color: #ddd;
}

.overlay p {
    color: #fff;
}
.overlay span.inquiries {
   color: #fff;
}
.contact-pro-image span {
   color: #fff;
}
.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,193,7,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-pro-form {
        padding: 40px;
    }
}
.form-control {
    border: 1px solid;
}
.contact-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
}
.contact-item img {
    filter: invert(1);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.contact-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-item a:hover {
    color: orange;
}
.badge-common {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.truck-btn {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background-color: var(--midnight-navy);
    margin-top: 30px;
}
.truck-btn:hover {
    color: #0b1522;
}
.why-choose-section p {
   color: #464646;
   font-weight: 600;
}
ul.service-list.supports li {
    color: #ffff;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}


.main-choosing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Card styling */
.choose-cards {
    background: rgba(255,255,255,0.08);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.choose-cards img {
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%)
            invert(56%) sepia(88%)
            saturate(531%) hue-rotate(356deg)
            brightness(97%) contrast(103%);
}

.choose-cards h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-2);
}

.choose-cards p {
    font-size: 14px;
    color: #251b31;
}

/* Hover effect */
.choose-cards:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-choosing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main-choosing-cards {
        grid-template-columns: 1fr;
    }
}


/* mega menu  */

/* Parent */
.mega-menu {
    position: static;
}

/* Dropdown container */
.mega-dropdown {
    position: absolute;
    left: 57%;
    top: 174%;
    width: 150%;
    max-width: 1320px; 
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 99;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Show on hover */
.mega-menu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-dropdown .row {
    border: none;
}

/* Titles */
.mega-title {
    color: #ed7d05;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Lists */
.mega-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-dropdown ul li {
    margin-bottom: 10px;
}
.mega-image {
    display: block;
    width: 100%;
}

.mega-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

.mega-dropdown ul li a {
    color: #050d1e;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.mega-dropdown ul li a:hover {
    color: #ed7d05;
    padding-left: 6px;
}

/* Highlight box */
.mega-highlight {
    background: rgb(0 0 0 / 8%);
    padding: 25px;
    border-radius: 14px;
}

.mega-highlight h5 {
    color: var(--black);
}

.mega-highlight p {
    font-size: 14px;
    opacity: 0.85;
    color: var(--black);
}

.mega-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #ed7d05;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}
@media (max-width: 991px) {
    .mega-dropdown {
        position: static;
        transform: none;
        width: 100%;
        padding: 20px 0;
    }
}

/* lottie image */

.image-animation-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-animation-box img {
    width: 100%;
    display: block;
}

.image-animation-box lottie-player {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    pointer-events: none;
}
.service-section .description {
    font-weight: var(--fw-700);
    margin-bottom: 40px;
}