.hero-section {
  position: relative; /* Needed for overlay positioning */
  background-image: url('../../images/Srvice1/service1.avif');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 8rem;
  padding-bottom: 8rem;
  min-height: 600px;
  display: flex;
  align-items: center;
 
  overflow: hidden;
}

/* 🔽 Overlay to darken background */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 50% black */
  z-index: 1;
}

/* 🔽 Make sure content appears above overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
}



        
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
           
            margin-bottom: 2rem;
            
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
          
        }
        .image-section img {
            width: 100%;
            height: auto;
            
           
            margin-bottom: 1.5rem; /* Space between images and below last image */
        }
        .section-title {
            font-size: 2rem;
            font-weight: bold;
            color: #343a40;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .card {
            border: none;
           
         
            overflow: hidden; /* Ensures rounded corners apply to content */
        }
        .card-header {
            background-color: #007bff;
            color: white;
            font-weight: bold;
            padding: 1rem 1.5rem;
            border-bottom: none;
           
        }
        .card-body {
            padding: 1.5rem;
        }