/* Services Page Specific Styles */

.services-banner {
    background-image: url("../images/service.jpg");
    background-size: cover;
    background-position: center;
    height: 250px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .services-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .services-banner h2 {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 10px;
    z-index: 1;
  }
  
  .services-banner p {
    position: relative;
    font-size: 1.2rem;
    z-index: 1;
  }
  
  /* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px; /* Decreased padding for less space */
    background-color: #f9f9f9;
}
  
  .service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    color: #352c87;
    margin: 15px 0;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
    padding: 0 15px 20px;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-banner {
      height: 200px;
    }
  
    .services-banner h2 {
      font-size: 2rem;
    }
  
    .services-container {
      padding: 20px;
    }
  
    .service-item img {
      height: 150px;
    }
  
    .service-item h3 {
      font-size: 1.25rem;
    }
  
    .service-item p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .services-banner {
      height: 150px;
    }
  
    .services-banner h2 {
      font-size: 1.5rem;
    }
  
    .services-banner p {
      font-size: 1rem;
    }
  }
  
  .social-icon {
    height: 24px;
    width: 24px;
  }