.banner-ac {
         background-image: url(../img/cooler-5.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;

}

.banner-ac-text {
  padding-top: 142px;

}

.banner-ac-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.highlight {
  color: #007bff;
  font-weight: bold;
}

.content {
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-in-out;
}

.content.show,
.image-container img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.title-text {
  color: #1c1c1c;
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-top: 0px;
}

.title-text1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #949494;
  line-height: 26px;
  font-weight: 400;
}

.cooler-air-text {
  list-style: none;
  line-height: 30px;
  color: #949494;
  font-size: 16px;
}

. service-img1 img{
    width:100px;
    height:100px;
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;

}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  section {
    padding: 15px;
  }
}



@media (max-width: 425px) {
    .banner-ac {
        background-image: url(../img/cooler-5.jpg);
        background-repeat: no-repeat;
        width: 100%;
        background-position: right;
        background-size: cover;
        height: 300px;
    }
}

@media (max-width: 375px) {
    .banner-ac {
        background-image: url(../img/cooler-5.jpg);
        background-repeat: no-repeat;
        width: 100%;
        background-position: right;
        background-size: cover;
        height: 300px;
    }
}


