/* Page Styles for About and Contact */

/* === About Page === */
.about-hero {
  background: #070b14;
  background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #070b14 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero h1,
.contact-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.text-gradient-orange {
  background: linear-gradient(to right, #FFA726, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.about-hero .glow-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
  filter: blur(100px);
  top: -200px;
  left: -100px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #6366f1;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 5px;
}

.mission-box {
  padding: 60px;
  background: #f8fafc;
  border-radius: 40px;
  border: 1px solid #f1f5f9;
}

/* Mission Points Checkmark Icons */
.mission-box .bg-primary.bg-opacity-10.rounded-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-box .bg-primary.bg-opacity-10.rounded-circle i {
  font-size: 16px;
  line-height: 1;
}

.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-img-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, #6366f1, #f43f5e);
  border-radius: 50%;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}

/* === Contact Page === */
.contact-hero {
  background: #070b14;
  padding: 140px 0 80px;
  position: relative;
}

.contact-info-card {
  background: #6366f1;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border-radius: 30px;
  padding: 50px;
  color: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card .glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(50px);
  bottom: -100px;
  right: -100px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-control-custom {
  border: 1px solid #e2e8f0;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.form-control-custom:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  outline: none;
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {

  .mission-box,
  .contact-info-card,
  .contact-form-wrap {
    padding: 30px;
  }
}