/* ==========================================
   CSS Design System - HarishTechAi
   Colors, Variables, Reset, Typography
========================================== */

:root {
  --bg-primary: #0a0b0d;
  --bg-secondary: #111318;
  --bg-card: #181a21;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;

  /* Brand Colors - Gold & Yellow Neon Theme (matching instructor's shirt/glow) */
  --primary: #ffd700;
  --primary-glow: rgba(255, 215, 0, 0.45);
  --primary-glow-weak: rgba(255, 215, 0, 0.15);
  --secondary: #ffffff;
  --accent: #ff8c00;

  /* Social Brand Colors */
  --linkedin: #0077b5;
  --youtube: #ff0000;
  --instagram: #e1306c;
  --facebook: #1877f2;
  --whatsapp: #25d366;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-glow-weak);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: #000000;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow-weak);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 4px 25px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #000000;
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ==========================================
   Header / Navbar Styles
========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo span:first-child {
  color: var(--primary);
}

.logo span:last-child {
  color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  font-size: 1.4rem;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   Hero Section (Step 1)
========================================== */

.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.social-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: var(--text-main);
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.linkedin:hover {
  background-color: var(--linkedin);
  border-color: var(--linkedin);
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.social-icon.youtube:hover {
  background-color: var(--youtube);
  border-color: var(--youtube);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
}

.social-icon.facebook:hover {
  background-color: var(--facebook);
  border-color: var(--facebook);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.social-icon.whatsapp:hover {
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.btn-learning {
  background: #7c3aed;
  /* Vibrant premium purple */
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-learning:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

.btn-youtube {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-youtube i {
  color: #ff0000;
  /* YouTube red */
  font-size: 1.1rem;
}

.btn-youtube:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   Dashboard Container (Replacer for static image)
========================================== */
.dashboard-container {
  width: 100%;
  max-width: 540px;
  height: 400px;
  background: rgba(24, 26, 33, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow-weak);
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.dashboard-container:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 35px var(--primary-glow);
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  background: rgba(10, 11, 13, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.control-dot.close {
  background: #ff5f56;
}

.control-dot.minimize {
  background: #ffbd2e;
}

.control-dot.expand {
  background: #27c93f;
}

.dashboard-tabs {
  display: flex;
  gap: 4px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.tab-btn i {
  font-size: 0.9rem;
}

.tab-btn:hover {
  color: var(--primary);
  background: rgba(255, 215, 0, 0.08);
}

.tab-btn.active {
  color: #000000;
  background: var(--primary);
}

/* Dashboard Screens */
.dashboard-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.dash-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: none !important;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dash-screen.active {
  display: block !important;
  opacity: 1;
}

/* Screen 1: iOS Development */
.ios-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  height: 100%;
}

.code-editor {
  background: #0d0e12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.editor-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.file-name {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.file-name i {
  color: #f05138;
}

.code-body {
  padding: 12px;
  overflow: auto;
  flex: 1;
}

.code-body pre {
  margin: 0;
}

.code-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #e2e8f0;
}

.code-body .keyword {
  color: #f472b6;
}

.code-body .string {
  color: #34d399;
}

.code-body .number {
  color: #fbbf24;
}

.phone-simulator {
  display: flex;
  justify-content: center;
  align-items: center;
}

.simulator-inner {
  width: 140px;
  height: 270px;
  background: #000000;
  border: 6px solid #2d2d2d;
  border-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.phone-notch {
  width: 60px;
  height: 12px;
  background: #2d2d2d;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.phone-screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  text-align: center;
}

.swift-glow-logo {
  font-size: 1.8rem;
  color: #f05138;
  filter: drop-shadow(0 0 10px rgba(240, 81, 56, 0.6));
  animation: float-logo 3s ease-in-out infinite;
}

@keyframes float-logo {

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

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

.phone-screen-content h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.ios-progress-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ios-circular-bar {
  position: relative;
  width: 70px;
  height: 70px;
}

.ios-circular-bar svg {
  width: 70px;
  height: 70px;
  transform: rotate(-90deg);
}

.ios-circular-bar circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 4;
}

.ios-circular-bar .progress-fill-circle {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  /* Animates from JS */
  transition: stroke-dashoffset 0.1s linear;
}

.progress-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.simulator-state {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-family: monospace;
}

.simulator-action-btn {
  background: var(--primary);
  color: #000000;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.simulator-action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Screen 2: System Design (HLD & LLD) */
.sys-design-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.sys-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
  transition: var(--transition);
}

.sys-tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary-glow-weak);
}

.sys-tab-btn.active {
  background: var(--primary-glow-weak);
  border-color: var(--primary);
  color: var(--primary);
}

.sys-design-viewport {
  height: calc(100% - 38px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: rgba(10, 11, 13, 0.5);
  overflow: hidden;
}

.hld-view,
.lld-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  padding: 12px;
}

.hld-view.active,
.lld-view.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HLD Topology Placement */
.topology-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-items: center;
  z-index: 2;
  position: relative;
}

.client-node {
  grid-column: 1;
}

.lb-node {
  grid-column: 2;
}

.sys-services-group {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sys-storage-group {
  grid-column: 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sys-node {
  background: rgba(24, 26, 33, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 75px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.sys-node:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-glow-weak);
}

.sys-node .node-icon {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.sys-node span {
  font-size: 0.55rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.2;
}

/* SVG Connection line container styling */
.sys-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1.5;
}

.connection-path.active {
  stroke: var(--primary-glow-weak);
}

.packet-flow {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 4, 12;
  stroke-dashoffset: 48;
  animation: flowPackets 2.5s linear infinite;
}

@keyframes flowPackets {
  to {
    stroke-dashoffset: 0;
  }
}

/* LLD Blueprint */
.lld-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.lld-class {
  background: rgba(13, 14, 18, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  width: 150px;
  font-family: monospace;
  font-size: 0.6rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.lld-class.interface {
  border-color: var(--primary-glow-weak);
}

.class-title {
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 8px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.class-props,
.class-methods {
  padding: 6px 8px;
}

.class-props {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.class-methods {
  color: #60a5fa;
}

.lld-connector {
  color: var(--primary);
  font-size: 1rem;
  animation: pulse-arrow 1s infinite alternate;
}

@keyframes pulse-arrow {
  0% {
    transform: translateX(0);
    opacity: 0.6;
  }

  100% {
    transform: translateX(4px);
    opacity: 1;
  }
}

/* Screen 3: Cybersecurity */
.cyber-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  height: 100%;
  position: relative;
  z-index: 1;
}

#cyber-matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  border-radius: 8px;
}

.cyber-terminal {
  background: #020203;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
}

.cyber-terminal .terminal-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  color: var(--primary);
  font-size: 0.65rem;
  font-family: monospace;
}

.cyber-terminal .terminal-body {
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6rem;
  line-height: 1.35;
  color: #00ff66;
  overflow-y: auto;
  flex: 1;
  text-shadow: 0 0 4px rgba(0, 255, 102, 0.35);
}

.log-line {
  margin-bottom: 4px;
}

.log-line.info {
  color: #38bdf8;
}

.log-line.warning {
  color: #facc15;
}

.log-line.danger {
  color: #ef4444;
}

.log-line.success {
  color: #4ade80;
}

.blinking-cursor {
  animation: blink-cursor 0.8s infinite;
}

@keyframes blink-cursor {
  50% {
    opacity: 0;
  }
}

.cyber-status-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(13, 14, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.radar-box {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-circle {
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
}

.radar-sweep {
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(0, 255, 102, 0.4) 0%, transparent 35%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: scan 1.2s linear infinite;
  transform-origin: center;
}

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

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

.radar-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  opacity: 0;
  animation: flash-dot 3.5s infinite;
}

.radar-dot.dot1 {
  top: 25px;
  left: 55px;
  animation-delay: 0.5s;
}

.radar-dot.dot2 {
  top: 50px;
  left: 20px;
  animation-delay: 1.8s;
}

@keyframes flash-dot {
  0% {
    opacity: 0;
  }

  10%,
  25% {
    opacity: 1;
  }

  60%,
  100% {
    opacity: 0;
  }
}

.security-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.secure-icon {
  font-size: 1rem;
  color: #4ade80;
  animation: secure-glow 2s infinite alternate;
}

@keyframes secure-glow {
  from {
    text-shadow: 0 0 4px rgba(74, 222, 128, 0.3);
  }

  to {
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
  }
}

.status-lbl {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.5px;
}

.key-decrypter {
  text-align: center;
  width: 100%;
}

.decrypter-label {
  display: block;
  font-size: 0.5rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.decrypter-code {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: bold;
}

/* Screen 4: Blockchain */
.blockchain-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.chain-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 150px;
}

.chain-block {
  background: rgba(13, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  width: 95px;
  font-family: monospace;
  font-size: 0.55rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  transition: var(--transition);
}

.block-validated {
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.1);
}

.block-unmined {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
  animation: pulse-block 1.5s infinite alternate;
}

@keyframes pulse-block {
  0% {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.05);
  }

  100% {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
  }
}

.block-header-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2px;
}

.block-detail {
  color: var(--text-muted);
}

.block-tag {
  font-size: 0.5rem;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 3px;
  text-align: center;
  margin-top: 2px;
}

.secure-tag {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}

.mining-tag {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.chain-link-arrow {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  animation: pulse-link 1.5s infinite;
}

@keyframes pulse-link {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
    color: var(--primary);
  }
}

.blockchain-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(13, 14, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.network-stat span {
  display: block;
  font-size: 0.5rem;
  color: var(--text-muted);
  font-weight: 700;
}

.network-stat h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}

.blockchain-btn {
  background: var(--primary);
  color: #000000;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blockchain-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--primary-glow);
}

.blockchain-btn i {
  font-size: 0.75rem;
}

.blockchain-btn.mining-mode i {
  animation: spin 1s infinite linear;
}

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

.glowing-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
      var(--primary-glow) 0%,
      rgba(255, 215, 0, 0) 70%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.9;
  }
}

/* ==========================================
   What Will You Get Section - Flip Cards (Step 2)
========================================== */

.services-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Course Cards Styling (Static Premium layout matching DP template) */
.course-card {
  background: #15181f;
  /* Sleek dark card background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 15px var(--primary-glow-weak);
}

.course-card-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}

.course-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 59, 48, 0.08);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 59, 48, 0.3);
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b30, 0 0 14px rgba(255, 59, 48, 0.6);
  animation: liveBlink 1.4s infinite ease-in-out;
}

@keyframes liveBlink {
  0%, 100% {
    background-color: #ff3b30; /* Light red */
    box-shadow: 0 0 8px #ff3b30, 0 0 12px rgba(255, 59, 48, 0.6);
    transform: scale(1);
  }
  50% {
    background-color: #7a0000; /* Dark red */
    box-shadow: 0 0 2px rgba(122, 0, 0, 0.3);
    transform: scale(0.9);
  }
}

.course-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.course-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-purple {
  background: #7c3aed;
  /* Purple badge */
  color: #ffffff;
}

.course-lectures {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 20px;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.course-instructor {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.course-card-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.course-card-action {
  margin-top: auto;
}

.btn-learning-action {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-learning-action:hover {
  background: var(--primary);
  color: #000000 !important;
  border-color: var(--primary);
  transform: scale(1.02);
}

/* ==========================================
   Meet Our Instructor Section (Step 3)
========================================== */

.instructor-section {
  padding: 100px 0;
  position: relative;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.instructor-image-side {
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 0, 0, 0) 80%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.instructor-img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-card);
}

.instructor-info-side {
  padding-left: 20px;
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(to right, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instructor-edu {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.instructor-bio {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================
   Unlock Your Career Section (Step 4)
========================================== */

.career-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.career-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.career-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.career-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.career-content .btn {
  margin-top: 16px;
}

.career-image-side {
  display: flex;
  justify-content: center;
}

.secondary-frame {
  background: linear-gradient(225deg, var(--primary) 0%, rgba(0, 0, 0, 0) 80%);
}

/* ==========================================
   HARISHTECHAI Banner Section (Step 5)
========================================== */

.brand-banner-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 4;
}

.brand-banner-container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.brand-canvas-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#brand-text-canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================
   Contact Section (Step 6)
========================================== */

.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--primary-glow-weak);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.contact-text .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-text .value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.contact-text .value:hover {
  color: var(--primary);
}

/* Contact Form */
.form-container {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow-weak);
  background-color: var(--bg-primary);
}

.form-feedback {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--whatsapp);
  color: #4ade80;
}

.form-feedback.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* ==========================================
   Footer Styles
========================================== */

.footer {
  background-color: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--text-muted);
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-icons a:hover {
  background-color: var(--primary);
  color: #000000;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--primary-glow-weak);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ==========================================
   Responsive / Media Queries
========================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-grid,
  .instructor-grid,
  .career-grid,
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-container {
    order: -1;
  }

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

  .instructor-info-side {
    padding-left: 0;
  }

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

  .career-image-side {
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-brand-text {
    font-size: 10vw;
    letter-spacing: 6px;
  }
}

/* ==========================================
   Stepper Connection Flowchart between Step 1 & 2
========================================== */
.stepper-flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.flow-line-vertical {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  box-shadow: 0 0 10px var(--primary-glow-weak);
}

.flow-line-vertical.short-line {
  height: 40px;
  background: linear-gradient(to bottom, var(--secondary), #7c3aed);
}

.flow-people-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flow-people-badge:hover {
  transform: scale(1.05);
}

.people-badge-circle {
  width: 50px;
  height: 50px;
  background: #15181f;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.people-badge-circle i {
  color: var(--secondary);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.6));
}

.flow-people-badge:hover .people-badge-circle {
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.flow-people-badge:hover .people-badge-circle i {
  color: var(--primary);
}

.badge-label {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ==========================================
   Consolidated Course Banner (Step 2 Centerpiece)
========================================== */
.consolidated-banner-container {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0 auto;
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(124, 58, 237, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.consolidated-banner-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

.consolidated-banner-container:hover::after {
  animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

.consolidated-banner-container:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 215, 0, 0.15);
}

.consolidated-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

/* SVG Flow splitting lines */
.flow-line-split-container {
  width: 100%;
  max-width: 900px;
  height: 60px;
  margin: 0 auto 30px auto;
  position: relative;
  overflow: visible;
}

.flow-split-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.flow-path {
  fill: none;
  stroke: rgba(255, 215, 0, 0.15);
  stroke-width: 2px;
  stroke-dasharray: 6 4;
  animation: dash-circuit 30s linear infinite;
  transition: stroke 0.3s;
}

.consolidated-banner-container:hover+.flow-line-split-container .flow-path {
  stroke: var(--primary);
  stroke-width: 2.5px;
}

@keyframes dash-circuit {
  from {
    stroke-dashoffset: 500;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* ==========================================
   Concentric 3D Tilted planetary Orbits (Step 4 Right Side)
========================================== */
.instructor-orbit-universe {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 80%);

  /* 3D isometric skew and perspective */
  transform: perspective(1000px) rotateX(60deg) rotateY(-20deg);
  transform-style: preserve-3d;
}

.orbit-instructor-core {
  position: relative;
  z-index: 5;
  transform: rotateY(20deg) rotateX(-60deg);
  transform-style: preserve-3d;
}

.instructor-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
  background: #15181f;
  animation: pulse-avatar 3s ease-in-out infinite alternate;
}

@keyframes pulse-avatar {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 45px rgba(255, 215, 0, 0.8);
  }
}

.instructor-img-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* Concentric Track Dimensions, High Visibility Glows & Rotation speeds */
.ring-1 {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(240, 81, 56, 0.45);
  /* Brighter Swift Red-Orange Track */
  box-shadow: 0 0 15px rgba(240, 81, 56, 0.15), inset 0 0 15px rgba(240, 81, 56, 0.05);
  animation: rotate-ring-cw 16s linear infinite;
}

.ring-2 {
  width: 290px;
  height: 290px;
  border: 2px dashed rgba(99, 102, 241, 0.45);
  /* Brighter Indigo Blockchain Track */
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15), inset 0 0 20px rgba(99, 102, 241, 0.05);
  animation: rotate-ring-ccw 24s linear infinite;
}

.ring-3 {
  width: 380px;
  height: 380px;
  border: 2px dashed rgba(16, 185, 129, 0.45);
  /* Brighter Green Cybersecurity Track */
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.15), inset 0 0 25px rgba(16, 185, 129, 0.05);
  animation: rotate-ring-cw 32s linear infinite;
}

.ring-4 {
  width: 470px;
  height: 470px;
  border: 2px dashed rgba(59, 130, 246, 0.45);
  /* Brighter Blue System Design Track */
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15), inset 0 0 30px rgba(59, 130, 246, 0.05);
  animation: rotate-ring-ccw 42s linear infinite;
}

/* 3D Track Orbit rotation cycles */
@keyframes rotate-ring-cw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-ring-ccw {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* Orbiting Logos on the concentric tracks */
.ring-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  margin-left: -19px;
  border-radius: 50%;
  background: rgba(13, 14, 18, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  transform-style: preserve-3d;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.ring-logo i {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Positioning nodes on their respective radii */
.ring-1 .ring-logo {
  transform: rotate(var(--a)) translateY(-100px) rotate(calc(-1 * var(--a)));
  animation: logo-upright-ccw 16s linear infinite;
  --y: -100px;
}

.ring-2 .ring-logo {
  transform: rotate(var(--a)) translateY(-145px) rotate(calc(-1 * var(--a)));
  animation: logo-upright-cw 24s linear infinite;
  --y: -145px;
}

.ring-3 .ring-logo {
  transform: rotate(var(--a)) translateY(-190px) rotate(calc(-1 * var(--a)));
  animation: logo-upright-ccw 32s linear infinite;
  --y: -190px;
}

.ring-4 .ring-logo {
  transform: rotate(var(--a)) translateY(-235px) rotate(calc(-1 * var(--a)));
  animation: logo-upright-cw 42s linear infinite;
  --y: -235px;
}

/* Counter-rotational animations to balance 3D camera skew and keep icons straight */
@keyframes logo-upright-cw {
  0% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 0deg)) rotateY(20deg) rotateX(-60deg);
  }

  100% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 360deg)) rotateY(20deg) rotateX(-60deg);
  }
}

@keyframes logo-upright-ccw {
  0% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 360deg)) rotateY(20deg) rotateX(-60deg);
  }

  100% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 0deg)) rotateY(20deg) rotateX(-60deg);
  }
}

/* Branded neon icon glows */
.ring-1 .logo-swift {
  color: #f05138;
  border-color: rgba(240, 81, 56, 0.45);
  box-shadow: 0 0 12px rgba(240, 81, 56, 0.35);
}

.ring-1 .logo-apple {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.ring-2 .logo-bitcoin {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}

.ring-2 .logo-ethereum {
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.35);
}

.ring-3 .logo-shield {
  color: #00ff66;
  border-color: rgba(0, 255, 102, 0.45);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.35);
}

.ring-3 .logo-lock {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.ring-4 .logo-database {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.ring-4 .logo-server {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.ring-4 .logo-network {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.ring-logo:hover {
  transform: scale(1.25) rotateY(20deg) rotateX(-60deg) !important;
  z-index: 25;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .flow-line-split-container {
    display: none;
  }

  .stepper-flow-container {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .instructor-orbit-universe {
    width: 350px;
    height: 350px;
    transform: perspective(1000px) rotateX(55deg) rotateY(-15deg);
  }

  .instructor-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .ring-1 {
    width: 145px;
    height: 145px;
  }

  .ring-2 {
    width: 210px;
    height: 210px;
  }

  .ring-3 {
    width: 275px;
    height: 275px;
  }

  .ring-4 {
    width: 340px;
    height: 340px;
  }

  .ring-1 .ring-logo {
    transform: rotate(var(--a)) translateY(-72.5px) rotate(calc(-1 * var(--a)));
    --y: -72.5px;
    animation-name: logo-upright-ccw-mobile;
  }

  .ring-2 .ring-logo {
    transform: rotate(var(--a)) translateY(-105px) rotate(calc(-1 * var(--a)));
    --y: -105px;
    animation-name: logo-upright-cw-mobile;
  }

  .ring-3 .ring-logo {
    transform: rotate(var(--a)) translateY(-137.5px) rotate(calc(-1 * var(--a)));
    --y: -137.5px;
    animation-name: logo-upright-ccw-mobile;
  }

  .ring-4 .ring-logo {
    transform: rotate(var(--a)) translateY(-170px) rotate(calc(-1 * var(--a)));
    --y: -170px;
    animation-name: logo-upright-cw-mobile;
  }
}

@keyframes logo-upright-cw-mobile {
  0% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 0deg)) rotateY(15deg) rotateX(-55deg);
  }

  100% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 360deg)) rotateY(15deg) rotateX(-55deg);
  }
}

@keyframes logo-upright-ccw-mobile {
  0% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 360deg)) rotateY(15deg) rotateX(-55deg);
  }

  100% {
    transform: rotate(var(--a)) translateY(var(--y)) rotate(calc(-1 * var(--a) + 0deg)) rotateY(15deg) rotateX(-55deg);
  }
}

/* ==========================================
   Course Detail Page Styles
   ========================================== */
.course-detail-section {
  padding: 120px 0 80px 0;
  background: var(--bg-primary, #0c0d10);
  min-height: 100vh;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 991px) {
  .course-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Main Card */
.course-detail-main-card {
  background: rgba(18, 20, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.course-detail-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-detail-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, #ffe600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-detail-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* Horizontal Badges */
.course-badges-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.course-detail-badge {
  background: rgba(255, 230, 0, 0.07);
  border: 1px solid rgba(255, 230, 0, 0.25);
  color: #ffea00;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.course-detail-badge:hover {
  background: rgba(255, 230, 0, 0.15);
  transform: translateY(-2px);
}

/* Right Sidebar Cards */
.course-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .course-sidebar-stack {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
  }
}

.course-sidebar-card {
  background: rgba(18, 20, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.course-sidebar-card h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.course-sidebar-card h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffea00;
}

/* What You'll Learn List */
.learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learn-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.learn-list li i {
  color: #10b981; /* Emerald checkmark */
  font-size: 0.95rem;
  margin-top: 3px;
}

/* Pricing Card Styles */
.course-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.course-price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: #ffea00;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(255, 234, 0, 0.4);
  letter-spacing: -1px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  animation: breathePrice 2s infinite ease-in-out;
}

@keyframes breathePrice {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 15px rgba(255, 234, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(255, 234, 0, 0.6);
  }
}

.btn-youtube-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff0000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-youtube-sidebar:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.6);
}

/* Benefits Card List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-list li i {
  color: #ffea00;
  font-size: 0.95rem;
}

/* ==========================================
   Syllabus Accordion Styles
   ========================================== */
.syllabus-container {
  margin-top: 40px;
  background: rgba(18, 20, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.syllabus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.syllabus-header h2 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ffe600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.syllabus-actions {
  display: flex;
  gap: 12px;
}

.syllabus-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.syllabus-btn:hover {
  background: rgba(255, 230, 0, 0.12);
  border-color: rgba(255, 230, 0, 0.3);
  color: #ffea00;
  transform: translateY(-2px);
}

/* Accordion Item Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: rgba(24, 26, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 230, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.03);
}

.accordion-item.active {
  border-color: rgba(255, 230, 0, 0.35);
  background: rgba(24, 26, 32, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.accordion-header span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-header i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: #ffea00;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content ul {
  list-style: none;
  padding: 0 24px 20px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-content li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-content li i {
  color: #ffea00;
  font-size: 0.7rem;
}

/* Docs & Hackathons Sections Styling */
.docs-section {
  padding: 100px 0;
  background: var(--bg-secondary, #0c0d12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.docs-section .section-title {
  font-size: 3rem;
  margin-top: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hackathons-section {
  padding: 120px 0;
  background: #08090b; /* pure deep dark background matching the mockups */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.hackathon-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffea00; /* yellow matching the primary theme */
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 40px rgba(255, 234, 0, 0.25);
}
.hackathon-desc {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================
   Responsive / Media Queries Additions
   ========================================== */

/* Navigation Drawer Mobile CTA Button */
.nav-cta-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  /* Mobile Menu Drawer Styling Upgrades */
  .nav-menu {
    background: rgba(21, 24, 31, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .nav-cta-mobile {
    display: inline-block !important;
    background: var(--primary);
    color: #000000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
  }

  .nav-cta-mobile:hover {
    box-shadow: 0 0 25px rgba(255, 234, 0, 0.5);
    transform: translateY(-2px);
  }
}

/* Screens under 576px (Mobile Landscape / Portrait) */
@media (max-width: 576px) {
  /* Hero typography */
  .hero-title {
    font-size: 2.4rem !important;
  }
  
  /* Hero buttons */
  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  
  .btn-learning, .btn-youtube {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  /* Interactive Dashboard tweaks */
  .phone-simulator {
    display: none !important;
  }

  .ios-grid {
    grid-template-columns: 1fr !important;
  }

  /* 3D Concentric Orbit animation responsive scale */
  .instructor-orbit-universe {
    width: 300px !important;
    height: 300px !important;
    transform: perspective(1000px) rotateX(55deg) rotateY(-15deg) scale(0.85) !important;
  }

  /* Course Detail Subpages Grid */
  .course-detail-grid {
    gap: 20px;
  }

  .course-detail-main-card {
    padding: 20px !important;
  }

  .course-detail-title {
    font-size: 1.8rem !important;
  }

  .syllabus-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .syllabus-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Very Small Mobile Screens (< 400px) */
@media (max-width: 400px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .logo {
    font-size: 1.5rem !important;
  }

  .logo span:last-child {
    font-size: 1.2rem !important;
  }

  /* Scale orbit animation down further to fit 320px viewports */
  .instructor-orbit-universe {
    transform: perspective(1000px) rotateX(55deg) rotateY(-15deg) scale(0.7) !important;
  }
}

/* Coming Soon Utilities */
.coming-soon-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 20px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-title.yellow-theme {
  color: #ffea00;
  -webkit-text-fill-color: #ffea00;
  text-shadow: 0 0 45px rgba(255, 234, 0, 0.35);
  background: none;
}

.coming-soon-subtitle {
  max-width: 620px;
  margin: 20px auto 0 auto;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.2rem !important;
  }
  .coming-soon-subtitle {
    font-size: 0.95rem !important;
    padding: 0 16px;
  }
}