/* ══════════════════════════════════════════
   ABOUT PAGE - Modern Dark Theme
   Matches the main site aesthetic
   ══════════════════════════════════════════ */

/* ── About Hero Banner ── */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(71, 206, 172, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
}

/* Photo with orbit ring */
.about-photo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  animation: aboutPhotoIn 1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes aboutPhotoIn {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.about-photo-orbit {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(71, 206, 172, 0.6);
  border-right-color: rgba(41, 192, 109, 0.4);
  animation: aboutOrbit 7s linear infinite;
}

.about-photo-orbit::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--primary-color, #47ceac);
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(71, 206, 172, 0.7);
}

@keyframes aboutOrbit {
  to { transform: rotate(360deg); }
}

.about-photo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 206, 172, 0.12) 0%, transparent 70%);
  animation: aboutGlow 3s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(71, 206, 172, 0.3);
  box-shadow: 0 0 40px rgba(71, 206, 172, 0.2);
}

/* Hero text */
.about-hero-name {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: aboutFadeUp 0.7s ease forwards 0.6s;
}

.about-hero-name .name-gradient {
  background: linear-gradient(135deg, #47ceac 0%, #29c06d 50%, #34a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: aboutFadeUp 0.7s ease forwards 0.85s;
}

@keyframes aboutFadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ── Bio Section ── */
.about-bio-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-bio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(71, 206, 172, 0.15);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeUp 0.8s ease forwards 1s;
}

.about-bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #47ceac, transparent);
  opacity: 0.6;
}

.about-bio-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-bio-title i {
  color: var(--primary-color, #47ceac);
  font-size: 1.4rem;
}

.about-bio-card p {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.about-bio-card p:last-of-type {
  margin-bottom: 28px;
}

.about-bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #47ceac, #29c06d);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(71, 206, 172, 0.35);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.about-bio-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(71, 206, 172, 0.5);
  color: #fff;
}


/* ── Experience / Timeline ── */
.about-timeline-section {
  padding: 60px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  text-shadow: 0 2px 20px rgba(71, 206, 172, 0.3);
}

.about-section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color, #47ceac);
  border-radius: 2px;
  margin: 16px auto 0;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-timeline-col-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color, #47ceac);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-timeline-col-title i {
  font-size: 1.1rem;
}

/* Timeline card */
.about-tl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.about-tl-card:hover {
  border-color: rgba(71, 206, 172, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.about-tl-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.about-tl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(71, 206, 172, 0.1);
  border: 1px solid rgba(71, 206, 172, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #47ceac);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-tl-card-info {
  flex: 1;
}

.about-tl-years {
  font-size: 0.78rem;
  color: var(--primary-color, #47ceac);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-tl-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.about-tl-company {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}


/* ── CTA Section (reuse main page style) ── */
.about-cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(71, 206, 172, 0.08), rgba(41, 192, 109, 0.05));
  border-top: 1px solid rgba(71, 206, 172, 0.1);
}

.about-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.about-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  background: linear-gradient(135deg, #47ceac, #29c06d);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(71, 206, 172, 0.35);
  transition: all 0.4s ease;
  cursor: pointer;
}

.about-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(71, 206, 172, 0.5);
  color: #fff;
}


/* ── Footer (match main page) ── */
.about-footer {
  background: var(--background-color-lighter, #16161a);
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(71, 206, 172, 0.1);
}

.about-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.about-footer-links a:hover {
  color: var(--primary-color, #47ceac);
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 960px) {
  .about-hero {
    min-height: 50vh;
    padding: 120px 24px 60px;
  }

  .about-hero-name {
    font-size: 2.4rem;
  }

  .about-photo-wrap {
    width: 170px;
    height: 170px;
  }

  .about-timeline-grid {
    grid-template-columns: 1fr;
  }

  .about-bio-card {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: auto;
    padding: 110px 16px 50px;
  }

  .about-hero-name {
    font-size: 1.9rem;
  }

  .about-hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .about-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .about-bio-section {
    padding: 50px 16px;
  }

  .about-bio-card {
    padding: 28px 20px;
  }

  .about-bio-card p {
    font-size: 0.95rem;
  }

  .about-section-heading {
    font-size: 1.8rem;
  }

  .about-tl-card {
    padding: 20px;
  }

  .about-footer-inner {
    flex-direction: column;
    gap: 14px;
  }
}
