:root {
  --darkblue: #000c26;
  --yellowgreen: rgb(255, 166, 0);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

@media screen and (max-width: 800px) {
.logo .hidelogo {
    display: none;
  }
}


.container{
 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.hero {
  /* existing styles */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh;
  padding: 2rem;
  animation: fadeIn 1.2s ease-in;
}


body {
  background-position-x: center;
  background-size: cover;
  background-attachment: fixed;
  background-image: url('./images/bgnd.png');
  color: var(--yellowgreen);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--darkblue);
  background: linear-gradient(to bottom, rgb(0, 0, 41), #000000);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .logo::after{
background-color: #00000000;
}
nav h1 {
  font-size: 1.75rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--yellowgreen);
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}


nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--yellowgreen);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease-in-out;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90vh;
  padding: 2rem;
  animation: fadeIn 1.2s ease-in;
}

.hero h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideDown 1s ease-out;
}

.hero p {
  color: #ffffff8c;
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.5;
  animation: slideUp 1s ease-out 0.5s;
  animation-fill-mode: both;
}

.hero .buttons {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.hero button {
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 8px;
  background-color: var(--yellowgreen);
  color: var(--darkblue);
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
  background-color: var(--white);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.learn-more {
  background: linear-gradient(to right, #01174b, #000000);
  padding: 4rem 2rem;
  background-color: var(--darkblue);
  color: var(--yellowgreen);
  text-align: center;
  animation: fadeIn 1s ease-in;
}

.learn-more h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.8s ease-out;
}

.learn-more p {
  color: aliceblue;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 1rem auto;
  animation: slideUp 0.8s ease-out;
  animation-fill-mode: both;
}



header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #646464;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}



header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: rgb(255, 153, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}

.team-section {
  margin-bottom: 30px;
}

.team-section h2 {
  font-size: 1.8rem;
  color: #ffffff;

  padding-bottom: 5px;
  margin-bottom: 10px;
}

.member-list {
  list-style-type: none;
  padding-left: 20px;
}

.member-list li {
  padding: 8px 0;

}

footer {
  text-align: center;
  margin-top: 30px;
  color: #777;
  font-size: 0.9rem;
}
.member-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(3, 0, 25, 0.642);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
  margin: 10px autp;
}

.member-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.member-details {
  flex: 1;
  padding-right: 20px;
}

.member-name {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.member-role {
  font-size: 1rem;
  color: orange;
  
  font-weight: bold;
}


.member-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 247, 0, 0.784);
}

.card-container {
  display: contents;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.lmb{
  background: linear-gradient(to right, #01174b, #000000);
  transition: color 0.3s;
}



.contact-container {
  max-width: 600px;
  margin: 50px auto;
  background: #000006cb;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgb(0, 0, 0);
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-container .tagline {
  text-align: center;
  font-size: 1rem;
  color: #a8a8a8;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  background-color: #ffffff;
  width: 100%;
  padding: 12px;
  border: 1px solid #8e8e8e;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}
button {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--yellowgreen);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: rgb(102, 66, 0);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    margin: 20px;
    padding: 20px;
  }
}



.vip-container {
  background: #0000005c;
  border-radius: 15px;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 8px 16px rgba(0, 179, 255, 0.1);
  text-align: center;
}

.vip-container h2 {
  margin-bottom: 2rem;
  color: var(--yellowgreen);
  font-size: 2rem;
}

.vip-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.vip-card {
  background: #00000091;
  padding: 1rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-5px);
}

.vip-card img {
  width: 80%;
  height: 150px;
  object-fit: cover;
  border-color: 2px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.vip-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.vip-card p {
  font-size: 0.9rem;
  color: #858585;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #222;
  padding: 1rem 2rem;
  color: #fff;
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--yellowgreen);
  text-decoration: none;
  font-size: 1rem;
}
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 5px;
    background: #000000da;
    backdrop-filter: blur(5px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 325px;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
nav .logo::after{
background-color: #00000000;
}













    .section-title {
      font-size: 2rem;
      font-weight: bold;
      margin: 40px auto 20px;
      color: #ffffffe1;
      text-align: center;
      position: relative;
    }

    .section-title::after {
      content: '';
      width: 80px;
      height: 4px;
      background-color: #ff9d00;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .achievement-section {
      max-width: 1000px;
      margin: auto;
    }

    .achievement-card {
      display: flex;
      align-items: center;
      background-color: #dcdcdc;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      overflow: hidden;
      transition: transform 0.3s ease;
      padding: 10px;
    }

    .achievement-card:hover {
      transform: scale(1.02);
    }

    /* For profile-style image and name */
    .profile-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 20px;
    }

    .profile-image {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile-name {
      margin-top: 8px;
      font-weight: 600;
      color: #2d3748;
      font-size: 1rem;
    }

    .achievement-image {
      width: 35%;
      height: 100%;
      object-fit: cover;
    }

    .achievement-content {
      padding: 10px 20px;
      width: 100%;
    }

    .achievement-title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #1a202c;
    }

    .achievement-description {
      font-size: 1rem;
      color: #4a5568;
    }

    @media (max-width: 768px) {
      .achievement-card {
        flex-direction: column;
        text-align: center;
      }

      .profile-container {
        margin: 0 0 15px 0;
      }

      .achievement-image {
        width: 100%;
        height: 200px;
      }
    }






    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .image-container {
      width: 100%;
      height: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e9ecef;
      overflow: hidden;
    }

    .image-container img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .card:hover img {
      transform: scale(1.05);
    }

    .card-description {
      padding: 15px;
      text-align: center;
      font-size: 15px;
      color: #444;
    }


























.report-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.report-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #ffb700;
}

.report-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(226, 226, 226, 0.934);
}

.report-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid #494837;
  align-items: center;
}

.report-title {
  font-size: 18px;
}

.view-link {
  font-size: 14px;
  color: #0077cc;
  text-decoration: none;
  border: 1px solid #007fd9;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.view-link:hover {
  background-color: #0077cc;
  color: white;
}









 .grid-wrapper {
      display: grid;
      gap: 1.5rem;
      max-width: 1000px;
      margin: auto;
    }

    .image-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      background:#dcdcdc;
      padding: 1rem;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .image-row img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .image-row img:hover {
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .image-row {
        grid-template-columns: 1fr;
      }
    }