body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #444;
  line-height: 1.6;
}

.video-banner-container {
  position: relative;
  width: 100%;
  height: 80vh; /* Default for larger screens */
  overflow: hidden;
}

.video-banner-container video {
  width: 100%;
  height: 100%; /* Ensures full coverage */
  object-fit: cover; /* Prevents cropping */
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .video-banner-container {
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio (9 / 16 * 100) */
  }

  .video-banner-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full visibility */
  }

  /* Removing extra margins and gaps */
  body,
  html {
    margin: 0;
    padding: 0;
  }
}

/* Banner overlay styling */
.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Fully center */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}

.rounded-circle {
  height: 100px !important;
  width: 100px !important;
}
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-section {
  padding-left: 20px;
}

.text-section h2 {
  font-weight: bold;
  color: #222;
  font-size: 2rem;
}

.text-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.text-section .subheading {
  color: #28a745; /* Bootstrap's 'success' green color */
  font-weight: bold;
  margin-bottom: 0.5rem;
  padding: 20px;
}
