/* Overview Section */
.overview-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
  }
  
  .overview-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
  }
  
  .overview-section .intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* Image Slider */
  .overview-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .slider-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slider-images img {
    width: 100%;
    height: auto; 
    object-fit: cover; 
  }
  
/* Responsive Design */
@media (max-width: 768px) {
  .overview-section h1 {
    font-size: 2rem;
  }

  .overview-section .intro {
    font-size: 1rem;
  }

  .overview-slider {
    max-width: 100%;
    height: auto; 
  }

  .slider-images img {
    height: auto; 
  }
}
   
  /* service listings section */
.service-listings-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .section-title-services {
    font-size: 2.5rem;
    color: #333;;
    margin-bottom: 40px;
    font-weight: bold;
  }

  /* Services Container */
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Individual Service Card */
  .service-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  /* Service Image */
  .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);

    .service-title{
      color: #ed1b24;
      transition: transform 0.3s;
    }
  }
  
  .service-card:hover .service-image {
    transform: scale(1.1);
    
  }
  
  /* Service Content */
  .service-content {
    padding: 20px;
    text-align: left;
  }
  
  .service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .service-card {
      margin: 0 auto;
    }
  }


  /* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .section-title-why {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .reasons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .reason-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .icon-container {
    font-size: 3rem;
    color: #ed1b24;
    margin-bottom: 15px;
    position: relative;
  }
  
  .animated-icon {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .reason-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .reason-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .reasons-container {
      flex-direction: column;
      align-items: center;
    }
  
    .reason-card {
      width: 90%;
    }
  }
  
  