/* CSS for the Vision Mission Section */
.vision-mission-section {
  background-color: #f8f9fa; /* Update with your preferred background color */
  padding: 80px 0;
}

.section-content {
  padding: 0 30px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333; /* Update with your preferred text color */
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: #666; /* Update with your preferred text color */
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: Add border-radius for image */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add box-shadow for image */
}

/* Floating Register Button Styles */
.floating-register-btn {
  position: fixed;
  right: -33px;
  top: 50%;
  z-index: 9999;
  transform: rotateZ(270deg);
  /* animation: floatAnimation 2s infinite alternate;  */
}

@keyframes floatAnimation {
  0% {
    transform: translateY(-5px); /* Move up slightly */
  }
  100% {
    transform: translateY(5px); /* Move down slightly */
  }
}

.floating-register-btn a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff7029; /* Change the background color as desired */
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.floating-register-btn a:hover {
  background-color: #000000; /* Change the background color on hover */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-carousel {
  overflow: visible;
}

.testimonial-carousel .slide img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  float: right; /* Start from the right side */
}

.slide {
  animation: slideLeft 10s linear infinite; /* Adjust duration as needed */
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%); /* Start position */
  }
  100% {
    transform: translateX(-100%); /* End position */
  }
}
