/* General styling for the video section */

#business-funding-video.video-section {
  background-color: #f9fbff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Heading styling */
.video-heading {
  font-size: 32px;
  color: #1a237e;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInDown 1s ease-in-out;
}

/* Responsive video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  animation: fadeInUp 1.2s ease-in-out;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Fade animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Add margin to next section */
#conclusion {
  margin-top: 60px;
}
