:root {
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --mission-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --vision-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --cat-bottom-theme: linear-gradient(135deg, #621c9f, #2a0248, #621c9f);
}

/* ==============================================================  
   SECTION CONTENT  
============================================================== */

.section-content {
  margin: 60px auto;
  padding: 40px 25px;
  max-width: 1300px;
  position: relative;
  animation: fadeSection 0.8s ease-in-out forwards;
}

@keyframes fadeSection {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-alt {
  background: var(--bg-color) !important;
  border-radius: 25px;
  padding: 50px 30px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: background-color 0.2s ease;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

.content-row-reverse {
  flex-direction: row-reverse;
}

.content-visual {
  flex: 1;
  max-width: 330px;
  min-width: 250px;
}

.visual-card {
  position: relative;
  background: var(--hero-gradient);
  border-radius: 30px;
  padding: 70px 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.45s cubic-bezier(0.26, 0.22, 0.24, 1.08),
    box-shadow 0.45s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  will-change: transform;
}

.visual-card:hover {
  transform: translateY(-8px) rotateX(8deg) rotateY(-8deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.mission-card {
  background: var(--mission-gradient);
}

.vision-card {
  background: var(--vision-gradient);
}

.visual-icon {
  font-size: 5rem;
  color: #fff;
  position: relative;
  z-index: 2;
  transform: translateZ(40px);
}

.visual-decoration,
.mission-decoration,
.vision-decoration {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -60px;
  right: -60px;
  filter: blur(20px);
}

/* ==================================================
   TEXT AREA
================================================== */
.content-text {
  flex: 2;
  min-width: 55%;
  color: var(--text-primary);
}

/* Badge */
.section-badge {
  display: inline-block;
  background: var(--hero-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.mission-badge {
  background: var(--mission-gradient);
}

.vision-badge {
  background: var(--vision-gradient);
}

/* Title */
.section-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  animation: slideUpText 0.7s ease-out forwards;
}

@keyframes slideUpText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description */
.section-description {
  font-size: 1.15rem;
  color: var(--text-color);
  opacity: 0.95;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==================================================
   FEATURE HIGHLIGHTS (Who We Are)
================================================== */
.feature-highlights {
  display: flex;
  gap: 35px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-icon {
  width: 65px;
  height: 65px;
  background: var(--hero-gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.highlight-text h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--text-color);
  font-weight: 700;
}

.highlight-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.9;
}

/* ==================================================
   MISSION BULLET LIST
================================================== */
.mission-features {
  margin-top: 30px;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
  cursor: default;
  color: var(--text-color);
  will-change: transform;
}

.feature-check:hover {
  transform: translateX(12px);
}

.feature-check i {
  color: #10b981;
  font-size: 1.25rem;
}

/* ==================================================
   VISION - QUOTE BLOCK
================================================== */
.vision-quote {
  background: rgba(59, 130, 246, 0.07);
  padding: 35px;
  border-radius: 20px;
  border-left: 4px solid #3b82f6;
  margin-top: 35px;
  position: relative;
}

@media (prefers-color-scheme: dark) {
  .vision-quote {
    background: rgba(59, 130, 246, 0.15);
  }
}

.quote-icon {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--bg-color);
  color: #3b82f6;
  font-size: 1.6rem;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vision-quote blockquote {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-color);
}

.vision-quote cite {
  display: block;
  margin-top: 15px;
  color: var(--text-color);
  font-weight: 600;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 900px) {
  .content-row {
    gap: 40px;
  }

  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .content-row {
    flex-direction: column;
    text-align: center;
  }

  .visual-card {
    width: 100%;
  }

  .section-badge {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .stat-card {
    min-width: 150px;
    padding: 25px 20px;
  }
}

.footer {
  background: var(--dark-gradient);
  color: white;
}

/* ==========================================
   HERO SECTION 
========================================== */
.hero-about {
  position: relative;
  background: linear-gradient(1deg, #324d7b, #0f1c30);
  padding: clamp(50px, 10vw, 80px) clamp(15px, 3vw, 25px);
  margin: 0 0 35px;
  overflow: hidden;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-about::before,
.hero-about::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  animation: meshFloat 9s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}

.hero-about::before {
  top: -120px;
  left: -180px;
}

@keyframes meshFloat {
  from {
    transform: translateY(-30px) scale(1);
  }

  to {
    transform: translateY(30px) scale(1.1);
  }
}

.hero-about .spotlight {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  border-radius: 50%;
  mix-blend-mode: soft-light;
  animation: spotlightFloat 6s ease-in-out infinite alternate;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
}

@keyframes spotlightFloat {
  from {
    transform: translate(-45%, -48%);
  }

  to {
    transform: translate(-55%, -52%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.3rem);
  font-weight: 800;
  margin-bottom: clamp(15px, 3vw, 22px);
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  position: relative;
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 200px;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(145, 37, 207, 0.9),
    transparent
  );
  margin-left: -100px;
  border-radius: 50px;
  animation: glowBar 3s infinite ease-in-out;
  will-change: transform, opacity;
  transform-origin: center;
}

@keyframes glowBar {
  0% {
    opacity: 0.4;
    transform: scaleX(0.4);
  }

  50% {
    opacity: 1;
    transform: scaleX(0.75);
  }

  100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  opacity: 0.95;
  margin-bottom: clamp(30px, 6vw, 60px);
  line-height: 1.75;
  color: #eaeaea;
  animation: slideUp 1s ease-out forwards;
  word-wrap: break-word;
  padding: 0 clamp(5px, 2vw, 15px);
}

.hero-stats {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 50px !important;
  flex-wrap: wrap !important;
  position: relative !important;
  z-index: 11 !important;
  padding: 0 clamp(10px, 2vw, 20px) !important;
  gap: clamp(15px, 3vw, 50px) !important;
}

.stat-item {
  text-align: center !important;
  position: relative !important;
  z-index: 11 !important;
}

/* Stat Card */
.stat-card {
  background: rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(22px) !important;
  padding: clamp(20px, 4vw, 34px) clamp(15px, 3vw, 30px) !important;
  border-radius: clamp(16px, 2vw, 22px) !important;
  text-align: center !important;
  min-width: clamp(120px, 20vw, 170px) !important;
  max-width: 100% !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.15),
    0 6px 24px rgba(0, 0, 0, 0.25) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
  flex: 1 1 auto !important;
  will-change: transform;
}

.stat-card::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.15),
    0 14px 36px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: clamp(4px, 1vw, 6px);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25) !important;
  line-height: 1.1;
}

/* Stat Label */
.stat-label {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  opacity: 0.88;
  color: #fdfdfd !important;
  line-height: 1.4;
  word-wrap: break-word;
}

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE - HERO SECTION */
@media (max-width: 768px) {
  .hero-about {
    margin: 0 0 25px;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 30px;
  }

  .stat-card {
    min-width: clamp(110px, 25vw, 140px);
    padding: clamp(18px, 3vw, 26px) clamp(12px, 2.5vw, 20px);
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-number {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .stat-label {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
  }
}

@media (max-width: 480px) {
  .hero-about {
    padding: clamp(40px, 8vw, 60px) clamp(10px, 2vw, 15px);
    margin: 0 0 25px;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .hero-stats {
    gap: clamp(10px, 2vw, 15px);
    padding: 0 5px;
  }

  .stat-card {
    min-width: clamp(95px, 28vw, 120px);
    padding: clamp(15px, 3vw, 20px) clamp(10px, 2vw, 15px);
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 5px);
  }

  .stat-number {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 3px;
  }

  .stat-label {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }
}

@media (max-width: 360px) {
  .hero-about {
    padding: 35px 8px;
    margin: 0 0 25px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .stat-card {
    min-width: clamp(90px, 19vw, 150px) !important;
    max-width: 100% !important;
    padding: clamp(16px, 2vw, 28px) clamp(15px, 3vw, 30px) !important;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

@media (min-width: 481px) and (max-width: 550px) {
  .hero-stats {
    margin-bottom: 20px !important;
  }
  .section-content {
    margin: 10px auto;
    padding: 10px 25px;
  }
  .stat-card {
    min-width: clamp(90px, 19vw, 150px) !important;
    max-width: 100% !important;
    padding: clamp(16px, 2vw, 28px) clamp(15px, 3vw, 30px) !important;
  }
}

@media (min-width: 411px) and (max-width: 480px) {
  .hero-stats {
    gap: 2px !important;
    margin-bottom: 20px !important;
  }
  .section-content {
    margin: 10px auto;
    padding: 10px 25px;
  }
  .stat-card {
    min-width: clamp(90px, 19vw, 150px) !important;
    max-width: 100% !important;
    padding: clamp(16px, 2vw, 28px) clamp(15px, 3vw, 30px) !important;
  }
}

@media (min-width: 351px) and (max-width: 410px) {
  .hero-stats {
    margin-bottom: 20px !important;
  }
  .section-content {
    margin: 10px auto;
    padding: 10px 25px;
  }
  .stat-card {
    min-width: clamp(90px, 19vw, 150px) !important;
    max-width: 100% !important;
    padding: clamp(16px, 2vw, 28px) clamp(15px, 3vw, 30px) !important;
  }
}

@media (max-width: 350px) {
  .hero-stats {
    margin-bottom: 10px !important;
    gap: 3px !important;
  }
  .section-content {
    margin: 10px auto;
    padding: 10px 25px;
  }
  .stat-card {
    min-width: clamp(90px, 19vw, 150px) !important;
    max-width: 100% !important;
    padding: clamp(16px, 2vw, 28px) clamp(15px, 3vw, 30px) !important;
  }
}

@media (max-width: 768px) {
  .content-visual {
    display: none;
  }

  .content-text {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-title::after,
  .hero-subtitle,
  .section-content,
  .section-title,
  .highlight-item,
  .feature-check,
  .visual-card,
  .stat-card,
  .hero-about::before,
  .hero-about::after,
  .hero-about .spotlight {
    animation: none !important;
    transition: none !important;
  }
}
