/* ==========================================================================
   VIPIN KUMAR - 3D MODERN DEVELOPER PORTFOLIO STYLESHEET
   Aesthetics: Cyber-Luxe Dark Theme, Glassmorphism, 3D Canvas, Glow Gradients
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #060913;
  --bg-secondary: #0c1021;
  --bg-tertiary: #131a36;
  --bg-card: rgba(14, 21, 46, 0.65);
  --bg-card-hover: rgba(22, 33, 72, 0.85);
  --bg-glass: rgba(10, 15, 34, 0.75);

  /* Brand Accent Colors */
  --azure-blue: #0078d4;
  --azure-cyan: #00d4ff;
  --ai-purple: #9d4edd;
  --ai-magenta: #e0aaff;
  --ai-violet: #7928ca;
  --emerald-green: #10b981;
  --amber-gold: #f59e0b;

  /* Gradients */
  --gradient-azure: linear-gradient(135deg, #0078d4 0%, #00d4ff 100%);
  --gradient-ai: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
  --gradient-hybrid: linear-gradient(135deg, #00d4ff 0%, #7928ca 50%, #ff0080 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(157, 78, 221, 0.2) 50%, rgba(255, 255, 255, 0.05) 100%);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.35);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.25);
  --shadow-glow-purple: 0 0 35px rgba(157, 78, 221, 0.3);

  /* Layout & Sizing */
  --max-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--azure-blue);
}

/* Global 3D Canvas Background */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--azure-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0 15px var(--azure-cyan);
}

.custom-cursor-follower {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0, 212, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: none) or (pointer: coarse) {

  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }
}

/* Main Container & Sections */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  padding: 7rem 0;
  z-index: 2;
}

/* Headings & Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azure-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.section-tag.ai-tag {
  background: rgba(157, 78, 221, 0.12);
  border-color: rgba(157, 78, 221, 0.35);
  color: #c084fc;
}

.section-tag.green-tag {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.gradient-text-azure {
  background: var(--gradient-azure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-ai {
  background: var(--gradient-hybrid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(6, 9, 19, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-hybrid);
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.brand-name span {
  color: var(--azure-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-azure);
  transition: var(--transition-smooth);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  color: var(--azure-cyan);
  border-color: var(--azure-cyan);
  background: rgba(0, 212, 255, 0.12);
  transform: translateY(-2px);
}

.btn-cv-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: var(--radius-full);
  color: var(--azure-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}
.btn-cv-nav:hover {
  background: var(--gradient-azure);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.btn-ai-terminal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background: rgba(121, 40, 202, 0.18);
  border: 1px solid rgba(157, 78, 221, 0.4);
  border-radius: var(--radius-full);
  color: #e0aaff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-ai-terminal:hover {
  background: rgba(121, 40, 202, 0.35);
  border-color: #d946ef;
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.35);
  transform: translateY(-2px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-green);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

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

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1600;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-cta,
.nav-drawer-header,
.mobile-nav-cv {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: #34d399;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-role-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--azure-cyan);
  margin-bottom: 1.5rem;
  min-height: 2.2rem;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--azure-cyan);
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-desc {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-azure);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 120, 212, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(0, 212, 255, 0.55);
  transform: translateY(-3px);
}

.btn-cv {
  background: linear-gradient(135deg, #0284c7 0%, #00d4ff 50%, #38bdf8 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cv:hover {
  box-shadow: 0 8px 35px rgba(0, 212, 255, 0.7);
  transform: translateY(-3px) scale(1.02);
}

.btn-ai {
  background: var(--gradient-hybrid);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(121, 40, 202, 0.4);
}

.btn-ai:hover {
  box-shadow: 0 8px 35px rgba(217, 70, 239, 0.55);
  transform: translateY(-3px);
}

.btn-outline {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--azure-cyan);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-3px);
  color: var(--azure-cyan);
}

.hero-social-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.contact-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.contact-pill-link:hover {
  color: var(--azure-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.06);
}

/* Hero 3D Orb & Interactive Display */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-3d-scene-container {
  width: 100%;
  height: 460px;
  position: relative;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-3d-canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: var(--radius-lg);
}

/* Floating Glass Badges in Hero */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.15rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 20;
  transition: var(--transition-smooth);
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-badge:hover {
  border-color: var(--azure-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: scale(1.05);
}

.floating-badge.badge-top-right {
  top: 10px;
  right: -10px;
  animation-delay: 0s;
}

.floating-badge.badge-bottom-left {
  bottom: 20px;
  left: -15px;
  animation-delay: 2s;
}

.floating-badge.badge-mid-right {
  bottom: 120px;
  right: -25px;
  animation-delay: 4s;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.badge-icon.azure {
  background: rgba(0, 120, 212, 0.2);
  color: var(--azure-cyan);
}

.badge-icon.ai {
  background: rgba(157, 78, 221, 0.2);
  color: #c084fc;
}

.badge-icon.star {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber-gold);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@keyframes floatSlow {

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

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

/* ==========================================================================
   Metrics Counter Banner
   ========================================================================== */
.metrics-banner {
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.metrics-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--border-subtle);
}

.metric-item:last-child {
  border-right: none;
}

.metric-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.metric-symbol {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--azure-cyan);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text-col p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlight-box {
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.1) 0%, rgba(121, 40, 202, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
  backdrop-filter: blur(12px);
}

.about-highlight-box h4 {
  color: var(--azure-cyan);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-highlight-box p {
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
  color: var(--text-primary) !important;
}

.about-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.info-glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--azure-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 0.4rem;
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list span.val {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

/* ==========================================================================
   Skills Matrix Section (Categorized & Visual)
   ========================================================================== */
.skills-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.skill-tab-btn {
  padding: 0.65rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.skill-tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.skill-tab-btn.active {
  background: var(--gradient-azure);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.35);
}

.skill-tab-btn.active.tab-ai {
  background: var(--gradient-hybrid);
  box-shadow: 0 4px 20px rgba(157, 78, 221, 0.35);
}

.skills-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
}

.skill-category-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.skill-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-card-border);
}

.skill-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.skill-category-card.featured-ai {
  border-color: rgba(157, 78, 221, 0.4);
  background: linear-gradient(145deg, rgba(19, 16, 42, 0.85) 0%, rgba(14, 21, 46, 0.7) 100%);
}

.skill-category-card.featured-ai::before {
  background: var(--gradient-hybrid);
  height: 4px;
}

.skill-category-card.featured-ai:hover {
  box-shadow: var(--shadow-glow-purple);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.category-icon.c-azure {
  background: rgba(0, 120, 212, 0.15);
  color: var(--azure-cyan);
}

.category-icon.c-ai {
  background: rgba(157, 78, 221, 0.2);
  color: #c084fc;
}

.category-icon.c-net {
  background: rgba(81, 43, 212, 0.2);
  color: #a78bfa;
}

.category-icon.c-db {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.category-icon.c-tools {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-gold);
}

.category-title-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.category-title-wrap span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.skill-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.skill-pill:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.skill-pill.ai-pill {
  background: rgba(157, 78, 221, 0.1);
  border-color: rgba(157, 78, 221, 0.25);
  color: #e0aaff;
}

.skill-pill.ai-pill:hover {
  background: rgba(157, 78, 221, 0.25);
  border-color: #d946ef;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.4);
}

/* ==========================================================================
   Projects Showcase (3D Interactive Tilt & Filters)
   ========================================================================== */
.projects-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.project-filter-btn {
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.project-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.project-filter-btn.active {
  background: var(--gradient-azure);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.35);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
}

.project-card.featured-ai-project {
  border-color: rgba(157, 78, 221, 0.4);
}

.project-card.featured-ai-project:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-glow-purple);
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.project-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.1);
  color: var(--azure-cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.project-category-badge.ai-badge {
  background: rgba(157, 78, 221, 0.15);
  color: #c084fc;
  border-color: rgba(157, 78, 221, 0.35);
}

.project-category-badge.sec-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.35);
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.live-status-badge:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.6);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.project-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.project-metric-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--azure-cyan);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.project-metric-highlight.green-highlight {
  border-left-color: var(--emerald-green);
}

.project-metric-highlight.ai-highlight {
  border-left-color: #c084fc;
}

.project-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
}

.tech-tag {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #cbd5e1;
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: none;
  color: var(--azure-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-details:hover {
  color: #fff;
  transform: translateX(4px);
}

.project-ext-link {
  color: var(--text-muted);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.project-ext-link:hover {
  color: var(--azure-cyan);
  background: rgba(0, 212, 255, 0.15);
}

/* ==========================================================================
   Experience Timeline Section
   ========================================================================== */
.experience-timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--azure-cyan) 0%, var(--ai-purple) 60%, var(--emerald-green) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 3.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--azure-cyan);
  box-shadow: 0 0 15px var(--azure-cyan);
  z-index: 5;
}

.timeline-item.active .timeline-dot {
  background: var(--azure-cyan);
  border-color: #fff;
}

.timeline-item.ai-node .timeline-dot {
  border-color: var(--ai-purple);
  box-shadow: 0 0 15px var(--ai-purple);
}

.timeline-content-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.timeline-content-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.timeline-role {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
}

.timeline-period {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azure-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.timeline-company-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.company-name {
  color: #cbd5e1;
}

.company-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-bullets li::before {
  content: '▹';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--azure-cyan);
  font-size: 1.1rem;
}

/* ==========================================================================
   Key Achievements & Certifications
   ========================================================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.achievement-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.achievement-card.gold-card {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(145deg, rgba(30, 22, 10, 0.6) 0%, rgba(14, 21, 46, 0.7) 100%);
}

.achievement-card.gold-card:hover {
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25);
}

.achievement-card.emerald-card {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(145deg, rgba(8, 28, 20, 0.6) 0%, rgba(14, 21, 46, 0.7) 100%);
}

.achievement-card.emerald-card:hover {
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.achieve-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.achieve-icon-wrap.gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber-gold);
}

.achieve-icon-wrap.emerald {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-green);
}

.achievement-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.achievement-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Capgemini × McDonald's Award Card */
.achievement-card.capgemini-card {
  border-color: rgba(0, 112, 173, 0.45);
  background: linear-gradient(145deg, rgba(0, 50, 95, 0.55) 0%, rgba(10, 18, 40, 0.8) 100%);
  position: relative;
}

.achievement-card.capgemini-card:hover {
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 15px 45px rgba(0, 112, 173, 0.35), 0 0 25px rgba(0, 212, 255, 0.2);
}

.achieve-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.achieve-icon-wrap.capgemini {
  background: rgba(0, 112, 173, 0.25);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  margin-bottom: 0;
}

.achieve-badge-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.co-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.co-badge.capgemini {
  background: rgba(0, 112, 173, 0.25);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.co-badge.mcdonalds {
  background: rgba(255, 188, 13, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.co-badge.status {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.award-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--azure-cyan);
  margin-bottom: 0.4rem;
}

.award-citation {
  margin-bottom: 0.85rem;
}

.award-signatory {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid #00d4ff;
}

.award-signatory strong {
  color: var(--text-primary);
}

/* Certificate Thumbnail Preview in Card */
.award-cert-preview {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.25);
  cursor: pointer;
  margin-bottom: 1.25rem;
  background: #060a14;
}

.cert-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.cert-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-cert-preview:hover .cert-preview-overlay,
.award-cert-preview:focus .cert-preview-overlay {
  opacity: 1;
}

.award-cert-preview:hover .cert-thumb-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.cert-view-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 112, 173, 0.85);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.award-cert-preview:hover .cert-view-cta {
  transform: translateY(0);
}

/* Award Card Actions */
.award-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cert-trigger {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0070ad 0%, #0099e6 100%);
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.4);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cert-trigger:hover {
  background: linear-gradient(135deg, #0088d4 0%, #00d4ff 100%);
  color: #050b1a;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

.btn-cert-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-cert-download:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

/* Inline Certificate Link Button (Experience Timeline) */
.inline-cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 112, 173, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #38bdf8;
  padding: 0.2rem 0.55rem;
  margin-left: 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  vertical-align: middle;
}

.inline-cert-btn:hover {
  background: rgba(0, 112, 173, 0.4);
  color: #ffffff;
  border-color: #00d4ff;
  transform: translateY(-1px);
}

.highlight-bullet {
  background: rgba(0, 112, 173, 0.08);
  border-left: 2px solid #00d4ff;
  padding: 0.35rem 0.6rem !important;
  border-radius: 0 6px 6px 0;
  margin-bottom: 0.4rem;
}

/* Certificate Lightbox Modal Specifics */
.award-modal-card {
  max-width: 820px;
  padding: 2.25rem;
  background: #080d1e;
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.award-modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.award-modal-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.award-modal-card h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.award-modal-subtitle {
  color: var(--azure-cyan);
  font-size: 1rem;
  font-weight: 500;
}

.award-modal-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 112, 173, 0.2);
  margin-bottom: 1.5rem;
  background: #050811;
}

.award-modal-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.award-modal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.award-info-tile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.award-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
}

.award-info-val {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.award-modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.75rem;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.cert-card:hover {
  border-color: var(--azure-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.cert-badge-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 120, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--azure-cyan);
  flex-shrink: 0;
}

.cert-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.cert-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive VipinAI Terminal / Copilot
   ========================================================================== */
.terminal-wrapper {
  background: #090e1f;
  border: 1px solid rgba(157, 78, 221, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), var(--shadow-glow-purple);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.terminal-header {
  background: #0f172a;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.t-dot.red {
  background: #ef4444;
}

.t-dot.yellow {
  background: #f59e0b;
}

.t-dot.green {
  background: #10b981;
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-status-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #c084fc;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.terminal-body {
  padding: 1.75rem;
  min-height: 380px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
}

.terminal-msg {
  display: flex;
  gap: 0.85rem;
  line-height: 1.6;
}

.terminal-msg.agent {
  color: #e2e8f0;
}

.terminal-msg.user {
  color: var(--azure-cyan);
}

.msg-prefix {
  font-weight: 700;
  flex-shrink: 0;
}

.msg-prefix.agent-prefix {
  color: #c084fc;
}

.msg-prefix.user-prefix {
  color: var(--azure-cyan);
}

.terminal-chips {
  padding: 1rem 1.75rem;
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.terminal-chip {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.terminal-chip:hover {
  background: rgba(157, 78, 221, 0.2);
  border-color: #d946ef;
  color: #ffffff;
}

.terminal-input-bar {
  display: flex;
  align-items: center;
  padding: 1rem 1.75rem;
  background: #0a0f24;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.75rem;
}

.terminal-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #ffffff;
}

.terminal-input-bar input::placeholder {
  color: var(--text-dim);
}

.btn-terminal-send {
  background: var(--gradient-hybrid);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-terminal-send:hover {
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.5);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.channel-item:hover {
  border-color: var(--azure-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.channel-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--azure-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.channel-meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.channel-meta strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.btn-copy {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.btn-copy:hover {
  color: var(--azure-cyan);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: rgba(6, 9, 19, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--azure-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: #04060d;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-time-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--azure-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 13, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0d1226;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), var(--shadow-glow-cyan);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #fff;
}

.arch-box {
  background: #080b18;
  border: 1px dashed rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
}

.modal-actions-bar {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.modal-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: var(--azure-cyan);
  transition: var(--transition-smooth);
}

.modal-link-btn:hover {
  background: rgba(0, 212, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.modal-link-btn.live-link {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.modal-link-btn.live-link:hover {
  background: rgba(16, 185, 129, 0.3);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.85rem 1.5rem;
  background: #0f172a;
  border: 1px solid var(--azure-cyan);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
/* ==========================================================================
   Comprehensive Mobile & Multi-Device Responsive System
   Breakpoints: 1200px, 992px, 768px, 540px, 480px, 360px
   ========================================================================== */

/* --- Large Tablets & Small Laptops (<= 1200px) --- */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.75rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  }

  .floating-badge.badge-top-right {
    right: 5px;
  }

  .floating-badge.badge-bottom-left {
    left: 5px;
  }

  .floating-badge.badge-mid-right {
    right: 5px;
  }
}

/* --- Tablets Landscape & Medium Screens (<= 992px) --- */
@media (max-width: 992px) {
  section {
    padding: 5rem 0;
  }

  .hero-section {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

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

  .hero-visual-wrapper {
    order: -1;
    min-height: 360px;
    max-height: 420px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .metrics-glass-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .metric-item:nth-child(2) {
    border-right: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .btn-ai-terminal#btn-scroll-ai {
    display: none; /* Keep navbar uncluttered on tablet/mobile */
  }

  .hamburger {
    display: flex;
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0.85rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .nav-drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
  }

  .nav-drawer-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #fff;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #090e1f;
    background: linear-gradient(180deg, #0d142d 0%, #060913 100%);
    border-left: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.65rem;
    padding: 1.25rem 1.25rem 2rem;
    z-index: 1600;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    visibility: hidden;
    pointer-events: none;
    list-style: none;
  }

  .nav-menu.open {
    right: 0;
    visibility: visible;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: block;
    width: 100%;
    transition: var(--transition-smooth);
    color: var(--text-primary);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 0.5rem;
  }

  .mobile-nav-cv {
    display: block;
    margin-top: 0.25rem;
  }

  .mobile-ai-trigger {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

/* --- Tablets Portrait & Large Phones (<= 768px) --- */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    padding: 0 1.25rem;
  }

  .hero-section {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 6.5vw, 2.9rem);
    line-height: 1.12;
    word-break: break-word;
  }

  .hero-role-wrapper {
    font-size: 1.15rem;
    min-height: auto;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .hero-visual-wrapper {
    min-height: 280px;
    height: 300px;
  }

  .hero-3d-scene-container {
    height: 280px;
  }

  .floating-badge {
    display: none !important; /* Eliminate any horizontal scrolling risk */
  }

  /* Responsive Filter Bars with smooth horizontal swipe */
  .skills-tabs,
  .projects-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .skills-tabs::-webkit-scrollbar,
  .projects-filters::-webkit-scrollbar {
    display: none;
  }

  .skill-tab-btn,
  .project-filter-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
  }

  /* Experience Timeline */
  .experience-timeline::before {
    left: 14px;
  }

  .timeline-dot {
    left: 5px;
    width: 20px;
    height: 20px;
  }

  .timeline-item {
    padding-left: 42px;
    margin-bottom: 2.25rem;
  }

  .timeline-content-card {
    padding: 1.5rem 1.15rem;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .timeline-role {
    font-size: 1.25rem;
  }

  .timeline-company-row {
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .timeline-bullets li {
    font-size: 0.88rem;
    padding-left: 1.25rem;
    line-height: 1.55;
  }

  /* About Sidebar Cards */
  .about-cards-col {
    width: 100%;
  }

  .info-glass-card {
    width: 100%;
    padding: 1.35rem 1.15rem;
  }

  .info-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.55rem 0;
  }

  .info-list li span:first-child {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
  }

  .info-list span.val {
    text-align: left;
    font-size: 0.95rem;
    color: #ffffff;
    word-break: break-word;
  }

  /* Achievements */
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .achievement-card {
    padding: 1.6rem 1.25rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cert-card {
    padding: 1.15rem;
  }

  /* Interactive Terminal */
  .terminal-wrapper {
    border-radius: var(--radius-md);
  }

  .terminal-body {
    padding: 1.25rem 1rem;
    min-height: 280px;
    max-height: 380px;
    font-size: 0.88rem;
  }

  .terminal-chips {
    padding: 0.75rem 1rem;
    gap: 0.4rem;
  }

  .terminal-input-bar {
    padding: 0.75rem 1rem;
  }

  .terminal-input-bar input {
    font-size: 16px; /* Prevents iOS auto-zoom */
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-social-links {
    justify-content: center;
  }

  /* Modals */
  .modal-backdrop {
    padding: 0.75rem;
  }

  .modal-card,
  .award-modal-card {
    padding: 1.5rem 1.15rem;
    max-height: 92vh;
    border-radius: var(--radius-md);
  }

  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
  }

  .award-modal-header {
    padding-right: 2.5rem;
  }

  .award-modal-header h3 {
    font-size: 1.4rem;
  }

  .award-modal-subtitle {
    font-size: 0.9rem;
  }

  .award-modal-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .award-modal-footer {
    flex-direction: column;
    width: 100%;
  }

  .award-modal-footer .btn {
    width: 100%;
  }
}

/* --- Mobile Devices & Phablets (<= 540px) --- */
@media (max-width: 540px) {
  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.94rem;
  }

  .hero-social-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .contact-pill-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .metrics-glass-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
  }

  .metric-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
  }

  .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .about-text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .info-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .info-list span.val {
    text-align: left;
  }

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

  .skill-category-card {
    padding: 1.4rem 1.15rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-card {
    padding: 1.4rem 1.15rem;
    min-height: auto;
  }

  .project-title {
    font-size: 1.2rem;
  }

  .project-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .project-actions .btn-details {
    justify-content: center;
  }

  .project-actions .project-ext-link {
    align-self: center;
  }

  .award-cert-preview {
    height: 160px;
  }

  .award-card-actions {
    flex-direction: column;
    width: 100%;
  }

  .award-card-actions .btn-cert-trigger,
  .award-card-actions .btn-cert-download {
    width: 100%;
  }

  .terminal-title span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .terminal-status-tag span:not(.pulse-dot) {
    display: none;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.4rem 1.15rem;
  }

  .channel-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .channel-left {
    width: 100%;
  }

  .channel-meta {
    width: calc(100% - 52px);
  }

  .channel-meta strong {
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
  }

  .btn-copy {
    align-self: flex-end;
  }

  .award-modal-info-grid {
    grid-template-columns: 1fr;
  }

  .toast-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    justify-content: center;
  }
}

/* --- Compact Mobile Devices (<= 400px) --- */
@media (max-width: 400px) {
  .container {
    padding: 0 0.85rem;
  }

  .nav-container {
    padding: 0 0.75rem;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .btn-cv-nav {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-role-wrapper {
    font-size: 1rem;
  }

  .timeline-item {
    padding-left: 34px;
  }

  .timeline-content-card {
    padding: 1.15rem 0.85rem;
  }

  .award-modal-card,
  .modal-card {
    padding: 1.25rem 0.85rem;
  }

  .arch-box {
    font-size: 0.72rem;
    padding: 0.85rem;
  }
}