* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #111;
    color: #eee;
  }
  header {
    background: rgba(0,0,0,0.8);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 999;
  }
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ffe0;
  }
  .logo1 {
    margin-left: auto;
  }
  nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
  }
  nav a:hover {
    color: #00ffe0;
  }
  .slideshow-container {
    position: relative;
    max-width: 100%;
    height: 90vh;
    overflow: hidden;
  }
  .slides {
    display: none;
    width: 100%;
    height: 100%;
  }
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
  }
  h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #00ffe0;
  }
  .content-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .gallery img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }
  form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
  }
  form button {
    background: #00ffe0;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #aaa;
    margin-top: 50px;
  }/* Add this inside your existing CSS file */

.gallery img, .slides img {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery img:hover, .slides img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 0 0 20px #00ffe0, 0 0 30px #00ffe0;
  }
  
  /* Additional Styling for the Question Page */
#questions {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .question {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
  }
  
  .question label {
    font-size: 24px;
    color: #00ffe0;
    margin-bottom: 20px;
  }
  
  .choices {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  
  .choice {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .choice img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }
  
  .choice:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 0 0 20px #00ffe0, 0 0 30px #00ffe0;
  }
  .content-box p {
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: default;
  }
  
  .content-box p:hover {
    background-color: #043838; /* light teal */
    transform: scale(1.02);
  }
  footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
    color: #0ef;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #0ef;
  }
  
  .social-links a {
    font-size: 20px;
    margin-right: 10px;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #0ef;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 10px;
      text-align: center;
    }
  
    nav {
      margin-top: 10px;
    }
  
    nav a {
      display: block;
      margin: 10px 0;
    }
  
    .gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery img {
      width: 90%;
      height: auto;
    }
  
    .choices {
      flex-direction: column;
      gap: 20px;
    }
  
    .choice img {
      width: 90%;
      height: auto;
    }
  
    section {
      padding: 40px 10px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      margin: 20px 0;
    }
  
    .slideshow-container {
      height: 50vh;
    }
  }
/* Base styles for hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 1000;
}

/* Mobile nav menu (hidden by default) */
#nav-links {
  display: none;
  flex-direction: column;
  background-color: #030303;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 999;
}

#nav-links.show {
  display: flex;
}

/* Hide main nav in mobile view */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #nav-links a {
    padding: 10px;
    text-decoration: none;
    color: #00ffe0;
    border-bottom: 1px solid #00ffe0;
  }
}
