* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #F5F5F5 !important;
  }
/*====================================================*/
  
  /*========================================*/
  
 .video-container {
    position: relative; /* Ensure positioning context for the overlay */
    width: 100%;
    height: 100vh; /* Full screen, adjust as needed */
    z-index: -10;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}

  
.background-video {
    width: 100%;
    height: 100%;
    z-index: -10;
    object-fit: cover; /* Ensure the video covers the container */
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity for the overlay */
  }

  
  /* Content */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 24px;
  }
  
  .content h1 {
    font-size: 18px;
    font-weight: bold;
    
  }
  .border1{
    width: 10%; /* Adjust width to control size */
  margin: 40px auto; /* Centers the border */
  border-bottom: 2px solid #eee; /* The smaller border */
  }
  .content h2 {
    font-size: 42px;
    margin-top: 10px;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: transparent;
   border: 1px solid #AB000B ;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
  }
  
  .cta-button:hover {
    background-color: #1A1D56;
  }
  
  /* Footer */
  .iconss {
    position: relative;
    top: -50px;
    z-index: -5;
    display: flex;
    justify-content: center;
    background-color: #f2f2f2a2;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  
  .footer-icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
  
  }
  
  .icon {
    text-align: center;
    flex: 1;
  }
  
  .icon img {
    max-width: 50px;
    margin-bottom: 10px;
  }
  
  .icon p {
    font-size: 16px;
    font-weight: 700;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content h1 {
      font-size: 36px;
    }
  
    .content h2 {
      font-size: 24px;
    }
  
    .cta-button {
      font-size: 16px;
      padding: 10px 25px;
    }
  
    .footer-icons {
      flex-direction: column;
      align-items: center;
    }
  
    .icon {
      margin-bottom: 10px;
    }
  }
  
  .headings{
    font-size: 34px;
    font-weight: 700;
  }
  .border2{
    width: 10% !important; /* Adjust width to control size */
    margin: 40px auto; /* Centers the border */
    border-bottom: 2px solid black; /* The smaller border */
  }
  .headings1{
    font-size: 21px;
    font-weight: 700;
  }
  .para{
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
  }
  .button2{
    background-color: #1A1D56;
     color: white;
     text-decoration: none;
     display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    text-decoration: none;
    font-size: 18px;
  }
/* Parallax Background Section */
.quality-section {
    background: url('../media/kitchen-ventillation-company.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 80vh;
    position: relative;
    color: #fff;
  }
  
  /* Dark Overlay for Better Readability */
  .quality-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
  
  /* Text Container */
  .quality-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* Button Customization */
  .learn-more-btn {
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background: #fff;
    color: #000;
  }
  .border3{
    width: 15% !important; /* Adjust width to control size */
    margin: 10px 0; /* Centers the border */
    border-bottom: 2px solid red; /* The smaller border */
  }
  .lead{
    font-size: 16px !important;
    font-weight: 400;
    line-height: 27px;
    font-family: "Noto Sans", sans-serif;
  }
  .headings2{
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
}
/* Testimonial Section */
.testimonial-section {
    background-color: #F5F5F5;
    color: #333;
  }
  
  .quote-icon {
    font-size: 4rem;
    color: #ddd;
    font-weight: bold;
  }
  
  /* Payment Section */
  .payments-section {
    background-color: #E2E2E2;
  }
  
  .payment-icons img {
    height: auto; /* Adjust icon size */
    transition: transform 0.3s ease;
  }
  
  .payment-icons img:hover {
    transform: scale(1.1);
  }
  .bw-image{
    filter: grayscale(80%);
    transition: filter 0.5s ease;
  }
  footer{
    background-color: #191919;
    padding: 30px;
  }

  /* Section Styling */
.services-section {
    background-color: #f9f9f9; /* Light gray background */
    color: #333;
  }
  
  /* Icon Styling */
  .icon-circle {
    border-radius: 50%; /* Makes the div circular */
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .icon3{
    font-size: 56px;
    color: #1A1D56;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 1.2rem;
  }
  