
:root {
  --space-dark: #000000;  
  --accent-blue: #00BFFF; 
  --neon-blue: #00FFFF;  
  --accent-light: #FFFFFF; 
}


body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000000;
  color: var(--accent-light);
  padding-top: 70px; 
}

*, *:before, *:after {
  box-sizing: border-box;
}

h1, h2, h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}


.header {
  background-color: #000000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);}

.logo-container {
  margin-left: 50px;
}

.logo-text {
  color: var(--accent-light);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}

.navbar {
  background-color: transparent;
  overflow: hidden;
  padding: 10px 0;
  margin-right: 50px;
}

.navbar-list {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-item {
  list-style: none;
  position: relative;
}

.navbar-link {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.navbar-link:hover {
  color: var(--neon-blue);
  background-color: rgba(0, 191, 255, 0.1);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.inner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 25px;
}

.section-head-text {
  color: var(--accent-light);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subhead-text {
  color: var(--accent-blue);
  font-size: 22px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.responsive-container-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.team-card-container {
  width: 220px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
}

.team-card:hover {
  transform: translateY(-12px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.9);
}

.img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.name {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  margin: 10px 0 5px;
  transition: color 0.3s ease;
}

.team-card:hover .name {
  color: var(--accent-blue);
}

.position {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.team-card:hover .position {
  color: var(--accent-blue);
}

.social-media-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
}

.social-media-links a {
  color: var(--accent-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.social-media-links a:hover {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: scale(1.1);
}

.text-blk.name {
  text-align: center; /* Centers the text horizontally */
  display: block; /* Ensures it behaves like a block element */
  margin: 0 auto; /* Centers the block itself if needed */
}


.footer {
  text-align: center;
  padding: 10px 0;
  background-color: #000000;
  color: white;
  font-size: 0.9em;
  margin-top: 50px;
}

.outer-container::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: 
    radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 4px),
    radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
    radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
  background-size: 550px 550px, 350px 350px, 250px 250px;
  animation: stars 20s linear infinite;
  z-index: 1;
}

@keyframes stars {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.outer-container {
  background: var(--space-dark);
  position: relative;
  overflow: hidden;
} 

.footer {
  text-align: center;
  padding: 10px 0;
  background-color: #000000;
  color: white;
  font-size: 0.9em;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.section-subhead-text {
  margin: 0 auto 40px;

  color: var(--accent-blue);

  font-size: 22px;
}


.outer-container h2 {
  position: relative;
  z-index: 2;

  margin: 70px 0 35px;

  text-align: center;

  color: #fff;

  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.outer-container h2::after {
  content: "";

  display: block;

  width: 55px;
  height: 3px;

  margin: 12px auto 0;

  background: var(--accent-blue);

  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}


.responsive-container-block {
  position: relative;
  z-index: 2;

  width: 100%;

  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: stretch;

  gap: 30px;

  margin: 0 auto;
}


.team-card-container {
  width: 260px;

  flex: 0 0 260px;

  margin: 0;

  display: flex;
}

.team-card {
  width: 100%;
  min-height: 370px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 22px 20px;

  background: rgba(0, 0, 0, 0.78);

  border: 1px solid rgba(0, 191, 255, 0.35);

  border-radius: 18px;

  backdrop-filter: blur(5px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);

  border-color: var(--neon-blue);

  background: rgba(0, 0, 0, 0.92);

  box-shadow:
    0 0 10px rgba(0, 255, 255, 0.25),
    0 0 25px rgba(0, 255, 255, 0.18);
}


.img-wrapper {
  width: 175px;
  height: 175px;

  flex-shrink: 0;

  margin: 0 auto 18px;

  overflow: hidden;

  border-radius: 50%;

  border: 2px solid rgba(0, 191, 255, 0.45);

  box-shadow:
    0 0 12px rgba(0, 191, 255, 0.15);

  background: #111;
}

.team-img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.team-card:hover .team-img {
  transform: scale(1.07);
}


.name,
.text-blk.name {
  width: 100%;

  margin: 5px 0 5px;

  text-align: center;

  color: #fff;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.3;

  transition: color 0.3s ease;
}

.team-card:hover .name {
  color: var(--accent-blue);
}

.position,
.text-blk.position {
  width: 100%;

  margin: 0;

  text-align: center;

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;
}

.team-card:hover .position {
  color: var(--accent-blue);
}


.social-media-links {
  width: 100%;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 12px;

  margin-top: auto;
  padding-top: 20px;
}

.social-media-links a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  border: 1px solid rgba(0, 191, 255, 0.45);

  border-radius: 50%;

  text-decoration: none;

  transition: 0.3s ease;
}

.social-media-links a:hover {
  color: var(--neon-blue);

  border-color: var(--neon-blue);

  box-shadow:
    0 0 8px rgba(0, 255, 255, 0.5),
    0 0 15px rgba(0, 255, 255, 0.2);

  transform: translateY(-2px);
}

.social-media-links svg {
  display: block;
  max-width: 24px;
  max-height: 24px;
}

.footer {
  position: relative;
  z-index: 2;

  margin-top: 80px;

  padding: 18px 0;

  text-align: center;

  background: #000;

  color: #fff;

  font-size: 0.9em;

  border-top: 1px solid rgba(0, 191, 255, 0.2);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .header {
    padding: 0 25px;
  }

  .navbar-list {
    gap: 8px;
  }

  .navbar-link {
    padding: 8px;
    font-size: 15px;
  }

  .team-card-container {
    width: 240px;
    flex-basis: 240px;
  }

  .team-card {
    min-height: 350px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  body {
    padding-top: 65px;
  }

  .header {
    height: 65px;

    padding: 0 15px;
  }

  .logo-text {
    font-size: 19px;
  }

  .navbar {
    display: none;
  }

  .inner-container {
    padding: 0 15px;
  }

  .outer-container h2 {
    margin-top: 50px;
    margin-bottom: 25px;

    font-size: 24px;
  }

  .responsive-container-block {
    gap: 20px;
  }

  .team-card-container {
    width: min(90%, 280px);
    flex-basis: min(90%, 280px);
  }

  .team-card {
    min-height: 350px;
  }

  .img-wrapper {
    width: 160px;
    height: 160px;
  }
}


/* =========================
   VERY SMALL SCREENS
========================= */

@media (max-width: 380px) {

  .team-card-container {
    width: 280px;
  flex: 0 0 280px;
  }

  .img-wrapper {
    width: 145px;
    height: 145px;
  }
}


.team-section {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 25px 20px;
}