html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

.services {
    background-image: url('/images/WhoWeAre/background.jpg');
    background-size: 100% 103%;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.card-body {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.title {
    color: #FFFFFF;
}





@media (max-width: 1024px) {
  .services .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; 
  }
  .services .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px 20px; 
  }

  .services .card {
    height: auto !important;
  }

  .services .card-img-top {
    height: 200px !important;
  }
}


@media (max-width: 768px) {
  .services .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
  }
  .services .card-img-top {
    height: 150px !important;
  }

  .services .title {
    font-size: 1.5rem;
  }
}
