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

:root {
  --bg: #050508;
  --bg2: #0a0a12;
  --accent: #e94560;
  --accent2: #c9a84c;
  --gold: #c9a84c;
  --gold2: #f5d98b;
  --white: #ffffff;
  --text: #e2e2e2;
  --muted: #888;
  --border: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.03);
  --glow: 0 0 40px rgba(233,69,96,0.3);
  --glow2: 0 0 40px rgba(201,168,76,0.3);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GAMING CURSOR ===== */
body { cursor: none; }

/* Trail canvas */
.cursor-trail {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9990;
}
/* Background effect canvas */
.bg-effect {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Main crosshair */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

/* FPS crosshair lines */
.cur-top, .cur-bottom, .cur-left, .cur-right {
  position: absolute;
  background: #e94560;
  border-radius: 2px;
}
/* Vertical bars */
.cur-top    { width: 2px; height: 9px; top: 0;    left: 50%; transform: translateX(-50%); }
.cur-bottom { width: 2px; height: 9px; bottom: 0; left: 50%; transform: translateX(-50%); }
/* Horizontal bars */
.cur-left   { width: 9px; height: 2px; left: 0;   top: 50%;  transform: translateY(-50%); }
.cur-right  { width: 9px; height: 2px; right: 0;  top: 50%;  transform: translateY(-50%); }

/* Center dot */
.cur-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: #e94560;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px #e94560, 0 0 12px #e94560;
}

/* Glow on all lines */
.cur-top, .cur-bottom, .cur-left, .cur-right {
  box-shadow: 0 0 4px #e94560, 0 0 8px rgba(233,69,96,0.6);
  animation: rgbShift 3s linear infinite;
}
@keyframes rgbShift {
  0%   { background: #e94560; box-shadow: 0 0 6px #e94560, 0 0 12px rgba(233,69,96,0.5); }
  33%  { background: #7b2fff; box-shadow: 0 0 6px #7b2fff, 0 0 12px rgba(123,47,255,0.5); }
  66%  { background: #00d4ff; box-shadow: 0 0 6px #00d4ff, 0 0 12px rgba(0,212,255,0.5); }
  100% { background: #e94560; box-shadow: 0 0 6px #e94560, 0 0 12px rgba(233,69,96,0.5); }
}
.cur-dot {
  animation: rgbDot 3s linear infinite;
}
@keyframes rgbDot {
  0%   { background: #e94560; box-shadow: 0 0 6px #e94560, 0 0 14px #e94560; }
  33%  { background: #7b2fff; box-shadow: 0 0 6px #7b2fff, 0 0 14px #7b2fff; }
  66%  { background: #00d4ff; box-shadow: 0 0 6px #00d4ff, 0 0 14px #00d4ff; }
  100% { background: #e94560; box-shadow: 0 0 6px #e94560, 0 0 14px #e94560; }
}

/* Outer ring follower */
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(233,69,96,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: followerRgb 3s linear infinite;
}
@keyframes followerRgb {
  0%   { border-color: rgba(233,69,96,0.4); box-shadow: 0 0 8px rgba(233,69,96,0.2); }
  33%  { border-color: rgba(123,47,255,0.4); box-shadow: 0 0 8px rgba(123,47,255,0.2); }
  66%  { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 8px rgba(0,212,255,0.2); }
  100% { border-color: rgba(233,69,96,0.4); box-shadow: 0 0 8px rgba(233,69,96,0.2); }
}

/* On hover — spread crosshair */
body.cursor-hover .cur-top    { transform: translateX(-50%) translateY(-4px); }
body.cursor-hover .cur-bottom { transform: translateX(-50%) translateY(4px); }
body.cursor-hover .cur-left   { transform: translateY(-50%) translateX(-4px); }
body.cursor-hover .cur-right  { transform: translateY(-50%) translateX(4px); }
body.cursor-hover .cursor-follower { width: 60px; height: 60px; opacity: 0.5; }
body.cursor-hover .cur-dot { transform: translate(-50%,-50%) scale(1.8); }

/* ===== LOADER SPLIT SCREEN ===== */
.loader {
  position: fixed; inset: 0;
  z-index: 99999;
  display: flex;
  pointer-events: all;
}
.loader-left, .loader-right {
  width: 50%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.loader-left {
  background: var(--bg);
  border-right: 1px solid rgba(233,69,96,0.2);
  justify-content: flex-end;
  padding-right: 80px;
}
.loader-right {
  background: var(--accent);
  justify-content: flex-start;
  padding-left: 80px;
}
.loader.slide-out .loader-left { transform: translateX(-100%); }
.loader.slide-out .loader-right { transform: translateX(100%); }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s 0.9s, visibility 0s 1.2s; }

.loader-content { max-width: 340px; }
.loader-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  opacity: 0; transform: translateY(10px);
  animation: loaderFadeUp 0.6s 0.3s ease forwards;
}
.loader-name {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: loaderFadeUp 0.7s 0.5s ease forwards;
}
.loader-name span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loader-line {
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin-bottom: 20px;
  animation: loaderLine 0.8s 0.8s ease forwards;
}
@keyframes loaderLine { to { width: 100%; } }
.loader-sub {
  font-size: 0.88rem; color: var(--muted); font-weight: 500;
  opacity: 0; transform: translateY(10px);
  animation: loaderFadeUp 0.6s 1s ease forwards;
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.loader-dots {
  display: flex; flex-direction: column; gap: 14px;
}
.loader-dots span {
  display: block; width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; background: rgba(255,255,255,0.7); }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(5,5,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

/* Avatar */
.nav-avatar {
  position: relative; width: 40px; height: 40px; flex-shrink: 0;
}
.nav-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover; object-position: center 20%;
  border: 2px solid var(--accent);
  display: block;
}
.nav-avatar-ring {
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(233,69,96,0.4);
  animation: avatarRing 2s ease-in-out infinite;
}
@keyframes avatarRing {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* Logo text */
.nav-logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-size: 0.92rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.3px;
  line-height: 1;
}
.nav-logo-title {
  font-size: 0.65rem; font-weight: 500;
  color: var(--accent); letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
section { padding: 120px 0; position: relative; }
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  border: 1px solid rgba(233,69,96,0.4);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(233,69,96,0.08);
}
.section-tag.light {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
}
.section-title.light { color: var(--white); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('kolkata-bg.jpg') center center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  filter: grayscale(60%);
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}
.hero-bg-blobs { position: absolute; inset: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,69,96,0.6), transparent);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.5), transparent);
  bottom: -100px; left: -100px;
  animation-delay: 3s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,168,76,0.4), transparent);
  top: 50%; left: 40%;
  animation-delay: 6s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 700;
  padding: 8px 16px; border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}
.line-1 { display: block; animation: fadeInLeft 0.8s 0.2s ease both; }
.line-2 { display: block; color: transparent; animation: fadeInLeft 0.8s 0.4s ease both; }

/* GLITCH */
.glitch {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glitch::before {
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  animation: glitch2 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-3px, 1px); opacity: 0.8; }
  94% { transform: translate(3px, -1px); opacity: 0.8; }
  96% { transform: translate(0); opacity: 0; }
}
@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(3px, 1px); opacity: 0.8; }
  94% { transform: translate(-3px, -1px); opacity: 0.8; }
  96% { transform: translate(0); opacity: 0; }
}

.typed-container {
  font-size: 1.1rem; font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  animation: fadeIn 0.8s 0.6s ease both;
}
.typed-text { color: var(--accent); font-weight: 700; }
.typed-cursor {
  color: var(--accent);
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: 1rem; color: var(--muted);
  margin-bottom: 36px; max-width: 460px; line-height: 1.8;
  animation: fadeIn 0.8s 0.8s ease both;
}
.hero-btns {
  display: flex; gap: 16px; margin-bottom: 56px;
  animation: fadeIn 0.8s 1s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  animation: fadeIn 0.8s 1.2s ease both;
}
.stat {
  display: flex; align-items: baseline; gap: 2px;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 2.2rem; font-weight: 900;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat-label {
  font-size: 0.75rem; color: var(--muted); font-weight: 500;
  margin-left: 4px; white-space: nowrap;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-img-wrapper { position: relative; width: 100%; max-width: 460px; }
.img-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(233,69,96,0.2), transparent 70%);
  border-radius: 30px;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-img {
  width: 100%; border-radius: 24px;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  animation: fadeInRight 1s 0.3s ease both;
}
.floating-card {
  position: absolute; z-index: 3;
  background: rgba(10,10,18,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: floatY 4s ease-in-out infinite;
}
.card-1 { top: 20px; left: -40px; animation-delay: 0s; }
.card-2 { bottom: 100px; right: -30px; animation-delay: 1.5s; }
.card-3 { bottom: 20px; left: -20px; animation-delay: 3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon { font-size: 1.5rem; }
.fc-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.fc-text span { font-size: 0.72rem; color: var(--muted); }

.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: spin 20s linear infinite;
}
.ring-1 { width: 120%; height: 120%; top: -10%; left: -10%; }
.ring-2 { width: 140%; height: 140%; top: -20%; left: -20%; animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  animation: fadeIn 1s 1.5s ease both;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
.hero-scroll-hint span { font-size: 0.72rem; color: var(--muted); letter-spacing: 2px; }

/* ===== ABOUT ===== */
#about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.about-img-container { position: relative; }
.about-img-bg {
  position: absolute; inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, rgba(233,69,96,0.15), rgba(123,47,255,0.15));
  border-radius: 24px;
  border: 1px solid var(--border);
}
.about-img-card {
  position: relative; z-index: 1;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 15%; }
.about-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(5,5,8,0.9), transparent);
}
.overlay-text {
  font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.overlay-text::before { content: '📍'; }
.exp-badge {
  position: absolute; top: -20px; right: -20px; z-index: 2;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 16px; padding: 20px;
  text-align: center;
  box-shadow: var(--glow);
}
.exp-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.exp-text { font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 4px; }

.about-intro {
  font-size: 1.1rem; font-weight: 500;
  color: var(--white); line-height: 1.8; margin-bottom: 20px;
}
.about-right p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-right strong { color: var(--white); }

.about-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(233,69,96,0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.quote-mark {
  font-size: 4rem; line-height: 0;
  color: var(--accent); opacity: 0.3;
  position: absolute; top: 20px; left: 16px;
  font-style: normal;
}

.about-skills { margin-top: 28px; }
.skill-item {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.skill-item span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.skill-bar {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.skill-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SERVICES ===== */
#services { background: var(--bg); }
.services-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0; transform: translateY(30px);
}
.service-card.animated { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,69,96,0.08), rgba(123,47,255,0.08));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(233,69,96,0.3);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.service-card:hover::before { opacity: 1; }
.sc-number {
  font-size: 0.72rem; font-weight: 700;
  color: var(--accent); letter-spacing: 2px;
  margin-bottom: 20px; opacity: 0.6;
}
.sc-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px; display: block;
  background: rgba(233,69,96,0.08);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 16px;
  padding: 12px;
  transition: all 0.3s;
}
.sc-icon svg { width: 100%; height: 100%; }
.service-card:hover .sc-icon {
  background: rgba(233,69,96,0.15);
  border-color: rgba(233,69,96,0.5);
  box-shadow: 0 0 20px rgba(233,69,96,0.2);
  transform: scale(1.05);
}
.service-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.sc-arrow {
  position: absolute; bottom: 28px; right: 28px;
  font-size: 1.2rem; color: rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.service-card:hover .sc-arrow { color: var(--accent); transform: translate(4px, -4px); }

/* ===== VIDEO ===== */
#video { background: var(--bg); }


.video-wrapper {
  position: relative; margin: 0 auto;
  max-width: 900px;
}

.video-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(233,69,96,0.15), transparent 70%);
  border-radius: 30px;
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.video-frame {
  position: relative;
  width: 100%; padding-bottom: 56.25%;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(233,69,96,0.25);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 20px;
}

/* Corner brackets */
.video-corner {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--accent); border-style: solid;
  opacity: 0.7; z-index: 2;
}
.video-corner.vc-tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.video-corner.vc-tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.video-corner.vc-bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.video-corner.vc-br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Tags below video */
.video-tags {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
}
.video-tags span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem; font-weight: 500;
  padding: 8px 20px; border-radius: 20px;
  transition: all 0.3s;
}
.video-tags span:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(233,69,96,0.08);
}

/* ===== AWARDS ===== */
#awards { background: var(--bg2); }
.awards-wrapper {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 32px; align-items: start;
}
.award-main {
  background: linear-gradient(135deg, rgba(233,69,96,0.12), rgba(123,47,255,0.12));
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 28px; padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
  opacity: 0; transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.award-main.animated { opacity: 1; transform: scale(1); }
.award-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(233,69,96,0.08), transparent 60%);
  animation: rotateGlow 8s linear infinite;
}
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.award-content { position: relative; z-index: 1; }
.award-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #ff9500);
  color: var(--bg); font-size: 0.72rem; font-weight: 800;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: 1px; text-transform: uppercase;
}
.award-trophy-big { font-size: 5rem; margin-bottom: 12px; animation: trophyFloat 3s ease-in-out infinite; }
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}
.award-year-big {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 4px;
  color: var(--accent); margin-bottom: 16px; opacity: 0.8;
}
.award-main h2 { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 16px; }
.award-main p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.award-org-tag {
  display: inline-block;
  border: 1px solid rgba(233,69,96,0.4);
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  padding: 6px 18px; border-radius: 20px;
  background: rgba(233,69,96,0.08);
}
.award-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.award-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}
.award-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.award-particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: 0.8s; background: var(--gold); }
.award-particles span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1.6s; background: var(--accent2); }
.award-particles span:nth-child(4) { top: 60%; right: 10%; animation-delay: 2.4s; }
.award-particles span:nth-child(5) { bottom: 10%; right: 30%; animation-delay: 3.2s; background: var(--gold); }
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(10px, -15px); opacity: 1; }
}

.awards-side { display: flex; flex-direction: column; gap: 20px; }
.award-small {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
  opacity: 0; transform: translateX(30px);
}
.award-small.animated { opacity: 1; transform: translateX(0); }
.award-small:hover { border-color: rgba(233,69,96,0.3); transform: translateX(-4px); }
.as-year {
  background: rgba(233,69,96,0.1);
  color: var(--accent); font-size: 0.72rem; font-weight: 800;
  padding: 4px 10px; border-radius: 8px;
  white-space: nowrap; letter-spacing: 1px;
}
.as-icon { font-size: 1.8rem; }
.as-info h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.as-info p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 10px; }
.as-info span {
  font-size: 0.72rem; color: var(--accent); font-weight: 700;
  background: rgba(233,69,96,0.08); padding: 3px 10px; border-radius: 10px;
}

/* ===== MEDIA ===== */
#media { background: var(--bg); }
.media-ticker {
  margin-bottom: 60px; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.ticker-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-track span { font-size: 1rem; font-weight: 700; color: var(--muted); }
.ticker-track span:nth-child(odd) { color: var(--white); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  display: block; transition: all 0.4s;
  opacity: 0; transform: translateY(20px);
}
.media-card.animated { opacity: 1; transform: translateY(0); }
.media-card:hover {
  border-color: rgba(233,69,96,0.3);
  background: rgba(233,69,96,0.05);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.mc-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.mc-pub { font-size: 1rem; font-weight: 800; color: var(--white); }
.mc-arrow {
  font-size: 1.2rem; color: var(--muted);
  transition: all 0.3s;
}
.media-card:hover .mc-arrow { color: var(--accent); transform: translate(3px, -3px); }
.media-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.mc-tag {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: url('kolkata-bg2.jpg') center center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  filter: grayscale(80%);
}
.contact-bg { position: absolute; inset: 0; overflow: hidden; }
.contact-blob-1 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,69,96,0.1), transparent);
  top: -100px; right: -100px; border-radius: 50%;
  animation: blobFloat 10s ease-in-out infinite;
}
.contact-blob-2 {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,47,255,0.1), transparent);
  bottom: -50px; left: -50px; border-radius: 50%;
  animation: blobFloat 12s 4s ease-in-out infinite;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin: 24px 0 32px; }
.contact-info-items { margin-bottom: 36px; }
.ci-item {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-item label { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.ci-item a, .ci-item span { color: var(--white); font-size: 0.92rem; font-weight: 500; }
.ci-item a:hover { color: var(--accent); }

.social-row { display: flex; gap: 12px; }
.soc-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.3s;
}
.soc-btn svg { width: 18px; height: 18px; }
.soc-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,0.08); transform: translateY(-3px); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; margin-bottom: 28px; }
.form-group input, .form-group textarea {
  width: 100%; background: transparent; border: none; outline: none;
  color: var(--white); font-family: inherit; font-size: 0.95rem;
  padding: 12px 0 8px; border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.form-group textarea { resize: none; }
.form-group label {
  position: absolute; top: 12px; left: 0;
  font-size: 0.88rem; color: var(--muted);
  pointer-events: none; transition: all 0.3s;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px; font-size: 0.72px; color: var(--accent); font-size: 0.72rem;
}
.form-group input:focus, .form-group textarea:focus {
  border-bottom-color: var(--accent);
}
.form-line {
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.4s;
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line { width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { opacity: 0; }

.submit-btn {
  width: 100%; justify-content: center;
  padding: 16px; font-size: 1rem;
}
.btn-icon svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}
footer p { color: var(--muted); font-size: 0.85rem; margin-bottom: 8px; }
footer a { color: var(--accent); font-weight: 600; }
.footer-copy { font-size: 0.78rem !important; opacity: 0.5; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

[data-aos] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-sub, .hero-btns { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .floating-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .awards-wrapper { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid, .media-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero-title { letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .contact-form { padding: 28px 20px; }
}

/* ===== EFFECT 1: GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9989;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: grainAnim 0.5s steps(2) infinite;
  mix-blend-mode: overlay;
}
@keyframes grainAnim {
  0%   { background-position: 0 0; }
  25%  { background-position: -50px 30px; }
  50%  { background-position: 80px -40px; }
  75%  { background-position: -30px 60px; }
  100% { background-position: 50px -20px; }
}

/* ===== EFFECT 2: SPLIT TEXT REVEAL ===== */
.split-text {
  overflow: hidden;
  position: relative;
}
.split-line {
  display: block;
  overflow: hidden;
}
.split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.split-text.revealed .split-word {
  transform: translateY(0);
  opacity: 1;
}

/* ===== EFFECT 3: 3D CARD TILT ===== */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(233,69,96,0.25) !important;
}
.tilt-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* ===== EFFECT 4: SMOOTH SCROLL (Lenis) ===== */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ===== PREMIUM: ANIMATED HERO BACKGROUND ===== */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(233,69,96,0.07), transparent),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201,168,76,0.07), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(201,168,76,0.05), transparent);
  z-index: 0;
  animation: heroBgShift 10s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0%   { opacity: 0.6; transform: scale(1) translateX(0); }
  50%  { opacity: 1;   transform: scale(1.05) translateX(10px); }
  100% { opacity: 0.7; transform: scale(1) translateX(-10px); }
}

/* Animated gold + red gradient mesh */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(233,69,96,0.04) 0deg,
      rgba(201,168,76,0.06) 90deg,
      rgba(233,69,96,0.04) 180deg,
      rgba(201,168,76,0.03) 270deg,
      rgba(233,69,96,0.04) 360deg
    );
  animation: meshRotate 20s linear infinite;
}
@keyframes meshRotate {
  from { transform: rotate(0deg) scale(1.5); }
  to   { transform: rotate(360deg) scale(1.5); }
}

/* Gold shimmer line */
.hero-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201,168,76,0.04) 50%,
    transparent 60%
  );
  z-index: 0;
  animation: shimmerMove 6s ease-in-out infinite;
}
@keyframes shimmerMove {
  0%   { left: -100%; }
  100% { left: 150%; }
}

/* ===== PREMIUM: GLASSMORPHISM CARDS ===== */
.service-card,
.media-card {
  background: rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  position: relative;
  overflow: hidden;
}
/* Gold top border shine on cards */
.service-card::after,
.media-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,76,0.4),
    rgba(233,69,96,0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after,
.media-card:hover::after { opacity: 1; }

/* Award main card gold glow */
.award-main {
  background: linear-gradient(135deg,
    rgba(201,168,76,0.08),
    rgba(233,69,96,0.08)
  ) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
}

/* Gold gradient text for badge */
.hero-badge {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(233,69,96,0.1)) !important;
  border-color: rgba(201,168,76,0.4) !important;
  color: var(--gold2) !important;
}
.badge-dot { background: var(--gold) !important; }

/* Gold shimmer on stat numbers */
.stat-num {
  background: linear-gradient(135deg, #fff, var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium section tag — gold tint */
.section-tag {
  background: linear-gradient(135deg,
    rgba(201,168,76,0.1),
    rgba(233,69,96,0.08)
  ) !important;
  border-color: rgba(201,168,76,0.3) !important;
  color: var(--gold2) !important;
}

/* Gold accent on nav avatar ring */
.nav-avatar img { border-color: var(--gold) !important; }
.nav-avatar-ring { border-color: rgba(201,168,76,0.5) !important; }

/* Scroll progress gold */
.scroll-progress {
  background: linear-gradient(90deg, var(--accent), var(--gold)) !important;
}

/* Gold floating card border */
.floating-card {
  border-color: rgba(201,168,76,0.2) !important;
}

/* About exp badge gold */
.exp-badge {
  background: linear-gradient(135deg, var(--gold), #a07830) !important;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3) !important;
}

/* Ticker gold alternating */
.ticker-track span:nth-child(odd) {
  color: var(--gold2) !important;
}

/* Award org tag gold */
.award-org-tag {
  border-color: rgba(201,168,76,0.4) !important;
  color: var(--gold2) !important;
  background: rgba(201,168,76,0.08) !important;
}

/* ===== SERIOUS SLIDER CONTACT ===== */
.serious-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.serious-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), rgba(233,69,96,0.5), transparent);
}

.serious-question {
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin-bottom: 28px;
  letter-spacing: -0.5px;
}

/* Level pills */
.serious-levels {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.sl {
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  transition: all 0.3s;
}
.sl.active {
  background: linear-gradient(135deg, rgba(233,69,96,0.2), rgba(201,168,76,0.2));
  border-color: var(--gold);
  color: var(--white);
}

/* Slider */
.serious-slider-wrap {
  position: relative; margin-bottom: 36px;
}
.slider-track {
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.slider-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 4px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(233,69,96,0.5);
}
.serious-slider {
  width: 100%; -webkit-appearance: none;
  background: transparent; outline: none;
  cursor: pointer; position: relative; z-index: 2;
}
.serious-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  cursor: pointer;
  box-shadow: 0 0 12px rgba(233,69,96,0.6), 0 0 24px rgba(201,168,76,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.serious-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(233,69,96,0.8), 0 0 40px rgba(201,168,76,0.5);
}
.serious-slider::-webkit-slider-runnable-track {
  height: 0; background: transparent;
}
.slider-emoji {
  position: absolute; top: -40px; left: 0%;
  font-size: 1.8rem;
  transform: translateX(-50%);
  transition: left 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(233,69,96,0.5));
  pointer-events: none;
}

/* Result box */
.serious-result {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 24px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.sr-message {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.7; margin-bottom: 20px;
  min-height: 52px;
  transition: all 0.3s;
}
.serious-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700;
  transition: all 0.4s;
  width: 100%; justify-content: center;
}
.serious-note {
  text-align: center; font-size: 0.78rem;
  color: var(--muted); font-style: italic;
}

/* Level color themes */
.serious-box.level-0 .slider-fill { background: linear-gradient(90deg, #888, #aaa); }
.serious-box.level-1 .slider-fill { background: linear-gradient(90deg, #00d4ff, #7b2fff); }
.serious-box.level-2 .slider-fill { background: linear-gradient(90deg, #e94560, #ff6b35); }
.serious-box.level-3 .slider-fill { background: linear-gradient(90deg, #c9a84c, #f5d98b); }
.serious-box.level-4 .slider-fill { background: linear-gradient(90deg, #28a745, #20c997); }

.serious-box.level-4 .serious-result {
  border-color: rgba(40,167,69,0.3);
  background: rgba(40,167,69,0.05);
  animation: moneyShake 0.5s ease;
}
@keyframes moneyShake {
  0%, 100% { transform: translateX(0); }
  20%  { transform: translateX(-4px) rotate(-1deg); }
  40%  { transform: translateX(4px)  rotate(1deg); }
  60%  { transform: translateX(-3px); }
  80%  { transform: translateX(3px); }
}

/* ================================================================
   MOBILE FIXES — iphone & small screens
   ================================================================ */

/* Hide gaming cursor on touch/mobile devices */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto !important; }
  .cursor, .cursor-follower, .cursor-trail { display: none !important; }
  .btn-primary, .btn-outline, .hamburger, .serious-slider,
  a, button, input, textarea, select { cursor: pointer !important; }
}

/* ── Loader ── */
@media (max-width: 768px) {
  .loader-left  { padding-right: 32px; }
  .loader-right { padding-left: 32px; }
  .loader-content { max-width: 200px; }
  .loader-name { font-size: clamp(1.6rem, 7vw, 2.4rem); margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .loader-left  { padding-right: 20px; }
  .loader-right { padding-left: 20px; }
  .loader-name { font-size: clamp(1.4rem, 8vw, 2rem); }
  .loader-tag  { font-size: 0.62rem; letter-spacing: 2px; }
}

/* ── Blobs — contain them on mobile ── */
@media (max-width: 768px) {
  .blob-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
  .blob-2 { width: 260px; height: 260px; }
  .blob-3 { width: 200px; height: 200px; }
}
@media (max-width: 480px) {
  .blob-1 { width: 200px; height: 200px; }
  .blob-2 { width: 180px; height: 180px; }
  .blob-3 { width: 140px; height: 140px; }
}

/* ── Navbar ── */
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; height: 64px; }
  .nav-logo-name { font-size: 0.82rem; }
  .hamburger { cursor: pointer; }
}
@media (max-width: 360px) {
  .nav-logo-name { display: none; }
}

/* ── Hero section ── */
@media (max-width: 768px) {
  .hero-container { padding: 40px 20px 60px; gap: 32px; }
  .hero-title     { font-size: clamp(2.4rem, 10vw, 4rem); letter-spacing: -1px; }
  .typed-container { font-size: 1rem; }
  .hero-badge     { font-size: 0.68rem; padding: 6px 12px; text-align: center; }
  .hero-sub       { font-size: 0.9rem; max-width: 100%; }
  .orbit-ring     { display: none; }
}
@media (max-width: 480px) {
  .hero-container { padding: 32px 16px 48px; gap: 24px; }
  .hero-title     { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-badge     { font-size: 0.65rem; padding: 5px 10px; }
  .hero-btns      { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
}

/* ── Hero stats ── */
@media (max-width: 768px) {
  .hero-stats  { gap: 0; }
  .stat        { padding: 0 18px; }
  .stat:first-child { padding-left: 0; }
  .stat-num    { font-size: 1.7rem; }
  .stat-plus   { font-size: 1.2rem; }
  .stat-label  { font-size: 0.7rem; }
  .stat-divider { height: 30px; }
}
@media (max-width: 480px) {
  .stat        { padding: 0 10px; }
  .stat-num    { font-size: 1.45rem; }
  .stat-plus   { font-size: 1rem; }
  .stat-label  { font-size: 0.64rem; }
  .stat-divider { height: 24px; }
}
@media (max-width: 360px) {
  .stat        { padding: 0 8px; }
  .stat-num    { font-size: 1.25rem; }
  .stat-label  { display: none; }
}

/* ── Sections global ── */
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }
}

/* ── About ── */
@media (max-width: 768px) {
  .about-grid  { gap: 40px; }
  .exp-badge   { top: -12px; right: -12px; padding: 14px; }
  .exp-num     { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .about-grid  { gap: 28px; }
  .about-intro { font-size: 1rem; }
  .about-quote { padding: 12px 16px 12px 20px; }
  .quote-mark  { font-size: 3rem; }
}

/* ── Services ── */
@media (max-width: 480px) {
  .service-card { padding: 24px 18px; }
}

/* ── Video ── */
@media (max-width: 480px) {
  .video-tags { gap: 8px; margin-top: 24px; }
  .video-tags span { font-size: 0.75rem; padding: 6px 14px; }
}

/* ── Awards ── */
@media (max-width: 480px) {
  .award-main { padding: 28px 20px; }
  .award-trophy-big { font-size: 3rem; }
  .award-year-big { font-size: 2.5rem; }
  .award-main h2 { font-size: 1.5rem; }
  .award-small { padding: 16px; gap: 12px; }
  .as-year { font-size: 0.7rem; padding: 4px 8px; }
}

/* ── Media cards ── */
@media (max-width: 480px) {
  .media-card { padding: 18px 16px; }
  .mc-pub { font-size: 0.78rem; }
}

/* ── Contact ── */
@media (max-width: 768px) {
  .contact-inner { gap: 48px; }
}
@media (max-width: 480px) {
  .contact-inner { gap: 36px; }
  .ci-item { gap: 12px; }
  .ci-item a, .ci-item span { font-size: 0.88rem; word-break: break-all; }
  .social-row { gap: 10px; }
  .soc-btn { width: 40px; height: 40px; }
}

/* ── Serious Box ── */
@media (max-width: 480px) {
  .serious-box { padding: 24px 18px !important; }
  .serious-question { font-size: 1.1rem !important; }
  .sr-message { font-size: 0.88rem; }
  .serious-btn { padding: 12px 20px; font-size: 0.88rem; }
  .serious-note { font-size: 0.73rem; }
  .slider-emoji { font-size: 1.5rem; top: -36px; }
}

/* ── Footer ── */
@media (max-width: 480px) {
  footer { padding: 32px 0; }
  .footer-logo { font-size: 1rem; }
  footer p { font-size: 0.8rem; }
}

/* Prevent any horizontal overflow site-wide */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ================================================================
   TARGETED FIXES — loader, hero zoom, overflow
   ================================================================ */

/* ── FIX 1: Loader — full screen single panel on mobile ── */
@media (max-width: 768px) {
  .loader-left {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    justify-content: center;
    border-right: none;
  }
  .loader-right { display: none; }
  .loader-content {
    max-width: 320px;
    width: 100%;
    text-align: center;
  }
  .loader-line  { margin: 0 auto 20px; }
  .loader-name  { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -1px; }
  .loader-tag   { font-size: 0.7rem; }
  .loader-sub   { text-align: center; }
}
@media (max-width: 480px) {
  .loader-left  { padding: 0 28px; }
  .loader-name  { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .loader-content { max-width: 280px; }
}

/* ── FIX 2a: Stop hero image from zooming (remove scale from glow pulse on mobile) ── */
@media (max-width: 1024px) {
  .img-glow { animation: glowPulseNoScale 3s ease-in-out infinite; }
}
@keyframes glowPulseNoScale {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ── FIX 2b: Hero overflow — prevent stats from being clipped ── */
@media (max-width: 768px) {
  #hero {
    overflow: visible;
    align-items: flex-start;
    min-height: 100svh;
    height: auto;
  }
  #hero::before { border-radius: 0; }
  .hero-bg-blobs { overflow: hidden; }
  .hero-container { padding-top: 20px; padding-bottom: 56px; }
}
@media (max-width: 480px) {
  #hero { min-height: 0; }
  .hero-container { padding-top: 16px; padding-bottom: 48px; }
}
