/* ----------------------------
   TAILWIND CONFIGURATION
   ---------------------------- */
@import "tailwindcss";

/* Tailwind v4: add extra content sources explicitly */
@source "../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php";
@source "../../storage/framework/views/*.php";
@source "../**/*.{blade.php,js,ts,tsx,vue}";

/* ----------------------------
   THEME TOKENS (LIGHT MODE)
   ---------------------------- */
@theme {
  /* Typography */
  --font-sans: "Inter", "Space Grotesk", system-ui, -apple-system, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-heading: "Playfair Display", "Space Grotesk", "Inter", system-ui, serif;

  /* Radii - Keeping radii values for modern rounded corners */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2rem;

  /* Shadows - Adjusted for soft, diffused look on light backgrounds */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.1);

  /* Core colors (Switched to Light Mode Palette) */
  --color-bg: #f8faff; /* Very soft light blue/off-white background */
  --color-surface: #ffffff; /* Pure white for primary surfaces (cards, panels) */
  --color-surface-muted: rgba(230, 237, 245, 0.8); /* Very light gray for muted surfaces */
  --color-border: rgba(31, 41, 55, 0.1); /* Very subtle dark border */
  --color-text: #1f2937; /* Dark slate for high contrast text */
  --color-muted: #6b7280; /* Medium gray for secondary text */

  /* Brand accents: Indigo + Purple + Amber highlight (Keeping colors, adjusting usage) */
  --color-accent: #4f46e5; /* Indigo */
  --color-accent-dark: #a855f7; /* Purple */
  --color-accent-soft: #fbbf24; /* Amber highlight */

  /* Glow and Shadow adjusted for subtle light mode effects */
  --color-glow: rgba(79, 70, 229, 0.1); /* Very soft blue glow */
  --color-shadow: rgba(31, 41, 55, 0.15); /* Soft shadow */

  /* Gradient hints (Light mode: gradients are transparent/white fades) */
  --color-gradient-start: rgba(255, 255, 255, 0.98);
  --color-gradient-end: rgba(255, 255, 255, 0.92);
}

/* ----------------------------
   BASE LAYER
   ---------------------------- */
@layer base {
  :root {
    color-scheme: light; /* Switched to light mode */
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    transition:
      background-color 200ms ease,
      color 200ms ease,
      border-color 200ms ease,
      transform 200ms ease;
  }

  html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    color: var(--color-text);
    /* Subtle background gradients for light mode */
    background:
      radial-gradient(circle at 20% -10%, rgba(79, 70, 229, 0.05), transparent 35%),
      radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.03), transparent 40%),
      radial-gradient(circle at 0% 100%, rgba(79, 70, 229, 0.04), transparent 42%),
      var(--color-bg);
  }

  a {
    color: var(--color-accent);
    text-decoration: none;
  }

  a:hover {
    color: var(--color-accent-soft);
  }

  ::selection {
    background: rgba(79, 70, 229, 0.15); /* Light selection background */
    color: var(--color-text);
  }

  /* Scrollbar polish (fallback-safe) */
  * {
    scrollbar-width: thin;
    scrollbar-gutter: stable both-edges;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(79, 70, 229, 0.3); /* Lighter scrollbar thumb */
    border-radius: 999px;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      transition-duration: 1ms !important;
      animation-duration: 1ms !important;
    }

    html {
      scroll-behavior: auto;
    }
  }
}

/* ----------------------------
   COMPONENTS LAYER
   ---------------------------- */
@layer components {
  .text-muted {
    color: var(--color-muted);
  }

  .text-accent {
    color: var(--color-accent);
  }

  .site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .site-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.2; /* Reduced opacity for light mode */
    mix-blend-mode: multiply; /* Adjusted blend mode */
    background:
      radial-gradient(circle at 15% 10%, rgba(79, 70, 229, 0.05), transparent 45%),
      radial-gradient(circle at 85% 20%, rgba(168, 85, 247, 0.04), transparent 40%),
      radial-gradient(circle at 50% 90%, rgba(79, 70, 229, 0.03), transparent 50%);
  }

  /* Header now uses white surface and subtle shadow/border */
  .site-header {
    container-type: inline-size;
    width: min(1200px, 100%);
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.75rem;
    border-radius: 32px;
    border: 1px solid var(--color-border);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.95)
    ); /* Light, semi-transparent background */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Softer header shadow */
    backdrop-filter: blur(20px);
  }

  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

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

  .site-logo-mark {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Adjusted background for light mode */
    background: linear-gradient(
      135deg,
      var(--color-accent),
      var(--color-accent-dark)
    );
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
    overflow: hidden;
  }

  .site-logo-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: radial-gradient(
      circle at 60% 20%,
      rgba(255, 255, 255, 0.6),
      transparent 55%
    );
  }

  .site-logo-mark svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    color: #fff; /* Logo icon color remains white */
  }

  .logo-text {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
  }

  .logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  /* Nav links adjusted for subtle light mode interaction */
  .nav-link {
    padding: 0.5rem 1.1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition:
      color 200ms ease,
      border-color 200ms ease,
      background 200ms ease;
  }

  .nav-link:hover {
    border-color: rgba(79, 70, 229, 0.3); /* Subtle hover border */
    color: var(--color-accent);
    background: rgba(79, 70, 229, 0.05); /* Very light background hover */
  }

  .nav-link-active {
    color: var(--color-accent);
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1); /* Lighter active shadow */
  }

  .site-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .site-search {
    position: relative;
  }

  .site-search input {
    inline-size: 220px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 55, 0.1); /* Subtle light border */
    background: var(--color-surface-muted); /* Light muted background */
    color: var(--color-text);
    font-size: 0.9rem;
  }

  .site-search input::placeholder {
    color: var(--color-muted);
  }

  .site-search input:focus {
    outline: 2px solid var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-surface);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2); /* Soft focus glow */
  }

  .site-search svg {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-end: 0.85rem;
    transform: translateY(-50%);
    color: var(--color-muted);
  }

  .input-field {
    inline-size: 100%;
    padding: 0.75rem 1rem;
    border-radius: 22px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.95rem;
  }

  .input-field::placeholder {
    color: var(--color-muted);
  }

  .input-field:focus {
    outline: 2px solid var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-surface);
  }

  /* Pill button with strong accent color against light background */
  .pill-button {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.6);
    background: linear-gradient(
      135deg,
      rgba(79, 70, 229, 0.9),
      rgba(79, 70, 229, 0.7)
    );
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
  }

  .site-main {
    flex: 1;
  }

  .page-wrapper {
    container-type: inline-size;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 1rem 4rem;
  }

  .page-section {
    margin-block-start: 3rem;
    padding: 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
    animation: fadeIn 0.6s ease both;
  }

  /* Hero section background adjusted to be light and airy */
  .hero-section {
    border-radius: 38px;
    padding: clamp(2.5rem, 3vw, 3.75rem);
    border: 1px solid rgba(79, 70, 229, 0.1);
    background:
      linear-gradient(135deg, var(--color-surface), var(--color-surface-muted)),
      linear-gradient(180deg, rgba(79, 70, 229, 0.05), transparent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07); /* Very light shadow */
    backdrop-filter: blur(20px);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
  }

  .hero-heading {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.2;
    color: var(--color-text); /* Dark text on light background */
  }

  .hero-subhead {
    max-width: 40rem;
    font-size: 1.1rem;
    color: var(--color-muted);
  }

  .hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Primary button remains vibrant and dark on light background */
  .btn-primary {
    padding: 0.85rem 2.4rem;
    border-radius: 20px;
    border: none;
    background: linear-gradient(
      135deg,
      var(--color-accent),
      var(--color-accent-dark)
    );
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
  }

  /* Secondary button adjusted to look subtle and light */
  .btn-secondary {
    padding: 0.85rem 2rem;
    border-radius: 18px;
    border: 1px solid rgba(251, 191, 36, 0.3); /* Softer Amber border */
    background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.1), var(--color-surface)); /* Light background with soft amber hint */
    color: var(--color-text);
    font-weight: 600;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  }

  .stats-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  /* Stat card is pure white with a light border */
  .stat-card {
    padding: 1rem 1.25rem;
    border-radius: 22px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }

  .stat-card span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .stat-card strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.9rem;
    color: var(--color-text);
  }

  /* General card styles adjusted for light mode */
  .connected-card,
  .feature-card,
  .app-card,
  .glass-panel {
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
  }

  /* Glass panel uses a subtle accent background */
  .glass-panel {
    background:
      linear-gradient(180deg, rgba(79, 70, 229, 0.08), var(--color-surface)),
      var(--color-surface);
  }

  .section-heading {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .section-title {
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--color-text);
  }

  .section-subtitle {
    max-width: 42rem;
    margin-top: 0.75rem;
    color: var(--color-muted);
  }

  .section-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .feature-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.3rem;
    color: var(--color-text);
  }

  .feature-card p {
    color: var(--color-muted);
  }

  .app-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .app-card .app-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.6rem;
  }

  /* App action links adjusted for light mode */
  .app-card .app-actions a {
    padding: 0.55rem 0.85rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    text-align: center;
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-surface-muted);
  }

  .app-card .app-actions .btn-primary {
    padding: 0.7rem;
    border-radius: 16px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1); /* Very light background */
    color: var(--color-accent);
    font-weight: 600;
  }

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

  /* Footer adapted for light mode, using a slight darker shade for base */
  .footer-shell {
    margin-top: 3rem;
    padding: 2.5rem 1rem 3rem;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
    background: var(--color-surface-muted);
    backdrop-filter: blur(12px);
  }

  .footer-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    color: var(--color-muted);
  }

  .footer-heading {
    margin-top: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
  }

  .footer-links a {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-muted);
    font-weight: 500;
  }

  .footer-links a:hover {
    color: var(--color-accent);
  }

  .footer-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--color-accent);
    background: var(--color-accent); /* Dark, vibrant button */
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(12px);
  }

  .footer-bottom {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-muted);
  }

  .mobile-menu {
    width: min(1200px, 100%);
    margin: 0.75rem auto;
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .language-select {
    border: none;
    background: transparent;
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

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

/* ----------------------------
   UTILITIES LAYER
   ---------------------------- */
@layer utilities {
  /* Container query for compact header layout */
  @container (inline-size <= 64rem) {
    .site-search input {
      inline-size: 160px;
    }

    /* Note: If the user requires mobile navigation, these classes will need adjustment
  /* Helpers for migrated inline styles */
  .ltr-direction {
    direction: ltr;
  }

  .mix-blend-hard-light {
    mix-blend-mode: hard-light;
  }

  .mix-blend-plus-darker {
    mix-blend-mode: plus-darker;
  }

  .progress-bar {
    width: 0%;
  }

  .brand-badge {
    border-color: var(--brand-color);
  }
       to display the hamburger icon and mobile menu at this breakpoint. */
    /*
    .nav-links,
    .site-actions {
      display: none;
    }
    */

    .section-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  }
}/* ===== Professional Enhancements for APK Center ===== */

/* Smooth Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Glass Morphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Enhanced Cards */
.app-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Buttons */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Stats Counter Animation */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section Enhancement */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Navigation Enhancement */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

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

/* Search Box Enhancement */
.search-box {
  background: white;
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: #667eea;
  box-shadow: 0 4px 25px rgba(102, 126, 234, 0.2);
}

/* Category Pills */
.category-pill {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-pill:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Dark Mode Enhancements */
.dark .glass-card {
  background: rgba(30, 30, 30, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark .feature-card {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(102, 126, 234, 0.2);
}

.dark .hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .stat-number {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Footer Enhancement */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #667eea;
}
