/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    background: #0a0a0a; /* Dark background */
  }
  
  /* Video Background */
  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  
  .video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
  }
  
  /* Sidebar Styles */
  .sidebar {
    position: fixed;
    top: 0;
    left: -300px; /* Hide sidebar by default */
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.active {
    left: 0; /* Show sidebar */
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #8a2be2;
  }
  
  .sidebar-header h3 {
    margin: 0;
    color: #ffffff;
  }
  
  .close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
  }
  
  .sidebar-menu {
    list-style: none;
    padding: 20px;
  }
  
  .sidebar-menu li {
    margin-bottom: 15px;
  }
  
  .sidebar-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
  }
  
  /* Page Sinking Effect */
  .about-content.sink {
    margin-left: 300px; /* Push content to the right when sidebar opens */
    transition: margin-left 0.3s ease;
  }
  
  /* About Page Content */
  .about-content {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #8a2be2;
    box-shadow: 0 0 10px 2px rgba(138, 43, 226, 0.5),
                0 0 20px 5px rgba(138, 43, 226, 0.3),
                0 0 30px 10px rgba(138, 43, 226, 0.1);
    margin-top: 50px;
    transition: margin-left 0.3s ease;
  }
  
  /* Team Members Section */
  .team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin-top: 20px;
  }
  
  .team-member {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #8a2be2;
    box-shadow: 0 0 10px 2px rgba(138, 43, 226, 0.5),
                0 0 20px 5px rgba(138, 43, 226, 0.3),
                0 0 30px 10px rgba(138, 43, 226, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px 5px rgba(138, 43, 226, 0.7),
                0 0 30px 10px rgba(138, 43, 226, 0.5),
                0 0 45px 15px rgba(138, 43, 226, 0.3);
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #8a2be2;
  }
  
  .team-member h3 {
    font-size: 22px;
    color: #8a2be2;
    margin-bottom: 10px;
  }
  
  .team-member p {
    font-size: 16px;
    color: #cccccc;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .about-content {
      padding: 20px;
    }
  
    .team-members {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust for smaller screens */
    }
  
    .about-content.sink {
      margin-left: 0; /* Disable push effect on smaller screens */
    }
  }