.logistics-banner {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    overflow: hidden;
}

/* Background Image */
.logistics-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Dark Overlay */
.logistics-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    z-index: 1;
}

/* Content */
.logistics-banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 650px;
}

.logistics-banner-content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.logistics-banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.logistics-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.logistics-btn:hover {
    background: #e05500;
}

/* ========== TABLET ========= */
@media (max-width: 992px) {
    .logistics-banner {
        padding: 0 5%;
        min-height: 80vh;
    }

    .logistics-banner-content h1 {
        font-size: 40px;
    }

    .logistics-banner-content p {
        font-size: 16px;
    }
}

/* ========== MOBILE ========= */
@media (max-width: 768px) {
    .logistics-banner {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        min-height: 75vh;
    }

    .logistics-banner-content {
        text-align: center;
    }

    .logistics-banner-content h1 {
        font-size: 30px;
    }

    .logistics-banner-content p {
        font-size: 14px;
    }

    .logistics-btn {
        padding: 12px 30px;
    }
}







/* ===============================
   CLIENT REVIEW SECTION
================================= */

.client-review {
    /* padding: 100px 0; */
    background:#1C1F5A;
    position: relative;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 2400px;
    margin: auto;
}

/* ===============================
   HEADING
================================= */

.review-heading {
    text-align: center;
    margin-bottom: 70px;
}

.sec-title__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sec-title__tagline .line {
    width: 40px;
    height: 2px;
    background: #ff5e14;
}

.sec-title__tagline h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff5e14;
}

.sec-title__title {
    font-size: 38px;
    font-weight: 700;
}

.sec-title__title span {
    color: #ff5e14;
}

/* ===============================
   REVIEW GRID
================================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ===============================
   REVIEW CARD
================================= */

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ff5e14;
}

/* Image */

.review-img {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 20px;
}

.review-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff5e14;
}

/* Name */

.review-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Designation */

.designation {
    font-size: 14px;
    color: #bbb;
    display: block;
    margin-bottom: 15px;
}

/* Review Text */

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

/* Stars */

.stars {
    font-size: 18px;
    color: #ffcc00;
    letter-spacing: 3px;
}




/* =========================
   PREMIUM COUNTER SECTION
========================= */

.counter-section {
    background: #1C1F5A;
    padding: 100px 0;
}

.counter-wrapper {
    width: 100%;
    max-width: 2400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color:#FD5523 ;
}

.counter-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
}

.counter-icon svg {
    width: 100%;
    height: 100%;
}

.count {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.counter-card p {
    font-size: 15px;
    color: #cfd8dc;
    letter-spacing: 0.5px;
}

.counter-icon svg path,
.counter-icon svg circle {
    stroke: #FF5A1F;
}

/* ===============================
   ULTRA PREMIUM SERVICES
================================ */

.premium-services {
  padding: 120px 0;
  background: #1C1F5A;
  position: relative;
  overflow: hidden;
}

.container1 {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Header */

.premium-header {
  text-align: center;
  margin-bottom: 80px;
}

.premium-header h5 {
  color: #FD5523;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px;
}

.premium-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.premium-header span {
  color: #FD5523;
}

/* ===============================
   GRID SYSTEM (FIXED 3 PER ROW)
================================ */

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* EXACTLY 3 */
  gap: 40px;
}

/* ===============================
   CARD
================================ */

.premium-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Gradient Border Effect */

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #FD5523, transparent, #FD5523);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Hover */

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===============================
   IMAGE
================================ */

.premium-img {
  height: 220px;
  overflow: hidden;
}

.premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.premium-card:hover .premium-img img {
  transform: scale(1.1);
}

/* ===============================
   CONTENT
================================ */

.premium-content {
  padding: 30px;
  text-align: center;
}

.premium-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.premium-content p {
  font-size: 14px;
  color: #d6d6d6;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-header h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-header h2 {
    font-size: 28px;
  }

  .premium-services {
    padding: 80px 0;
  }
}


/* =========================
   PREMIUM PROCESS (CUSTOM COLORS)
========================= */


.process-timeline {
  /* padding: 120px 0; */
  background: #1C1F5A;
  color: #fff;
}


.container12 {
    width: 100%;
    max-width: 2000px;
    margin: auto;
}
.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 20px; */
    flex-wrap: nowrap; /* Force single row */
}

/* Prevent step shrink */
.timeline-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}


.step-box {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.timeline-step:hover .step-box {
  border-color: #FD5523;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-10px);
}

/* Badge */

.step-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #FD5523;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* Icon */

.step-icon svg {
  width: 70px;
  height: 70px;
  color: #FD5523;
}

/* Divider */

.timeline-divider {
  display: flex;
  align-items: center;
  gap: 10px;
   flex: 0 0 140px;
}

.timeline-divider .line {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #FD5523,
    #FD5523 6px,
    transparent 6px,
    transparent 12px
  );
}

.timeline-divider svg {
  width: 24px;
  height: 24px;
  color: #FD5523;
}

/* Text */

.timeline-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-step p {
  font-size: 14px;
  color: #d6d6d6;
}



.process-timeline {
    background: #1C1F5A;
    /* padding: 120px 0 140px; */
    color: #fff;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h5 {
    color: #FD5523;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 12px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-header span {
    color: #FD5523;
}

.process-header p {
    color: #d6d6d6;
    font-size: 16px;
}

/* Responsive */



@media(max-width: 992px){

    .timeline-wrapper {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .timeline-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .timeline-wrapper::-webkit-scrollbar-thumb {
        background: #FD5523;
        border-radius: 10px;
    }
}




/* powerd bye */

.footer-one__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-powered {
    text-align: center;
}

.footer-powered p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-powered .neo {
    color: #ffc107; /* Yellow like first image */
    font-weight: 600;
    text-decoration: none;
}

.footer-powered .neo:hover {
    text-decoration: underline;
}





/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    /* Border Setup */
    border: 2px solid transparent;
    background-clip: padding-box;

    position: relative;
    transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;

    background: linear-gradient(135deg, #FD5523, #1C1F5A);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none; /* ✅ FIX CLICK ISSUE */
}

/* Hover Effect */
.track-box:hover {
    box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
    box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
    display: flex;
    align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
    border: none;
    outline: none;
    background: transparent;

    color: #ffffff;
    font-size: 15px;
    width: 180px;
}

/* Placeholder */
.track-box input::placeholder {
    color: white;
}

/* =========================
   BUTTON
========================= */
.track-box button {
    display: flex;
    align-items: center;
    gap: 6px;

    background:  #FD5523;
    color: #ffffff;

    border: none;
    padding: 7px 16px;
    border-radius: 10px;

    cursor: pointer;
    font-size: 13px;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(188, 64, 64, 0.3);
}

/* Button Click */
.track-box button:active {
    transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
    position: relative;
    z-index: 10;
}

.track-box {
    z-index: 10;
}

.track-box button {
    z-index: 11;
    pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .track-box input {
        width: 140px;
    }
}

/* Mobile Hide */
@media (max-width: 768px) {
    .track-box {
        display: none;
    }
}