/* =========================
   HERO SECTION PREMIUM
========================= */

.ultraHeroX {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  background: #000;
}

/* =========================
   SLIDE
========================= */

.ultraSlideX {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease,
    transform 6s ease;
  transform: scale(1.12);
}

.ultraSlideX.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* =========================
   OVERLAY
========================= */

.overlayUltraX {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(255, 0, 0, 0.15) 100%
  );
}

/* =========================
   CONTAINER
========================= */

.heroContainerX {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* =========================
   LEFT CONTENT
========================= */

.heroLeftX {
  max-width: 760px;
}

/* =========================
   TOP TAG
========================= */

.topTagX {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #ffd700;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 22px;

  text-transform: uppercase;
  letter-spacing: 2px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* =========================
   MAIN TITLE
========================= */

.mainTitleX {
  font-size: 105px;
  line-height: 0.95;
  font-weight: 900;
  color: #ff0000;

  text-transform: uppercase;

  margin-bottom: 25px;

  letter-spacing: -2px;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.45);
}

/* GOLD TEXT */
.mainTitleX span {
  color: #ffd700;
}

/* =========================
   SUB TITLE
========================= */

.subTitleUltraX {
  color: #1630c3;
  font-size: 42px;
  font-weight: 800;

  margin-bottom: 40px;

  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.45);
}

/* HIGHLIGHT WORD */
.subTitleUltraX span {
  color: #ffd700;
}

/* =========================
   FEATURES
========================= */

.featuresUltraX {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.featureUltraX {
  position: relative;

  color: #ffffff;

  font-size: 28px;
  font-weight: 700;

  padding-left: 38px;

  letter-spacing: 0.5px;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

  transition: 0.4s ease;
}

.featureUltraX:hover {
  transform: translateX(10px);
}

/* FEATURE DOT */

.featureUltraX::before {
  content: "";

  position: absolute;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #ffd700;

  left: 0;
  top: 10px;

  box-shadow:
    0 0 10px #ffd700,
    0 0 20px rgba(255, 215, 0, 0.7);
}

/* =========================
   BUTTONS
========================= */

.heroButtonsX {
  display: flex;
  gap: 18px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.heroBtnX {
  padding: 16px 38px;

  border-radius: 60px;

  font-size: 18px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.4s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PRIMARY BUTTON */

.heroBtnPrimaryX {
  background: #ffd700;
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.35);
}

.heroBtnPrimaryX:hover {
  transform: translateY(-5px);
  background: #fff;
}

/* SECONDARY BUTTON */

.heroBtnSecondaryX {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.heroBtnSecondaryX:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-5px);
}

/* =========================
   ANIMATION
========================= */

.animateItemX {
  opacity: 0;
  transform: translateY(80px);
}

.ultraSlideX.active .animateItemX {
  animation: textAnimationX 1s forwards;
}

.ultraSlideX.active .delay1X {
  animation-delay: 0.3s;
}

.ultraSlideX.active .delay2X {
  animation-delay: 0.6s;
}

.ultraSlideX.active .delay3X {
  animation-delay: 0.9s;
}

.ultraSlideX.active .delay4X {
  animation-delay: 1.2s;
}

.ultraSlideX.active .delay5X {
  animation-delay: 1.5s;
}

.ultraSlideX.active .delay6X {
  animation-delay: 1.8s;
}

@keyframes textAnimationX {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .mainTitleX {
    font-size: 88px;
  }
}

@media (max-width: 1200px) {
  .mainTitleX {
    font-size: 72px;
  }

  .subTitleUltraX {
    font-size: 34px;
  }
}

@media (max-width: 992px) {
  .heroContainerX {
    padding: 0 5%;
  }

  .mainTitleX {
    font-size: 58px;
    line-height: 1.05;
  }

  .subTitleUltraX {
    font-size: 28px;
  }

  .featureUltraX {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .ultraHeroX {
    height: 90vh;
  }

  .heroContainerX {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .heroLeftX {
    max-width: 100%;
  }

  .topTagX {
    justify-content: center;
    font-size: 16px;
  }

  .mainTitleX {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .subTitleUltraX {
    font-size: 22px;
  }

  .featuresUltraX {
    align-items: center;
  }

  .featureUltraX {
    font-size: 16px;
    padding-left: 0;
  }

  .featureUltraX::before {
    display: none;
  }

  .heroButtonsX {
    justify-content: center;
  }

  .heroBtnX {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ultraHeroX {
    height: 85vh;
  }

  .mainTitleX {
    font-size: 34px;
  }

  .subTitleUltraX {
    font-size: 18px;
  }

  .heroBtnX {
    padding: 14px 25px;
    font-size: 15px;
  }
}
/* =========================
   SIMPLE ABOUT SECTION
========================= */
/* =========================================
   ULTRA PREMIUM ABOUT SECTION
========================================= */
/* ====================================
   FIXED PREMIUM ABOUT SECTION
==================================== */

.simple-aboutX {
  width: 92%;
  max-width: 1450px;

  margin: 100px auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 80px;
  align-items: center;

  padding: 70px;

  border-radius: 35px;

  background: linear-gradient(135deg, #ffffff, #f8fbff);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  overflow: hidden;

  position: relative;
}

/* ====================================
   IMAGE SIDE
==================================== */

.simple-about-imageX {
  position: relative;
}

/* IMAGE */

.simple-about-imageX img {
  width: 100%;
  height: 600px;

  object-fit: cover;

  border-radius: 28px;

  display: block;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

/* HOVER */

.simple-about-imageX:hover img {
  transform: scale(1.02);
}

/* ====================================
   FLOATING CARD
==================================== */

.floating-infoX {
  position: absolute;

  bottom: 25px;
  left: 25px;

  background: #fff;

  padding: 18px 24px;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  z-index: 5;
}

.floating-infoX h4 {
  font-size: 28px;
  color: #ff5a00;
  font-weight: 900;
  margin-bottom: 4px;
}

.floating-infoX p {
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}

/* ====================================
   CONTENT
==================================== */

.simple-about-contentX {
  position: relative;
}

/* TAG */

.about-mini-tagX {
  display: inline-block;

  padding: 12px 28px;

  border-radius: 50px;

  background: #ff1a12;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 28px;
}

/* TITLE */

.simple-titleX {
  font-size: 40px;
  line-height: 1.08;

  color: #1e56b8;
  font-weight: 900;

  margin-bottom: 30px;
}

/* ORANGE TEXT */

.simple-titleX span {
  color: #ff5a00;
}

/* TEXT */

.simple-textX {
  font-size: 18px;
  line-height: 2;

  color: #667085;

  margin-bottom: 24px;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1200px) {
  .simple-titleX {
    font-size: 52px;
  }
}

/* TABLET */

@media (max-width: 992px) {
  .simple-aboutX {
    grid-template-columns: 1fr;
    gap: 50px;

    padding: 40px;
  }

  .simple-about-imageX img {
    height: auto;
  }

  .simple-titleX {
    font-size: 44px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .simple-aboutX {
    width: 94%;

    margin: 70px auto;

    padding: 25px;

    border-radius: 24px;
  }

  .simple-titleX {
    font-size: 34px;
  }

  .simple-textX {
    font-size: 16px;
    line-height: 1.8;
  }

  .floating-infoX {
    left: 15px;
    bottom: 15px;

    padding: 14px 18px;
  }

  .floating-infoX h4 {
    font-size: 22px;
  }
}
/* ===============================
   CLIENT REVIEW SECTION
================================= */

.client-review {
  /* padding: 100px 0; */
  background: #ffffff;
  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: #e53935;
}

/* ===============================
   REVIEW GRID
================================= */
/* =========================
   SECTION
========================= */

.client-review {
  padding: 70px 0;
  background: #fff;
}

/* =========================
   GRID
========================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* =========================
   CARD
========================= */

/* .testimonial-card {
  height: 320px;
  perspective: 1200px;
  transition: 0.3s;
} */

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.8s ease;
  cursor: pointer;
}

.testimonial-card:hover .testimonial-inner {
  transform: rotateY(180deg);
}

.testimonial-inner.active {
  transform: rotateY(180deg);
}

/* =========================
   FRONT & BACK
========================= */

.testimonial-front,
.testimonial-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* =========================
   FRONT
========================= */

.testimonial-front {
  background: #ffffff;
  border: 1px solid #e5e7eb;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  position: relative;
}

/* =========================
   IMAGE
========================= */

.review-logo {
  width: 240px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 25px;
}

.review-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* .review-logo {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
} */

/* =========================
   NAME
========================= */

/* .testimonial-front h4 {
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
} */
/* =========================
   ROLE
========================= */

.client-role {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

/* =========================
   VERIFIED BADGE
========================= */

.verified-badge {
  background: #ecfdf5;

  color: #16a34a;

  border: 1px solid #d1fae5;

  padding: 10px 18px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 18px;
}

/* =========================
   STARS
========================= */

.stars {
  color: #fbbf24;
  font-size: 26px;
  letter-spacing: 4px;
}

.testimonial-front::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: #2563eb;
}

.testimonial-card {
  position: relative;
  height: 340px;
  perspective: 1500px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* =========================
   BACK
========================= */

.testimonial-back {
  background: #ffffff;

  border: 1px solid #e5e7eb;

  color: #334155;

  transform: rotateY(180deg);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   QUOTE
========================= */

.quote-icon {
  color: #cbd5e1;
  font-size: 45px;
  line-height: 1;
  opacity: 0.25;
}

/* =========================
   BACK TITLE
========================= */

.testimonial-back h4 {
  color: #0f172a;
  font-size: 20px;
  margin: 10px 0;
}

/* =========================
   REVIEW TEXT
========================= */

.testimonial-back p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* =========================
   LOCATION
========================= */

.location {
  color: #94a3b8;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;

  padding-top: 12px;
  width: 100%;
}

/* ===== FLIP FIX ===== */

.testimonial-card {
  position: relative;
  height: 340px;
  perspective: 1500px;
}

.testimonial-inner {
  position: relative;
  width: 100%;
  height: 100%;

  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;

  transition: transform 0.8s ease;
}

.testimonial-front,
.testimonial-back {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform-style: preserve-3d;
}

.testimonial-front {
  z-index: 2;
  transform: rotateY(0deg);
}

.testimonial-back {
  transform: rotateY(180deg);
}

.testimonial-card:hover .testimonial-inner {
  transform: rotateY(180deg);
}

.testimonial-inner.active {
  transform: rotateY(180deg);
}

.review-rating {
  color: #fbbf24;
  font-size: 22px;
  margin: 15px 0;
  letter-spacing: 3px;
}

.quote-icon {
  font-size: 55px;
  color: #2563eb;
  opacity: 0.2;
  margin-bottom: 10px;
}

.testimonial-back h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0f172a;
}

/* .testimonial-back p {
  max-width: 280px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
} */
/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    height: 300px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .client-review {
    padding: 50px 0;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    height: 280px;
  }

  .review-img {
    width: 70px;
    height: 70px;
  }

  .testimonial-front h4 {
    font-size: 18px;
  }

  .testimonial-back h4 {
    font-size: 18px;
  }

  .stars {
    font-size: 16px;
  }

  .testimonial-back p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =========================
   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 NEXT LEVEL SERVICES SECTION
========================================= */

.premium-services {
  position: relative;
  padding: 140px 0;
  overflow: hidden;

  background: #ffffff;
}

/* =========================================
   ANIMATED BACKGROUND
========================================= */

.premium-services::before {
  content: "";
  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(rgba(253, 85, 35, 0.1), transparent 70%);

  top: -300px;
  right: -250px;

  animation: floatGlowX 10s infinite linear;
}

.premium-services::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(rgba(30, 91, 184, 0.08), transparent 70%);

  bottom: -220px;
  left: -180px;

  animation: floatGlowX2 12s infinite linear;
}

/* GLOW ANIMATION */

@keyframes floatGlowX {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(30px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes floatGlowX2 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(40px);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================
   CONTAINER
========================================= */

.container1 {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 5;
}

/* =========================================
   HEADER
========================================= */

.premium-header {
  text-align: center;
  margin-bottom: 100px;
}

.premium-header h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 34px;

  border-radius: 60px;

  background: linear-gradient(135deg, #fd5523, #ff7b52);

  color: #fff;

  letter-spacing: 2px;
  text-transform: uppercase;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 30px;

  box-shadow: 0 15px 35px rgba(253, 85, 35, 0.25);
}

/* TITLE */

.premium-header h2 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 900;

  color: #111827;

  margin-bottom: 30px;
}

.premium-header span {
  background: linear-gradient(135deg, #fd5523, #ff7b52);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESC */

.premium-header p {
  max-width: 850px;
  margin: auto;

  font-size: 20px;
  line-height: 2;

  color: #667085;
}

/* =========================================
   GRID
========================================= */

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================================
   CARD
========================================= */

.premium-card {
  position: relative;

  background: rgba(255, 255, 255, 0.75);

  border-radius: 32px;

  overflow: hidden;

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.6);

  transition: 0.6s ease;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);

  transform-style: preserve-3d;
}

/* BORDER GLOW */

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 32px;

  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(253, 85, 35, 0.7),
    transparent,
    rgba(30, 91, 184, 0.4)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* LIGHT EFFECT */

.premium-card::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  background: radial-gradient(rgba(253, 85, 35, 0.2), transparent);

  border-radius: 50%;

  top: -100px;
  right: -100px;

  transition: 0.6s ease;
}

/* HOVER */

.premium-card:hover {
  transform: translateY(-18px) rotateX(4deg);

  box-shadow: 0 30px 80px rgba(253, 85, 35, 0.18);
}

.premium-card:hover::after {
  transform: scale(1.4);
}

/* =========================================
   IMAGE
========================================= */

.premium-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

/* OVERLAY */

.premium-img::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);

  z-index: 2;
}

.premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 1s ease;
}

.premium-card:hover .premium-img img {
  transform: scale(1.15);
}

/* =========================================
   CONTENT
========================================= */

.premium-content {
  position: relative;
  padding: 35px;
  z-index: 5;
}

/* NUMBER */

.service-numberX {
  position: absolute;

  top: -25px;
  right: 25px;

  font-size: 90px;
  font-weight: 900;

  color: rgba(253, 85, 35, 0.08);

  line-height: 1;
}

/* TITLE */

.premium-content h3 {
  position: relative;

  font-size: 30px;
  line-height: 1.3;

  margin-bottom: 18px;

  color: #111827;
  font-weight: 800;

  transition: 0.4s;
}

.premium-card:hover .premium-content h3 {
  color: #fd5523;
}

/* TEXT */

.premium-content p {
  font-size: 16px;
  color: #667085;
  line-height: 1.9;
}

/* =========================================
   BUTTON
========================================= */

.service-btnX {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;

  color: #fd5523;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.4s;
}

.service-btnX i {
  transition: 0.4s;
}

.service-btnX:hover {
  gap: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .premium-header h2 {
    font-size: 58px;
  }
}

@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-header h2 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .premium-services {
    padding: 90px 0;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .premium-header {
    margin-bottom: 60px;
  }

  .premium-header h2 {
    font-size: 34px;
  }

  .premium-header p {
    font-size: 16px;
    line-height: 1.8;
  }

  .premium-content {
    padding: 28px;
  }

  .premium-content h3 {
    font-size: 24px;
  }

  .premium-img {
    height: 220px;
  }
}
/* =========================
   PREMIUM PROCESS (CUSTOM COLORS)
========================= */

.process-timeline {
  /* padding: 120px 0; */
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 45%, #fff7f4 100%);
  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: 0px;
  padding: 5px 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, #e31e24, #f4b400);

  -webkit-mask:
    linear-gradient(#892323 0 0) content-box,
    linear-gradient(#7a0000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* 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: #720000;
  font-size: 15px;
  width: 180px;
}

/* 🔥 UPDATED PLACEHOLDER COLOR */
.track-box input::placeholder {
  color: #fd5523; /* ← yaha change kiya */
}

/* 🔥 CROSS BROWSER SUPPORT */
.track-box input::-webkit-input-placeholder {
  color: #fd5523;
}
.track-box input:-ms-input-placeholder {
  color: #fd5523;
}

/* =========================
   BUTTON
========================= */
.track-box button {
  display: flex;
  align-items: center;
  gap: 5px;

  background: #1e5bb8;
  color: #ffffff;

  border: none;
  padding: 5px 15px;
  border-radius: 10px;

  cursor: pointer;
  font-size: 10px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(219, 14, 14, 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;
  }
}

/* ===============================
   WHY CHOOSE US SECTION
================================= */

.why-choose {
  padding: 100px 0;
  background: #ffffff;
  width: 100%;
  position: relative;
}

.why-container {
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HEADING
================================= */

.why-choose-one__content {
  text-align: center;
  margin-bottom: 70px;
}

.sec-title__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sec-title__tagline .line {
  width: 40px;
  height: 2px;
  background: #ff5a1f;
}

.sec-title__tagline h4 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.sec-title__title {
  font-size: 48px;
  font-weight: 700;
  color: #1e5bb8;
  line-height: 1.3;
  margin-top: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.sec-title__title span {
  color: #e53935;
}

/* ===============================
   GRID
================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===============================
   CARD
================================= */

.why-card {
  background: #1e5bb8;
  padding: 45px 35px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #ff5a1f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* ===============================
   ICON
================================= */

.why-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.why-card:hover .why-icon {
  transform: rotate(8deg) scale(1.1);
}

/* IMAGE ICON */
.why-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* ===============================
   TEXT
================================= */

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #aa0707;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec-title__title {
    font-size: 36px;
  }

  .why-card {
    padding: 35px 25px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-choose {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sec-title__title {
    font-size: 28px;
  }

  .why-card {
    text-align: center;
    padding: 30px 20px;
  }

  .why-icon {
    margin: 0 auto 20px auto;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
  }
}

/* =========================
   PREMIUM COUNTER SECTION
/* SECTION */
.stats-section {
  background: white;
  padding: 80px 20px;
}

/* GRID WITH GAP 🔥 */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* ✅ MAIN FIX */
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.stat-box {
  background: #1e56b8;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ff5a1f22, transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover::before {
  opacity: 1;
}

/* ICON */
.stat-icon {
  color: #ff1a12;
  font-size: 32px;
  transition: 0.3s;
}

/* NUMBER */
.stat-number {
  color: #030303;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

/* TEXT */
.stat-text {
  font-size: 14px;
  color: #858586;
  margin: 0;
}

/* HOVER 🔥 */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #ff5a1f;
}

.stat-box:hover .stat-icon {
  transform: scale(1.2);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FUTURE GLASSMORPHISM ECOM SECTION
========================================= */

.ecom-logisticsX {
  position: relative;
  padding: 150px 0;
  overflow: hidden;

  background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 40%, #fff4ee 100%);
}

/* =========================================
   FUTURE BACKGROUND EFFECTS
========================================= */

.ecom-logisticsX::before {
  content: "";

  position: absolute;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background: radial-gradient(rgba(253, 85, 35, 0.12), transparent 70%);

  top: -420px;
  right: -320px;

  animation: rotateGlowX 20s linear infinite;
}

.ecom-logisticsX::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(rgba(30, 91, 184, 0.08), transparent 70%);

  bottom: -320px;
  left: -250px;

  animation: floatGlowX 12s ease infinite;
}

/* ANIMATION */

@keyframes rotateGlowX {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatGlowX {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
   CONTAINER
========================================= */

.ecom-containerX {
  width: 90%;
  max-width: 1450px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: center;

  position: relative;
  z-index: 5;
}

/* =========================================
   LEFT CONTENT
========================================= */

/* TAG */

.ecom-tagX {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 14px 34px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  color: #ff1a12;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;

  margin-bottom: 35px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TITLE */

.ecom-titleX {
  font-size: 78px;
  line-height: 1;

  font-weight: 900;

  color: #1e56b8;

  margin-bottom: 35px;

  letter-spacing: -2px;
}

/* GRADIENT TEXT */

.ecom-titleX span {
  background: #ff1a12;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.ecom-textX {
  font-size: 20px;
  line-height: 2;

  color: #5f6b85;

  margin-bottom: 28px;
}

/* =========================================
   RIGHT SIDE
========================================= */

.ecom-service-boxX {
  position: relative;

  padding: 45px;

  border-radius: 40px;

  background: rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

/* INNER GLOW */

.ecom-service-boxX::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(253, 85, 35, 0.15), transparent);

  top: -180px;
  right: -120px;
}

/* HEADING */

.service-headingX {
  position: relative;

  font-size: 42px;
  line-height: 1.2;

  font-weight: 900;

  color: #ff1a12;

  margin-bottom: 40px;
}

/* =========================================
   SERVICE ITEM
========================================= */

.service-itemX {
  position: relative;

  display: flex;
  gap: 24px;

  padding: 30px;

  margin-bottom: 24px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  transition: 0.5s ease;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* HOVER BORDER */

.service-itemX::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 28px;

  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(253, 85, 35, 0.5),
    transparent,
    rgba(30, 91, 184, 0.3)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.5s;
}

.service-itemX:hover::before {
  opacity: 1;
}

/* HOVER */

.service-itemX:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow: 0 20px 45px rgba(253, 85, 35, 0.1);
}

/* ICON */

.service-iconX {
  width: 85px;
  height: 85px;

  min-width: 85px;

  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1e56b8;

  color: #fff;

  font-size: 32px;

  box-shadow: 0 15px 35px rgba(253, 85, 35, 0.25);

  transition: 0.5s;
}

/* ICON HOVER */

.service-itemX:hover .service-iconX {
  transform: rotate(-10deg) scale(1.1);
}

/* TITLE */

.service-itemX h4 {
  font-size: 26px;
  line-height: 1.3;

  color: #111827;

  font-weight: 800;

  margin-bottom: 12px;
}

/* TEXT */

.service-itemX p {
  font-size: 16px;
  line-height: 1.9;

  color: #667085;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .ecom-titleX {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .ecom-containerX {
    grid-template-columns: 1fr;
  }

  .ecom-titleX {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .ecom-logisticsX {
    padding: 90px 0;
  }

  .ecom-containerX {
    width: 92%;
    gap: 45px;
  }

  .ecom-titleX {
    font-size: 38px;
    line-height: 1.1;
  }

  .ecom-textX {
    font-size: 17px;
    line-height: 1.8;
  }

  .ecom-service-boxX {
    padding: 28px;
  }

  .service-headingX {
    font-size: 30px;
  }

  .service-itemX {
    flex-direction: column;
    padding: 24px;
  }
}

/* =========================================
branch
========================================= */
.branch-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 25px;
  overflow: hidden;
}

.branch-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 15px;
  flex-shrink: 0;
}

.branch-label i {
  color: #ffd54f;
  margin-right: 5px;
}

.branch-ticker {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.branch-track {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;

  animation: branchScroll 20s linear infinite;
}

.branch-track i {
  color: #ffd54f;
  margin-right: 4px;
}

@keyframes branchScroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
