/* ================================================================
   ABOUT PAGE SPECIFIC STYLES
   ================================================================ */

/* Hero Section (About) */
.about-hero {
  min-height: 55vh;
  padding: 4rem 0;
  background: linear-gradient(120deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(4, 205, 2, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1rem;
  color: #cccccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.green-gradient {
  background: linear-gradient(135deg, #23ac04 0%, #23ac04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Story & Mission Section */
.story-mission {
  background: #ffffff;
}

.section-label {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  /*font-family: "Montserrat", sans-serif;*/
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story-image-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Mission & Vision Cards */
.mission-vision {
  background-color: #f8f9fa;
}

.mv-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: #04cd02;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.mv-icon i {
  transition: transform 0.3s ease;
}

.mv-card:hover .mv-icon i {
  transform: scale(1.1);
}

/* Stats Section */
.stats-about {
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%); */
  background: #000;
}

.stat-block {
  padding: 1rem;
}

.stat-block p {
  color: #f7f7f7;
}

.stat-block i {
  font-size: 2.5rem;
}

.stat-block h2 {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #f7f7f7;
}

/* Values Section */
.value-card {
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f0f0;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: #04cd02;
}

.value-card i {
  transition: transform 0.3s ease;
}

.value-card:hover i {
  transform: scale(1.1);
}

/* Team Section */
.team-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #04cd02;
}

.team-avatar i {
  font-size: 4rem;
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.team-card:hover .team-avatar i {
  color: #04cd02;
}

/* Certifications */
.certifications-about {
  background: #ffffff;
}

.cert-badge {
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid #010101;
}

.cert-badge:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important; */
  border: 1px solid #04cd02;
}

/* CTA Section */
.cta-expert-section .btn-premium-pill {
  background: #ffffff;
  color: #000000 !important;
  transition: all 0.3s ease;
}

.cta-expert-section .btn-premium-pill:hover {
  background: #04cd02;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(4, 205, 2, 0.3);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .about-hero {
    min-height: 45vh;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-block h2 {
    font-size: 1.8rem;
  }

  .team-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 40vh;
  }

  .stats-about .stat-block {
    margin-bottom: 1.5rem;
  }
}

/* ================================================================
     OVERRIDES FOR EXISTING STYLES (if needed)
     ================================================================ */
/* Ensure navbar active state is visible */
.nav-links-premium .nav-link.active {
  color: #04cd02 !important;
  font-weight: 700;
}

.sidebar-links .nav-link.active {
  color: #04cd02 !important;
  background: rgba(255, 255, 255, 0.05);
}