  body {
    font-family: 'Cairo', sans-serif;
  }

.video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  outline: none;
}

.video:hover {
  pointer-events: none;
}

.services-section {
  background-color: #f1f1f1;
  padding: 40px 0;
  text-align: center;
}

.section-title-services {
  font-size: 28px;
  margin-bottom: 18px;
  color: #d3a74e;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.section-description-services  {
    font-size: 25px;
    color: #555;
    font-weight: 700;
    max-width: 729px;
    margin: 0 auto 27px;
    line-height: 1.6;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
    width: 50px;
    height: 50px;
  position: absolute;
  bottom: 141px;
  left: 50%;
  transform: translateX(-50%);
  background: #d3a74e;
  color: white;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-info {
    color: black;
  background: white;
  color: white;
  padding: 15px;
  margin-top: -40px;
  min-height: 128px;
  z-index: 9;
  width: 100%;
  margin: auto;
    bottom: 28px;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-title {
  font-weight: bold;
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
}
.btn-light {
  background-color: #d3a74e; /* لون ذهبي */
  color: #fff; /* النص أبيض */
  font-weight: bold;
  padding: 8px 18px; /* أكبر من السابق */
  font-size: 14px;
  border-radius: 25px; /* شكل بيضاوي ناعم */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* ظل بسيط */
  transition: all 0.3s ease-in-out;
}

.btn-light:hover {
  background-color: #b88730; /* ذهبي أغمق عند الهوفر */
  transform: translateY(-2px); /* حركة بسيطة */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .section-title-services {
    font-size: 22px; /* أصغر شوية من 28px */
  }

  .section-description-services {
    font-size: 18px; /* كان 25px */
    line-height: 1.4;
  }

  .service-title {
    font-size: 14px; /* كان 16px */
  }

  .btn-light {
    font-size: 12px; /* كان 14px */
    padding: 6px 14px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 8px;
    bottom: 120px; /* لضبط مكان الأيقونة على الصور الأصغر */
  }

  .service-img-wrapper {
    height: 160px; /* تصغير ارتفاع الصورة */
  }

  .service-info {
      color: black;
    padding: 10px;
    min-height: 100px;
  }
}  
.navbar-expand-md .navbar-nav {

        padding-left: 200px !important;
    }
