* {
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;

}

@media screen and (max-width: 48rem) {
  .hero-section {
      height: 600px;
  }
}

@media screen and (max-width: 26.5rem) {
  .hero-section {
      height: 400px;
  }
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
}

.hero-page_heading {
  margin-top: 40%;
  color: white; /* Added color white for better visibility */
}

.hero-button {
  background-color: #30a349;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  border: none; /* Removed border to match your style */
  text-decoration: none;
  display: inline-block;
  margin-top: 10%;
}

.hero-button:hover {
  background-color: white;
  color: #30a349;
  border:solid 2px #30a349;
}


.learn-more {
  background-color: #f5f5f5;
}

.learn-more_paragraph {
  font-size: 20px;
  text-align: justify;
}


@media screen and (max-width: 48rem) {
  .learn-more_image {
    height: 300px;
  }
}


.icon-text {
  text-align: justify;
}


.vision {
  cursor: pointer;
 
}


.vision:hover {
  cursor: pointer;
  background-color: #30a3492d;
  border-radius: 100px 0 100px 0;

} 

.benefits {
  background-color: #f5f5f5;
}

.benefits-img1 {
  background: url(Images/Benefits001.jpg);
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}
.benefits-img1:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}

.benefits-img2 {
  background: url(Images/Benefits002.jpg);
  background-size: cover;
  background-origin: border-box; 
  background-repeat: no-repeat;
  background-position:right;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img2:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-img3 {
  background: url(Images/Benefits003.jpg);
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img3:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-img4 {
  background: url(Images/Benefits004.jpg);
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img4:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-img5 {
  background: url(Images/Benefits005.jpg);
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img5:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-img6 {
  background: url(Images/Benefits006.jpg);
  background-size: cover;
  background-position:right;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img6:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-img7 {
  background: url(Images/Benefits007.jpg);
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; /* Apply transition to smooth the zoom effect */
}

.benefits-img7:hover {
  transform: scale(1.1); /* Scale the image up by 10% on hover */
}


.benefits-paragraph {
  position: absolute;
  bottom: 0;
  color: white;
  background: #30a349af;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
}

