img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

body, html {
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    margin-top: 0 !important; /* Ensures there's no top margin on the navbar */
  }

/* Sticky Footer */
html, body {
    height: 100%;
    margin: 0;
    }
body {
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
    z-index: 1; /* Content stays above video */
}
footer {
    margin-top: auto;
    background-color: #000; /* Changed to black */
    padding: 1rem 0;
    z-index: 1; /* Footer stays above video */
}
        /* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Video stays behind content */
    opacity: 0.6; /* Slight transparency for better text readability */
}
/* Overlay for better readability */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent dark overlay */
    z-index: 0; /* Sits above video but below content */
}
        /* Custom Navbar */
.navbar-custom {
    background-color: #000; /* Changed to black */
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #007bff;
}

footer p.lead {
    font-weight: 500;
    color: #333333;
}

/* Background Video */
.background-video {
    position: fixed; /* Fixes the video in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Stays behind all other elements */
    opacity: 0.6; /* Adjusts transparency */
}
