

.about-body {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding-top: 120px;
}



.navpic {
  height: 85px;
}



.about-hero {
  padding: 120px 0 90px;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
}

.about-title span {
  color: #D4A552;
  text-shadow: 0 0 20px #D4A552;
}

.about-subtitle {
  color: #ccc;
  font-size: 1.2rem;
}



.fade-in {
  animation: fadeIn 1.2s ease;
}

.slide-up {
  animation: slideUp 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



.about-img {
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(212,165,82,0.4);
}



.stats-section {
  background: rgba(212,165,82,0.08);
  padding: 60px 0;
  color: #fff;
}

.stats-section h2 {
  color: #D4A552;
  font-size: 2.5rem;
}


.about-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(212,165,82,0.4);
  border-radius: 16px;
  padding: 30px;
  height: 150px;
  color: #ddd;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #D4A552;
  color: #fff;
}



.team-section {
  padding: 80px 0;
}

.team-card {
  background: #000;
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(212,165,82,0.4);
  color: #fff;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(212,165,82,0.4);
}

.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.team-card h5 {
  color: #D4A552;
}



.about-mission {
  background: rgba(212,165,82,0.1);
  padding: 70px 0;
}


.about-main-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9));
  border-radius: 22px;
  padding: 40px;
  border: 1px solid rgba(212,165,82,0.4);
  box-shadow: 0 0 30px rgba(212,165,82,0.25);
  transition: 0.4s ease;
}

.about-main-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(212,165,82,0.45);
}



.about-card-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(212,165,82,0.35);
}



.about-card-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}

.about-card-title span {
  color: #D4A552;
  text-shadow: 0 0 15px #D4A552;
}

.about-card-text {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
}



.btn {
  margin-top: 15px;
}

