body {
  margin: 0;
  background: #020b23; /* deep navy */
  color: white;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10, 20, 40, 0.6);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 1.6em;
  color: #ffd700; /* gold */
  text-shadow: 0 0 12px rgba(255, 200, 0, 0.6);
}

/* Logo Alignment */
.logo {
  display: flex;
  align-items: center; /* Centers vertically */
  gap: 10px; /* Space between image and text */
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #9bb5ff;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #061131, #020820);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.hero h1 {
  font-size: 3em;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 200, 0, 0.5);
  animation: fadeInDown 0.9s ease;
}

/* CARD STYLING */
.card {
  background: rgba(15, 25, 50, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.18);
  margin: 30px;
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 0, 80, 0.25);
  animation: fadeInUp 0.8s ease;
}

/* TWO-COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
}

/* WHAT WE DO */
.feature-grid {
  display: grid;
  padding: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature {
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
  border-color: rgba(255, 215, 0, 0.4);
}

/* LEADERSHIP */
.leaders {
  text-align: center;
  padding: 40px 20px;
}

.leader-grid {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.leader img {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
}

/* PARALLAX */
.parallax {
  height: 300px;
  background-image: url("Tglw pics/Logos.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.parallax-content {
  text-align: center;
  background: rgba(5, 10, 30, 0.55);
  padding: 25px 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(8px);
}

.parallax-content h2 {
  color: #ffd700;
  font-size: 2.2em;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* FADE EFFECT FOR SCROLL */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease-out;
}

/* STAFF CARDS */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  padding: 20px;
}

.leader-card {
  background: rgba(15, 25, 50, 0.5);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: 0.35s ease;
  box-shadow: 0 0 15px rgba(0, 0, 40, 0.25);
}

.leader-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
  transition: 0.35s ease;
}

/* Hover animation */
.leader-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.leader-card:hover img {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  opacity: 0.8;
  color: #9bb5ff;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
