/* =============================================================
   COSMIC SYSTEMS ARCHITECT — MrHimanshu.com
   Custom Styles + Animations
   ============================================================= */

/* ---- Design Tokens ---- */
:root {
  --bg-primary:    #07131E;
  --bg-secondary:  #0B1C2C;
  --bg-nebula:     #0D2137;
  --accent-orange: #FF6A00;
  --accent-blue:   #3A8DFF;
  --accent-gold:   #F5C542;
  --text-primary:  #EAF2F8;
  --text-secondary:#9FB3C8;
  --glass-bg:      rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.10);
  --glow-orange:   0 0 24px rgba(255,106,0,0.45);
  --glow-blue:     0 0 24px rgba(58,141,255,0.45);
  --glow-gold:     0 0 24px rgba(245,197,66,0.45);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--bg-primary); }
::-webkit-scrollbar-thumb  { background: var(--accent-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

/* ---- Starfield ---- */
#starfield-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Subtle noise overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6A00, #F5C542, #3A8DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(58,141,255,0.15);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav { transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
#main-nav.scrolled {
  background: rgba(7,19,30,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(58,141,255,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#hamburger.open .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateX(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #FF6A00, #FF8C40);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255,106,0,0.5), 0 8px 24px rgba(255,106,0,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid rgba(58,141,255,0.5);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background: rgba(58,141,255,0.1);
  border-color: var(--accent-blue);
  box-shadow: 0 0 24px rgba(58,141,255,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.hero-title {
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
}
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  border-radius: 3px;
  margin: 14px 0 24px;
}

/* Gradient text */
.gradient-text-orange {
  background: linear-gradient(135deg, #FF6A00, #FFB347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #3A8DFF, #00D4FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-cosmic {
  background: linear-gradient(135deg, #FF6A00 0%, #F5C542 45%, #3A8DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.cosmos-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255,106,0,0.10);
  border: 1px solid rgba(255,106,0,0.22);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cosmos-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 8px rgba(255,106,0,0.9);
  animation: blink 1.5s ease-in-out infinite;
}

.tag-blue   { padding: 3px 10px; background: rgba(58,141,255,0.1);  border:1px solid rgba(58,141,255,0.25);  border-radius:100px; font-size:11px; font-weight:600; color:var(--accent-blue); }
.tag-orange { padding: 3px 10px; background: rgba(255,106,0,0.1);   border:1px solid rgba(255,106,0,0.25);   border-radius:100px; font-size:11px; font-weight:600; color:var(--accent-orange); }
.tag-gold   { padding: 3px 10px; background: rgba(245,197,66,0.1);  border:1px solid rgba(245,197,66,0.25);  border-radius:100px; font-size:11px; font-weight:600; color:var(--accent-gold); }
.tag-teal   { padding: 3px 10px; background: rgba(0,212,160,0.1);   border:1px solid rgba(0,212,160,0.25);   border-radius:100px; font-size:11px; font-weight:600; color:#00D4A0; }

/* ============================================================
   TYPEWRITER
   ============================================================ */
.typewriter-text {
  color: var(--accent-orange);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(18px, 2.5vw, 28px);
}
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent-orange);
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1s step-end infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.08); opacity: 1; }
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes flow-dash {
  from { stroke-dashoffset: 24; }
  to   { stroke-dashoffset: 0; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(58,141,255,0.3); }
  50%       { box-shadow: 0 0 40px rgba(58,141,255,0.7); }
}
@keyframes counter-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PROFILE AVATAR
   ============================================================ */
.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
}
.profile-avatar-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-orange), var(--accent-gold), var(--accent-blue), var(--accent-orange));
  animation: orbit-spin 5s linear infinite;
  z-index: 0;
}
.profile-avatar-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,141,255,0.18) 0%, transparent 70%);
  animation: pulse-ring 3s ease-in-out infinite;
  z-index: 0;
}
.profile-avatar {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-nebula));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  font-weight: 900;
  color: var(--accent-blue);
  font-family: 'JetBrains Mono', monospace;
  border: 4px solid var(--bg-primary);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
}

/* ============================================================
   EXPERTISE CARDS
   ============================================================ */
.expertise-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.expertise-card:hover {
  border-color: rgba(58,141,255,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 30px rgba(58,141,255,0.07);
  transform: translateY(-8px);
  background: rgba(58,141,255,0.04);
}
.expertise-card:hover::before { opacity: 1; }

.expertise-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.case-card {
  background: rgba(11,28,44,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.case-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.case-card:hover::before { transform: scaleY(1); }
.case-card:hover {
  border-color: rgba(255,106,0,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  transform: translateX(5px);
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.project-card {
  background: rgba(11,28,44,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.project-card:hover {
  border-color: rgba(255,106,0,0.28);
  box-shadow: 0 28px 72px rgba(0,0,0,0.4), 0 0 40px rgba(255,106,0,0.06);
  transform: translateY(-8px);
}
.project-card-header {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,28,44,0.9) 100%);
}

/* ============================================================
   ARCHITECTURE DIAGRAM (SVG-based)
   ============================================================ */
.arch-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.arch-icon-box {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
}
.arch-icon-box::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 17px;
  border: 1px solid currentColor;
  opacity: 0.18;
}
.arch-node-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  white-space: nowrap;
}
.flow-line {
  stroke-dasharray: 8 4;
  animation: flow-dash 2s linear infinite;
}

/* ============================================================
   TECH STACK NODES
   ============================================================ */
.tech-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: default;
}
.tech-node:hover {
  background: rgba(58,141,255,0.07);
  border-color: rgba(58,141,255,0.3);
  box-shadow: 0 0 24px rgba(58,141,255,0.14);
  transform: translateY(-4px);
}
.tech-node i  { font-size: 36px; }
.tech-node span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================================
   METRICS / COUNTERS
   ============================================================ */
.counter-card {
  background: rgba(11,28,44,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(58,141,255,0.18);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(58,141,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.counter-card:hover {
  border-color: rgba(255,106,0,0.35);
  box-shadow: 0 0 40px rgba(255,106,0,0.08);
  transform: translateY(-6px);
}
.counter-number {
  font-size: 52px;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  background: linear-gradient(135deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   PRINCIPLE ITEMS
   ============================================================ */
.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  transition: background 0.25s ease;
}
.principle-item:hover { background: rgba(255,255,255,0.03); }
.principle-dot {
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  margin-top: 8px;
  box-shadow: 0 0 12px rgba(255,106,0,0.7);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.blog-card::after {
  content: '→';
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 20px;
  color: var(--accent-orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.blog-card:hover {
  background: rgba(58,141,255,0.05);
  border-color: rgba(58,141,255,0.2);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.3);
}
.blog-card:hover::after { opacity: 1; transform: translateX(0); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: rgba(58,141,255,0.5);
  background: rgba(58,141,255,0.05);
  box-shadow: 0 0 20px rgba(58,141,255,0.1);
}
.form-input::placeholder { color: var(--text-secondary); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ============================================================
   THREE.JS CONSTELLATION CONTAINER
   ============================================================ */
#constellation-container {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(7,19,30,0.85);
  border: 1px solid rgba(58,141,255,0.15);
}
#constellation-canvas { width: 100%; height: 100%; display: block; }
#node-tooltip {
  position: absolute;
  padding: 12px 16px;
  background: rgba(7,19,30,0.95);
  border: 1px solid rgba(58,141,255,0.35);
  border-radius: 12px;
  pointer-events: none;
  font-size: 13px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.2s ease;
  max-width: 210px;
  z-index: 10;
  opacity: 0;
}

/* ============================================================
   GRADIENT DIVIDER
   ============================================================ */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,141,255,0.4), rgba(255,106,0,0.4), transparent);
}

/* ============================================================
   HERO GLOW ORBS
   ============================================================ */
.glow-orb-blue {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,141,255,0.25), transparent);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-ring 5s ease-in-out infinite;
}
.glow-orb-orange {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.2), transparent);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-ring 7s ease-in-out infinite reverse;
}

/* ============================================================
   FLOAT ANIMATION
   ============================================================ */
.float-anim { animation: float 6s ease-in-out infinite; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-padding { padding: 100px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-title  { letter-spacing: -1.5px; }
  .section-title { font-size: 26px; }
  #constellation-container { height: 380px; }
  .counter-number { font-size: 40px; }
  .section-padding { padding: 70px 0; }
}
