/* ============================================
   KARAN V — Portfolio Stylesheet v3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --amber: #F5A623;
  --amber-dark: #E8960F;
  --amber-light: #FDB944;
  --teal: #2A7F72;
  --teal-light: #3AA090;
  --navy: #1A2235;
  --navy-soft: #243047;
  --cream: #FEFCF7;
  --off-white: #F8F5EE;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8888AA;
  --red-dot: #E05A4E;
  --card-bg: #FFFFFF;
  --shadow: 0 8px 32px rgba(26, 34, 53, 0.10);
  --radius: 18px;
  --radius-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px;
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes bgDrift {

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

  33% {
    transform: translate(20px, -15px) scale(1.04);
  }

  66% {
    transform: translate(-15px, 10px) scale(0.97);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(170px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(170px) rotate(-360deg);
  }
}

@keyframes typeBlip {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.fade-up {
  animation: fadeUp 0.75s cubic-bezier(.16, 1, .3, 1) both;
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.30s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.60s;
}

/* scroll-driven reveal */
.observe {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.16, 1, .3, 1), transform 0.65s cubic-bezier(.16, 1, .3, 1);
}

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

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(254, 252, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(26, 34, 53, 0.08);
}

.nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 16px;
  border-radius: 20px;
  transition: all 0.25s;
}

.nav-links a:hover {
  background: rgba(245, 166, 35, 0.15);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--navy);
  color: white;
}

.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 620px;
  background: var(--amber);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 74px 60px 0;
  position: relative;
  overflow: hidden;
  gap: 0;
}

/* animated background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.09);
  top: -80px;
  right: -60px;
  animation: bgDrift 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 220px;
  height: 220px;
  background: rgba(26, 34, 53, 0.07);
  bottom: 60px;
  left: -40px;
  animation: bgDrift 11s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  top: 40%;
  left: 42%;
  animation: bgDrift 7s ease-in-out 2s infinite;
}

.hero-content {
  padding-bottom: 30px;
  padding-top: 10px;
  position: relative;
  z-index: 2;
}

.hero-greeting {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(26, 34, 53, 0.65);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-greeting::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: rgba(26, 34, 53, 0.4);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 span {
  color: white;
}

/* typing subtitle */
.hero-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 18px;
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-text {
  color: var(--navy);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--navy);
  border-radius: 2px;
  animation: typeBlip 0.8s infinite;
  vertical-align: text-bottom;
}

.hero-tagline {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.7;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-email {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 32px;
  transition: letter-spacing 0.2s, color 0.2s;
}

.hero-email:hover {
  letter-spacing: 0.5px;
  color: var(--navy);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 10px;
}

.hero-stat .big {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero-stat .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: rgba(26, 34, 53, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

/* badge */
.hero-badge {
  position: absolute;
  right: 52%;
  bottom: 60px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  background: white;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.hero-badge span {
  font-family: 'Syne', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── PHOTO WRAPPER ── */
.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 480px;
}

/* ── ORBIT RING ── */
.hero-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1.5px dashed rgba(26, 34, 53, 0.2);
  border-radius: 50%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotateSlow 20s linear infinite;
  z-index: 1;
  transition: border-color 0.4s;
}

.hero-orbit::before,
.hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  width: 12px;
  height: 12px;
  background: var(--navy);
  top: -6px;
  left: 50%;
  margin-left: -6px;
  box-shadow: 0 0 8px rgba(26, 34, 53, 0.4);
}

.hero-orbit::after {
  width: 9px;
  height: 9px;
  background: white;
  border: 2.5px solid var(--amber);
  bottom: -5px;
  right: 40px;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.6);
}

.hero-photo-wrap:hover .hero-orbit {
  animation-duration: 5s;
  border-color: rgba(26, 34, 53, 0.35);
}

/* ── SECOND ORBIT (inner dashed) ── */
.hero-orbit-2 {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotateSlow 14s linear infinite reverse;
  z-index: 1;
}

.hero-orbit-2::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  top: 10px;
  right: -3px;
}

/* ── GLOW ── */
.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 75%);
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 3.5s ease-in-out infinite;
  z-index: 1;
}

/* ── PHOTO BASE SHAPE ── */
.hero-photo-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 480px;
  background: rgba(26, 34, 53, 0.12);
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  z-index: 2;
  transition: background 0.4s;
}

.hero-photo-wrap:hover .hero-photo-bg {
  background: rgba(26, 34, 53, 0.18);
}

/* ── PHOTO ── */
.hero-photo {
  position: relative;
  z-index: 3;
  width: 340px;
  height: 480px;
  object-fit: cover;
  object-position: center 5%;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  display: block;
  transition:
    transform 0.6s cubic-bezier(.16, 1, .3, 1),
    filter 0.4s ease,
    box-shadow 0.4s ease;
  filter: contrast(1.04) brightness(1.01) saturate(1.05);
  will-change: transform;
}

.hero-photo-wrap:hover .hero-photo {
  transform: translateY(-14px) scale(1.025);
  filter: contrast(1.08) brightness(1.06) saturate(1.1);
}

/* ── FLOATING PARTICLES around photo ── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-particle-1 {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.55);
  top: 18%;
  left: 8%;
  animation: floatParticle 5s ease-in-out infinite;
}

.hero-particle-2 {
  width: 9px;
  height: 9px;
  background: var(--navy);
  opacity: 0.4;
  top: 35%;
  right: 6%;
  animation: floatParticle 7s ease-in-out 1s infinite reverse;
}

.hero-particle-3 {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.4);
  bottom: 30%;
  left: 5%;
  animation: floatParticle 6s ease-in-out 2s infinite;
}

.hero-particle-4 {
  width: 7px;
  height: 7px;
  background: var(--amber);
  opacity: 0.7;
  top: 12%;
  right: 14%;
  animation: floatParticle 4.5s ease-in-out 0.5s infinite;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  33% {
    transform: translate(6px, -10px) scale(1.1);
    opacity: 1;
  }

  66% {
    transform: translate(-5px, 6px) scale(0.9);
    opacity: 0.5;
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 8px;
  font-weight: 300;
}

/* ─── OFFER ─── */
.offer-section {
  background: var(--off-white);
  padding: 80px 0;
}

.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 20px 0 32px;
  font-weight: 300;
  max-width: 420px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(26, 34, 53, 0.06);
  transition: transform 0.25s cubic-bezier(.16, 1, .3, 1), box-shadow 0.25s, background 0.2s;
  cursor: default;
}

.offer-item:hover {
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 6px 24px rgba(26, 34, 53, 0.12);
  background: linear-gradient(to right, white, rgba(245, 166, 35, 0.03));
}

.offer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.offer-item:hover .offer-icon {
  transform: scale(1.15) rotate(5deg);
}

.offer-icon.teal {
  background: rgba(42, 127, 114, 0.12);
}

.offer-icon.amber {
  background: rgba(245, 166, 35, 0.15);
}

.offer-icon.red {
  background: rgba(224, 90, 78, 0.12);
}

.offer-icon.blue {
  background: rgba(59, 130, 246, 0.12);
}

.offer-info .name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.offer-info .count {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.offer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1), box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(26, 34, 53, 0.14);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(245, 166, 35, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.stat-card.amber::before {
  background: var(--amber);
}

.stat-card.teal::before {
  background: var(--teal);
}

.stat-card.red::before {
  background: var(--red-dot);
}

.stat-card.navy::before {
  background: var(--navy);
}

.stat-card .big {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-card .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ─── EXPERIENCE ─── */
.exp-section {
  background: white;
  padding: 80px 0;
}

.exp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.exp-timeline {
  margin-top: 50px;
  position: relative;
}

.exp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--teal));
  transform: translateX(-50%);
}

.exp-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 48px;
  align-items: start;
}

.exp-left {
  text-align: right;
  padding-right: 32px;
  padding-top: 3px;
}

.exp-center {
  display: flex;
  justify-content: center;
  padding-top: 3px;
}

.exp-right {
  padding-left: 32px;
  padding-top: 3px;
}

.exp-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid white;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.exp-item:hover .exp-dot {
  transform: scale(1.3);
}

.exp-dot.teal {
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}

.exp-dot.amber {
  background: var(--amber);
  box-shadow: 0 0 0 2px var(--amber);
}

.exp-dot.red {
  background: var(--red-dot);
  box-shadow: 0 0 0 2px var(--red-dot);
}

.exp-company {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.exp-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.exp-type {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--off-white);
  color: var(--text-mid);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.exp-role {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.exp-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
  font-weight: 300;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.exp-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber-dark);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.exp-tag:hover {
  background: var(--amber);
  color: white;
}

/* ─── PROJECTS ─── */
.projects-section {
  padding: 80px 0;
  background: var(--off-white);
}

.projects-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.projects-header a {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--amber);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}

.projects-header a:hover {
  letter-spacing: 0.5px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.32s cubic-bezier(.16, 1, .3, 1), box-shadow 0.32s;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 54px rgba(26, 34, 53, 0.15);
}

.project-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
  transition: filter 0.3s;
}

.project-card:hover .project-thumb {
  filter: brightness(1.08);
}

.project-thumb.amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
}

.project-thumb.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.project-thumb.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.project-thumb.mix1 {
  background: linear-gradient(135deg, #E05A4E, #F5A623);
}

.project-thumb.mix2 {
  background: linear-gradient(135deg, #2A7F72, #1A2235);
}

.project-thumb.mix3 {
  background: linear-gradient(135deg, #7C3AED, #2A7F72);
}

.project-thumb.elitehim-thumb {
  background: linear-gradient(135deg, #1A2235 0%, #2A4A6B 60%, #2A7F72 100%);
}

.elitehim-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.project-num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
}

.project-cat {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

.project-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.project-tag {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--off-white);
  color: var(--text-mid);
  font-weight: 600;
  border: 1px solid rgba(26, 34, 53, 0.08);
  transition: all 0.2s;
  cursor: default;
}

.project-tag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ─── SKILLS ─── */
.skills-section {
  background: white;
  padding: 80px 0;
}

.skills-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.skill-group {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.skill-group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.skill-group-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
}

.skill-bar-item {
  margin-bottom: 14px;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.skill-bar-track {
  height: 6px;
  background: rgba(26, 34, 53, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, var(--teal), var(--amber));
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
  width: 0%;
}

.skill-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: white;
  border: 1.5px solid rgba(26, 34, 53, 0.1);
  color: var(--navy);
  transition: all 0.22s;
  cursor: default;
}

.skill-pill:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
  transform: translateY(-2px);
}

/* ─── CTA / SOCIAL ─── */
.cta-section {
  background: var(--amber);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -80px;
  animation: bgDrift 9s ease-in-out infinite;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-headline span {
  color: white;
}

.cta-sub {
  font-size: 15px;
  color: var(--navy);
  opacity: 0.7;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-contact-say {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
}

.cta-contact-say a {
  color: var(--teal);
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  transition: letter-spacing 0.2s;
}

.cta-contact-say a:hover {
  letter-spacing: 0.5px;
}

.cta-links {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(26, 34, 53, 0.12);
}

.cta-links-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.social-link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--off-white);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(.16, 1, .3, 1);
  border-radius: 0;
}

.social-link-row:last-child {
  border-bottom: none;
}

.social-link-row:hover {
  gap: 20px;
  background: var(--off-white);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: var(--radius-sm);
  margin: 0 -10px;
  width: calc(100% + 20px);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.social-link-row:hover .social-icon {
  transform: scale(1.1) rotate(-3deg);
}

.social-icon.github {
  background: rgba(26, 34, 53, 0.08);
}

.social-icon.linkedin {
  background: rgba(10, 102, 194, 0.1);
}

.social-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.social-icon.instagram {
  background: rgba(193, 53, 132, 0.1);
}

.social-link-info .s-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.social-link-info .s-handle {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--amber);
  padding: 130px 60px 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -60px;
  right: 10%;
  animation: bgDrift 8s ease-in-out infinite;
}

.page-hero .section-label {
  color: rgba(26, 34, 53, 0.55);
  text-align: center;
}

.page-hero .section-title {
  color: var(--navy);
}

.page-hero p {
  color: var(--navy);
  opacity: 0.7;
  margin-top: 12px;
  font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  line-height: 1;
}

.footer-signature {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.92;
  filter: brightness(1.1);
  transition: opacity 0.25s, transform 0.25s;
}

.footer-signature:hover {
  opacity: 1;
  transform: scale(1.04);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(.16, 1, .3, 1);
}

.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
  transform: translateY(-3px) scale(1.1);
}

/* ─── INTERNSHIP PAGE ─── */
.intern-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px 38px 34px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  border-left: 5px solid var(--amber);
  transition: transform 0.28s cubic-bezier(.16, 1, .3, 1), box-shadow 0.28s;
}

.intern-card:hover {
  transform: translateY(-5px) translateX(4px);
  box-shadow: 0 24px 56px rgba(26, 34, 53, 0.13);
}

.intern-card.teal-b {
  border-left-color: var(--teal);
}

.intern-card.red-b {
  border-left-color: var(--red-dot);
}

.intern-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.intern-title {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
}

.intern-company {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
}

.intern-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.intern-date {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.intern-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.intern-badge.done {
  background: rgba(42, 127, 114, 0.1);
  color: var(--teal);
}

.intern-badge.go {
  background: rgba(245, 166, 35, 0.15);
  color: var(--amber-dark);
}

.intern-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
}

.ach-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  margin-bottom: 12px;
}

.ach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.ach-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

.ach-list li::before {
  content: '→';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PROJECTS PAGE ─── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 32px;
}

.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid rgba(26, 34, 53, 0.12);
  background: white;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.22s;
  letter-spacing: 0.3px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
  transform: translateY(-2px);
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  nav {
    padding: 16px 32px;
  }

  .hero {
    padding: 74px 32px 0;
    gap: 0;
  }

  .offer-inner,
  .cta-inner {
    padding: 0 32px;
    gap: 40px;
  }

  .exp-inner,
  .projects-inner,
  .skills-inner {
    padding: 0 32px;
  }

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

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

  footer {
    padding: 28px 32px;
  }

  .page-hero {
    padding: 120px 32px 55px;
  }

  .hero-photo {
    width: 300px;
    height: 420px;
  }

  .hero-photo-bg {
    width: 300px;
    height: 420px;
  }

  .hero-orbit {
    width: 370px;
    height: 370px;
  }

  .hero-orbit-2 {
    width: 310px;
    height: 310px;
  }

  .hero-glow {
    width: 320px;
    height: 320px;
  }

  .hero-photo-wrap {
    min-height: 440px;
  }
}

@media (max-width:768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    gap: 4px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 68px 24px 0;
    text-align: center;
    align-items: start;
    height: auto;
    min-height: 100vh;
  }

  .hero-photo-wrap {
    order: -1;
    height: 300px;
    min-height: 300px;
  }

  .hero-photo {
    width: 240px;
    height: 300px;
  }

  .hero-photo-bg {
    width: 240px;
    height: 300px;
  }

  .hero-orbit {
    width: 270px;
    height: 270px;
    bottom: 0;
  }

  .hero-orbit-2 {
    width: 220px;
    height: 220px;
    bottom: 25px;
  }

  .hero-glow {
    width: 220px;
    height: 220px;
    bottom: 15px;
  }

  .hero-particle-1,
  .hero-particle-2,
  .hero-particle-3,
  .hero-particle-4 {
    display: none;
  }

  .hero-content {
    padding-bottom: 40px;
    padding-top: 10px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-greeting {
    justify-content: center;
    text-align: center;
  }

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

  .hero-badge {
    display: none;
  }

  .offer-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .exp-timeline::before {
    left: 18px;
  }

  .exp-item {
    grid-template-columns: 36px 1fr;
  }

  .exp-left {
    display: none;
  }

  .exp-center {
    justify-content: flex-start;
  }

  .exp-right {
    padding-left: 14px;
  }

  .projects-grid,
  .projects-full-grid {
    grid-template-columns: 1fr;
  }

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

  .projects-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .page-hero {
    padding: 110px 24px 50px;
  }

  .intern-card {
    padding: 28px 24px;
  }

  .intern-meta {
    align-items: flex-start;
  }

  .social-link-row:hover {
    margin: 0;
    width: 100%;
  }
}