body {
  overflow-x: hidden;
  color: var(--text) !important;
}

/* Intro Section Adjustments */
.intro-content {
  position: static;
  transform: none;
  padding: 0 !important;
}

.intro-image {
  position: static;
  width: 100%;
  height: auto;
}

.intro-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

.btn-explore {
  position: relative !important;
  bottom: auto !important;
  margin-top: 2rem !important;
  color: var(--text) !important;
  border-radius: 2rem !important;
}

.btn-explore:hover {
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 2rem !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .intro-content {
      text-align: center !important;
  }
  
  .intro-content p {
      max-width: 100% !important;
      text-align: center !important;
  }
  
  .btn-explore {
      position: relative !important;
      margin: 2rem auto 0 !important;
  }
}

/* Bootstrap-enhanced Features */
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  border: 1px solid var(--background-700);
  transition: all .5s ease;
  user-select: none;
}

.feature-card svg { transition: all .5s ease-in-out; }
.feature-card div { transition: all .5s ease-in-out; }

.partners {
  display: flex;
  gap: 2rem;
  padding: 4rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* Feature Cards Styles */
.feature-card:hover { box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);}
.feature-card:hover svg {  transform: scale(0.8);}
.feature-card:hover div {  transform: translateY(-10px) scale(0.9);}

/* Container for the testimonials section */

.testimonials-section {
  max-width: var(--max-section-width);
  margin: 2rem auto;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Add a subtle shape or corner effect if you want "rounded corners" in a fancy way */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Add a very subtle radial gradient or highlight overlay */
}

/* Headings at top (بعض التقييمات من عملائنا) and right side (تصفح التقييمات) */
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.testimonials-header h2 {
  font-size: 1.8rem;
  margin: 0;
}

.testimonials-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--sub-text);
}

/* Splide container */
.splide {}

.splide__track {
  overflow: hidden; /* Hide horizontal scrollbar */
}

.splide__list {
  display: flex;
  gap: 1.5rem; /* Space between slides */
}

/* Each slide */
.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* Testimonial card */

.testimonial-card {
  background: #ffffff33;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  width: 100%;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-info {
  text-align: right;
}

.testimonial-card .testimonial-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.testimonial-card .testimonial-date {
  font-size: 0.85rem;
  color: var(--sub-text);
  margin-bottom: 0.5rem;
}

.testimonial-card .testimonial-rating {
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-rating span {
  font-size: 1.2rem;
  margin: 0 1px;
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eee;
  margin: 0;
}



/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .intro-content {
    padding: 0 10rem;
  }

  .intro-image {
    width: 40rem;
    height: 80vh;
  }

  .intro-image img {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 992px) {
  .intro-content {
    padding: 0 5rem;
  }

  .intro-image {
    width: 30rem;
    height: auto;
  }

  .intro-image img {
    width: 500px;
    height: 500px;
  }

  .testimonials-header {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .intro {
    height: 50vh;
  }

  .intro-content {
    padding: 0 2rem;
  }

  .intro-image {
    width: 20rem;
    height: 50vh;
  }

  .intro-image img {
    width: 400px;
    height: 400px;
  }

  .special-features {
    padding: 2rem 0;
  }

  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

}

@media (max-width: 576px) {
  .intro-content {
    padding: 0 1rem;
  }

  .intro-image {
    width: 15rem;
    height: 40vh;
  }

  .intro-image img {
    width: 300px;
    height: 300px;
  }

  .btn-explore {
    margin: -5rem .5em;
  }

  .testimonial-card {
    max-width: 280px;
  }
}