/* ================================================================
   SAJEX FREIGHT LTD Ã¢â‚¬â€ Homepage Stylesheet
   Version: 1.0
   Phase: 3.2 Ã¢â‚¬â€ Main Slider Hero Banner Setup
   ================================================================ */

/* ================================================================
   1. MAIN HERO SLIDER (.main-slider-one / .hero)
   ================================================================ */
.main-slider-one.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 650px;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.main-slider-one .swiper {
  width: 100%;
  height: 100%;
}

.main-slider-one .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.main-slider-one .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-slider-one__single {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
}

/* Background Image & Ken Burns Zoom Effect */
.main-slider-one__bg.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1);
  transition: transform 0s ease;
}

/* Trigger Ken Burns slow zoom when slide becomes active */
.swiper-slide-active .main-slider-one__bg.hero__bg {
  animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(0.5%, -0.5%);
  }
}

/* Dark Background Overlay for Contrast */
.main-slider-one__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 20, 46, 0.6) 0%, rgba(6, 20, 46, 0.8) 100%);
  z-index: 2;
}

/* Diagonal Translucent Stripes */
.main-slider-one__stripes {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.main-slider-one__stripes::before,
.main-slider-one__stripes::after {
  content: '';
  position: absolute;
  top: -30%;
  height: 160%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
  transform: skewX(-26deg);
}

/* Thin stripe on the left */
.main-slider-one__stripes::before {
  right: 160px;
  width: 25px;
}

/* Thick stripe on the right */
.main-slider-one__stripes::after {
  right: 60px;
  width: 75px;
}

/* Giant Background Outlined Brand Text */
.main-slider-one__big-title {
  position: absolute;
  bottom: 8%;
  right: 5%;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.main-slider-one__big-title h2 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 12px;
  line-height: 1;
  margin: 0;
}

/* Content Layout Box with Solid Curved Left Border & Gradient Backdrop */
.main-slider-one__content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 820px;
  padding: 40px 60px 40px 45px;
  background: linear-gradient(90deg, rgba(6, 20, 46, 0.75) 0%, rgba(6, 20, 46, 0) 100%);
  border-left: 4px solid var(--color-secondary);
  border-radius: 16px 0 0 16px;
  box-shadow: -15px 0 30px rgba(6, 20, 46, 0.15);

  /* Staggered slide changes */
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.swiper-slide-active .main-slider-one__content {
  opacity: 1;
  transform: translateX(0);
}

/* Welcome Tagline */
.main-slider-one__content .tagline {
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.main-slider-one__content .tagline span {
  display: inline-block;
  font-size: var(--text-subtitle);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-subtitle);
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.6s ease 0.3s;
}

.swiper-slide-active .main-slider-one__content .tagline span {
  transform: translateY(0);
  opacity: 1;
}

/* Title Box */
.main-slider-one__content .title-box {
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.main-slider-one__content .title-box h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s, opacity 0.6s ease 0.45s;
}

.swiper-slide-active .main-slider-one__content .title-box h2 {
  transform: translateY(0);
  opacity: 1;
}

/* Description Text Box */
.main-slider-one__content .text-box {
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.main-slider-one__content .text-box p {
  font-size: var(--text-body-lg);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, opacity 0.6s ease 0.6s;
}

.swiper-slide-active .main-slider-one__content .text-box p {
  transform: translateY(0);
  opacity: 1;
}

/* CTA Button Container & Design */
.main-slider-one__btn {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.75s, opacity 0.6s ease 0.75s;
}

.swiper-slide-active .main-slider-one__btn {
  transform: translateY(0);
  opacity: 1;
}

.thm-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: var(--text-btn);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-btn);
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transition: all var(--transition-base);
  border: 1px solid var(--color-secondary);
}

.thm-btn:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

.thm-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.thm-btn i {
  font-size: 13px;
  transition: transform var(--transition-base);
}

.thm-btn:hover i {
  transform: translateX(4px);
}

/* ================================================================
   2. HERO SLIDER NAVIGATION & SCROLL ELEMENTS
   ================================================================ */

/* Swiper Pagination Bullets (Vertical Left Side Navigation) */
#hero .hero__pagination.swiper-pagination {
  position: absolute;
  top: 50% !important;
  left: 3.5% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 15;
  width: auto !important;
}

/* Faint vertical line segment at the top (fading out upwards) */
#hero .hero__pagination.swiper-pagination::before {
  content: '';
  width: 2.5px;
  height: 60px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 8px;
}

/* Faint vertical line segment at the bottom (fading out downwards) */
#hero .hero__pagination.swiper-pagination::after {
  content: '';
  width: 2.5px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  margin-top: 8px;
}

#hero .hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 !important;
  position: relative;
  transition: all 0.3s ease;
}

#hero .hero__pagination .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

#hero .hero__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  width: 8px;
  height: 8px;
}

#hero .hero__pagination .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: none;
}

/* Mouse Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  z-index: 15;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  pointer-events: none;
  animation: scrollFadeIn 1s ease-out 1s forwards;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 2px;
  animation: mouseWheelMove 1.6s infinite ease-in-out;
}

@keyframes mouseWheelMove {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes scrollFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }
}

/* ================================================================
   3. RESPONSIVE HERO OVERRIDES
   ================================================================ */
@media (max-width: 991px) {
  .main-slider-one.hero {
    height: 70vh;
    min-height: 520px;
  }

  .main-slider-one__content {
    padding: 30px 40px 30px 30px;
    border-left-width: 3px;
  }

  .main-slider-one__stripes {
    display: none !important;
  }

  .main-slider-one__content .tagline span {
    font-size: var(--text-xs);
  }

  .main-slider-one__content .title-box h2 {
    font-size: 2.5rem;
  }

  .main-slider-one__content .text-box p {
    font-size: var(--text-body);

    br {
      display: none;
    }
  }

  .hero__scroll {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .main-slider-one.hero {
    height: 60vh;
    min-height: 480px;
  }

  .main-slider-one__content {
    padding: 20px 25px 20px 20px;
    border-left-width: 3px;
  }

  .main-slider-one__content .title-box h2 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .main-slider-one__content .text-box p {
    font-size: var(--text-small);
  }

  .thm-btn {
    padding: 15px 30px;
    font-size: var(--text-small);
  }

  /* Reset pagination to bottom center on mobile */
  #hero .hero__pagination.swiper-pagination {
    top: auto !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    gap: 12px;
  }

  #hero .hero__pagination.swiper-pagination::before {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .main-slider-one.hero {
    height: 55vh;
    min-height: 450px;
  }
}

/* ================================================================
   3. ABOUT SECTION (.about-one)
   ================================================================ */
.about-one {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-white);
  overflow: hidden;
  z-index: 1;
}

/* Halftone dotted shape background (top-right) */
.about-one .shape2 {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

/* About Section Images */
.about-one__img {
  position: relative;
  padding-right: 40px;
}

.about-one__img-box ul {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-one__img-box ul li {
  position: relative;
  width: 50%;
}

/* Left Image (Ship) Column */
.about-one__img-box ul li:first-child {
  padding-left: 20px;
}

/* Red vertical line and small circle details */
.about-one__img-box ul li:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background-color: var(--color-secondary);
  border-radius: 3px;
}

.about-one__img-box ul li .img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.about-one__img-box ul li .img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-one__img-box ul li .img-box:hover img {
  transform: scale(1.05);
}

/* Ship image height */
.about-one__img-box ul li:first-child .img-box img {
  height: 520px;
}

/* Airplane image height */
.about-one__img-box ul li:last-child .img-box img {
  height: 400px;
}

/* Flying path shape (shape1) positioning */
.about-one__img .shape1 {
  position: absolute;
  top: 12px;
  right: 12%;
  z-index: 5;
  pointer-events: none;
}

.about-one__img .shape1 img {
  max-width: 140px;
  height: auto;
}

/* Years of Experience Overlapping Box */
.about-one__experience-box {
  position: absolute;
  top: -120px;
  left: -60px;
  z-index: 10;
  background-color: var(--color-white);
  padding: 24px 28px;
  border-radius: 16px;
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-one__experience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-one__experience-box .count-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.about-one__experience-box .count-number h3 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0;
  line-height: 1;
}

.about-one__experience-box .count-number .plus {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.about-one__experience-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.3;
  text-transform: capitalize;
}

/* About Right Side Content */
.about-one__content {
  padding-left: 30px;
}

/* Tagline */
.about-one__content .sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.about-one__content .sec-title__tagline h4 {
  font-size: var(--text-subtitle);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-subtitle);
  margin: 0;
  color: inherit;
}

.about-one__content .sec-title__tagline .right-icon {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

/* Heading */
.about-one__content .sec-title__title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

/* Paragraph text description */
.about-one__content-text {
  margin-bottom: 20px;
}

.about-one__content-text p {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  text-align: justify;
}

/* Services cards container list */
.about-one__content-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-one__content-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0 8px 30px rgba(6, 20, 46, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-one__content-list ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(6, 20, 46, 0.08);
}

/* Service Card Icon Container (Orange box, white icon) */
.about-one__content-list ul li .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
  transition: transform 0.5s ease;
}

.about-one__content-list ul li:hover .icon {
  transform: rotateY(180deg);
}

/* Service Card Text Content */
.about-one__content-list ul li .content-box h2 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.about-one__content-list ul li .content-box p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0;
}

/* CTA button */
.about-one__content-btn {
  margin-top: 15px;
}

.about-one__content .thm-btn {
  padding: 14px 28px;
  font-size: 13px;
}

/* ================================================================
   4. RESPONSIVE OVERRIDES FOR ABOUT
   ================================================================ */
@media (max-width: 1199px) {
  .about-one {
    padding: 80px 0;
  }

  .about-one__img {
    padding-right: 0;
    margin-bottom: 90px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-one__content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-one__img-box ul {
    gap: 20px;
  }

  .about-one__experience-box {
    top: -50px;
    left: -40px;
    padding: 15px 20px;
    min-width: 170px;
  }

  .about-one__experience-box .count-number h3 {
    font-size: 2.2rem;
  }

  .about-one__experience-box .count-number .plus {
    font-size: 1.8rem;
  }

  .about-one__experience-box h4 {
    font-size: 0.85rem;
  }

  .about-one__img-box ul li:first-child .img-box img {
    height: 380px;
  }

  .about-one__img-box ul li:last-child .img-box img {
    height: 300px;
  }

  .about-one__img .shape1 {
    top: -45px;
    right: 5%;
  }

  .about-one__img .shape1 img {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .about-one__img-box ul {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .about-one__img-box ul li {
    width: 100%;
  }

  .about-one__img-box ul li:first-child {
    padding-left: 0;
  }

  .about-one__img-box ul li:first-child::before,
  .about-one__img-box ul li:first-child::after {
    display: none;
  }

  .about-one__experience-box {
    top: -30px;
    left: 20px;
  }

  .about-one__img-box ul li:first-child .img-box img,
  .about-one__img-box ul li:last-child .img-box img {
    height: auto;
    max-height: 350px;
  }

  .about-one__content-list ul li {
    padding: 20px;
    gap: 15px;
  }
}

/* ================================================================
   5. EXTRA ANIMATION UTILITY CLASSES
   ================================================================ */
/* Infinite rotating animations */
.rotate-me {
  animation: rotateMe 25s linear infinite;
}

@keyframes rotateMe {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Horizontal float animation */
.float-bob-x {
  animation: floatBobX 4s ease-in-out infinite alternate;
}

@keyframes floatBobX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(12px);
  }
}

/* Interactive plane bobbing animation for icons */
.float-bob-x4 {
  animation: floatBobX4 3s ease-in-out infinite alternate;
}

@keyframes floatBobX4 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(6px, -4px);
  }
}

/* ================================================================
   SECTION 4: OUR SERVICES (.services-one)
   ================================================================ */
.services-one {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-off-white);
  z-index: 1;
}

.services-one .container {
  max-width: 1200px;
}

.services-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/services-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.1;
  /* Light background opacity just to feel the map */
  z-index: -2;
  pointer-events: none;
}

.services-one .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
}

.services-one .shape1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Header layout (tagline and title on left, nav on right) */
.services-one__header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.services-one__header-wrapper .sec-title {
  margin-bottom: 0;
}

.services-one__header-wrapper .sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.services-one__header-wrapper .sec-title__tagline h4 {
  font-size: var(--text-subtitle);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-subtitle);
  margin: 0;
  color: inherit;
}

.services-one__header-wrapper .sec-title__tagline .right-icon {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.services-one__header-wrapper .sec-title__title {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

/* Navigation buttons styling on top right */
.services-one__nav {
  display: flex;
  gap: 12px;
}

.services-one__nav button {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.services-one__nav button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.2);
}

/* Slider / Swiper Wrapper */
.services-one__carousel {
  padding: 10px 5px 35px 5px;
  overflow: hidden;
}

.services-one .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.services-one .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Single Service Card Container */
.services-one__single {
  position: relative;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 20, 46, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  height: 100% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.services-one__single:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 20, 46, 0.12);
}

/* Image container */
.services-one__single-img {
  position: relative;
  width: 100%;
  height: 230px !important;
  flex-shrink: 0 !important;
  overflow: visible;
}

.services-one__single-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Hover overlay on card image */
.services-one__single-img-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 31, 68, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.services-one__single:hover .services-one__single-img-inner::after {
  opacity: 1;
}

.services-one__single-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-one__single:hover .services-one__single-img-inner img {
  transform: scale(1.08) rotate(1deg);
}

/* Arched separator SVG on bottom of image */
.services-one__arch {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 42px;
  z-index: 2;
  pointer-events: none;
}

/* Card Content Area styling */
.services-one__single-content {
  position: relative;
  padding: 38px 24px 30px 24px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

/* Icon box positioned on the arch */
.services-one__single-content .icon-box {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--color-secondary);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
  transition: all 0.5s ease;
}

.services-one__single:hover .services-one__single-content .icon-box {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translate(-50%, -50%) rotateY(180deg);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.35);
}

/* Service Title styling - Fixed Height Box */
.services-one__single-content h2 {
  font-size: 1.25rem !important;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin-bottom: 12px !important;
  margin-top: 5px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.services-one__single-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-one__single-content h2 a:hover {
  color: var(--color-secondary);
}

/* Service Description styling - Equal Height Box */
.services-one__single-content p {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: var(--color-text);
  margin: 0 0 20px 0 !important;
  text-align: center !important;
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 85px !important;
}

/* Button container aligned at absolute bottom */
.services-one__single-content .btn-box {
  margin-top: auto !important;
  padding-top: 5px !important;
}

/* Read More Link styling */
.services-one__single-content .btn-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-one__single-content .btn-box a i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.services-one__single-content .btn-box a:hover {
  color: var(--color-secondary-hover);
}

.services-one__single-content .btn-box a:hover i {
  transform: translateX(4px);
}

/* Responsive Overrides for Services */
@media (max-width: 991px) {
  .services-one {
    padding: 80px 0;
  }

  .services-one__header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
  }

  .services-one__nav {
    align-self: flex-end;
  }
}

@media (max-width: 575px) {
  .services-one {
    padding: 60px 0;
  }

  .services-one__header-wrapper {
    gap: 15px;
  }

  .services-one__nav {
    align-self: flex-start;
  }

  .services-one__single-content {
    padding: 35px 20px 25px 20px;
  }

  .services-one__single-img {
    height: 200px;
  }
}

/* ================================================================
   SECTION 10: TESTIMONIALS (.testimonials-one)
   ================================================================ */
.testimonials-one {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-white);
  z-index: 1;
}

/* Red Cargo Truck background positioned absolutely on the right 50% */
.testimonials-one__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center center; */
  z-index: 1;
}

.testimonials-one__inner {
  position: relative;
  z-index: 2;
}

/* Light Gray card container overlapping the image */
.testimonials-one__card {
  position: relative;
  background-color: #f4f5f8;
  border-radius: 16px;
  padding: 50px 50px 60px 50px;
  width: 58%;
  max-width: 780px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

/* Card Header (Title & Nav alignment) */
.testimonials-one__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.testimonials-one__card-header .sec-title {
  margin-bottom: 0;
}

.testimonials-one__card-header .sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.testimonials-one__card-header .sec-title__tagline h4 {
  font-size: var(--text-subtitle);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-subtitle);
  margin: 0;
  color: inherit;
}

.testimonials-one__card-header .sec-title__tagline .right-icon {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.testimonials-one__card-header .sec-title__title {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0;
}

/* Swiper navigation buttons */
.testimonials-one__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

.testimonials-one__nav button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.testimonials-one__nav button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.2);
}

/* Swiper Carousel */
.testimonials-one__carousel {
  overflow: hidden;
}

/* Single Slide Item styling */
.testimonials-one__single {
  position: relative;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 35px 40px;
  box-shadow: 0 10px 30px rgba(6, 20, 46, 0.03);
}

/* Top author details area */
.testimonials-one__single-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.testimonials-one__single-top-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Round Author image with orange border */
.testimonials-one__single-top-author .img-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-secondary);
  flex-shrink: 0;
}

.testimonials-one__single-top-author .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-one__single-top-author .text-box h2 {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin: 0;
}

.testimonials-one__single-top-author .text-box p {
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 2px 0 0 0;
}

/* Star rating icons styling */
.testimonials-one__single-top .rating-box {
  display: flex;
  gap: 3px;
  color: var(--color-secondary);
  font-size: 0.85rem;
}

/* Testimonial quote text paragraph */
.testimonials-one__single-text p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}

/* Quote Icon bottom right decoration */
.testimonials-one__single-quote {
  position: absolute;
  bottom: 25px;
  right: 30px;
  font-size: 2.2rem;
  color: var(--color-light-gray);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
}

/* Giant vertical outline background text with infinite marquee scroll */
.testimonials-one__sliding-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.testimonials-one__sliding-text-inner {
  display: flex;
  flex-direction: row;
  /* Row direction flows vertically in vertical-lr mode */
  gap: 50px;
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  animation: verticalMarquee 20s linear infinite;
}

.testimonials-one__sliding-text-inner span {
  font-size: 5rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: #cbd5e1;
  /* Visible solid grey color */
  letter-spacing: 4px;
}

@keyframes verticalMarquee {
  0% {
    transform: rotate(180deg) translateY(0);
  }

  100% {
    transform: rotate(180deg) translateY(-50%);
    /* Seamless loop over repeated text elements */
  }
}

/* Responsive Styles for Testimonials */
@media (max-width: 991px) {
  .testimonials-one {
    padding: 80px 0 0 0;
  }

  .testimonials-one__bg {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: 40px;
  }

  .testimonials-one__card {
    width: 100%;
    max-width: 100%;
    padding: 40px 30px 45px 30px;
  }

  .testimonials-one__sliding-text {
    display: none;
  }
}

@media (max-width: 575px) {
  .testimonials-one {
    padding: 60px 0 0 0;
  }

  .testimonials-one__bg {
    height: 250px;
  }

  .testimonials-one__card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonials-one__nav {
    align-self: flex-start;
  }

  .testimonials-one__single {
    padding: 25px 20px;
  }

  .testimonials-one__single-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonials-one__single-quote {
    display: none;
  }
}

/* ================================================================
   SECTION 8: COUNTERS (.counter-one)
   ================================================================ */
.counter-one {
  position: relative;
  padding: 120px 0 80px 0;
  background-color: var(--color-off-white);
  z-index: 1;
}

.counter-one__single {
  position: relative;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 60px 30px 40px 30px;
  text-align: center;
  margin-top: 40px;
  /* Space for overlapping icon container */
  box-shadow: 0 10px 30px rgba(6, 20, 46, 0.04);
  border-bottom: 3px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.counter-one__single:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(6, 20, 46, 0.1);
}

/* Overlapping circular icon box */
.counter-one__single-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(6, 20, 46, 0.06);
  z-index: 2;
  transition: all 0.5s ease;
}

.counter-one__single-icon span {
  font-size: 2.1rem;
  color: var(--color-secondary);
  transition: all 0.5s ease;
}

/* Card hover animation on icon circle */
.counter-one__single:hover .counter-one__single-icon {
  background-color: var(--color-secondary);
  transform: translate(-50%, -50%) rotateY(180deg);
}

.counter-one__single:hover .counter-one__single-icon span {
  color: var(--color-white);
}

/* Count number styling */
.counter-one__single-content .count-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.counter-one__single-content .count-box .count-text {
  font-size: clamp(2.2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  margin: 0;
  line-height: 1;
}

.counter-one__single-content .count-box span {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1;
}

/* Text label */
.counter-one__single-content p {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 0;
  text-transform: capitalize;
}

/* Responsive adjustments for Counter Section */
@media (max-width: 991px) {
  .counter-one {
    padding: 80px 0 50px 0;
  }
}

@media (max-width: 767px) {
  .counter-one__single {
    margin-top: 50px;
    padding: 55px 20px 35px 20px;
  }
}

/* ================================================================
   SECTION 5: WHY CHOOSE US (.why-choose-one)
   ================================================================ */
.why-choose-one {
  position: relative;
  padding: 120px 0 120px 0;
  background-color: #081a36;
  /* Deep navy blue background */
  z-index: 5;
  /* Sit above previous and next sections for overlap */
  overflow: visible;
  /* Prevent clipping overlapping elements */
}

/* Background world map watermark */
.why-choose-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.why-choose-one__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

/* Floating containers shape decoration */
.why-choose-one .shape1 {
  position: absolute;
  bottom: -50px;
  /* Pull it way out of the section bottom edge */
  right: 10%;
  z-index: 2;
  /* Sits behind form card (z-index 3) */
  pointer-events: none;
  max-width: 320px;
}

.why-choose-one .shape1 img {
  width: 100%;
  height: auto;
}

/* Vertical bobbing animation */
@keyframes floatBobY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-bob-y {
  animation: floatBobY 4s ease-in-out infinite;
}

/* Left Column Content */
.why-choose-one__content {
  position: relative;
  z-index: 3;
}

.why-choose-one__content .sec-title__tagline h4 {
  color: var(--color-secondary);
  /* Highlight tagline orange */
}

.why-choose-one__content .sec-title__tagline .right-icon {
  color: var(--color-secondary);
  /* Highlight tagline icon orange */
}

.why-choose-one__content .sec-title .sec-title__title {
  color: var(--color-white);
  margin-top: 15px;
  margin-bottom: 25px;
}

.why-choose-one__content-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.why-choose-one__content-list li {
  position: relative;
  margin-bottom: 18px;
}

.requestform {
  z-index: 99999;
}

.why-choose-one__content-list li p {
  font-size: 1.05rem;
  color: #a5b4fc;
  /* Light indigo text */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.why-choose-one__content-list li p span.icon-checkmark {
  font-size: 1.25rem;
  color: var(--color-secondary);
  /* Highlight checkmark */
}

/* Right Column Form Card */
.why-choose-one__form-box {
  position: relative;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  /* Set z-index to 9999 as requested */
  transition: all 0.3s ease;
}

.why-choose-one__form-box .title-box h2 {
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  margin-bottom: 30px;
  text-transform: capitalize;
}

/* Input Fields */
.why-choose-one__form .input-box {
  position: relative;
  margin-bottom: 20px;
}

.why-choose-one__form .input-box input[type="text"],
.why-choose-one__form .input-box input[type="email"] {
  width: 100%;
  height: 56px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 45px 0 20px;
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: #f8f9fa;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-choose-one__form .input-box input:focus {
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.08);
}

.why-choose-one__form .input-box .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: var(--color-secondary);
  pointer-events: none;
  opacity: 0.8;
}

/* Distance Dual Range Slider Ã¢â‚¬â€ Modern Design */
.why-choose-one__form-distance {
  margin-bottom: 28px;
}

/* Top label Ã¢â‚¬â€ only text, no flex needed */
.dual-range-label {
  margin-bottom: 10px;
}

.dual-range-label__text {
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dual-range-label__values {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b4a);
  color: #fff;
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.dual-range-label__sep {
  opacity: 0.7;
}

.dual-range-label__unit {
  opacity: 0.85;
  font-weight: var(--fw-semibold);
}

/* Wrapper holds row + ticks */
.dual-range-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Row: track + value box side by side */
.dual-range-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Track container Ã¢â‚¬â€ takes remaining width */
.dual-range-track {
  position: relative;
  flex: 1;          /* take all available width */
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  margin: 14px 0 6px 0;
}

/* Colored fill between the two handles */
.dual-range-fill {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary), #ff6b4a);
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.25);
}

/* Both range inputs share same track */
.dual-range-input {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* Thumb: Webkit (Chrome, Safari, Edge) */
.dual-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-secondary);
  box-shadow: 0 3px 10px rgba(211, 47, 47, 0.35), 0 1px 3px rgba(0,0,0,0.1);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  z-index: 4;
}

.dual-range-input::-webkit-slider-thumb:hover,
.dual-range-input::-webkit-slider-thumb:active {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.45), 0 0 0 4px rgba(211, 47, 47, 0.12);
}

/* Thumb: Firefox */
.dual-range-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-secondary);
  box-shadow: 0 3px 10px rgba(211, 47, 47, 0.35);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dual-range-input::-moz-range-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.45);
}

/* Track lines: transparent so fill layer shows */
.dual-range-input::-webkit-slider-runnable-track { background: transparent; }
.dual-range-input::-moz-range-track { background: transparent; }

/* Tick marks row below the track */
.dual-range-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.dual-range-ticks span {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: var(--fw-medium);
  line-height: 1;
}



/* Custom Dropdown Select menu styling */
.why-choose-one__form .nice-select.selectmenu {
  width: 100%;
  height: 56px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f8f9fa;
  line-height: 54px;
  padding-left: 20px;
  padding-right: 30px;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  user-select: none;
  white-space: nowrap;
}

.why-choose-one__form .nice-select::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--color-secondary);
  border-right: 2px solid var(--color-secondary);
  position: absolute;
  right: 20px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.why-choose-one__form .nice-select.open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.why-choose-one__form .nice-select .list {
  display: none;
  /* Hide option list by default */
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 99;
  padding: 6px 0;
  border: 1px solid #e2e8f0;
  max-height: 200px;
  overflow-y: auto;
}

/* Show option list when select menu is open */
.why-choose-one__form .nice-select.open .list {
  display: block;
}

.why-choose-one__form .nice-select .option {
  padding: 10px 20px;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.why-choose-one__form .nice-select .option:hover {
  background-color: #f8f9fa;
  color: var(--color-secondary);
}

.why-choose-one__form .nice-select .option.selected {
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}

/* Form Submit Button wrapper */
.why-choose-one__form-btn button {
  width: 100%;
  height: 56px;
}

/* ================================================================
   Responsive Overlap Layout for Why Choose Section
   ================================================================ */
@media (min-width: 1200px) {

  /* Overlap the white card form top and bottom on desktops */
  .why-choose-one__form-box {
    margin-top: -180px;
    /* Pull it out of the top of the section */
    margin-bottom: -180px;
    /* Pull it out of the bottom of the section */
  }
}

@media (max-width: 1199px) {
  .why-choose-one {
    padding: 100px 0;
  }

  .why-choose-one__form-box {
    margin-top: 40px;
  }

  .why-choose-one .shape1 {
    display: none;
    /* Hide container decoration on smaller viewports */
  }
}

@media (max-width: 767px) {
  .why-choose-one {
    padding: 80px 0;
  }

  .why-choose-one__form-box {
    padding: 40px 20px;
  }
}


/* ================================================================
   SECTION: FAQ (.faq-one)
   ================================================================ */

/* ---- ANIMATIONS ---- */

/* Plane flying left-right (modern horizontal glide) */
@keyframes faqPlaneFly {
  0%   { transform: translateX(0px) translateY(0px) rotate(0deg); }
  25%  { transform: translateX(8px) translateY(-3px) rotate(2deg); }
  50%  { transform: translateX(14px) translateY(0px) rotate(0deg); }
  75%  { transform: translateX(8px) translateY(3px) rotate(-2deg); }
  100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
}

/* Badge pop-in entrance */
@keyframes faqBadgePop {
  0%   { transform: scale(0.4) rotate(-20deg); opacity: 0; }
  70%  { transform: scale(1.1) rotate(5deg);  opacity: 1; }
  100% { transform: scale(1) rotate(0deg);    opacity: 1; }
}

/* Review card slide-up entrance */
@keyframes faqReviewSlideUp {
  0%   { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* Subtle float for review card (loop) */
@keyframes faqReviewFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Counter number roll-up */
@keyframes faqCounterRoll {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---- SECTION WRAPPER ---- */
.faq-one {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

/* ----------------------------------------------------------------
   LEFT IMAGE BOX
   ---------------------------------------------------------------- */
.faq-one__img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  padding: 40px 20px 40px 30px;
}

/* Main circular image Ã¢â‚¬â€ bigger, professional */
.faq-one__img-circle {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--color-secondary);
  box-shadow:
    0 25px 70px rgba(211, 47, 47, 0.2),
    0 0 0 14px rgba(211, 47, 47, 0.07);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-one__img-circle:hover {
  transform: scale(1.02);
  box-shadow:
    0 30px 80px rgba(211, 47, 47, 0.28),
    0 0 0 18px rgba(211, 47, 47, 0.1);
}

.faq-one__img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 5k Customer badge Ã¢â‚¬â€ overlapping top-left of circle */
.faq-one__badge {
  position: absolute;
  top: 30px;
  left: 10px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 12;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  /* Entrance pop + continuous float */
  animation:
    faqBadgePop    0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
    faqReviewFloat 3.5s ease-in-out 1.3s infinite;
}

.faq-one__badge-num {
  font-size: 1.4rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1;
  display: block;
}

.faq-one__badge-lbl {
  font-size: 0.58rem;
  font-weight: var(--fw-bold);
  color: var(--color-medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-top: 3px;
}

/* Review card Ã¢â‚¬â€ bottom-right, clean shadow, no border */
.faq-one__review-card {
  position: absolute;
  bottom: 40px;
  right: 10px;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 14px 26px;
  z-index: 12;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-width: 145px;
  /* Entrance + continuous float */
  animation:
    faqReviewSlideUp 0.6s ease 0.6s both,
    faqReviewFloat   4s ease-in-out 1.4s infinite;
}

.faq-one__review-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 6px;
}

.faq-one__review-count {
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin: 0;
}

/* ----------------------------------------------------------------
   FAQ TAGLINE â€” Same line: "FAQ  â†’" in orange
   ---------------------------------------------------------------- */
.faq-one__content .sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.faq-one__content .sec-title__tagline h4 {
  font-size: var(--text-subtitle);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-subtitle);
  margin: 0;
  color: var(--color-secondary);
}

.faq-one__content .sec-title__tagline .right-icon {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--color-secondary);
}

/* Plane icon â€” smooth left-right flying animation */
.faq-plane-icon {
  display: inline-block;
  color: var(--color-secondary);
  animation: faqPlaneFly 2.4s ease-in-out infinite;
}

/* FAQ Section title heading */
.faq-one__content .sec-title__title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------
   RIGHT FAQ CONTENT
   ---------------------------------------------------------------- */
.faq-one__content {
  padding-left: 50px;
}

.faq-one__content .sec-title__title {
  margin-bottom: 35px;
}

/* ----------------------------------------------------------------
   ACCORDION
   ---------------------------------------------------------------- */
.faq-one__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Single FAQ item Ã¢â‚¬â€ closed state */
.faq-one__item {
  border-radius: 8px;
  background-color: #f4f5f7;
  border: 1.5px solid #f4f5f7;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Active/open state */
.faq-one__item--active {
  background-color: var(--color-white);
  border-color: #e2e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

/* Question row */
.faq-one__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 15px;
  user-select: none;
  transition: all 0.25s ease;
}

/* Question text */
.faq-one__q-text {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  line-height: 1.4;
  flex: 1;
  transition: color 0.25s ease;
}

/* Open question text turns orange */
.faq-one__item--active .faq-one__q-text {
  color: var(--color-secondary);
}

/* Toggle icon circle Ã¢â‚¬â€ closed */
.faq-one__toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  border: 1.5px solid #d1d5db;
}

/* Toggle icon circle Ã¢â‚¬â€ open (red filled) */
.faq-one__item--active .faq-one__toggle {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: rotate(0deg) scale(1.1);
}

/* Answer area */
.faq-one__answer {
  padding: 0 20px 20px 20px;
  overflow: hidden;
  max-height: 500px;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* Hidden answer (closed items) */
.faq-one__answer--hidden {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}

.faq-one__answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-medium-gray);
  margin: 0;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1199px) {
  .faq-one__img-circle {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 991px) {
  .faq-one {
    padding: 80px 0;
  }

  .faq-one__content {
    padding-left: 0;
    margin-top: 50px;
  }

  .faq-one__img-circle {
    width: 340px;
    height: 340px;
  }

  .faq-one__img-box {
    min-height: 380px;
  }
}

@media (max-width: 575px) {
  .faq-one {
    padding: 60px 0;
  }

  .faq-one__img-circle {
    width: 280px;
    height: 280px;
  }

  .faq-one__img-box {
    min-height: 310px;
    padding: 30px 10px;
  }

  .faq-one__badge {
    width: 72px;
    height: 72px;
    top: 15px;
    left: 0;
  }

  .faq-one__review-card {
    bottom: 20px;
    right: 0;
    padding: 10px 16px;
    min-width: 120px;
  }
}


/* ================================================================

/* ================================================================

/* ================================================================
   SECTION: WORKING PROCESS (.working-process)
   All 5 mistakes fixed:
   1. Connector height = 132px → line/plane at exact octagon center (66px)
   2. Step width = 180px → text fits, connector gets full gap
   3. White ring: outer 132px, inner 110px → 11px visible ring
   4. Decorative circle correct position
   5. Text text-align: center under each octagon
   ================================================================ */

@keyframes wpPlaneFly {
  0%   { transform: translateX(-6px); }
  50%  { transform: translateX(6px);  }
  100% { transform: translateX(-6px); }
}

/* ---- SECTION ---- */
.working-process {
  position: relative;
  padding: 100px 0 110px;
  background-color: var(--color-white);
  overflow: hidden;
}

/* Background decorative circle behind each octagon box */
.wp-octagon-bg-circle {
  position: absolute;
  top: -15px;             /* Floats slightly above the octagon box */
  left: 50%;
  transform: translateX(-50%);
  width: 80px;            /* Rises up showing a curved arch above the flat top */
  height: 80px;
  border-radius: 50%;
  border: 2.2px solid rgba(211, 47, 47, 0.15); /* Light orange/red outline matching theme */
  background: transparent;
  pointer-events: none;
  z-index: 1;
}



/* ---- HEADER ---- */
.working-process__header {
  text-align: center;
  margin-bottom: 65px;
}

.working-process__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.working-process__tagline span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
}

.wp-tag-plane {
  color: var(--color-secondary);
  font-size: 0.9rem;
  display: inline-block;
  animation: wpPlaneFly 1.8s ease-in-out infinite;
}
.wp-tag-plane--left { transform: scaleX(-1); }

.working-process__title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin: 0;
}

/* ================================================================
   STEPS ROW (6 Steps Layout)
   - step: flex:0 0 150px (optimized for 6 steps across desktop)
   - connector: flex:1  → spans gap between octagons
   ================================================================ */
.working-process__steps {
  display: flex;
  align-items: flex-start;
}

.working-process__step {
  flex: 0 0 150px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---- ICON BOX ---- */
.working-process__icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.wp-oct-wrap {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  clip-path: polygon(29.3% 0%, 70.7% 0%, 100% 29.3%, 100% 70.7%,
                     70.7% 100%, 29.3% 100%, 0% 70.7%, 0% 29.3%);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.working-process__step:hover .wp-oct-wrap {
  transform: translateY(-8px);
}

/* Inner coloured octagon */
.working-process__octagon {
  width: 96px;
  height: 96px;
  clip-path: polygon(29.3% 0%, 70.7% 0%, 100% 29.3%, 100% 70.7%,
                     70.7% 100%, 29.3% 100%, 0% 70.7%, 0% 29.3%);
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White icon */
.working-process__octagon i {
  color: #fff;
  font-size: 1.9rem;
}

/* Number badge wrapper - white octagon */
.wp-num-wrap {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  clip-path: polygon(29.3% 0%, 70.7% 0%, 100% 29.3%, 100% 70.7%,
                     70.7% 100%, 29.3% 100%, 0% 70.7%, 0% 29.3%);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}

/* Inner dark-navy octagon badge */
.working-process__num {
  width: 24px;
  height: 24px;
  clip-path: polygon(29.3% 0%, 70.7% 0%, 100% 29.3%, 100% 70.7%,
                     70.7% 100%, 29.3% 100%, 0% 70.7%, 0% 29.3%);
  background-color: var(--color-primary-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Step Title */
.working-process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

/* Step Description */
.working-process__step-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
  text-align: center !important;
}

/* ================================================================
   CONNECTOR — flex:1 fills gap between steps
   ================================================================ */
.working-process__connector {
  flex: 1;
  position: relative;
  height: 116px;          /* matches 116px octagon wrap height */
  align-self: flex-start;
  min-width: 15px;
  z-index: 0;
}

/* Dashed line at octagon center */
.working-process__connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px dashed #bec5d0;
  transform: translateY(-50%);
}

/* Plane icon on line */
.wp-conn__plane {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-secondary);
  font-size: 0.88rem;
  background: var(--color-white);
  padding: 0 3px;
  animation: wpPlaneFly 2.2s ease-in-out infinite;
  z-index: 2;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1199px) {
  .working-process__step {
    flex: 0 0 135px;
  }
}

@media (max-width: 991px) {
  .working-process { padding: 70px 0 80px; }

  .working-process__steps {
    flex-wrap: wrap;
    gap: 35px 25px;
    justify-content: center;
  }

  .working-process__step {
    flex: 0 0 180px;
  }

  .working-process__connector { display: none; }
}

@media (max-width: 575px) {
  .working-process { padding: 55px 0 65px; }
  .working-process__step { flex: 0 0 145px; }
  .working-process__title { font-size: 1.65rem; }
}
