/* ========================================
   ABOUT PAGE - MODERN REDESIGN
   ======================================== */

/* ================= HERO SECTION ================= */
.about-hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.1), transparent 50%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-gold {
  color: var(--secondary-color);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
  color: var(--primary-color);
}

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-value.plus::after {
  content: "+";
  margin-left: 2px;
}

.stat-value.percent::after {
  content: "%";
  margin-left: 2px;
}

/* Inline suffix for custom suffixes like 'Cr', 'L' etc. */
.stat-value .stat-suffix,
.stat-suffix {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--secondary-color);
  font-weight: 800;
  margin-left: 2px;
  vertical-align: baseline;
}

.stat-label {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ================= MISSION SECTION ================= */
.mission-section {
  background: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--neutral-color);
  margin-bottom: 0;
}

.mission-content {
  padding-right: 2rem;
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.text-highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.mission-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Image container */
.mission-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  mix-blend-mode: multiply; /* Helps the image blend into white background if it has a white/light bg */
  transform: translateY(-8px) scale(1.03);
  filter: contrast(1.15) brightness(1);
}


/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-section {
  background: var(--light-bg);
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  transform: rotateY(360deg);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--neutral-color);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* ================= JOURNEY TIMELINE SECTION ================= */
.journey-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--primary-color);
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  width: calc(50% - 40px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.timeline-year {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.timeline-year-large {
  width: calc(50% - 40px);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--secondary-color);
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--neutral-color);
  line-height: 1.6;
  margin: 0;
}

/* ================= TEAM SECTION ================= */
.team-section {
  background: var(--light-bg);
}

.leader-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.leader-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-info {
  padding: 2rem;
}

.leader-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.leader-role {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 0.95rem;
  color: var(--neutral-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.leader-linkedin:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Team Member Cards */
.team-member-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--secondary-color);
}

.team-member-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 0.9rem;
  color: var(--neutral-color);
  margin-bottom: 1rem;
}

.team-member-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-member-card a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: var(--white);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent);
  border-radius: 50%;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb300 100%);
  color: var(--primary-color);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 35px rgba(255, 193, 7, 0.4);
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

/* Ripple effect on hover */
.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-cta-primary:hover::before {
  width: 350px;
  height: 350px;
}

.btn-cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 193, 7, 0.6);
  color: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ffb300 0%, var(--secondary-color) 100%);
}

/* Arrow icon animation */
.btn-cta-primary i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-cta-primary:hover i {
  transform: translateX(5px);
}

/* Active state for better feedback */
.btn-cta-primary:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 991px) {
  .hero-stats-grid {
    margin-top: 3rem;
  }

  .mission-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .leader-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    min-height: auto;
    padding: 130px 0 50px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-box {
    padding: 1.25rem 0.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }


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

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .leader-info {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 3rem 2rem;
    text-align: center;
  }

  .btn-cta-primary {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .timeline-year {
    font-size: 1.2rem;
  }

  .timeline-title {
    font-size: 1rem;
  }

  .team-member-card img {
    width: 100px;
    height: 100px;
  }
}