

:root {
  --primary: #003366;
  --primary-dark: #002244;
  --accent: #00a6c8;
  --accent-soft: rgba(0, 166, 200, 0.14);
  --text: #102033;
  --muted: #46566b;
  --card: rgba(255, 255, 255, 0.56);
  --border: rgba(0, 51, 102, 0.14);
  --shadow: 0 22px 60px rgba(0, 51, 102, 0.12);
  --radius: 22px;
}

/* Base */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.75), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(0, 166, 200, 0.18), transparent 28%),
    linear-gradient(120deg, #cde7ff 0%, #d0ffef 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

/* Scroll Progress Bar */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  box-shadow: 0 0 18px rgba(0, 166, 200, 0.45);
}

/* Header and Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.22);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.nav-link {
  padding: 0.55rem 1rem;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.nav-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 51, 102, 0.2);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Layout */

.page-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 3rem 0;
}

.content,
.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.section h2,
.content h1,
.content h2 {
  color: var(--primary);
}

.content h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin: 0.65rem 0 1rem;
  letter-spacing: -0.04em;
}

.content h2,
.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.content p {
  max-width: 850px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero Section */

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text p {
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 51, 102, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary);
}

.btn:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(0, 51, 102, 0.18);
}

.hero-image {
  text-align: center;
}

.profile-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 35px 85px rgba(0, 51, 102, 0.18);
}

.profile-card img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--primary);
  box-shadow: 0 20px 45px rgba(0, 51, 102, 0.18);
}

.profile-card h2,
.profile-card h1 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* Portfolio Highlight Cards */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 51, 102, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 165px;
  box-shadow: 0 18px 45px rgba(0, 51, 102, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}

.highlight-card h3 {
  font-size: 1.8rem;
  margin: 0 0 0.7rem;
  color: var(--primary);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1rem;
}

.highlight-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 26px 70px rgba(0, 51, 102, 0.16);
  border-color: rgba(0, 51, 102, 0.25);
}

/* Skills and Cards */

.skill-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.skill-card,
.info-card,
.project-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 16px 42px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover,
.info-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 51, 102, 0.15);
}

.skill-card h3,
.info-card h3,
.project-card h3 {
  color: var(--primary);
  margin-top: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
}

/* 3D Scroll Analytics Panel */

.scroll-3d-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  perspective: 1200px;
  overflow: hidden;
}

.scroll-3d-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--primary);
  line-height: 1.05;
}

.scroll-3d-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.scroll-3d-stage {
  min-height: 420px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.insight-panel {
  width: min(420px, 90vw);
  padding: 1.4rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(210,245,239,0.58)),
    radial-gradient(circle at top left, rgba(0,119,182,0.18), transparent 40%);
  border: 1px solid rgba(0, 51, 102, 0.18);
  box-shadow:
    0 35px 90px rgba(0, 51, 102, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transform: rotateX(10deg) rotateY(-18deg) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
  position: relative;
}

.insight-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(0,51,102,0.16), rgba(0,180,216,0.08), transparent);
  z-index: -1;
  filter: blur(12px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.panel-metric {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,51,102,0.09);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 0.9rem;
  transform: translateZ(28px);
}

.panel-metric strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.panel-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-bars {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.panel-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.18);
}

/* Timeline / Journey */

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--primary), var(--accent));
  opacity: 0.32;
}

.timeline-item {
  position: relative;
  margin-left: 3rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(0, 166, 200, 0.12);
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 26px 70px rgba(0, 51, 102, 0.14);
}

.timeline-item h2,
.timeline-item h3 {
  margin: 0 0 0.7rem;
  color: var(--primary);
}

/* Certifications */

.cert-icons {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cert-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 12px 34px rgba(0, 51, 102, 0.08);
}

.cert-entry img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.cert-entry img:hover {
  transform: scale(1.12) rotate(-3deg);
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -34px;
  left: 1rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  transition: opacity 0.25s ease;
}

.cert-entry:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  padding: 5rem 1rem;
  overflow: auto;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
}

.modal-content {
  display: block;
  max-width: min(900px, 92vw);
  max-height: 82vh;
  margin: auto;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  cursor: pointer;
}

/* Footer */

footer {
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(0, 51, 102, 0.95);
  color: #ffffff;
  margin-top: 2rem;
}

footer p {
  margin: 0;
  color: #ffffff;
}

footer a {
  color: #90e0ef;
  font-weight: 700;
}

/* Reveal Animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-in-left {
  animation: floatInLeft 1s ease both;
}

.float-in-right {
  animation: floatInRight 1s ease both;
}

@keyframes floatInLeft {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }

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

@keyframes floatInRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

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

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .insight-panel {
    transform: none !important;
  }
}

/* Responsive Design */

@media (max-width: 1050px) {
  .site-header {
    padding: 1rem 1.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-3d-section {
    grid-template-columns: 1fr;
  }

  .skill-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .page-wrap {
    width: 94%;
    padding: 1.5rem 0;
  }

  .site-header {
    padding: 1rem;
  }

  nav {
    width: 100%;
  }

  .nav-link {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
  }

  .content,
  .section {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .highlight-grid,
  .skill-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: auto;
  }

  .profile-card img {
    width: 180px;
    height: 180px;
  }

  .scroll-3d-stage {
    min-height: 320px;
  }

  .insight-panel {
    transform: none;
  }

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

  .timeline-item {
    margin-left: 2rem;
    padding: 1.1rem;
  }

  .timeline-item::before {
    left: -1.95rem;
  }

  .cert-entry {
    align-items: flex-start;
  }
}

/* Project Cards and Attractive Buttons */

.project-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio-project-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(210, 245, 239, 0.55)),
    radial-gradient(circle at top right, rgba(0, 166, 200, 0.18), transparent 35%);
  border: 1px solid rgba(0, 51, 102, 0.14);
  border-radius: 26px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 24px 70px rgba(0, 51, 102, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.portfolio-project-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 166, 200, 0.28), transparent 68%);
  pointer-events: none;
}

.portfolio-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(0, 51, 102, 0.18);
  border-color: rgba(0, 51, 102, 0.26);
}

.project-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.2rem;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.09);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-year {
  font-weight: 900;
  color: var(--accent);
}

.portfolio-project-card h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.project-summary {
  font-size: 1.08rem;
  max-width: 980px;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.project-impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.project-impact-strip div {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.07);
}

.project-impact-strip strong {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.project-impact-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.portfolio-project-card h3 {
  color: var(--primary);
  margin: 1.4rem 0 1rem;
  font-size: 1.35rem;
}

.project-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.work-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: 16px;
  padding: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.12);
}

.work-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.work-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.project-tools span {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
}

.project-actions {
  margin-top: 1.8rem;
}

.project-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.24);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.project-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.project-btn span {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.project-btn {
  text-decoration: none;
}

.project-btn:hover {
  gap: 1rem;
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(0, 51, 102, 0.32);
  text-decoration: none;
}

.project-btn:hover::before {
  left: 125%;
}

.project-btn:hover span {
  transform: translateX(3px);
}

@media (max-width: 800px) {
  .project-impact-strip,
  .project-work-grid {
    grid-template-columns: 1fr;
  }

  .project-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Custom OpenWidget Floating Button */

.custom-contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #003366, #00a6c8);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 18px 45px rgba(0, 51, 102, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease, gap 0.28s ease;
}

.custom-contact-widget:hover {
  transform: translateY(-5px);
  gap: 0.9rem;
  box-shadow: 0 26px 65px rgba(0, 51, 102, 0.42);
}

.custom-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 1.1rem;
}

.custom-contact-text {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .custom-contact-widget {
    right: 16px;
    bottom: 16px;
    padding: 0.85rem;
  }

  .custom-contact-text {
    display: none;
  }

  .custom-contact-icon {
    width: 38px;
    height: 38px;
  }
}

/* Experience Page - Finance Analytics Focus */

.experience-hero p {
  max-width: 980px;
  font-size: 1.08rem;
}

.experience-card,
.supporting-card,
.capability-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(210, 245, 239, 0.48)),
    radial-gradient(circle at top right, rgba(0, 166, 200, 0.14), transparent 35%);
  border: 1px solid rgba(0, 51, 102, 0.13);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 58px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.experience-card:hover,
.supporting-card:hover,
.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(0, 51, 102, 0.16);
  border-color: rgba(0, 51, 102, 0.24);
}

.featured-experience {
  position: relative;
  overflow: hidden;
}

.featured-experience::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 200, 0.22), transparent 68%);
  pointer-events: none;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.experience-company {
  display: inline-flex;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.experience-header h2,
.supporting-card h3,
.capability-card h3 {
  color: var(--primary);
  margin: 0 0 0.45rem;
}

.experience-meta {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.experience-badge {
  display: grid;
  place-items: center;
  min-width: 98px;
  min-height: 98px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.22);
}

.experience-summary {
  font-size: 1.05rem;
  max-width: 1050px;
}

.impact-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.impact-box {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.07);
}

.impact-box strong {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.impact-box span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.experience-timeline {
  display: grid;
  gap: 1rem;
}

.experience-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 14px 38px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-step:hover {
  transform: translateX(8px);
  box-shadow: 0 22px 54px rgba(0, 51, 102, 0.13);
}

.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.18);
}

.experience-step h3 {
  margin: 0 0 0.4rem;
  color: var(--primary);
}

.experience-step p {
  margin: 0;
}

.capability-grid,
.supporting-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.capability-card p,
.supporting-card p {
  margin-bottom: 0;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tool-cloud span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--primary);
  border: 1px solid rgba(0, 51, 102, 0.09);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.tool-cloud span:hover {
  transform: translateY(-3px);
  background: rgba(0, 166, 200, 0.14);
}

@media (max-width: 950px) {
  .impact-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid,
  .supporting-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .experience-header {
    flex-direction: column;
  }

  .experience-badge {
    min-width: auto;
    min-height: auto;
    border-radius: 999px;
    padding: 0.7rem 1rem;
  }

  .impact-summary-grid {
    grid-template-columns: 1fr;
  }

  .experience-step {
    grid-template-columns: 1fr;
  }

  .experience-step:hover {
    transform: translateY(-5px);
  }
}
/* Modern Career Timeline */

.career-timeline-modern {
  position: relative;
  margin-top: 2rem;
  padding-left: 2.8rem;
}

.career-timeline-modern::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #003366 0%, #00a6c8 100%);
  box-shadow: 0 0 18px rgba(0, 166, 200, 0.18);
}

.career-milestone {
  position: relative;
  margin-bottom: 1.5rem;
}

.milestone-marker {
  position: absolute;
  left: -2.8rem;
  top: 1.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366, #00a6c8);
  box-shadow:
    0 0 0 6px rgba(0, 166, 200, 0.10),
    0 8px 20px rgba(0, 51, 102, 0.18);
}

.milestone-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(210, 245, 239, 0.48)),
    radial-gradient(circle at top right, rgba(0, 166, 200, 0.10), transparent 35%);
  border: 1px solid rgba(0, 51, 102, 0.12);
  border-radius: 22px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 18px 48px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.milestone-card:hover {
  transform: translateX(8px);
  box-shadow: 0 28px 70px rgba(0, 51, 102, 0.14);
  border-color: rgba(0, 51, 102, 0.22);
}

.milestone-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.milestone-card h3 {
  margin: 0 0 0.6rem;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.2;
}

.milestone-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 680px) {
  .career-timeline-modern {
    padding-left: 2.2rem;
  }

  .career-timeline-modern::before {
    left: 10px;
  }

  .milestone-marker {
    left: -2.2rem;
    width: 16px;
    height: 16px;
  }

  .milestone-card {
    padding: 1.1rem;
  }

  .milestone-card:hover {
    transform: translateY(-4px);
  }
}
/* Circular Profile Picture */

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.profile-card img,
.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 6px solid #ffffff;
  outline: 4px solid rgba(0, 51, 102, 0.22);
  box-shadow: 0 24px 60px rgba(0, 51, 102, 0.22);
}

.profile-card h2,
.profile-card h1 {
  margin-top: 1.2rem;
  text-align: center;
}
/* Premium Homepage Hero */

.hero-premium {
  width: min(1420px, 94%);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -160px;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 200, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-premium-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 166, 200, 0.14);
  color: #003366;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 51, 102, 0.08);
}

.hero-premium-title {
  margin: 1.3rem 0 1rem;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-title-line {
  display: block;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: #17263a;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.hero-gradient-name {
  display: inline-block;
  font-size: clamp(2.9rem, 6.5vw, 6.2rem);
  font-weight: 950;
  background: linear-gradient(
    270deg,
    #003366,
    #006494,
    #00a6c8,
    #64dfdf,
    #003366
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: heroGradientMove 7s ease infinite;
  position: relative;
}

.hero-gradient-name::after {
  content: "";
  display: block;
  width: min(330px, 48%);
  height: 7px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #003366, #00a6c8, #64dfdf);
  background-size: 250% 250%;
  animation: heroGradientMove 7s ease infinite;
  box-shadow: 0 10px 28px rgba(0, 166, 200, 0.28);
}

@keyframes heroGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-role-line {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #34475f;
  font-weight: 850;
  margin: 1.5rem 0 1.2rem;
}

.hero-role-line span {
  color: #00a6c8;
  margin: 0 0.35rem;
}

.hero-premium-text {
  max-width: 820px;
  color: #46566b;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.75;
  margin: 0 0 0.9rem;
}

.hero-skill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.6rem 0 2rem;
}

.hero-skill-strip span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 51, 102, 0.1);
  color: #003366;
  font-weight: 850;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(0, 51, 102, 0.06);
  transition: transform 0.28s ease, background 0.28s ease;
}

.hero-skill-strip span:hover {
  transform: translateY(-4px);
  background: rgba(0, 166, 200, 0.14);
}

.hero-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, gap 0.28s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  text-decoration: none;
  gap: 0.85rem;
}

.hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #003366, #00a6c8);
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.24);
}

.hero-btn-secondary {
  color: #003366;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 51, 102, 0.15);
  box-shadow: 0 14px 34px rgba(0, 51, 102, 0.09);
}

.hero-btn-linkedin {
  color: #ffffff;
  background: #0a66c2;
  box-shadow: 0 14px 34px rgba(10, 102, 194, 0.22);
}

/* Profile Visual */

.hero-premium-visual {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

.profile-orbit-card {
  position: relative;
  width: min(430px, 78vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, #003366, #00a6c8, #64dfdf, #003366);
  filter: drop-shadow(0 24px 50px rgba(0, 51, 102, 0.25));
  animation: orbitSpin 12s linear infinite;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, #cde7ff, #d0ffef);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.premium-profile-img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(0, 51, 102, 0.28);
}

.profile-name-caption {
  color: #102033;
  font-size: 1.55rem;
  margin: 1.4rem 0 0;
  text-align: center;
}

/* Floating Badges */

.floating-badge {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 51, 102, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.14);
  animation: floatBadge 4.5s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  color: #003366;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.floating-badge span {
  display: block;
  color: #46566b;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-one {
  top: 10%;
  left: -8%;
}

.badge-two {
  right: -10%;
  top: 34%;
  animation-delay: 0.8s;
}

.badge-three {
  left: 8%;
  bottom: 4%;
  animation-delay: 1.4s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Responsive Hero */

@media (max-width: 1050px) {
  .hero-premium {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-premium-copy {
    margin: 0 auto;
  }

  .hero-gradient-name::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-skill-strip,
  .hero-premium-actions {
    justify-content: center;
  }

  .badge-one {
    left: 0;
  }

  .badge-two {
    right: 0;
  }
}

@media (max-width: 680px) {
  .hero-premium {
    width: 96%;
    padding-top: 2.4rem;
  }

  .hero-title-line {
    font-size: 1.8rem;
  }

  .hero-gradient-name {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-role-line {
    line-height: 1.5;
  }

  .hero-premium-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    margin: 0.5rem;
    min-width: auto;
  }

  .profile-orbit-card {
    width: min(330px, 86vw);
  }

  .hero-premium-visual {
    gap: 0.5rem;
  }
}
