:root {
   
    --secondary-color: #202820;
    --white: #fff;
  }
  
  /* Hero Slider Styles */
  .hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: var(--secondary-color);
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
  }
  
  .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
  }
  
  .slide h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .service-categories {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }
  
  .service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .service-grid a {
    flex: 0 0 calc(33.333% - 20px);
    text-decoration: none;
    color: inherit;
  }
  
  .service-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: visible;
  }
  
  .service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .icon-circle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1976d2;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  h5 {
    margin-top: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
  }
  
  .line {
    width: 40px;
    height: 3px;
    background: #f1c40f;
    margin: 10px auto;
  }
  
  .service-grid p {
    font-size: 14px;
    color: #666;
    padding: 0 20px 30px;
  }


  
  
  @media (max-width: 768px) {
  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .body {
    min-width: 320px;
    overflow-x: auto;
  }
}
