.services-preview {
    padding: 80px 0;
    background-color: #fff;
    direction: rtl;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.services-preview h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #009688;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #009688;
}
  .service-icon {
      text-align: center;
      margin-bottom: 20px;
  }

  .service-icon i {
      font-size: 32px;
      color: #009688;
      background-color: transparent;
      border: 2px solid #009688;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      transition: all 0.3s ease;
  }

  .service-card:hover .service-icon i {
      background-color: rgba(0, 150, 136, 0.1);
      transform: scale(1.05);
  }
.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

.services-cta .btn {
    display: inline-block;
    background-color: #009688;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 150, 136, 0.3);
}

.services-cta .btn:hover {
    background-color: #00796b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 150, 136, 0.4);
}
