.logistics-banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.logistics-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistics-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.logistics-banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.logistics-banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.logistics-banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.logistics-btn {
    padding: 12px 25px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .logistics-banner-content {
        left: 5%;
        right: 5%;
    }

    .logistics-banner-content h1 {
        font-size: 28px;
    }

    .logistics-banner-content p {
        font-size: 14px;
    }
}

/* ===============================
   CLIENT REVIEW SECTION
================================= */

.client-review {
    /* padding: 100px 0; */
    background:#0b2d4d;
    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: #0b2d4d;
    padding: 100px 20px;
}

.counter-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 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;
}

/* ICON */
.counter-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
}

.counter-icon svg {
    width: 100%;
    height: 100%;
}

/* NUMBER */
.count {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

/* TITLE */
.counter-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.counter-desc {
    font-size: 14px;
    color: #cfd8dc;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-wrapper {
        grid-template-columns: 1fr;
    }

    .count {
        font-size: 32px;
    }
}





/* =========================
   SERVICE FEATURES SECTION
========================= */

.service-features {
    background: #0b2d4d;
    padding: 80px 20px;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.feature-item {
    background: rgba(255,255,255,0.05);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

/* HOVER EFFECT (1st image style) */
.feature-item:hover {
    transform: translateY(-6px);
    border: 1px solid #FD5523; /* only border highlight */
    background: rgba(255,255,255,0.05); /* no color change */
    box-shadow: 0 10px 25px rgba(253,85,35,0.15);
}

/* ICON */
.feature-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* ICON COLOR */
.feature-icon svg path,
.feature-icon svg rect,
.feature-icon svg circle {
    stroke: #00E0C6;
}

/* HOVER ICON (NO CHANGE) */
.feature-item:hover svg path,
.feature-item:hover svg rect,
.feature-item:hover svg circle {
    stroke: #00E0C6;
}

/* TITLE */
.feature-item h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* DESCRIPTION */
.feature-item p {
    color: #cfd8dc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 13px;
    }
}

/* ===============================
   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;
}


.service-desc {
    color: #cfd8e3;
    font-size: 15px;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.7;
}
/* ===============================
   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: #0b2d4d;
  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: 40px;
  height: 40px;
  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: #0b2d4d;
    /* 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;
}




/* ABOUT */
.about-section {
    padding: 80px 0;
    background: #0f2f4f;
    color: #fff;
}

.about-img-box {
    max-width: 550px;   /* image width control */
    margin: auto;       /* center me laane ke liye */
}

.about-img {
    width: 100%;
    height: auto;
}



.about-img-box {
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}
.about-img {
    border-radius: 20px;
    transition: 0.5s;
}

.about-img:hover {
    transform: scale(1.05);
}

/* TEXT */
.about-tag {
    color: #ff6600;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.about-heading span {
    color: #ff6600;
}

.about-desc {
    color: #cfd8e3;
    font-size: 15px;
    line-height: 1.7;
}

/* FEATURES */
.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-box i {
    color: #ff6600;
    font-size: 18px;
}

.feature-box span {
    font-size: 14px;
    font-weight: 500;
}

.feature-box:hover {
    background: #ff6600;
    color: #fff;
    transform: translateY(-3px);
}

.feature-box:hover i {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .about-heading {
        font-size: 26px;
    }

    .about-section {
        padding: 50px 15px;
    }

}



/* tracking button */
.tracking-wrapper {
    display: flex;
    justify-content: flex-end;
     margin-right: 20px;   /* 🔥 ye add karo */
}

.tracking-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

/* Icon */
.tracking-box .icon {
    padding: 0 10px;
    display: flex;
    align-items: center;
}

/* Input */
.tracking-box input {
    border: none;
    outline: none;
    padding: 10px;
    width: 160px;
    background: transparent;
    color: #fff;
}

/* Button */
.tracking-box button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.tracking-box button:hover {
    background: linear-gradient(45deg, #ff8533, #ff6600);
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-wrapper {
        display: none;   /* 🔥 mobile me hide */
    }
}








/* ===============================
   SERVICES SECTION
================================= */

.services-section {
    padding: 100px 0;
    background: #0f2f4f;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP CONTENT */

.services-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-top h2 {
    color: #FD5523;
    font-size: 32px;
    margin-bottom: 15px;
}

.services-top p {
    color: #cfd8dc;
    font-size: 15px;
    line-height: 1.7;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #FD5523;
}

/* ICON */

.service-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: #FD5523;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

/* TEXT */

.service-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    color: #cfd8dc;
    font-size: 13px;
}

/* RESPONSIVE */

@media(max-width: 991px){
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px){

    .services-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-top h2 {
        font-size: 24px;
    }
}




