/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background: none;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Dark Blue Background Overlay */
  .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 50, 0.6); /* Dark blue overlay with transparency */
    z-index: -1;
  }
  
  /* Background Video */
  #background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    opacity: 0.5; /* Lower opacity for subtle effect */
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1, h2 {
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Section Styling */
  .section {
    margin-bottom: 40px;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: transform 0.3s;
  }
  
  li:hover {
    transform: translateX(10px);
  }
  
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive layout */
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.1);
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
  }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  