/* Whole Page */
.admins-page__body {
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
    background-color: #121212;
    background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 20px
    );
    background-size: 40px 40px;
    animation: admins-page__backgroundMove 40s linear infinite;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }

  
  /* Background animation */
  @keyframes admins-page__backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
  }

  /* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* Transparent Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3); /* Slight transparency */
  backdrop-filter: blur(10px); /* Glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Light border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Navbar Container */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar Logo */
.navbar-logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* Navbar Menu */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-menu li {
  font-size: 1.2rem;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navbar-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}

/* Content below Navbar */
.content {
  padding: 100px 20px;
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.5rem;
  margin-top: 10px;
}

  /* Particle Background */
#admins-page__particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  
  
  /* Container */
  .admins-page__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Main Title */
  .admins-page__main-heading {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
  
  /* PRESIDENT CARD */
  .admins-page__president {
    background: linear-gradient(145deg, #1f1f1f, #0d0d0d);
    
    border: 2px solid rgba(255, 153, 0, 0.2);
    box-shadow: 0 10px 50px rgba(255, 153, 0, 0.5);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  
  .admins-page__president:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 60px rgba(255, 153, 0, 0.7);
  }
  
  /* President Image */
  .admins-page__president-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff9900, #222);
    border: 5px solid #1a1a1a;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background: url('../images/admins/Proph.jpg') no-repeat center/cover;
  }
  
  /* President Title */
  .admins-page__president-title {
    font-size: 2rem;
    color: #ff9900;
    margin-bottom: 1rem;
  }
  
  /* President Text */
  .admins-page__president-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
  }
  
  /* Other Admins */
  .admins-page__card {
    background: linear-gradient(145deg, #1a1a1a, #101010);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .admins-page__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.3);
  }
  
  /* Other Admins Image */
  .admins-page__image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: #333;
    border-radius: 50%;
  }
  
  /* Other Admins Title */
  .admins-page__card-title {
    font-size: 1.5rem;
    color: #ff9900;
    margin: 0.5rem 0;
  }
  
  /* Other Admins Text */
  .admins-page__card-text {
    font-size: 1rem;
    color: #ccc;
    margin: 0.5rem 0 1.5rem;
  }
  
  /* Socials */
  .admins-page__socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  
  .admins-page__social-link {
    color: #888;
    font-size: 1.7rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .admins-page__social-link:hover {
    color: #ff9900;
    transform: scale(1.3);
  }
  