/* Techtorio Main CSS - Consolidated design system stylesheet */

/* ==========================================================================
   1. Modern CSS Reset (reset.css)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}


/* ==========================================================================
   2. Theme Variables (variables.css)
   ========================================================================== */
:root {
  /* 
   * Default Theme (Blue Professional) 
   * These variables will be overridden by the EJS theme engine dynamically.
   */

  /* Brand Colors */
  --primary-color: #2563eb;       /* Deep blue */
  --primary-hover: #1d4ed8;
  --secondary-color: #0f172a;     /* Very dark slate */
  --accent-color: #f59e0b;        /* Amber accent */
  
  /* Neutral Palette */
  --bg-color: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;

  /* Spacing System */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 4rem;       /* 64px */
  --space-2xl: 8rem;      /* 128px */

  /* Layout */
  --container-max: 1200px;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-pill: 9999px;

  /* Shadows (Glassmorphism & Depth) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px rgba(37, 99, 235, 0.3);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Mode Overrides - Can be toggled via data-theme="dark" attribute */
[data-theme="dark"] {
  --bg-color: #0f172a;
  --bg-surface: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
   3. Typography Rules (typography.css)
   ========================================================================== */
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

h1 { font-size: 3rem; letter-spacing: -0.025em; }
h2 { font-size: 2.25rem; letter-spacing: -0.025em; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Urdu Language Support overrides */
[lang="ur"] {
  font-family: var(--font-urdu);
  direction: rtl;
  font-size: 18px; /* Slightly larger for Nastaliq readability */
  line-height: 2;
}

[lang="ur"] h1, 
[lang="ur"] h2, 
[lang="ur"] h3 {
  font-family: var(--font-urdu);
  font-weight: 400; /* Nastaliq usually doesn't have heavy weights */
  line-height: 1.6;
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.125rem; }
  h6 { font-size: 1rem; }
}


/* ==========================================================================
   4. Layout Utilities (layout.css)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-light {
  background-color: var(--bg-surface);
}

.section-dark {
  background-color: var(--secondary-color);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.flex-wrap { flex-wrap: wrap; }

/* Grid Utilities */
.grid { 
  display: grid; 
  grid-template-columns: repeat(1, minmax(0, 1fr)); /* Default to single column on mobile */
}
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Responsive Grid (Mobile-First min-width overrides) */
@media (min-width: 768px) {
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .md\:flex-col { flex-direction: column; }
  .section { padding: var(--space-lg) 0; }
}

/* Spacing Utilities */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }


/* ==========================================================================
   5. Page & Section Components (components.css)
   ========================================================================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.hero-bg--gradient {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--border-color) 100%);
}

.hero-subheading {
  font-size: 1.25rem;
}

.hero--split .hero-subheading {
  font-size: 1.125rem;
}

.hero-actions {
  flex-wrap: wrap;
}

.hero--has-bg h1,
.hero--has-bg p {
  color: #fff;
}

.hero--has-bg .hero-subheading {
  color: #e2e8f0;
}

.hero--has-bg .btn-secondary {
  color: #fff;
  border-color: #fff;
}

/* Cards (Glassmorphism & Clean Surface) */
.card {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

/* Dark mode adjustment for glass */
[data-theme="dark"] .glass-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Forms & Inputs */
.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.input-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
}

.input-field {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-surface);
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-fab svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Site Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  font-size: 0.9375rem;
  color: var(--text-main);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(var(--primary-rgb, 37, 99, 235), 0.08);
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo h2 {
  margin: 0;
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: #fff;
}

/* Responsive nav — collapse on mobile */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    position: relative;
  }
  .logo {
    max-width: 75%;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo h2 {
    font-size: 1.25rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }
  .mobile-menu-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.2s ease;
    border-radius: 2px;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem var(--space-md);
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.active {
    display: flex !important;
  }
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .nav-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

/* ─────────────────────────────────────────────────────────
   Mega Dropdown Menu
   ───────────────────────────────────────────────────────── */

/* Dropdown wrapper */
.nav-dropdown-wrapper {
  position: relative;
}

.dropdown-toggle svg.chevron-down {
  transition: transform var(--transition-fast, 0.2s);
}

.nav-dropdown-wrapper:hover .dropdown-toggle svg.chevron-down {
  transform: rotate(180deg);
}

/* Mega Dropdown container */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 1000;
  background-color: var(--bg-surface, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, 0.08));
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast, 0.2s) ease, transform var(--transition-fast, 0.2s) ease, visibility var(--transition-fast, 0.2s);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-dropdown-wrapper:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Simple flat dropdown list styling */
.simple-dropdown-menu {
  min-width: 200px;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: var(--border-radius-lg, 16px);
  overflow: hidden;
}

.simple-dropdown-menu .dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main, #0f172a);
  text-decoration: none;
  transition: background-color var(--transition-fast, 0.15s), color var(--transition-fast, 0.15s);
  white-space: nowrap;
  text-align: left;
}

.simple-dropdown-menu .dropdown-item:hover,
.simple-dropdown-menu .dropdown-item.active {
  background-color: rgba(var(--primary-rgb, 37, 99, 235), 0.05);
  color: var(--primary-color, #2563eb) !important;
}

/* Inner layout splitting categories list and links pane */
.mega-dropdown-inner {
  display: flex;
  min-width: 580px;
  height: 340px;
  border-radius: var(--border-radius-lg, 16px);
  overflow: hidden;
}

/* Left side categories column */
.mega-dropdown-categories {
  width: 220px;
  background-color: rgba(var(--primary-rgb, 37, 99, 235), 0.02);
  border-right: 1px solid var(--border-color, #e2e8f0);
  padding: var(--space-xs, 0.5rem) 0;
  overflow-y: auto;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  transition: background-color var(--transition-fast, 0.15s), color var(--transition-fast, 0.15s);
}

.category-item svg {
  opacity: 0.5;
  transition: transform var(--transition-fast, 0.15s), opacity var(--transition-fast, 0.15s);
}

.category-item:hover,
.category-item.active {
  background-color: #ffffff;
  color: var(--primary-color, #2563eb);
}

.category-item.active svg {
  opacity: 1;
  transform: translateX(3px);
  color: var(--primary-color, #2563eb);
}

/* Right side content pane */
.mega-dropdown-content {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  background-color: #ffffff;
}

.category-pane {
  display: none;
  animation: dropdownFadeIn var(--transition-fast, 0.2s) ease;
}

.category-pane.active {
  display: block;
}

.pane-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.pane-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main, #0f172a);
  text-decoration: none;
  border-radius: var(--border-radius-md, 8px);
  border-bottom: 1px solid #f1f5f9;
  transition: background-color var(--transition-fast, 0.15s), color var(--transition-fast, 0.15s);
}

.pane-link:hover,
.pane-link.active {
  background-color: rgba(var(--primary-rgb, 37, 99, 235), 0.05);
  color: var(--primary-color, #2563eb) !important;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive navigation adjustments */
@media (max-width: 768px) {
  .nav-dropdown-wrapper {
    position: static;
    width: 100%;
  }
  
  .mega-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-color, #e2e8f0);
    border-radius: 0;
    width: 100%;
  }

  .nav-dropdown-wrapper:hover .mega-dropdown {
    display: block;
  }

  .mega-dropdown-inner {
    flex-direction: column;
    min-width: 100%;
    height: auto;
  }

  .mega-dropdown-categories {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: var(--space-xs, 0.5rem);
  }

  .category-item {
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm, 4px);
    font-size: 0.8rem;
    border: 1px solid var(--border-color, #e2e8f0);
  }

  .category-item svg {
    display: none;
  }

  .category-item.active {
    background-color: var(--primary-color, #2563eb);
    color: #ffffff !important;
  }

  .mega-dropdown-content {
    padding: var(--space-sm, 0.75rem);
  }
  
  .pane-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}


/* ==========================================================================
   6. Keyframe Animations (animations.css)
   ========================================================================== */
/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s var(--transition-fast) forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s var(--transition-bounce) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s var(--transition-bounce) forwards;
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* Staggered Delays for lists/grids */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Intersection Observer utility classes (JS will toggle these) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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