/* =========================================================
INDEX — HERO SECTION
========================================================= */
.hero-section {
  padding: 120px 0 100px;
  }
  
  .hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  }
  
  /* Profile Image */
  .hero-image-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 18px rgba(78,125,255,0.3);
  }
  
  .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  /* Text */
  .hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.2;
  }
  
  .hero-title .accent {
  color: var(--accent);
  }
  
  .hero-roles {
  font-size: 22px;
  margin-top: 6px;
  color: var(--text-mid);
  height: 32px;
  }
  
  .hero-subtext {
  font-size: 16px;
  margin-top: 14px;
  color: var(--text-light);
  max-width: 480px;
  }
  
  .hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  }
  
  /* =========================================================
  FLOATING SHAPES — VERY SUBTLE
  ========================================================= */
  .floating-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  }
  
  .shape-1 {
  width: 260px;
  height: 260px;
  background: var(--accent);
  top: -20px;
  right: 10%;
  }
  
  .shape-2 {
  width: 180px;
  height: 180px;
  background: #7d49ff;
  bottom: 10%;
  left: 12%;
  }
  
  .shape-3 {
  width: 200px;
  height: 200px;
  background: #ff4ec4;
  top: 30%;
  left: 30%;
  }
  
  @keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
  }
  
  .floating-shape { animation: floatSoft 8s ease-in-out infinite; }
  
  /* =========================================================
  RESPONSIVE
  ========================================================= */
  @media(max-width: 700px) {
  .hero-title { font-size: 32px; }
  .hero-roles { font-size: 18px; }
  .hero-container { text-align: center; }
  .hero-subtext { margin: 0 auto; }
  }
  
  /* =========================================================
  QUICK HIGHLIGHTS SECTION
  ========================================================= */
  .quick-highlights {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .highlights-grid {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  }
  
  /* Highlight cards */
  .highlights-grid .card {
  padding: 1rem 2rem;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-light);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  
  transform: translateY(12px);
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  }
  
  /* Stagger delay */
  .highlights-grid .card:nth-child(2) { animation-delay: 0.15s; }
  .highlights-grid .card:nth-child(3) { animation-delay: 0.30s; }
  
  /* Hover */
  .highlights-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  }
  
  /* Entry animation */
  @keyframes fadeInUp {
  from {
  opacity: 0;
  transform: translateY(24px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  
  /* =========================================================
  TIMELINE
  ========================================================= */
  .about-timeline-section {
  padding-top: 40px;
  }
  
  .timeline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  position: relative;
  margin-top: 28px;
  }
  
  .timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  top: 28px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(78,125,255,0.18), rgba(125,73,255,0.12));
  border-radius: 2px;
  }
  
  @media (max-width: 900px) {
  .timeline-wrap {
  grid-template-columns: 1fr;
  padding: 0 8px;
  }
  .timeline-line { display: none; }
  }
  
  .timeline-column {
  padding: 8px 24px;
  }
  
  .column-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-light);
  }
  
  .timeline-item {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  }
  
  .tl-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  }
  
  .tl-content h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  }
  
  .tl-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  }
  
  /* =========================================================
  STATS
  ========================================================= */
  .stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
  }
  
  .stats-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(2,6,23,0.45);
  }
  
  .stat-icon {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--accent);
  }
  
  .stat-count {
  font-size: 28px;
  margin: 6px 0;
  font-weight: 700;
  color: var(--text-light);
  }
  
  @media (max-width: 900px) {
  .stats-wrapper {
  grid-template-columns: repeat(2, 1fr);
  }
  }
  
  /* =========================================================
  REVEAL ANIMATION
  ========================================================= */
  .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s ease;
  }
  
  .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  }
  