/* ==========================================================================
   Epicor & AI Developer Portfolio CSS Design System
   Optimized for Core Web Vitals (Zero CLS, GPU-accelerated transitions)
   ========================================================================== */


:root {
  /* Color Palette */
  --bg-primary: #030712;
  --bg-secondary: #0b0f19;
  --bg-card: rgba(17, 24, 39, 0.5);
  --bg-card-hover: rgba(31, 41, 55, 0.65);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(6, 182, 212, 0.3);
  
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.15);
  --accent-cyan-glow: rgba(6, 182, 212, 0.15);
  
  --text-white: #f9fafb;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  /* Gradation */
  --gradient-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  --gradient-cyan-blue: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Motion & Durations */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Structural variables */
  --header-height: 80px;
  --container-width: 1200px;
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Base Headings & SEO Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Allow inline SVGs inside links, buttons, and nav */
a svg, button svg, .nav-link svg, .nav-dropdown svg,
.service-link svg, .btn svg, .hero-badges svg,
.db-stat-trend svg, .faq-question svg, .blog-read-more svg,
.logo svg, .contact-icon svg, .contact-method svg {
  display: inline-block;
  vertical-align: middle;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-subtitle {
  color: var(--accent-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Glassmorphism & Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -20px rgba(6, 182, 212, 0.15);
}

.glass-card:hover::before {
  background: var(--gradient-cyan-blue);
  opacity: 0.5;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.975rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px -5px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -5px rgba(6, 182, 212, 0.6);
  color: var(--bg-primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  background: var(--gradient-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-smooth);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem;
  display: grid;
  grid-gap: 0.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-cyan);
}

/* Header scroll effect */
.header.scrolled {
  background: rgba(3, 7, 18, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Footer Section */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-links-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a:hover {
  color: var(--text-white);
}

/* Background Gradients Glows */
.glow-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  -webkit-filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.glow-cyan {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
}

.glow-purple {
  width: 450px;
  height: 450px;
  background: var(--accent-purple);
}

/* Animations Trigger classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Target-specific CSS classes for homepage, services, etc. */
/* Hero Layout - Option 3 Dramatic Portrait */
.hero-section {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
}

.hero-section > .container {
  width: 100%;
}

/* Subtle grid background across entire hero */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Portrait — absolutely positioned, right-aligned, bleeding across section */
.hero-portrait-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 2;
  pointer-events: none;
}

/* Picture element wrapper — inherits portrait positioning */
.hero-portrait-wrap picture {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-portrait-photo {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: auto;
  height: 88%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Subtle left fade so text stays readable over portrait */
.hero-portrait-fade-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(3, 7, 18, 0.6) 40%, transparent 100%);
  z-index: 3;
}

/* Fade bottom edge for smooth section transition */
.hero-portrait-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15%;
  background: linear-gradient(to top, var(--bg-primary) 10%, transparent 100%);
  z-index: 3;
}

/* Subtle top fade */
.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10%;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* No right fade needed with transparent PNG */
.hero-portrait-wrap::after {
  display: none;
}

/* Text content layer — sits above portrait */
.hero-content-z {
  position: relative;
  z-index: 5;
}

.hero-text-block {
  max-width: 540px;
}

.hero-h1-large {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

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

.hero-subtext {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.btn-hero-gradient {
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%) !important;
  color: var(--bg-primary) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0.95rem 2.25rem !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px -5px rgba(6, 182, 212, 0.4) !important;
}

.btn-hero-gradient:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px -5px rgba(6, 182, 212, 0.6) !important;
}

/* Trust badges row */
.hero-trust-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-trust-item svg {
  color: rgba(6, 182, 212, 0.6);
  display: inline-block;
  vertical-align: middle;
}

/* Floating Experience Card — bottom right over the portrait */
.hero-experience-card {
  position: absolute;
  bottom: 14%;
  right: 10%;
  width: 290px;
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: float-drift 6s ease-in-out infinite alternate;
}

.hero-exp-heading {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-exp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-exp-stat-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-exp-stat-yrs {
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.hero-exp-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.hero-exp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  border-radius: 5px;
  transition: width 1.2s ease;
}

@keyframes float-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ─── Floating Skill Badges ─── */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.skill-badges-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.skill-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(8, 12, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(6, 182, 212, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: auto;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  will-change: transform;
}

.skill-badge:hover {
  transform: translateY(-4px) scale(1.08) !important;
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(6, 182, 212, 0.15),
    0 0 50px rgba(139, 92, 246, 0.08);
}

.sb-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-cyan);
  opacity: 0.85;
}

.sb-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Depth layers */
.skill-badge[data-depth="front"] {
  opacity: 0.95;
  transform: scale(1);
}

.skill-badge[data-depth="mid"] {
  opacity: 0.7;
  transform: scale(0.88);
}

.skill-badge[data-depth="back"] {
  opacity: 0.45;
  transform: scale(0.78);
  filter: blur(0.5px);
}

.skill-badge[data-depth="back"] .sb-icon svg {
  opacity: 0.5;
}

/* ─── Badge Positions (Natural scatter, NOT circular) ─── */

/* Epicor Kinetic — above left shoulder */
.sb-pos-1 {
  top: 28%;
  right: 42%;
  animation: sb-float-1 7s ease-in-out infinite alternate;
}

/* C# .NET — near top of head, right */
.sb-pos-2 {
  top: 18%;
  right: 20%;
  animation: sb-float-2 8s ease-in-out infinite alternate;
}

/* SQL Server — right side, ear level, behind */
.sb-pos-3 {
  top: 32%;
  right: 4%;
  animation: sb-float-3 9s ease-in-out infinite alternate;
}

/* Data Discovery — right shoulder */
.sb-pos-4 {
  top: 48%;
  right: 2%;
  animation: sb-float-4 6.5s ease-in-out infinite alternate;
}

/* OpenAI — above right, higher */
.sb-pos-5 {
  top: 12%;
  right: 34%;
  animation: sb-float-5 7.5s ease-in-out infinite alternate;
}

/* AI Automation — left of portrait, mid */
.sb-pos-6 {
  top: 45%;
  right: 48%;
  animation: sb-float-6 10s ease-in-out infinite alternate;
}

/* Make.com — far right, arm level */
.sb-pos-7 {
  top: 58%;
  right: 0%;
  animation: sb-float-7 8.5s ease-in-out infinite alternate;
}

/* ERP Integrations — lower left */
.sb-pos-8 {
  top: 62%;
  right: 44%;
  animation: sb-float-8 7s ease-in-out infinite alternate;
}

/* Manufacturing — far left, above shoulder */
.sb-pos-9 {
  top: 22%;
  right: 50%;
  animation: sb-float-9 9.5s ease-in-out infinite alternate;
}

/* Workflow Auto — upper far right */
.sb-pos-10 {
  top: 8%;
  right: 8%;
  animation: sb-float-10 6s ease-in-out infinite alternate;
}

/* SSRS Reporting — lower right */
.sb-pos-11 {
  top: 72%;
  right: 14%;
  animation: sb-float-11 8s ease-in-out infinite alternate;
}

/* ─── Individual Float Animations (varied directions) ─── */
@keyframes sb-float-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5px, -10px) scale(1); }
}
@keyframes sb-float-2 {
  0%   { transform: translate(0, 0) scale(0.88); }
  100% { transform: translate(-6px, -8px) scale(0.88); }
}
@keyframes sb-float-3 {
  0%   { transform: translate(0, 0) scale(0.78); }
  100% { transform: translate(4px, 7px) scale(0.78); }
}
@keyframes sb-float-4 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8px, -5px) scale(1); }
}
@keyframes sb-float-5 {
  0%   { transform: translate(0, 0) scale(0.88); }
  100% { transform: translate(3px, -12px) scale(0.88); }
}
@keyframes sb-float-6 {
  0%   { transform: translate(0, 0) scale(0.78); }
  100% { transform: translate(-4px, 6px) scale(0.78); }
}
@keyframes sb-float-7 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6px, -7px) scale(1); }
}
@keyframes sb-float-8 {
  0%   { transform: translate(0, 0) scale(0.88); }
  100% { transform: translate(-5px, -9px) scale(0.88); }
}
@keyframes sb-float-9 {
  0%   { transform: translate(0, 0) scale(0.78); }
  100% { transform: translate(7px, 5px) scale(0.78); }
}
@keyframes sb-float-10 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3px, -11px) scale(1); }
}
@keyframes sb-float-11 {
  0%   { transform: translate(0, 0) scale(0.88); }
  100% { transform: translate(5px, 8px) scale(0.88); }
}

/* Custom Interactive Dashboard Visuals */
.dashboard-mockup {
  width: 100%;
  border-radius: 12px;
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.dashboard-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.dashboard-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 1rem;
}

.db-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.db-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
}

.db-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.db-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.25rem;
}

.db-stat-trend {
  font-size: 0.65rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 0.15rem;
}

.db-chart-container {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 1rem;
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.db-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.db-log-card {
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  height: 255px;
  display: flex;
  flex-direction: column;
}

.db-log-title {
  font-size: 0.7rem;
  color: var(--accent-purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-family: monospace;
}

.db-log-output {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.5;
  overflow-y: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.db-log-line {
  border-left: 2px solid var(--accent-cyan);
  padding-left: 6px;
  opacity: 0;
  transform: translateX(-5px);
  animation: logFadeIn 0.3s forwards;
}

.db-log-line.ai {
  border-left-color: var(--accent-purple);
}

@keyframes logFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Service Card Icons */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.glass-card:nth-child(even) .service-icon {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.service-link:hover svg {
  transform: translateX(4px);
}

.service-link svg {
  transition: transform 0.2s ease;
}

/* Project Cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-img-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 1.5rem;
}

.project-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.project-card:hover .project-img-placeholder {
  transform: scale(1.03);
}

.project-metrics {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.metric-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Stats Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

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

/* Process Timeline Section */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 2.5rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-cyan);
  z-index: 5;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-item.active .timeline-dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
}

.timeline-step {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* Tech Cloud Chips */
.tech-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tech-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
  transition: var(--transition-fast);
}

.tech-chip:hover {
  transform: scale(1.05);
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--accent-cyan);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

/* Testimonial slider */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
  position: relative;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-cyan);
  border: 1px solid var(--border-color);
}

.author-details h4 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.author-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

/* FAQ Accordion Styling */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(17, 24, 39, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question svg {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open {
  border-color: rgba(6, 182, 212, 0.2);
  background: rgba(17, 24, 39, 0.5);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

/* Location Tag Section Styles */
.location-seo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.location-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Detailed SEO copy styles */
.seo-copy-block {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.seo-copy-block p {
  margin-bottom: 1.5rem;
}

.seo-copy-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.seo-copy-block li {
  margin-bottom: 0.5rem;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-read-more {
  color: var(--accent-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1rem;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content pre {
  background: #0d121f;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.blog-post-content code {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent-cyan);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .glass-card {
    padding: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Navigation Header mobile/tablet styling */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 6rem;
    gap: 0.5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    align-items: stretch;
    box-sizing: border-box;
  }
  
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
  }
  
  .nav-links .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    width: 100%;
  }
  
  .nav-links .btn {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem !important;
    font-size: 1rem !important;
    text-align: center;
  }
  
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    opacity: 1 !important;
    visibility: hidden !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0s 0.3s;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    visibility: hidden !important;
    max-height: 0;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    visibility: visible !important;
    max-height: 1000px;
    transition: max-height 0.3s ease, visibility 0s;
  }

  .nav-dropdown .nav-dropdown-item {
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
  }

  /* Lock body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Disable header backdrop-filter when mobile menu is open to prevent containing block bug */
  body.menu-open .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Hero adjustments for tablet & mobile (stacked layout) */
  .hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
  }

  .hero-particles-canvas {
    display: none;
  }

  /* Show floating badges centered around the photo on tablet/mobile */
  .skill-badges-layer {
    display: block;
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px; /* Constrain width so badges float close to portrait */
    height: 380px; /* Same height as portrait wrapper */
    z-index: 6;
    pointer-events: none;
    overflow: visible;
  }

  /* Scale down badges slightly on mobile to fit screen width */
  .skill-badge {
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .skill-badge .sb-icon {
    width: 16px;
    height: 16px;
  }

  .skill-badge .sb-name {
    font-size: 0.65rem;
  }

  /* Hide minor badges on mobile/tablet to keep the face clear and uncluttered */
  .skill-badge.sb-pos-3,
  .skill-badge.sb-pos-4,
  .skill-badge.sb-pos-5,
  .skill-badge.sb-pos-7,
  .skill-badge.sb-pos-8,
  .skill-badge.sb-pos-9,
  .skill-badge.sb-pos-11 {
    display: none !important;
  }

  /* Reposition the 4 main badges to float cleanly on the sides, clear of the face */
  .skill-badge.sb-pos-1 { /* Epicor Kinetic */
    top: 20%;
    left: 5px;
    right: auto;
    animation: sb-float-1 7s ease-in-out infinite alternate;
  }
  
  .skill-badge.sb-pos-2 { /* C# .NET */
    top: 15%;
    right: 5px;
    left: auto;
    animation: sb-float-2 8s ease-in-out infinite alternate;
  }
  
  .skill-badge.sb-pos-6 { /* AI Automation */
    top: 52%;
    left: 0;
    right: auto;
    animation: sb-float-6 10s ease-in-out infinite alternate;
  }
  
  .skill-badge.sb-pos-10 { /* Workflow Auto */
    top: 48%;
    right: 0;
    left: auto;
    animation: sb-float-10 6s ease-in-out infinite alternate;
  }

  /* Make text stack first and center it on mobile */
  .hero-content-z {
    order: 1;
    width: 100%;
  }

  .hero-text-block {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-h1-large {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero-subtext {
    margin-top: 1.25rem;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 0.875rem 1.5rem !important;
  }

  .hero-trust-row {
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  /* Stack portrait below the text contents */
  .hero-portrait-wrap {
    order: 2;
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    margin: 3.5rem auto 0 auto;
  }

  .hero-portrait-photo {
    right: 50%;
    transform: translateX(50%);
    height: 100%;
    object-position: bottom center;
  }

  /* Fixed Centering: Uses left with calc instead of transform to prevent keyframe overrides */
  .hero-experience-card {
    width: 240px;
    padding: 0.85rem 1rem;
    bottom: 20px;
    left: calc(50% - 120px);
    right: auto;
    transform: none;
    position: absolute;
    z-index: 10;
  }

  .hero-exp-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-4, .project-grid, .testimonial-grid, .contact-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide service descriptions and make cards compact on mobile (fits 2 columns) */
  #services .glass-card p {
    display: none;
  }

  #services .glass-card {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  #services .glass-card h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }

  #services .glass-card .service-icon {
    margin-bottom: 0.5rem;
    width: 36px;
    height: 36px;
  }

  #services .glass-card .service-link {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }

  #services .grid-3 {
    gap: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding: 0 0 2rem 3rem;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 12px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 1.25rem;
  }
}

@media (max-width: 380px) {
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: center top;
  }
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10000;
  pointer-events: none;
}

.toast-notification {
  pointer-events: auto;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 8px 32px 0 rgba(6, 182, 212, 0.1);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.925rem;
  font-weight: 500;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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