/* Base */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #153f93;
  --secondary-color: #ffcd00;
  --white: #fff;
  --black: #000;
  --card-border-radius: 20px;
  --btn-border-radius: 30px;
  --card-padding: 20px;
  --btn-padding: 8px 16px;
  --all-transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.section-pad {
  padding: 70px 0;
}

.text-accent {
  color: #35c1ff !important;
}

.logo-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #35c1ff, #0046ff);
}

.logo-img {
  height: 45px;
  width: auto;
}
.btn-contact {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 30px;
  border: none;
  border-radius: var(--btn-border-radius);
  line-height: 1.2;
  transition: var(--all-transition);
  outline: 1px solid transparent;
}
.btn-contact:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
/* ------------btn effect ----------------- */

.btn-contact {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* circles */
.btn-contact::before,
.btn-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color); /* button color */
  border-radius: inherit;
  transform: translateY(-50%);
  z-index: -1;
}

/* left circle */
.btn-contact::before {
  left: -20px;
}

/* right circle */
.btn-contact::after {
  right: -20px;
}

/* hover */
.btn-contact:hover {
  color: #ffffff;
}

/* hover animations */
.btn-contact:hover::before {
  animation: criss-cross-left 0.8s forwards;
}

.btn-contact:hover::after {
  animation: criss-cross-right 0.8s forwards;
}

/* ===== ANIMATIONS ===== */

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 48%;
    width: 330px;
    height: 300px;
    transform: translate(-50%, -50%); /* 🔥 FIX */
  }
}

@keyframes criss-cross-right {
  0% {
    right: -18px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
    transform: translate(50%, -50%);
  }
  100% {
    right: 48%;
    width: 330px;
    height: 300px;
    transform: translate(50%, -50%); /* 🔥 FIX */
  }
}
.btn-white {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 10px 30px;
  border: none;
  border-radius: var(--btn-border-radius);
  line-height: 1.2;
  transition: var(--all-transition);
  outline: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* transition: color 0.1s ease;
    transition-delay: 0.1s ; */
}

.btn-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ------------ btn effect ----------------- */

/* circles */
.btn-white::before,
.btn-white::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: inherit;
  transform: translateY(-50%);
  z-index: -1;
}

/* left circle */
.btn-white::before {
  left: -20px;
}

/* right circle */
.btn-white::after {
  right: -20px;
}

/* hover animations */
.btn-white:hover::before {
  animation: criss-cross-left2 0.8s forwards;
}

.btn-white:hover::after {
  animation: criss-cross-right2 0.8s forwards;
}

/* ===== ANIMATIONS ===== */

@keyframes criss-cross-left2 {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 48%;
    width: 330px;
    height: 300px;
    transform: translate(-50%, -50%); /* 🔥 FIX */
  }
}

@keyframes criss-cross-right2 {
  0% {
    right: -18px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
    transform: translate(50%, -50%);
  }
  100% {
    right: 48%;
    width: 330px;
    height: 300px;
    transform: translate(50%, -50%); /* 🔥 FIX */
  }
}

.btn-blue {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 30px;
  border: none;
  border-radius: var(--btn-border-radius);
  line-height: 1.2;
  transition: var(--all-transition);
  outline: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* transition: color 0.1s ease;
    transition-delay: 0.1s ; */
}

.btn-blue:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* circles */
.btn-blue::before,
.btn-blue::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color); /* button color */
  border-radius: inherit;
  transform: translateY(-50%);
  z-index: -1;
}

/* left circle */
.btn-blue::before {
  left: -20px;
}

/* right circle */
.btn-blue::after {
  right: -20px;
}

/* hover */
.btn-blue:hover {
  color: #ffffff;
}

/* hover animations */
.btn-blue:hover::before {
  animation: criss-cross-left3 0.8s forwards;
}

.btn-blue:hover::after {
  animation: criss-cross-right3 0.8s forwards;
}

/* ===== ANIMATIONS ===== */

@keyframes criss-cross-left3 {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 48%;
    width: 330px;
    height: 300px;
    transform: translate(-50%, -50%); /* 🔥 FIX */
  }
}

@keyframes criss-cross-right3 {
  0% {
    right: -18px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
    transform: translate(50%, -50%);
  }
  100% {
    right: 48%;
    width: 330px;
    height: 300px;
    transform: translate(50%, -50%); /* 🔥 FIX */
  }
}

/* ===== MOBILE SIDEBAR NAV ===== */
@media (max-width: 991px) {
  #mainNavbar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(21, 63, 147, 0.95);
    backdrop-filter: blur(12px);
    padding: 80px 20px;
    transition: 0.35s ease;
    z-index: 9999;
    display: block !important;
  }

  #mainNavbar.active {
    left: 0;
  }

  /* Close button */
  .close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
  }

  /* Navigation list */
  .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Nav items */
  .sidebar-nav li {
    margin-bottom: 18px;
  }

  /* Links */
  .sidebar-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--btn-border-radius);
    transition: background 0.3s ease;
  }

  /* Hover */
  .sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* Active link */
  .sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.25);
  }
  #mainNavbar .btn-contact {
    width: 100%;
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .mobile-sidebar {
    display: none;
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-bottom: 6px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}

.nav-link:hover::after {
  width: 100%;
}
.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar .nav-link.active {
  color: var(--primary-color);
}

/* Glass/blur header on hero */
.nav-glass {
  background: rgb(255 255 255 / 55%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgb(255 255 255 / 38%);
  padding: 10px 15px 10px 20px;
}

/* Navbar style after scrolling past hero */
.navbar-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  background-color: #ffffff !important;
}
.navbar-scrolled .nav-glass {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.06);
  padding: 0;
  border: 0;
}

.navbar-scrolled .nav-link {
  color: #9e9e9e;
}
.navbar-scrolled .nav-link:hover {
  color: var(--primary-color);
}
.navbar-scrolled .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar-scrolled .btn-outline-light {
  color: #0046ff;
  border-color: #0046ff;
}

.navbar-scrolled .btn-outline-light:hover {
  background-color: #0046ff;
  color: #ffffff;
}

/* Hero */
.hero-section {
  min-height: fit-content;
  background-image: linear-gradient(
    120deg,
    rgba(2, 20, 40, 0.9),
    rgba(1, 65, 117, 0.1)
  );
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(53, 193, 255, 0.35),
    transparent 55%
  );
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  border-radius: 1.5rem;
}

.hero-bottom-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
}

.hero-play .play-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-meta .h5 {
  font-weight: 700;
}
.hero-info-container {
  position: absolute;
  bottom: 10%;
  width: 100%;
}
/* Hero info card (truck + clients) */
.hero-info-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  padding: var(--card-padding);
  -webkit-backdrop-filter: blur(12px);
}

.hero-info-thumb {
  width: 110px;
  height: 72px;
  border-radius: 26px;
  background-image: url("../images/hero-small.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-avatars .avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #ffffff;
}
.hero-avatars .avatar-circle:not(:first-child) {
  margin-left: -8px;
}

.hero-avatars .avatar-circle:nth-child(1) {
  background: url("../images/client-sm.png");
}

.hero-avatars .avatar-circle:nth-child(2) {
  background: url("../images/client-sm1.png");
}

.hero-avatars .avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #1b1b1f;
}
.hero-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
}
.hero-subtext {
  font-size: clamp(1rem, 1vw, 1.25rem);
  line-height: 1.3;
  color: #e4e4e4;
  max-width: 650px;
  letter-spacing: normal;
}
.btn-effect {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.btn-effect i.mdi {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.btn-effect:hover {
  color: var(--secondary-color);
}
.btn-effect:hover i.mdi {
  transform: translateX(6px);
  color: var(--secondary-color);
}
.count {
  color: var(--secondary-color);
}
.section-title {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

/* service-2 */
.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-img {
  position: relative;
  height: 320px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

/* Background images */
.ocean {
  background-image: url("../images/road-serv.png");
}
.land {
  background-image: url("../images/land-serv.png");
}
.air {
  background-image: url("../images/air-serv1.png");
}

/* Label pill */
.service-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}

.service-label.active {
  background: var(--secondary-color);
  color: #000;
}

/* Arrow button */
.service-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(0 0 0 / 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(6px);
}
.service-arrow i {
  transition: transform 0.3s ease;
  transform: rotate(316deg);
}
.service-arrow.dark {
  background: rgba(0, 0, 0, 0.6);
}
.service-card:hover .service-arrow {
  background: var(--secondary-color);
}
.service-card:hover .service-arrow i {
  transform: translateY(-5px) translateX(5px) rotate(316deg);
}
/*why choose us section */
.why-choose-us {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden; /* safety */
}

/* MAIN CONTAINER */
.why-choose-us .why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.image-collage {
  position: relative;
  height: 750px;
  overflow: hidden; /* 🔥 MOST IMPORTANT */
}

/* COMMON IMAGE STYLE */
.image-collage img {
  display: block;
  max-width: 100%;
}

.image-collage .img {
  position: absolute;
  border-radius: 30px;
  object-fit: cover;
  background: #fff;
  padding: 6px; /* thin frame */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* IMAGE POSITIONS */
.img-1 {
  width: 80%;
  top: 6%;
  left: 0;
  z-index: 1;
}

.img-2 {
  width: 45%;
  top: 9%;
  right: 0;
  z-index: 2;
}

.img-3 {
  width: 55%;
  bottom: 0;
  right: 40px;
  z-index: 2;
}

/* ===============================
   CONTENT
================================ */

.content .small-title {
  color: #e63946;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.content h2 {
  margin: 15px 0 10px;
}

/* ===============================
   FEATURES
================================ */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* padding: 20px; */
  border-radius: 12px;
  /* border: 1px solid #eee; */
  background: #fff;
  transition: var(--all-transition);
  margin: 10px 0;
}

.feature-card .icon {
  width: 41px;
  height: 41px;
  font-size: 28px;
  color: var(--primary-color);
  background: #fff;
  min-width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 12px;
  transition: var(--all-transition);
}
.feature-card .icon i {
  font-size: 25px;
  transition: var(--all-transition);
}
.feature-card:hover .icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #0b2c3d;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* ===============================
   CTA
================================ */

.cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.clients {
  font-size: 14px;
  color: #333;
  border-bottom: 2px solid #519727;
  padding-bottom: 2px;
}
.review-imgs .review-img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.review-imgs .review-img:nth-child(1) {
  background: url("../images/client-img1.png");
}
.review-imgs .review-img:nth-child(2) {
  background: url("../images/client-img2.png");
}
.review-imgs .review-img:nth-child(3) {
  background: url("../images/client-img3.png");
}
.review-imgs .review-img:nth-child(4) {
  background: url("../images/client-img4.png");
}
.review-imgs .review-img:not(:first-child) {
  margin-left: -10px;
}
/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .why-choose-us .why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-collage {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .image-collage {
    height: 360px;
  }

  .content h2 {
    font-size: 32px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ */
/* ================= FAQ SECTION ================= */

.faq-section {
  background: #f5f7fb;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-left h2 {
  margin-bottom: 10px;
}

.faq-left img {
  max-width: 100%;
}

/* RIGHT */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #0b2c3d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
}

/* ANSWER */
.faq-answer {
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* ACTIVE STATE */
.faq-item.active {
  background: var(--primary-color);
}

.faq-item.active .faq-question {
  color: #fff;
}

.faq-item.active .faq-answer {
  padding: 15px 22px 22px;
  max-height: 300px;
  color: #eaefff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-left {
    text-align: center;
  }
}
/* ================= LOGISTICS INTRO SECTION ================= */

.logistics-intro {
  background: var(--primary-color); /* top theme dark */
  color: #ffffff;
}

.logistics-intro .logistic-wrapper {
  padding: 0 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.intro-content {
  margin-left: auto;
  max-width: 660px;
}
.intro-content h2 {
  color: var(--secondary-color);
  margin: 15px 0 20px;
}

.intro-text {
  color: #cfd8dc;
  max-width: 520px;
  margin-bottom: 40px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature {
  display: flex;
  gap: 15px;
}

.feature .icon {
  font-size: 22px;
  color: white;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  color: #cfd8dc;
}

.truck-light {
  position: absolute;
  bottom: 0;
  left: -21px;
  max-width: 420px;
  opacity: 1;
  z-index: 0;
  animation: truckMove 6s ease-in-out infinite;
}

@keyframes truckMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px); /* aage */
  }
  100% {
    transform: translateX(0); /* piche */
  }
}
/* RIGHT SIDE WRAPPER */
.intro-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.intro-right .intro-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%);  */
}

.intro-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

.track-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  padding: 22px;
  z-index: 2;
}

.track-card h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
}

.track-form {
  display: flex;
  gap: 12px;
}

.track-form input {
  flex: 1;
  height: 46px;
  border: none;
  padding: 0 14px;
  border-radius: var(--btn-border-radius);
  font-size: 14px;
}

.track-form button {
  height: 46px;
  padding: 0 22px;
  background: var(--secondary-color);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: var(--btn-border-radius);
  cursor: pointer;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-right {
    min-height: 420px;
    margin-top: 0px;
  }
  .track-form input {
    padding: 12px 14px;
  }
  .track-card {
    width: 90%;
    bottom: 20px;
    border-radius: 30px;
  }

  .logistics-intro .logistic-wrapper {
    grid-template-columns: 1fr;
  }

  .intro-content h2 {
    font-size: 34px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
/* testimonials section  */

.testimonial_section {
  display: block;
  overflow: hidden;
  background: rgb(248, 249, 250);
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: transparent;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 50px;
  padding-left: 50px;
  position: relative;
  border-radius: 30px;
}
.testimonial_section .about_content .background_layer {
  background-color: var(--primary-color);
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {
  padding-bottom: 51px;
  margin-bottom: 0px;
}

.testimonial_section
  .about_content
  .layer_content
  .section_title
  .heading_line {
  position: relative;
}
.testimonial_section
  .about_content
  .layer_content
  .section_title
  .heading_line
  span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section
  .about_content
  .layer_content
  .section_title
  .heading_line
  span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}
.testimonial_section
  .about_content
  .layer_content
  .section_title
  .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #ff5e14;
}
.testimonial_section .about_content .layer_content .section_title p {
  color: var(--primary-color);
  margin: 0 0 15px;
}
/* .testimonial_section .about_content .layer_content a {
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
} */
/* .testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}
.testimonial_section .about_content .layer_content a:hover {
  color: var(--secondary-color);
} */
.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: var(--primary-color);
  margin-left: -170px !important;
  position: relative;
  border-radius: 30px;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: var(--secondary-color);
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 50px 72px 50px;
  position: relative;
  text-align: center;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-left: 150px;
  margin-top: 69px;
  border-radius: 30px;
  padding: 25px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content
  .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content
  .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: var(--secondary-color);
  position: absolute;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content
  .testimonial_caption
  h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary-color);
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content
  .testimonial_caption
  span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .testimonial_content
  p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .images_box
  .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 50px;
  top: 50px;
  z-index: 0;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .layer_content
  .testimonial_owlCarousel
  .testimonials
  .images_box
  .testimonial_img
  img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 30px;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .owl-nav
  .owl-prev {
  position: absolute;
  top: 170px;
  right: 110px;
  border-radius: 0;
  background: var(--secondary-color);
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .owl-nav
  .owl-prev:hover {
  background: var(--primary-color);
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .owl-nav
  .owl-next {
  position: absolute;
  top: 170px;
  right: 70px;
  border-radius: 0;
  display: block;
  background: var(--secondary-color);
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section
  .testimonial_box
  .testimonial_container
  .owl-nav
  .owl-next:hover {
  background: var(--primary-color);
}
.testi-vect {
  position: absolute;
  top: 57px;
  right: 20%;
  width: 125px;
  object-fit: cover;
}
.testi-vect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-vect-2 {
  position: absolute;
  bottom: 60px;
  left: 15%;
  width: 125px;
  object-fit: cover;
}
.testi-vect-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
/* ================= FOOTER ================= */

.site-footer {
  background: var(--primary-color); /* dark blue like image */
  color: #cfd5ff;
}

.footer-wrapper {
  padding: 70px 20px 30px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-brand h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-brand h2 span {
  color: var(--secondary-color);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #b9c0ff;
}

/* COLUMNS */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b9c0ff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  font-size: 13px;
  color: #aab0ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom a:hover,
.footer-bottom a:active {
  color: var(--secondary-color);
}
.footer-bottom p {
  margin-bottom: 0;
}

/* -----------ABOUT--------- */

.breadcrumb-section {
  position: relative;
  height: 36vh;
  min-height: 300px;
  background-image:
    linear-gradient(120deg, rgba(2, 20, 40, 0.9), rgba(1, 65, 117, 0.1)),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.breadcrumb-section .breadcrumb a {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}
.breadvrumb-dets {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(53, 193, 255, 0.35),
    transparent 55%
  );
}
.bread-pad {
  padding: 90px 0 50px;
}
/* first-section  */

/* Parent Wrapper */
.logistics-wrapper {
  width: 100%;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}

/* Logistics Section */
.logistics-wrapper .logistics-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Left Image Container */
.logistics-wrapper .logistics-left {
  position: relative;
  flex: 1;
  max-width: 600px;
}

.logistics-wrapper .logistics-left img.main-img {
  width: 75%;
  border-radius: 10px;
  object-fit: cover;
}

/* Globe Icon Circle */
.logistics-wrapper .icon-circle {
  position: absolute;
  top: -35px;
  left: -35px;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logistics-wrapper .icon-circle img {
  width: 60%;
}

/* Experience Box */
.logistics-wrapper .experience-box {
  position: absolute;
  bottom: -40px;
  left: 6%;
  background: var(--primary-color);
  color: #fff;
  padding: 30px 25px;
  border-radius: var(--card-border-radius);
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logistics-wrapper .experience-box h2 {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
}

.logistics-wrapper .experience-box p {
  margin: 5px 0 0 0;
  font-size: 12px;
}

.logistics-wrapper .experience-box .rating {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 6px 6px;
  border-radius: 30px;
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 10px;
}

/* Right Content */
.logistics-wrapper .logistics-right {
  flex: 1;
  padding-left: 60px;
}

.logistics-wrapper .logistics-right a.subtitle {
  text-decoration: none;
  color: #ef210c;
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
}

.logistics-wrapper .logistics-right h1 {
  margin: 10px 0 20px;
}

.logistics-wrapper .logistics-right p.description {
  margin-bottom: 40px;
}

/* Services Section */
.logistics-wrapper .services {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.logistics-wrapper .service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.logistics-wrapper .service-box i {
  font-size: 28px;
  color: var(--primary-color);
  transition: var(--all-transition);
}
.logistics-wrapper .service-box:hover i {
  color: var(--secondary-color);
  transform: scale(1.2);
}
.logistics-wrapper .service-box .service-text h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

.logistics-wrapper .service-box .service-text p {
  margin: 0;
  font-size: 12px;
  color: #7a7a7a;
}

/* Features List */
.logistics-wrapper .features-list {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.logistics-wrapper .features-list p {
  margin: 8px 0;
  font-size: 14px;
}

.logistics-wrapper .features-list i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 20px;
}

/* Forklift Image */
.logistics-wrapper .forklift-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 250px;
  z-index: -1;
  animation: truckMove2 6s ease-in-out infinite;
}

@keyframes truckMove2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px); /* aage */
  }
  100% {
    transform: translateY(0); /* piche */
  }
}
.plane-vect {
  position: absolute;
  width: 300px;
  top: 10%;
  left: 0;
  transform: rotate(-25deg);
  transition: var(--all-transition);
  z-index: -1;
}
.plane-vect:hover {
  transform: rotate(-23deg) translateX(40px);
}

/* Responsive */
@media (max-width: 992px) {
  .logistics-wrapper .logistics-section {
    flex-direction: column;
  }

  .logistics-wrapper .logistics-right {
    padding-left: 0;
    margin-top: 40px;
  }

  .logistics-wrapper .services {
    flex-direction: column;
    gap: 20px;
  }

  .logistics-wrapper .forklift-img {
    position: relative;
    max-width: 200px;
    margin-top: 30px;
  }

  .logistics-wrapper .experience-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    padding: 15px;
  }

  .logistics-wrapper .icon-circle {
    width: 150px;
    height: 150px;
  }
  .plane-vect {
    left: auto;
    right: 0;
    transform: rotate(25deg) scaleX(-1);
  }
}

/* second-section  */

.vggo-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE */
.vggo-contact .contact-left {
  flex: 1 1 400px;
  max-width: 600px;
}

.vggo-contact .brand {
  color: var(--secondary-color);
  font-weight: bold;
  font-style: italic;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 15px;
}

.vggo-contact .contact-left h1 {
  margin-bottom: 20px;
}

.vggo-contact .contact-left p {
  margin-bottom: 30px;
}

/* SUPPORT */
.vggo-contact .support {
  margin-bottom: 30px;
}

.vggo-contact .support h3 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.vggo-contact .support p {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin: 0;
}

/* CARDS */
.vggo-contact .contact-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vggo-contact .contact-card {
  flex: 1 1 260px;
  padding: 28px 30px;
  border-radius: 12px;
  background: #e4e4e4;
}

.vggo-contact .contact-card h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.vggo-contact .contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #252525;
}
.vggo-contact .contact-card:nth-child(2) {
  background: #ffffff;
  border: 2px solid var(--primary-color);
}
/* RIGHT SIDE MAP */
.vggo-contact .contact-right {
  flex: 1 1 400px;
  position: relative;
  min-height: 400px;
}

.vggo-contact .world-map {
  width: 100%;
  height: 520px; /* DIRECT height */
  background: url("../images/map-img.png") no-repeat center / contain;
}

/* PINS */
.vggo-contact .pin {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  z-index: 5;
  outline: 3px solid #153f9342;
  transition: var(--all-transition);
}
.vggo-contact .pin:hover {
  outline: 10px solid #153f9342;
}

.vggo-contact .pin.ny {
  top: 40%;
  left: 20%;
}
.vggo-contact .pin.sa {
  top: 65%;
  left: 35%;
}
.vggo-contact .pin.eu {
  bottom: 45%;
  right: 30%;
}
.vggo-contact .pin.asia {
  top: 35%;
  left: 75%;
}
.vggo-contact .pin.au {
  top: 65%;
  left: 80%;
}

.pin .tooltip {
  opacity: 0;
  transform: translate(-50%, -100%);
  transition: 0.3s ease;
}

.pin.active .tooltip {
  opacity: 1;
  transform: translate(-50%, -120%);
}

.vggo-contact .tooltip {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translate(-50%, -150%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 140px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  text-align: center;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  color: var(--primary-color);
}

.vggo-contact .tooltip img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 5px;
}

/* --------trusted companys ---------- */

.trusted-section {
  background: #fff;
  overflow: hidden;
}

.trusted-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.trusted-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1f3a;
  white-space: nowrap;
}

.trusted-header h3 span {
  color: var(--secondary-color);
  font-weight: 700;
}

.trusted-header .line {
  width: 120px;
  height: 1px;
  background: #ddd;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.85;
  transition: 0.3s ease;
}

.logo-track img:hover {
  /* filter: grayscale(0); */
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* integration card  */
.owl-stage {
  display: flex;
  align-items: stretch; /* 🔥 MOST IMPORTANT */
}
.integration-card {
  width: 306px;
  background: #ffffff;
  border: 1px solid;
  border-bottom: 2px solid;
  border-right: 3px solid;
  border-color: #dcdcdc;
  border-radius: 30px;
  padding: 26px 24px 28px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 99%;
}

.integration-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* Bitcoin color */
.integration-card .icon.btc {
  background: white;
}

.integration-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.integration-card .symbol {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.integration-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 14px 0 18px;
}

.integration-card a {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--all-transition);
}
.integration-card a i {
  display: inline-block;
  margin-left: 6px;
  transition: var(--all-transition);
}
.integration-card:hover a {
  color: var(--secondary-color);
}
.integration-card:hover a i {
  transform: translateX(6px);
  color: var(--secondary-color);
}

/* ---------contact us-------- */
.contact-page {
  background: #f8f9fa;
}

.contact-page .contact-card {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* LEFT */
.contact-page .contact-form {
  padding: 50px;
}

.contact-page .small-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.contact-page .contact-form h2,
.contact-page .contact-info h2 {
  margin: 10px 0 25px;
}
.contact-page .contact-info h2 {
  color: var(--secondary-color);
}
.contact-page .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  background: #f3f5f9;
  border-radius: var(--btn-border-radius);
  font-size: 14px;
}

.contact-page textarea {
  height: 140px;
  resize: none;
  margin-bottom: 25px;
}

.btn-default-dark {
  background: #153f93;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--btn-border-radius);
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT */
.contact-page .contact-info {
  background: #153f93;
  color: #fff;
  padding: 50px;
}

.contact-page .contact-info p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-page .info-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.contact-page .icon {
  width: 50px;
  height: 50px;
  background: #ffcd00;
  color: #153f93;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.contact-page .icon i {
  font-size: 22px;
}

.contact-page .info-box h4 {
  font-size: 16px;
}

.contact-page .info-box span {
  font-size: 14px;
  opacity: 0.9;
}

.contact-page .map iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .contact-page .contact-card {
    grid-template-columns: 1fr;
  }
}

/* ------ our process ----------- */

.process-section {
  text-align: center;
  background: #f8f9fa;
}

/* LABEL */
.process-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.process-label::before,
.process-label::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

/* HEADING */

/* WRAPPER */
.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

/* STEP */
.process-step {
  width: 230px;
  text-align: center;
}

.process-wrapper .icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--all-transition);
}
.process-step:hover .icon-circle {
  background: var(--secondary-color);
}
.process-step:hover .icon-circle i {
  transition: var(--all-transition);
}
.process-step:hover .icon-circle i {
  transform: scale(1.2);
}
/* TITLE */
.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* TEXT */
.process-step p {
  font-size: 14px;
  color: #292828;
  line-height: 1.6;
}

/* LINE */
.line {
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin-top: 35px;
}

/* request a quoate--------- */
/* ===============================
   REQUEST QUOTE SECTION
================================ */

.request-quote-section {
  position: relative;
  padding: 120px 5% 0;
  background:
    linear-gradient(rgba(10, 33, 77, 0.9), rgba(10, 40, 60, 0.92)),
    url("../images/quote-bg.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* ===============================
   VERTICAL TEXT
================================ */

.vertical-text {
  position: absolute;
  left: 70px;
  bottom: 0;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left top;
  font-size: 75px;
  font-weight: 800;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

/* ===============================
   MAIN CONTAINER
================================ */

.quote-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  z-index: 3;
}

/* ===============================
   LEFT IMAGE
================================ */

.quote-left img {
  max-width: 430px;
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
}

/* ===============================
   RIGHT FORM CARD
================================ */

.quote-right {
  width: 570px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  padding: 50px 40px;
  border-radius: var(--card-border-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.quote-right h2 {
  color: #fff;
  margin-bottom: 28px;
}

/* ===============================
   FORM LAYOUT
================================ */

.quote-right .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row > * {
  flex: 1;
}

/* ===============================
   INPUTS & SELECTS
================================ */

.quote-right input,
.quote-right select {
  width: 100%;
  height: 46px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--btn-border-radius);
  color: #fff;
  outline: none;
  font-size: 15px;
}

.quote-right input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.quote-right select {
  cursor: pointer;
}

/* ===============================
   PRICE RANGE SLIDER
================================ */

.price-label {
  font-size: 14px;
  margin: 10px 0 6px;
  display: block;
}

/* ===== PRICE RANGE BASE ===== */
.price-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

/* ===== TRACK ===== */
.price-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #ffcd00 0%,
    #ffcd00 var(--percent),
    rgba(255, 255, 255, 0.25) var(--percent),
    rgba(255, 255, 255, 0.25) 100%
  );
}

/* ===== THUMB ===== */
.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-top: -4px;
  cursor: pointer;
}

/* Firefox */
.price-range::-moz-range-track {
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #ffcd00 0%,
    #ffcd00 var(--percent),
    rgba(255, 255, 255, 0.25) var(--percent),
    rgba(255, 255, 255, 0.25) 100%
  );
}

.price-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: none;
}

.quote-right .price-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #fff;
  margin-bottom: 3px;
  margin-left: 5px;
}

#priceValue {
  color: var(--secondary-color);
  font-weight: 600;
}

/* ===============================
   CTA BUTTON
================================ */

.quote-right button {
  width: 100%;
  height: 48px;
  background: var(--secondary-color);
  border-radius: var(--btn-border-radius);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--all-transition);
}
.qt-btn:hover {
  color: var(--white);
}
.qt-btn:hover i {
  display: inline-block;
  transition: var(--all-transition);
}
.qt-btn:hover i {
  color: var(--white);
  transform: translateX(6px);
}
/* ===============================
   FOOTER ORANGE BAR
================================ */

.quote-footer {
  margin-top: 40px;
  background: var(--primary-color);
  padding: 26px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 30px 30px 0 0;
}

.quote-footer div {
  text-align: center;
  font-size: 18px;
}

.quote-footer span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE (OPTIONAL)
================================ */

@media (max-width: 992px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
  }

  .vertical-text {
    display: none;
  }

  .quote-right {
    width: 100%;
  }
  .quote-left {
    position: absolute;
    top: -17%;
    left: 0;
    z-index: 1;
  }
  .quote-left img {
    width: 150px;
  }
}
.girl-img {
  margin-bottom: -50px;
  position: relative;
}
.brand-vector {
  position: absolute;
  width: 120px;
  height: auto;
  object-fit: contain;
}
.brand-vector img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-1 { top: 90px;  right: 0px; }
.brand-2 { top: 90px; right: 15%; }
.brand-3 { top: 90px; right: 30%; }
.brand-4 { top: 180px; right: 36%; }
.brand-5 { top: 180px; right: 24%; }
.brand-6 { top: 180px;  right: 0px; }
.brand-7 { top: 260px;  right: 30%; }


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .process-wrapper {
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .line {
    display: none;
  }

  .process-step {
    width: 45%;
  }
}
@media (max-width: 1680px) {
  .logistics-wrapper .forklift-img {
    opacity: 0.1;
  }
}
@media (max-width: 1399px) {
  .intro-content {
    max-width: 575px;
  }
  .logistics-intro .logistic-wrapper {
    gap: 20px;
  }
  .features {
    gap: 10px;
    margin-bottom: 0px;
  }
  .plane-vect {
    left: 32%;
  }
  .integration-card {
    width: 350px;
  }
  .slider-section .owl-item {
    margin-right: 36px !important;
  }
}
@media (max-width: 1199px) {
  .girl-img {
    width: 400px;
  }
  .intro-content {
    max-width: 460px;
  }
  .contact-page .contact-card {
    margin: 0 20px;
  }
  .integration-card {
    width: 290px;
  }
  .brand-6{
    right: -40px
  }
  .brand-7{
    display: none;
  }
}
@media (max-width: 1200px) {
  .image-collage {
    height: 575px;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-prev {
    top: 140px;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-next {
    top: 140px;
  }
  .track-card {
    padding: 20px;
  }
  .contact-page .contact-form,
  .contact-page .contact-info {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  /* .hero-section {
    min-height: 100vh;
  } */
}
@media (max-width: 1100px) and (min-width: 991px) {
  .hero-info-container {
    display: none;
  }
}
@media (max-width: 991px) {
  .left-s{
    display: none;
  }
  .integration-card {
    width: 325px;
  }
  .logistics-intro .logistic-wrapper {
    gap: 0;
  }
  .intro-content {
    max-width: 735px;
    margin-left: 0;
    margin: 0 auto;
  }
  .img-1 {
    width: 70%;
    height: 350px;
    top: 0;
    left: 38%;
    transform: translateX(-50%);
  }
  .img-2 {
    display: none !important;
  }
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }
  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .layer_content
    .testimonial_owlCarousel
    .testimonials
    .testimonial_content {
    margin-top: 0;
    border-radius: 20px;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: 0px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .testimonials
    .testimonial_content {
    margin-left: 0px !important;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .testimonials
    .images_box {
    display: none;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .layer_content
    .testimonial_owlCarousel
    .testimonials {
    padding: 10px;
    margin: 0;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-prev {
    top: 35px;
    right: 80px;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-next {
    top: 35px;
    right: 40px;
  }
  .logistics-wrapper .forklift-img {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    width: 130px;
  }
  .request-quote-section {
    padding: 50px;
  }
  .quote-left {
    display: none;
  }
  .logistics-wrapper .logistics-left img.main-img {
    width: 100%;
  }
  .plane-vect {
    display: none;
  }
  .image-collage {
    height: 500px;
  }
  .intro-content {
    max-width: 540px;
    padding: 0 20px;
  }
  .vggo-contact {
    gap: 10px;
  }
  .logo-track {
    gap: 50px;
  }

  .logo-track img {
    height: 40px;
  }

  .trusted-header h3 {
    font-size: 16px;
  }
  .quote-footer {
    display: none;
  }
  .integration-card {
    max-width: 506px;
    min-width: 100%;
    width: 100%;
  }
  .slider-section .owl-item {
    margin-right: 15px !important;
  }
  .section-pad {
    padding: 40px 0;
  }
  .track-card h4 {
    color: var(--primary-color);
  }
}
@media (max-width: 576px) {
  .section-pad {
    padding: 30px 0;
  }
  .quote-right input,
  .quote-right select {
    height: 35px;
    font-size: 14px;
  }

  .quote-right .form-row {
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
  }
  .quote-right {
    padding: 20px;
  }
  .request-quote-section {
    padding: 20px 10px;
  }
  .track-form {
    flex-direction: column;
  }
  .intro-right {
    min-height: 210px;
  }
  .hero-info-container {
    bottom: 3%;
  }
  .image-collage {
    height: 430px;
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }

  .footer-brand p {
    max-width: 400px;
    margin: auto;
  }
  .bread-pad {
    padding: 90px 20px 30px;
  }
  .breadcrumb-section {
    height: 30dvh;
    min-height: 250px;
  }
  .contact-page .contact-form,
  .contact-page .contact-info {
    padding: 15px;
  }
  .contact-page .form-row {
    flex-direction: column;
  }

  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 320px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .process-step h4 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
  }
  .quote-right button {
    height: 38px;
    font-size: 16px;
  }
  .logistics-wrapper {
    padding-top: 50px !important;
  }
  .logistics-wrapper .icon-circle {
    top: -40px;
    left: 10px;
  }
  .hero-info-container {
    display: none;
  }
  .img-1 {
    width: 100%;
    left: 0;
    transform: none;
  }
  .img-3 {
    right: 10px;
  }
  .logo-track img {
    height: 22px;
  }
  .logo-track {
    gap: 20px;
  }
  .testimonial_section .about_content {
    padding-bottom: 25px;
    padding-left: 20px;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-prev {
    top: -18px;
  }
  .testimonial_section
    .testimonial_box
    .testimonial_container
    .owl-nav
    .owl-next {
    top: -18px;
  }
}

/* terms and condition  */

.terms-page h1 {
  margin-bottom: 25px;
  text-align: center;
}

.terms-page h2 {
  color: #153f93;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.terms-page p {
  margin-bottom: 15px;
}

.terms-page ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.terms-page ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-page h2 {
    font-size: 1rem;
  }
}
.navbar-toggler {
  background: transparent;
  border: none;
  padding: 10px;
  border-radius: 20px;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("../images/menu-icon.png");
}
.socials {
  list-style: none;
  display: flex;
  gap: 10px;
}

.social-icon {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: visible;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffcd00;
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.6);
  transition: all 0.35s ease;
  z-index: 0;
}
.social-icon:hover::before {
  opacity: 0.9;
  transform: scale(1.2);
}

.social-icon img {
  width: 20px;
  height: 20px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* Section Headings */
.legal-page h2,
.legal-page h3 {
  color: var(--primary-color); /* blue like image */
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

/* Sub headings (Eligibility, Services Offered etc.) */
.legal-page h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
}

/* Paragraph text */
.legal-page p {
  color: #444;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Lists */
.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-page ul li {
  color: #444;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* Small divider gap between sections */
.legal-page section {
  margin-bottom: 32px;
}

/* Emphasis text */
.legal-page strong {
  font-weight: 600;
  color: #222;
}

/* Links */
.legal-page a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.legal-page i {
  color: var(--primary-color);
  font-size: 15px;
}

.legal-page a:hover,
.legal-page a:active {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 40px 15px;
  }

  .legal-page p,
  .legal-page ul li {
    font-size: 15px;
  }
}
.quote-right select option {
  color: #000;
}
/* Chrome, Edge, Safari */
.quote-right input[type="number"]::-webkit-inner-spin-button,
.quote-right input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.track-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  max-width: 700px;
}

.track-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 18px;
  font-size: 15px;
  border-radius: 50px;
}

.track-wrapper input::placeholder {
  color: #999;
}
@media (max-width: 400px) {
  .track-wrapper input {
    padding: 8px 0px 8px 3px;
  }
  .track-wrapper .btn-contact {
    padding: 10px 7px;
  }
}
