/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }

  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.5rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    top: 0;
  }

  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }

  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #cs-navigation .cs-logo {
    width: auto;
    max-width: 150px;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  #cs-navigation .cs-toggle {
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }

  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }

  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: scroll;
  }

  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link:before {
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }

  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }

  #cs-navigation .cs-dropdown {
    position: relative;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  #cs-navigation .cs-dropdown .cs-dropdown-arrow {
    transition: transform 0.3s;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-dropdown-arrow {
    transform: rotate(180deg);
  }

  #cs-navigation .cs-dropdown-ul {
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    display: none;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-dropdown-ul {
    display: block;
  }

  #cs-navigation .cs-dropdown-li {
    list-style: none;
    margin-bottom: 0.5rem;
  }

  #cs-navigation .cs-dropdown-li:last-child {
    margin-bottom: 0;
  }

  #cs-navigation .cs-dropdown-link {
    font-size: 0.9rem;
    color: var(--headerColor);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
  }

  #cs-navigation .cs-dropdown-link:hover {
    background-color: #e9ecef;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    top: 0;
  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 4.0625rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-logo img {
    width: 100%;
    height: 250%;
    object-fit: contain;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    flex: none;
    position: relative;
  }

  #cs-navigation .cs-li-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
  }

  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }

  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }

  #cs-navigation .cs-li-link:before {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }

  #cs-navigation .cs-dropdown {
    position: relative;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  #cs-navigation .cs-dropdown .cs-dropdown-arrow {
    transition: transform 0.3s;
  }

  #cs-navigation .cs-dropdown:hover .cs-dropdown-arrow {
    transform: rotate(180deg);
  }

  #cs-navigation .cs-dropdown-ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
  }

  #cs-navigation .cs-dropdown:hover .cs-dropdown-ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  #cs-navigation .cs-dropdown-li {
    list-style: none;
    margin-bottom: 0.5rem;
  }

  #cs-navigation .cs-dropdown-li:last-child {
    margin-bottom: 0;
  }

  #cs-navigation .cs-dropdown-link {
    font-size: 0.9rem;
    color: var(--bodyTextColor);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s, color 0.3s;
  }

  #cs-navigation .cs-dropdown-link:hover {
    background-color: var(--primary);
    color: #fff;
  }
}


/* Carrouseel */
/* Carrouseel */
/* Carrouseel */

/* Hero Section */
.hero-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  width: 100%;
  padding: 30px 20px;
  gap: 30px;
  align-items: center;
}

.carousel-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Left Carousel Styles */
.left-carousel-column .carousel-heading {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--headerColor);
  margin: 35px 0 1.5rem 0;
}

/* Fixed Title Above Carousel */
.carousel-fixed-title {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--headerColor);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .carousel-fixed-title {
    display: none;
    padding: 0;
    margin: 0;
  }

  .left-carousel .slide-title {
    font-weight: 800;
    margin-bottom: 10px;
  }

  .left-carousel .slide-description {
    color: #888888;
  }
}

.hero-search-bar {
  display: flex;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 5px;
  height: 45px;
}

.hero-search-input {
  flex-grow: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background-color: var(--lightGray);
}

.hero-search-button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.hero-search-button:hover {
  background-color: #e64a19;
}

/* ========= تحسين الكاروسيل للتناسق ========= */

/* Base Carousel Styles - نفس الارتفاع للاثنين */
.left-carousel,
.right-carousel {
  width: 100%;
  height: 400px;
  /* ارتفاع ثابت للموبايل */
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /* background: rgba(248, 249, 250, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
}

.left-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.left-carousel .slide-image-container {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.left-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.left-carousel .slide-text-content {
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  border-radius: 8px;
  margin-top: auto;
}

/* Right Carousel */
.right-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 100%;
}

.right-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.left-carousel:hover .swiper-slide img,
.right-carousel:hover .swiper-slide img {
  transform: scale(1.02);
}

/* Right Carousel Text Content */
.right-carousel-column .carousel-text-content {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.right-carousel-column .carousel-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--headerColor);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.right-carousel-column .carousel-description {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: var(--bodyTextColor);
  margin-bottom: 0;
}

/* Swiper Pagination */
.swiper-pagination.hero-pagination {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: rgba(255, 255, 255, 0.7) !important;
  opacity: 0.8 !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.1) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  opacity: 1 !important;
  transform: scale(1.3) !important;
  border-color: #fff !important;
  box-shadow: 0 3px 8px rgba(255, 87, 34, 0.4) !important;
}

/* Search Description */
.hero-search-description {
  margin-top: 15px;
  text-align: center;
  max-width: 480px;
  color: var(--bodyTextColor);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 5px;
}

.hero-paragraph {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ========= Desktop Styles - الكاروسيل متناسق تماماً ========= */
@media (min-width: 768px) {
  .hero-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    /* تم تغييره من stretch إلى flex-start */
    padding: 40px 30px;
    gap: 40px;
    margin-top: 50px;
  }

  .carousel-column {
    flex: 1;
    max-width: calc(50% - 20px);
    align-items: flex-start;
    text-align: left;
  }

  /* نفس الارتفاع بالضبط للاثنين في الديسكتوب */
  .left-carousel,
  .right-carousel {
    height: 500px;
    /* ارتفاع ثابت ومتناسق */
  }

  /* Left Carousel Desktop Layout */
  .left-carousel .swiper-slide {
    flex-direction: row;
    padding: 25px;
    gap: 20px;
  }

  .left-carousel .slide-text-content {
    flex: 0.8;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    margin-right: 20px;
    border-radius: 8px;
  }

  .left-carousel .slide-image-container {
    flex: 1.2;
    margin-bottom: 0;
    margin-right: 0;
  }

  .left-carousel .slide-title {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    margin-bottom: 12px;
  }

  .left-carousel .slide-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #888888;
  }

  /* Fixed title positioning on desktop */
  .carousel-fixed-title {
    top: 20px;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    padding: 10px 20px;
  }

  /* Right Carousel يبقى كما هو لكن بنفس الارتفاع */
  .right-carousel .swiper-slide {
    padding: 10px;
  }

  /* تأكد من أن النص تحت الكاروسيل الأيمن متناسق */
  .right-carousel-column .carousel-text-content {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    padding: 60px 40px;
    gap: 60px;
  }

  .carousel-column {
    max-width: calc(50% - 30px);
  }

  /* زيادة الارتفاع للشاشات الكبيرة مع الحفاظ على التناسق */
  .left-carousel,
  .right-carousel {
    height: 400px;
  }
}

/* Mobile Specific Adjustments */
@media (max-width: 480px) {
  .hero-content-wrapper {
    padding: 20px 15px;
    gap: 20px;
  }

  .left-carousel,
  .right-carousel {
    height: 350px;
    /* نفس الارتفاع للموبايل */
  }

  .left-carousel {
    margin-top: 110px;
    /* للمساحة الإضافية للعنوان الثابت */
  }

  .left-carousel .swiper-slide {
    padding: 15px;
  }

  .left-carousel .slide-text-content {
    padding: 12px 8px;
  }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
.cs-topper {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.cs-title {
  font-size: 2.5rem;
  color: var(--bodyTextColor);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cs-text {
  color: var(--bodyTextColor);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1161 {
    padding: var(--sectionPadding);
    overflow: hidden;
    background-color: #f7f7f7;
  }

  #sbs-1161 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }

  #sbs-1161 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #sbs-1161 .cs-text {
    margin-bottom: 1rem;
  }

  #sbs-1161 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs-1161 .cs-ul {
    max-width: 39.375rem;
    margin: 0 0 2rem 0;
    padding: 0;
    overflow: hidden;
  }

  #sbs-1161 .cs-li {
    list-style: none;
    margin: 0 0 0.5rem 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
  }

  #sbs-1161 .cs-li:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background: var(--secondary);
    display: block;
    flex: none;
    border-radius: 50%;
  }

  #sbs-1161 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  #sbs-1161 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 5px;
  }

  #sbs-1161 .cs-button-solid:hover:before {
    width: 100%;
  }

  #sbs-1161 .cs-image-group {
    font-size: min(2.15vw, 0.8em);
    width: 100%;
    max-width: 42.375em;
    height: 36.75em;
    display: block;
    position: relative;
    z-index: 1;
  }

  #sbs-1161 .cs-picture {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  #sbs-1161 .cs-picture img,
  #sbs-1161 .cs-picture video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }

  /* Video styling improvements */
  #sbs-1161 .cs-picture1 {
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 10;
  }

  #sbs-1161 .cs-picture1 video {
    border: none;
    outline: none;
    background: transparent;
  }

  #sbs-1161 .cs-picture2 {
    width: 70%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 15;
  }

  #sbs-1161 .cs-graphic {
    height: auto;
    position: absolute;
    opacity: 0.8;
  }

  #sbs-1161 .cs-graphic1 {
    width: 72.125em;
    top: 1.25em;
    right: -3.75em;
    transform: rotate(-15deg);
  }

  #sbs-1161 .cs-graphic2 {
    width: 67.8125em;
    top: 11.5625em;
    right: -1.5625em;
  }

  #sbs-1161 .cs-box {
    width: 12.3125em;
    height: 11.125em;
    padding: 0.5rem;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 25;
    left: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  #sbs-1161 .cs-number {
    font-size: clamp(1.25rem, 4vw, 2.4375rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem);
    color: var(--bodyTextColorWhite);
    display: block;
  }

  #sbs-1161 .cs-desc {
    font-size: clamp(0.75rem, 1.9vw, 1rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    max-width: 12ch;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: block;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1161 .cs-image-group {
    height: 40em;
  }

  #sbs-1161 .cs-picture1 {
    width: 70%;
    height: 65%;
    top: 0;
    left: 0;
  }

  #sbs-1161 .cs-picture2 {
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
  }

  #sbs-1161 .cs-box {
    width: 14em;
    height: 12em;
    left: 5%;
    bottom: 5%;
  }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1161 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #sbs-1161 .cs-image-group {
    font-size: min(1.2vw, 1em);
    flex: none;
    width: 50%;
  }

  #sbs-1161 .cs-content {
    width: 45%;
  }

  #sbs-1161 .cs-picture1 {
    width: 39.375em;
    height: 24.375em;
    top: 0;
    left: 0;
  }

  #sbs-1161 .cs-picture2 {
    width: 28.8125em;
    height: 18.75em;
    bottom: 0;
    right: 0;
  }

  #sbs-1161 .cs-box {
    width: 12.3125em;
    height: 11.125em;
    left: 0;
    bottom: 0;
  }
}

/* Animation for better user experience */
#sbs-1161 .cs-picture {
  transition: transform 0.3s ease;
}

#sbs-1161 .cs-picture:hover {
  transform: scale(1.02);
}

#sbs-1161 .cs-box {
  transition: transform 0.3s ease;
}

#sbs-1161 .cs-box:hover {
  transform: translateY(-5px);
}

/* 4 Sections  ( Air ...) */
/* 4 Sections  ( Air ...) */
/* 4 Sections  ( Air ...) */

#services-296 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#services-296 .cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Section - Fixed Centering */
#services-296 .cs-content {
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 800px;
  /* هنا الحل الأساسي */
}

#services-296 .cs-topper {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

#services-296 .cs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

#services-296 .cs-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* Cards Container */
#services-296 .cs-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  list-style: none;
}

/* Card Styles */
#services-296 .cs-item {
  width: 100%;
  max-width: 300px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

#services-296 .cs-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

#services-296 .cs-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image Styles */
#services-296 .cs-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

#services-296 .cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(2px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#services-296 .cs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  z-index: 1;
}

#services-296 .cs-label {
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover Effects */
#services-296 .cs-item:hover .cs-image img {
  filter: grayscale(0%) blur(0px) brightness(1.1);
  transform: scale(1.08);
}

#services-296 .cs-item:hover .cs-overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* Card Content */
#services-296 .cs-h3 {
  font-size: 1.3rem;
  margin: 20px 20px 10px 20px;
  font-weight: 700;
  color: #333;
}

#services-296 .cs-item-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #services-296 {
    padding: 60px 0;
  }

  #services-296 .cs-container {
    padding: 0 15px;
  }

  #services-296 .cs-content {
    margin-bottom: 40px;
  }

  #services-296 .cs-title {
    font-size: 2rem;
  }

  #services-296 .cs-text {
    font-size: 1rem;
  }

  #services-296 .cs-card-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #services-296 .cs-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #services-296 .cs-title {
    font-size: 1.8rem;
  }

  #services-296 .cs-topper {
    font-size: 0.8rem;
    padding: 6px 20px;
  }

  #services-296 .cs-image {
    height: 180px;
  }

  #services-296 .cs-overlay {
    font-size: 1.1rem;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  #services-296 .cs-container {
    max-width: 1400px;
  }

  #services-296 .cs-card-group {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Leading Truck Parts  */

.stats-section {
  padding: 0rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0px 20px; */
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stats-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  /* نسبة ثابتة للصورة */
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.stats-image:hover img {
  transform: scale(1.05);
}

.stats-content {
  padding: 1rem;
}

.stats-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.2;
}

.stats-content p {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 90%;
}

.stats-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat i {
  font-size: 2.5rem;
  color: #3498db;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.stat-info h4 {
  font-size: 1.8rem;
  margin: 0;
  color: #2c3e50;
  font-weight: 700;
}

.stat-info span {
  font-size: 0.95rem;
  color: #7f8c8d;
  font-weight: 500;
}

/* تحسينات الموبايل */
@media (max-width: 768px) {
  .stats-section {
    padding: 2rem 1rem;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-image {
    order: 1;
    aspect-ratio: 16/9;
    /* نسبة أفضل للموبايل */
  }

  .stats-content {
    order: 2;
    text-align: center;
    padding: 0;
  }

  .stats-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .stats-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .stats-boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    padding: 1.2rem;
    justify-content: center;
    text-align: center;
  }

  .stat i {
    font-size: 2.2rem;
  }

  .stat-info h4 {
    font-size: 1.6rem;
  }

  .stat-info span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-content h2 {
    font-size: 1.7rem;
  }

  .stats-content p {
    font-size: 1rem;
  }

  .stat {
    padding: 1rem;
  }

  .stat i {
    font-size: 2rem;
  }

  .stat-info h4 {
    font-size: 1.4rem;
  }

  .stat-info span {
    font-size: 0.9rem;
  }
}


/* قسم العملاء */
.clients-section {
  padding: 3rem 1rem;
  background: white;
  border-top: 1px solid #f0f0f0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.client-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .clients-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .client-logo {
    padding: 1rem;
    min-height: 100px;
  }

  .client-logo img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    min-height: 80px;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;

}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}

.brand-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-right: 350px;
  padding-left: 250px;
}

.brand-slider {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: scrollBrands 18s linear infinite;
}

.slider-track img {
  height: 90px;
  margin-right: 40px;
  flex-shrink: 0;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-slider-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .slider-track img {
    height: 60px;
    margin-right: 20px;
  }
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.clients-grid img {
  height: 60px;
  margin: auto;
}


/*-- -------------------------- -->
<---          Certificate          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #timeline-1517 {
    /* 60px - 140px */
    padding: clamp(3.75rem, 7.82vw, 8.75rem) 1rem;
    /* clips the white line through the bullets */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  #timeline-1517:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: .05;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }

  #timeline-1517 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #timeline-1517 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    /* 20px - 40px */
    gap: clamp(1.25rem, 4vw, 2.5rem);
  }

  #timeline-1517 .cs-flex {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #timeline-1517 .cs-topper {
    color: var(--secondary);
  }

  #timeline-1517 .cs-title {
    max-width: 20ch;
  }

  #timeline-1517 .cs-image-group {
    width: 100%;
    max-width: 38.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  #timeline-1517 .cs-picture {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  #timeline-1517 .cs-picture img {
    width: 100%;
    height: auto;
  }

  #timeline-1517 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* changes at tablet */
    gap: 1.5rem;
    position: relative;
  }

  #timeline-1517 .cs-card-group:before {
    /* white line through the bullets */
    content: "";
    width: 2px;
    background: #E8E8E8;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    /* send it way down to reach the bottom of the section, and have some overlap so if you add content and the ul gets longer, it will still be at the bottom */
    bottom: -18.75rem;
    /* half the width of the bullet */
    left: 0.5625rem;
  }

  #timeline-1517 .cs-item {
    width: 100%;
    max-width: 25rem;
    list-style: none;
    padding: 0 0 0 2.75rem;
    grid-column: span 12;
    position: relative;
  }

  #timeline-1517 .cs-item:hover .cs-date {
    color: var(--secondary);
  }

  #timeline-1517 .cs-item:hover:before {
    background-color: var(--secondary);
    border-color: var(--secondary);
  }

  #timeline-1517 .cs-item:before {
    /* bullet circle */
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    background: #FFF8F5;
    border: 2px solid #bababa;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transition: background-color 0.3s, border-color 0.3s;
  }

  #timeline-1517 .cs-date {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
    display: block;
    transition: color .3s;
  }

  #timeline-1517 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    /* changes to 100% at tablet */
    width: 80%;
    margin: 0;
    color: var(--headerColor);
    position: relative;
  }

  #timeline-1517 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0.5rem 0 0 0;
    color: var(--bodyTextColor);
  }

  #timeline-1517 .cs-floater {
    width: 14.375rem;
    height: auto;
    display: none;
    position: absolute;
  }

  #timeline-1517 .cs-floater1 {
    bottom: 1.5625rem;
    left: 0;
  }

  #timeline-1517 .cs-floater2 {
    top: 1.25rem;
    right: -4.5rem;
  }

  #timeline-1517 .cs-background {
    --backgroundBG: #fff;
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    left: 0;
  }

  #timeline-1517 .cs-background-top {
    top: 0;
  }

  #timeline-1517 .cs-background-bottom {
    bottom: 0;
    transform: rotateX(180deg);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #timeline-1517 .cs-container {
    max-width: 80rem;
  }

  #timeline-1517 .cs-card-group {
    /* clips the lines */
    overflow: hidden;
    flex-direction: row;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    row-gap: 3rem;
  }

  #timeline-1517 .cs-card-group:before {
    display: none;
  }

  #timeline-1517 .cs-item {
    padding: 3.75rem 0 0 0;
    grid-column: span 3;
  }

  #timeline-1517 .cs-item:after {
    /* moved the line to the list item so we can have multiple rows */
    content: "";
    width: 110%;
    height: 2px;
    background: #E8E8E8;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0.5625rem;
    left: 0;
    z-index: -1;
    transition: background-color 0.3s, border-color 0.3s;
  }

  #timeline-1517 .cs-h3 {
    width: 100%;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #timeline-1517 .cs-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  #timeline-1517 .cs-flex {
    text-align: left;
    align-items: flex-start;
  }
}

/* Larger Desktop - 1600px */
@media only screen and (min-width: 100rem) {
  #timeline-1517 .cs-floater {
    display: block;
  }
}



/*-- -------------------------- -->
<---       Why Choose Us        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-682 {
    padding: var(--sectionPadding);
  }

  #why-choose-682 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #why-choose-682 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }

  #why-choose-682 .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }

  #why-choose-682 .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }

  #why-choose-682 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #why-choose-682 .cs-color {
    color: var(--primary);
  }

  #why-choose-682 .cs-text {
    margin-bottom: 1rem;
  }

  #why-choose-682 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #why-choose-682 .cs-ul {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  #why-choose-682 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #why-choose-682 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #why-choose-682 .cs-icon {
    width: 1.0625rem;
    height: auto;
    margin-top: 0.25rem;
  }

  #why-choose-682 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #why-choose-682 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }

  #why-choose-682 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #why-choose-682 .cs-button-solid:hover:before {
    width: 100%;
  }

  #why-choose-682 .cs-image-group {
    /* everything inside the image group is in ems so the font size will scale them down.  Font size minimum is tied to view width size, and grows until it reaches 75% of the value on em */
    font-size: min(2.3vw, 0.75em);
    width: 39.5em;
    height: 51.25em;
    position: relative;
    z-index: 1;
    /* flips it horizontally */
    transform: scaleX(-1);
  }

  #why-choose-682 .cs-picture {
    width: 19.125em;
    height: 22.5em;
    overflow: hidden;
    display: block;
    position: absolute;
  }

  #why-choose-682 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* so the images are the original orientation, undoing the flip the cs-image-group is doing */
    transform: scaleX(-1);
  }

  #why-choose-682 .cs-picture1 {
    top: 5em;
    left: 0;
  }

  #why-choose-682 .cs-picture2 {
    top: 0;
    right: 0;
  }

  #why-choose-682 .cs-picture3 {
    bottom: 0;
    left: 0;
  }

  #why-choose-682 .cs-picture4 {
    bottom: 5em;
    right: 0;
  }

  #why-choose-682 .cs-graphic {
    display: none;
  }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #why-choose-682 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }

  #why-choose-682 .cs-image-group {
    font-size: min(1.2vw, 1em);
    flex: none;
    /* sends it to the right in the 2nd position */
    order: 2;
  }

  #why-choose-682 .cs-graphic {
    width: 61.4375em;
    height: auto;
    display: block;
    position: absolute;
    bottom: 10.3125em;
    right: -2em;
    z-index: -1;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-51 {
    padding: var(--sectionPadding);
    position: relative;
  }

  #cta-51 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #cta-51 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #cta-51 .cs-title {
    color: var(--bodyTextColorWhite);
  }

  #cta-51 .cs-text {
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }

  #cta-51 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #cta-51 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }

  #cta-51 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #cta-51 .cs-button-solid:hover:before {
    width: 100%;
  }

  #cta-51 .cs-picture {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #cta-51 .cs-picture:before {
    /* black color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #cta-51 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}