* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body, html { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth; 
  line-height: 1.6;
  background:  #0a0a0a; /* your site background */
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* ================= MAIN CONTAINER ================= */
.main-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2vw; 
  background: rgba(10, 10, 10, .35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 700;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: clamp(60px, 10vh, 100px);
}

@media (max-width: 768px) {
  header {
    padding: 0.75em 6vw;
    font-size: 1.1rem;
    height: 60px;
  }
}

header.scrolled {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo-btn img {
  max-width: 195px;
  height: auto;
  display: block;
}

.logo-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.logo-btn img {
  display: block;
  width: 55%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Make parent <li> relative for absolute dropdown positioning */
.nav-links li {
  position: relative;
}



/* Dropdown menu styling */
.teams-dropdown {
  position: absolute;
  top: 100%;                /* start just below the header */
  left: 0;
  min-width: 100px;          /* width of dropdown */
  margin-top: 15px;           /* small gap for visual separation */
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.6) 100%
  );                          /* subtle gradient for depth */
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 0 12px 12px; /* rounded bottom corners */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  list-style: none;
  padding: 10px 0;
  
  opacity: 0;                 /* hidden initially */
  transform: translateY(-100px); /* start slightly above */
  pointer-events: none;       /* disable interactions when hidden */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -2;
}

/* Dropdown items */
.teams-dropdown li {
  padding: 0;
}

.teams-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.teams-dropdown a:hover {
  background: rgba(0, 212, 255, 0.15);
  color: #fff;
}

.nav-links li:hover > .teams-dropdown,
.nav-links li > .teams-dropdown:hover {
  opacity: 1;
  transform: translateY(-10px) translateX(-25px);
  pointer-events: auto;
}

/* ================= HERO SECTION ================= */
.hero-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 212, 255, 0.1) 0%, 
    rgba(0, 153, 204, 0.15) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 30px;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.8rem, 3vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 1.2s ease 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 1.2s ease 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 1.2s ease 1.1s forwards;
}

.cta-button {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #00e6ff, #00b3d9);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section.visible, .fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-line {
  width: 250px;
  height: 5px;
  background: #00d4ff;
  border-radius: 2px;
  margin: 10px auto;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ================= TEAM STATS ================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  width: 100%;
}

.stat-card {
  background: rgba(20, 20, 20, 0.546);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 50px 20px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat-text {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 1);
    margin-top: 20px;
    text-align: center;
}

/* ================= MISSION SECTION ================= */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.mission-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
}

.mission-visual,
.highlight-card {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-visual img,
.highlight-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-visual:hover,
.highlight-card:hover {
  transform: rotateX(3deg) rotateY(3deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* ================= OFFICERS SECTION ================= */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 250px;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 380px;
  margin: -190px 0 0 -300px;
  border-radius: 20px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.6s;
  opacity: 0;
}

/* content layout */
.card-content {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  gap: 15px;
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.officer-name {
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.officer-role {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  opacity: 0.8;
  font-weight: 500;
  color: rgba(58, 187, 243, 0.8);
}

.officer-bio {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* right side image */
/* right side image */
.card-image {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;       /* round the corners */
  overflow: hidden;          /* clip anything outside the radius */
  box-shadow: -10px 12px 24px rgba(0,0,0,0.3);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateY(-20px) rotateY(-8deg) rotateX(4deg);
}


/* glass gloss effect */
.carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.0) 60%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

/* positions */
.carousel-card.center {
  transform: translateX(0) scale(1.1);
  opacity: 1;
  z-index: 3;
}
.carousel-card.left {
  transform: translateX(-400px) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}
.carousel-card.right {
  transform: translateX(400px) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

/* arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn.prev { left: 50px; }
.carousel-btn.next { right: 50px; }

/* ================= TEAMS SECTION ================= */
.teams-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.teams-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.team-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.team-btn-vex {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.team-btn-vex img {
  display: block;
  width: 350px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-btn-vex:hover img {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.team-btn-adc {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.team-btn-adc img {
  display: block;
  width: 300px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-btn-adc:hover img {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.team-btn-media {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.team-btn-media img {
  display: block;
  width: 300px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-btn-media:hover img {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* ================= SKILLS SECTION ================= */
.skills-section{
  margin-top: 0;
}

.skills-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.skills-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.skills-image:hover {
  transform: rotateX(3deg) rotateY(3deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.skills-image:hover img {
  transform: scale(1.05);
}

.skills-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.skills-list {
  list-style: none;
}

.skills-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 40px;
  transition: all 0.3s ease;
}

.skills-list li::before {
  content: '▶';
  color: #00d4ff;
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 0.8rem;
}

.skills-list li:hover {
  color: #ffffff;
  padding-left: 50px;
}

.skills-list li:hover::before {
  color: #00e6ff;
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  padding: 100px 60px;
  margin-top: 40px;
}

.footer-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.contact-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #00e6ff, #00b3d9);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

/* ================= SOCIAL ICONS ================= */
.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 50px 0 30px 0;
}

.footer-socials h4 {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-socials .social-icons {
  display: flex;
  gap: 35px;
}

.footer-socials .social-icons a img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}

.footer-socials .social-icons a img:hover {
  transform: scale(1.2);
}

/* ================= LEGAL ================= */
footer {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers children horizontally */
}
.footer-legal {
  margin-top: 20px;
  text-align: center;
}

.footer-legal p {
  margin: 5px 0;
}

.footer-legal a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #0099cc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  footer {
    padding: 60px 30px;
  }
  .footer-socials .social-icons {
    gap: 25px;
  }
  .footer-socials .social-icons a img {
    width: 45px;
    height: 45px;
  }
  .contact-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}



/* ================= MOBILE-FIRST RESPONSIVE FIXES ================= */
@media (max-width: 768px) {
  .main-container {
    overflow-x: hidden;
  }

  header {
    padding: 10px 20px;
    flex-direction: row; /* Keep horizontal on mobile */
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Fixed height */
    min-height: 70px;
  }
  
  .logo-btn img {
    width: 60%;
    max-width: 150px;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.8rem;
    flex-wrap: nowrap; /* Don't wrap */
    justify-content: flex-end;
  }

  /* Hero Section Mobile */
  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    width: 80%;
    max-width: 280px;
    text-align: center;
  }

  /* Sections Mobile */
  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  /* Stats Grid Mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-text {
    font-size: 1.4rem;
    margin-top: 15px;
  }

  /* Mission, Skills Content Mobile */
  .mission-content,
  .skills-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-text h3,
  .skills-text h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .mission-text p {
    font-size: 1.1rem;
    text-align: center;
  }

  /* Officers Carousel Mobile */
  .carousel-container {
    height: 280px; /* Much smaller */
    max-width: 100%;
    padding: 0 15px;
    margin: 20px auto;
  }

  .carousel-card {
    width: 90%; /* Smaller width */
    max-width: 320px; /* Much smaller max width */
    height: 220px; /* Much smaller height */
    margin: -110px 0 0 -45%; /* Adjusted centering */
  }

  .carousel-card.center {
    transform: translateX(0) scale(0.95); /* Smaller scale */
  }

  .carousel-card.left {
    transform: translateX(-100%) scale(0.75); /* Much smaller side cards */
    opacity: 0.3;
  }

  .carousel-card.right {
    transform: translateX(100%) scale(0.75); /* Much smaller side cards */
    opacity: 0.3;
  }

  .card-content {
    flex-direction: row; /* Keep horizontal layout */
    padding: 15px;
    gap: 10px;
  }

  .card-image {
    flex: 0 0 80px; /* Smaller image area */
    order: 2; /* Put image on right */
  }

  .card-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: none;
  }

  .card-text {
    flex: 1;
    order: 1; /* Text on left */
  }

  .officer-name {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 4px;
  }

  .officer-role {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 6px;
  }

  .officer-bio {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.3;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .carousel-btn.prev { 
    left: 10px; 
  }
  
  .carousel-btn.next { 
    right: 10px; 
  }

  /* Teams Section Mobile */
  .teams-content {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* Center the content */
  }

  .teams-text {
    width: 100%;
    max-width: 400px; /* Limit width for better centering */
  }

  .team-btn-container {
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Ensure buttons are centered */
    width: 100%;
  }

  .team-btn-vex,
  .team-btn-adc,
  .team-btn-media {
    display: flex;
    justify-content: center; /* Center each button */
    width: 100%;
  }

  .team-btn-vex img,
  .team-btn-adc img,
  .team-btn-media img {
    width: 220px;
    max-width: 80vw;
    display: block;
    margin: 0 auto; /* Extra centering */
  }

  /* Skills Section Mobile */
  .skills-image {
    height: 300px;
  }

  .skills-list li {
    font-size: 1rem;
    padding: 15px 0;
    padding-left: 30px;
  }

  .skills-list li::before {
    top: 15px;
  }

  /* Footer Mobile */
  footer {
    padding: 60px 20px;
  }

  .footer-content h3 {
    font-size: 2rem;
  }

  .footer-content p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .contact-button {
    padding: 15px 30px;
    font-size: 1rem;
    width: 80%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  header {
    padding: 8px 15px;
    height: 60px;
  }

  .logo-btn img {
    width: 50%;
    max-width: 120px;
  }

  .nav-links {
    gap: 8px;
    font-size: 0.7rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .carousel-container {
    padding: 0 10px;
    height: 250px; /* Even smaller */
  }

  .carousel-card {
    width: 95%;
    max-width: 280px; /* Smaller */
    height: 190px; /* Smaller */
    margin: -95px 0 0 -47.5%;
  }

  .card-content {
    padding: 12px;
  }

  .officer-name {
    font-size: 1.1rem;
  }

  .officer-role {
    font-size: 0.9rem;
  }

  .officer-bio {
    font-size: 0.7rem;
  }

  .team-btn-vex img,
  .team-btn-adc img,
  .team-btn-media img {
    width: 180px;
    max-width: 90vw;
  }
}