
.about-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  font-family: 'Orbitron', sans-serif;
  color: #000;
  transition: 0.3s ease;
}

.about-container h2 {
  font-size: 2.5rem;
  color: #000080;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00f0ff;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.admin-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.admin-info > div {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  color: #eee;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #00f0ff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-info > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #00f0ff;
}


.admin-info h4 a {
  color: #00f0ff;
  text-decoration: none;
  font-size: 1.3rem;
}

.admin-info h4 a:hover {
  text-decoration: underline;
}

.admin-info h6 {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 10px;
}

.about-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 15px auto;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 10px #00f0ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00f0ff;
}


.admin-info p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  text-align: justify;
}

.btn-glow {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 30px;
  background: #00ffe7;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  animation: glow 4s infinite;
}

.btn-glow:hover {
  background: #ff00c8;
  color: #fff;
}

@media (max-width: 768px) {
  .admin-info > div {
    text-align: center;
  }

  .about-img {
    width: 100px;
    height: 100px;
  }
}
