/* === الخدمات - كروت الخدمات === */

.page-banner {
    background: linear-gradient(to right, #1e1e2f, #3a3a5f);
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
  }
  
  .page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  /* كروت الخدمات */
  .service-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-image {
    height: 220px;
    overflow: hidden;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .img-hover:hover {
    transform: scale(1.07);
  }
  
  .card-body {
    padding: 20px;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  
  .card-title {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    transition: color 0.3s;
  }
  
  .service-box:hover .card-title {
    color: #c0392b; /* لون أحمر عصري */
  }
  