:root {
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --bg-dark: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 25%);
}

/* --- REUSED NAVBAR STYLES (Keep consistency) --- */
/* (Ensure your homepage navbar CSS is included here or linked, 
   below are essential utility classes used in About page) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- UTILITY: GLASSMORPHISM CARD --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

/* --- 1. ABOUT HERO SECTION --- */
.about-hero {
  padding: 18px 0 100px;  
  text-align: center;
  position: relative;
}

.about-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* --- 2. STATS BANNER --- */
.stats-section {
  padding: 40px 0;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* --- 3. STORY / MISSION (Split Layout) --- */
/* .mission-section {
  padding: 80px 0;
} */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mission-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

.check-list i {
  color: var(--secondary-color);
  background: rgba(236, 72, 153, 0.1);
  padding: 5px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.mission-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s;
}

.mission-image:hover img {
  transform: scale(1.05);
}

/* --- 4. CORE VALUES --- */
.values-section {
  padding: 80px 0;
  text-align: center;
}

.section-head {
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-head p {
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card i {
  font-size: 2.5rem;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- 5. TEAM SECTION --- */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px;
}

.member-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  padding: 3px;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-member span {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- 6. CTA BANNER --- */
.cta-banner {
  /* margin: 80px 0; */
  padding: 80px 0;
  background: linear-gradient(to right, #1e1b4b, #312e81);
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom:-80px;
}

.cta-btn-large {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 30px;
  transition: 0.3s;
}

.cta-btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .check-list li {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .about-hero h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr; }
}