.container-fluid2{
    padding: 1% 5% 1%;
    font-family: 'Lato', sans-serif;
    text-align: justify;
  }
.container-fluid2 .slow-motion-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
/* Trigger the animation when the text element is in the viewport */
.container-fluid2 .slow-motion-text.animate {
  opacity: 1;
  transform: translateY(0);
}

  h2{
    color:#00478d;
    font-weight: bold;
    font-size: 2.5rem;
  }

.container-fluid1{
    padding: 1% 10% 10%;
    font-family: 'Lato', sans-serif;
  }
h1{
  font-weight: bold;
  color:#00478d;
  font-size: 60px;
  text-align: center;
}
p,ul{
  font-weight: 400;
    font-size: 1.2rem;
  padding-top: 10px;
}
a{
  color:black;
}
.animated-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.animated-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.image-box {
  width: 100%;
  /* max-width: 400px; /* Adjust the maximum width as needed */
  margin: 0 auto;
  background-color: #fff;
  /* Add a background color to the box */
  padding: 20px;
  /* Add some padding for spacing */
  border: 1px solid #ddd;
  /* Add a border for visual separation */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  /* Add a shadow effect */
  /* Center the image */
  border-radius: 20px;
  /* Adjust the radius to control the curvature */
  overflow: hidden;
  margin-top: 30px;

}
.image-box img {
  max-width: 100%;
  height: auto;
}
