.myNavBar {
  background-color: transparent;
  background-image: url("https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}

/* .myNavBar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
} */

/* .myNavBar > .container {
  position: relative;
  z-index: 2;
} */

.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.testimonial-box p {
  color: #555;
  line-height: 1.7;
  margin: 20px 0;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: gold;
  margin-top: 10px;
}

.swiper {
  padding-bottom: 50px;
}

#cta {
  background-image: url("https://images.pexels.com/photos/1148820/pexels-photo-1148820.jpeg");
  min-height: 20vh;
}

#home {
  background-image: url("https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg");
  min-height: 120vh;
}

#home,
#cta {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}

/* #home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
} */

/* #home > .container {
  position: relative;
  z-index: 2;
} */

#home h1 {
  letter-spacing: -1px;
  color: white;
}

#home p {
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
  color: white;
}

.fancy-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* الدائرة الداخلية */
.fancy-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

/* عند hover */
.fancy-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}