body,
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


/* Bootstrap 'sm' breakpoint (576px and up) */
@media (min-width: 768px) {
  .footer-copyright { 
    text-align: left; 
  }
  .footer-contact { 
    text-align: right; /* Note: 'right' is standard CSS; 'end' requires logical properties */
  }
}

.navbar .navbar-toggle::after { content: ""  }
.navbar-collapse  { text-align: center;}


.video-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Prevents the video from exceeding its parent's width */
  aspect-ratio: 16 / 9; /* Automatically calculates height based on width */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Fallback for older browsers that do not support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .video-container {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
  }
}
