/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Design System */
:root {
  --background: 220 27% 4%;
  --foreground: 210 40% 98%;
  --card: 220 27% 6%;
  --card-foreground: 210 40% 98%;
  --popover: 220 27% 6%;
  --popover-foreground: 210 40% 98%;
  --primary: 263 85% 60%;
  --primary-foreground: 210 40% 98%;
  --secondary: 220 27% 8%;
  --secondary-foreground: 210 40% 98%;
  --muted: 220 27% 10%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 32 95% 62%;
  --accent-foreground: 220 27% 4%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 27% 12%;
  --input: 220 27% 10%;
  --ring: 263 85% 60%;
  --radius: 0.75rem;
  
  /* Custom KIT-Idea Hack theme */
  --gradient-primary: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%));
  --gradient-secondary: linear-gradient(135deg, hsl(32, 95%, 62%), hsl(45, 90%, 55%));
  --gradient-hero: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%), hsl(32, 95%, 62%));
  --glow-primary: 0 0 40px hsl(263, 85%, 60%, 0.3);
  --glow-accent: 0 0 30px hsl(32, 95%, 62%, 0.4);
}

/* Light Theme */
[data-theme="light"] {
  --background: 0 0% 100%;
  --foreground: 220 27% 4%;
  --card: 0 0% 100%;
  --card-foreground: 220 27% 4%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 27% 4%;
  --primary: 263 85% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 27% 96%;
  --secondary-foreground: 220 27% 4%;
  --muted: 220 27% 96%;
  --muted-foreground: 220 27% 30%;
  --accent: 32 95% 62%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 27% 90%;
  --input: 220 27% 90%;
  --ring: 263 85% 60%;
  
  /* Light theme gradients */
  --gradient-primary: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%));
  --gradient-secondary: linear-gradient(135deg, hsl(32, 95%, 62%), hsl(45, 90%, 55%));
  --gradient-hero: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%), hsl(32, 95%, 62%));
  --glow-primary: 0 0 40px hsl(263, 85%, 60%, 0.2);
  --glow-accent: 0 0 30px hsl(32, 95%, 62%, 0.3);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  padding-top: 80px; /* Add padding to account for fixed navigation bar */
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Layout utilities */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Display utilities */
.flex { display: flex; }
.hidden { display: none; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flexbox utilities */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid utilities */
.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)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Spacing utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing utilities */
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Typography utilities */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Color utilities */
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-white { color: white; }

/* Background utilities */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Background opacity utilities */
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }

/* Border utilities */
.border { border: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-border { border-color: hsl(var(--border)); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }

/* Border radius utilities */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.shadow-glow-primary { box-shadow: var(--glow-primary); }
.shadow-glow-accent { box-shadow: var(--glow-accent); }

/* Backdrop utilities */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* Z-index utilities */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Opacity utilities */
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }

/* Position utilities */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .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)); }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:ml-auto { margin-left: auto; }
  .md\:text-right { text-align: right; }
  .md\:transform { transform: translateX(-50%); }
  .md\:-translate-x-1\/2 { transform: translateX(-50%); }
  .md\:left-1\/2 { left: 50%; }
  .md\:w-1\/2 { width: 50%; }
}

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

/* Animation utilities */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Transition utilities */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Hover utilities */
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:shadow-glow-primary:hover { box-shadow: var(--glow-primary); }

/* Text utilities */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: linear-gradient(135deg, #7f00ff, #e100ff); }

/* Custom styles for specific components */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
}

/* Modern Hero Banner Styles */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--background) / 0.95) 50%, 
    hsl(var(--background)) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 6rem);
  z-index: 1;
  padding: 2rem 0;
  padding-top: 6rem; /* Account for fixed header */
}

/* Interactive Spider Web Container */
.spider-web-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.spider-web-svg {
  width: 100%;
  height: 100%;
  filter: url(#webGlow);
}

/* Spider Web Lines */
.web-line {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  stroke-dasharray: 5, 5;
  animation: webPulse 3s ease-in-out infinite;
}

.web-line-1 { animation-delay: 0s; }
.web-line-2 { animation-delay: 0.3s; }
.web-line-3 { animation-delay: 0.6s; }
.web-line-4 { animation-delay: 0.9s; }
.web-line-5 { animation-delay: 1.2s; }
.web-line-6 { animation-delay: 1.5s; }
.web-line-7 { animation-delay: 1.8s; }
.web-line-8 { animation-delay: 2.1s; }
.web-line-9 { animation-delay: 2.4s; }

/* Spider Web Spirals */
.web-spiral {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.5;
  stroke-dasharray: 3, 3;
  animation: webSpiral 8s linear infinite;
}

.web-spiral-1 { animation-delay: 0s; }
.web-spiral-2 { animation-delay: 2s; }
.web-spiral-3 { animation-delay: 4s; }

/* Spider Web Nodes */
.web-node {
  fill: rgba(255, 255, 255, 0.4);
  animation: webNodePulse 2s ease-in-out infinite;
}

.web-node-center {
  fill: rgba(255, 255, 255, 0.6);
  animation: webCenterPulse 1.5s ease-in-out infinite;
}

.web-node-1 { animation-delay: 0.2s; }
.web-node-2 { animation-delay: 0.4s; }
.web-node-3 { animation-delay: 0.6s; }
.web-node-4 { animation-delay: 0.8s; }
.web-node-5 { animation-delay: 1s; }
.web-node-6 { animation-delay: 1.2s; }
.web-node-7 { animation-delay: 1.4s; }
.web-node-8 { animation-delay: 1.6s; }

/* Floating Particles System */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 50%; left: 10%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 90%; animation-delay: 6s; }
.particle-5 { top: 20%; left: 50%; animation-delay: 8s; }
.particle-6 { top: 60%; left: 30%; animation-delay: 10s; }
.particle-7 { top: 40%; left: 70%; animation-delay: 1s; }
.particle-8 { top: 80%; left: 40%; animation-delay: 3s; }
.particle-9 { top: 15%; left: 60%; animation-delay: 5s; }
.particle-10 { top: 45%; left: 15%; animation-delay: 7s; }
.particle-11 { top: 75%; left: 85%; animation-delay: 9s; }
.particle-12 { top: 25%; left: 35%; animation-delay: 11s; }
.particle-13 { top: 55%; left: 65%; animation-delay: 1.5s; }
.particle-14 { top: 85%; left: 25%; animation-delay: 3.5s; }
.particle-15 { top: 35%; left: 75%; animation-delay: 5.5s; }
.particle-16 { top: 65%; left: 45%; animation-delay: 7.5s; }

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 70%;
  animation-delay: 6s;
}

.orb-4 {
  width: 50px;
  height: 50px;
  top: 80%;
  left: 30%;
  animation-delay: 9s;
}

.orb-5 {
  width: 70px;
  height: 70px;
  top: 10%;
  right: 30%;
  animation-delay: 12s;
}

.orb-6 {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 50%;
  animation-delay: 15s;
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: shapeRotate 20s linear infinite;
}

.shape-1 {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 25%;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  width: 30px;
  height: 30px;
  top: 45%;
  right: 25%;
  transform: rotate(45deg);
  animation-delay: 5s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  top: 65%;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 10s;
}

.shape-4 {
  width: 35px;
  height: 35px;
  top: 15%;
  right: 15%;
  border-radius: 20%;
  animation-delay: 15s;
}

.shape-5 {
  width: 45px;
  height: 45px;
  top: 55%;
  left: 60%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 20s;
}

.shape-6 {
  width: 25px;
  height: 25px;
  top: 35%;
  left: 80%;
  border-radius: 10%;
  animation-delay: 25s;
}

/* Light Rays */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: raySweep 8s ease-in-out infinite;
}

.ray-1 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 20%;
  animation-delay: 0s;
}

.ray-2 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  animation-delay: 2s;
}

.ray-3 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 80%;
  animation-delay: 4s;
}

.ray-4 {
  width: 100%;
  height: 2px;
  top: 30%;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation-delay: 6s;
}

/* Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}






/* Floating Animation Keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-30px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes floatSideToSide {
  0%, 100% {
    transform: translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(12px) rotate(0.5deg);
  }
  50% {
    transform: translateX(25px) rotate(0deg);
  }
  75% {
    transform: translateX(12px) rotate(-0.5deg);
  }
}

@keyframes floatDiagonal {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(15px, -10px) rotate(1.5deg);
  }
  50% {
    transform: translate(30px, -20px) rotate(0deg);
  }
  75% {
    transform: translate(15px, -10px) rotate(-1.5deg);
  }
}

/* Additional floating animations for variety */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatFast {
  0%, 100% {
    transform: translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(20px) rotate(1deg);
  }
  50% {
    transform: translateX(40px) rotate(0deg);
  }
  75% {
    transform: translateX(20px) rotate(-1deg);
  }
}

@keyframes floatSpiral {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(10px, -8px) rotate(90deg);
  }
  50% {
    transform: translate(20px, -15px) rotate(180deg);
  }
  75% {
    transform: translate(10px, -8px) rotate(270deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
  }
}

/* Cursor Trail Effects */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  animation: cursorTrail 0.6s ease-out forwards;
}

@keyframes cursorTrail {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Magnetic Field Effect */
.magnetic-field {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: magneticPulse 2s ease-in-out infinite;
}

@keyframes magneticPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

/* Interactive Ripple Effect */
.ripple-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: ripple 0.8s ease-out forwards;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Spider Web Animations */
@keyframes webPulse {
  0%, 100% {
    stroke-opacity: 0.3;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-opacity: 0.6;
    stroke-dashoffset: 10;
  }
}

@keyframes webSpiral {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

@keyframes webNodePulse {
  0%, 100% {
    r: 2;
    opacity: 0.4;
  }
  50% {
    r: 3;
    opacity: 0.8;
  }
}

@keyframes webCenterPulse {
  0%, 100% {
    r: 3;
    opacity: 0.6;
  }
  50% {
    r: 5;
    opacity: 1;
  }
}

/* Particle Animations */
@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

/* Orb Animations */
@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
  }
  50% {
    transform: translateY(-40px) translateX(0px) scale(1);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) scale(1.1);
  }
}

/* Shape Animations */
@keyframes shapeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Ray Animations */
@keyframes raySweep {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* Grid Animation */
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}


/* Cursor Interactive Web Effects */
.web-line:hover {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  animation: webPulse 0.5s ease-in-out infinite;
}

.web-node:hover {
  fill: rgba(255, 255, 255, 0.9);
  r: 4;
  animation: webNodePulse 0.3s ease-in-out infinite;
}

.particle:hover {
  transform: scale(2);
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, transparent 70%);
}

.orb:hover {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.shape:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.ray:hover {
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}


.hero-bg-image {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  animation: backgroundMove 20s ease-in-out infinite;
}

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

/* Animated Background Overlay */
.animated-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  animation: overlayPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes overlayPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  /* animation: float 6s ease-in-out infinite; */
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  background: linear-gradient(45deg, #4ecdc4, #6dd5ed);
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 30%;
  left: 80%;
  background: linear-gradient(45deg, #45b7d1, #74c0fc);
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 70%;
  left: 70%;
  background: linear-gradient(45deg, #96ceb4, #a8e6cf);
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 50%;
  background: linear-gradient(45deg, #feca57, #ffd93d);
  animation-delay: 3s;
  animation-duration: 6s;
}

.particle-6 {
  width: 7px;
  height: 7px;
  top: 80%;
  left: 30%;
  background: linear-gradient(45deg, #ff9ff3, #f368e0);
  animation-delay: 5s;
  animation-duration: 11s;
}

.particle-7 {
  width: 3px;
  height: 3px;
  top: 10%;
  left: 60%;
  background: linear-gradient(45deg, #a8e6cf, #88d8a3);
  animation-delay: 2.5s;
  animation-duration: 8.5s;
}

.particle-8 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 90%;
  background: linear-gradient(45deg, #ffd93d, #ffed4e);
  animation-delay: 1.5s;
  animation-duration: 9.5s;
}

.particle-9 {
  width: 4px;
  height: 4px;
  top: 15%;
  left: 40%;
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  animation-delay: 3.5s;
  animation-duration: 7.5s;
}

.particle-10 {
  width: 6px;
  height: 6px;
  top: 85%;
  left: 60%;
  background: linear-gradient(45deg, #fd79a8, #e84393);
  animation-delay: 4.5s;
  animation-duration: 9s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% { 
    transform: translateY(-10px) translateX(-15px) rotate(180deg);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 0.9;
  }
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  animation: geometricFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 10%;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(255, 142, 142, 0.2));
  border: 2px solid rgba(255, 107, 107, 0.4);
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 25%;
  right: 15%;
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.3), rgba(109, 213, 237, 0.2));
  border: 2px solid rgba(78, 205, 196, 0.4);
  transform: rotate(45deg);
  animation-delay: 3s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  border-radius: 20%;
  background: linear-gradient(45deg, rgba(69, 183, 209, 0.3), rgba(116, 192, 252, 0.2));
  border: 2px solid rgba(69, 183, 209, 0.4);
  animation-delay: 6s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  bottom: 30%;
  right: 25%;
  background: linear-gradient(45deg, rgba(254, 202, 87, 0.3), rgba(255, 217, 61, 0.2));
  border: 2px solid rgba(254, 202, 87, 0.4);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 9s;
}

.shape-5 {
  width: 35px;
  height: 35px;
  top: 45%;
  left: 5%;
  background: linear-gradient(45deg, rgba(150, 206, 180, 0.3), rgba(168, 230, 207, 0.2));
  border: 2px solid rgba(150, 206, 180, 0.4);
  border-radius: 50%;
  animation-delay: 12s;
}

.shape-6 {
  width: 45px;
  height: 45px;
  top: 70%;
  right: 5%;
  background: linear-gradient(45deg, rgba(255, 159, 243, 0.3), rgba(243, 104, 224, 0.2));
  border: 2px solid rgba(255, 159, 243, 0.4);
  transform: rotate(30deg);
  animation-delay: 15s;
}

@keyframes geometricFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
}

.orb-3 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 60%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(69, 183, 209, 0.2) 0%, transparent 70%);
}

.orb-4 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 40%;
  animation-delay: 9s;
  background: radial-gradient(circle, rgba(254, 202, 87, 0.2) 0%, transparent 70%);
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) scale(1.2);
    opacity: 0.6;
  }
}

/* Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Light Rays */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: rayMove 8s ease-in-out infinite;
}

.ray-1 {
  width: 2px;
  height: 200px;
  top: 20%;
  left: 30%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.ray-2 {
  width: 2px;
  height: 150px;
  top: 60%;
  right: 30%;
  transform: rotate(-30deg);
  animation-delay: 2.5s;
}

.ray-3 {
  width: 2px;
  height: 180px;
  bottom: 20%;
  left: 60%;
  transform: rotate(60deg);
  animation-delay: 5s;
}

@keyframes rayMove {
  0%, 100% { 
    opacity: 0;
    transform: rotate(45deg) scaleY(0);
  }
  50% { 
    opacity: 1;
    transform: rotate(45deg) scaleY(1);
  }
}

/* Enhanced Hero Title Container */
.hero-title-container {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.5rem;
}

/* Enhanced Hero Title */
.hero-title {
  position: relative;
  z-index: 2;
  line-height: 0.9;
  overflow: visible;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Enhanced Word Styling */
.enhanced-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Removed hover effects */

/* Removed glow and shine effects */

/* Title Separator */
.title-separator {
  font-size: 0.9em;
  color: hsl(var(--primary));
  font-weight: 900;
  opacity: 1;
  transform: none;
}

/* Hero Year Styling */
.hero-year {
  position: relative;
  z-index: 2;
  line-height: 0.9;
  overflow: visible;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Year Word Special Effects */
.year-word {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Removed background effects */

/* No animation delays - static display */

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Removed wordFloat animation */

/* Removed separatorPulse animation */

/* Removed yearGlow animation */

@keyframes titleBgGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes titleParticles {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

/* Additional Title Effect Animations */
@keyframes wordRippleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

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

@keyframes wordShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes titleParticleFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) scale(0);
    opacity: 0;
  }
}

@keyframes titleGlowPulse {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
  }
}

@keyframes yearSparkleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px) scale(0);
    opacity: 0;
  }
}

/* Hero Subtitle Animation */
.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: subtitleReveal 1s ease-out 1s forwards;
}

@keyframes subtitleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Buttons Animation */
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: buttonsReveal 1s ease-out 1.5s forwards;
  margin-bottom: 6rem;
  position: relative;
  z-index: 5;
}

@keyframes buttonsReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Button Styles */
.hero-btn-primary,
.hero-btn-secondary,
.hero-btn-tertiary {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover,
.hero-btn-tertiary:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-primary:active,
.hero-btn-secondary:active,
.hero-btn-tertiary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.hero-btn-primary:hover .btn-shine,
.hero-btn-secondary:hover .btn-shine,
.hero-btn-tertiary:hover .btn-shine {
  left: 100%;
}

/* Registration Countdown Timer */
.countdown-section {
  position: relative;
  z-index: 10;
  margin: 3rem 0;
}

.countdown-container {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  /* animation: countdownFloat 6s ease-in-out infinite; */
}

.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  /* animation: countdownShimmer 3s ease-in-out infinite; */
}

.countdown-header {
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  /* animation: countdownTitlePulse 2s ease-in-out infinite; */
}

.countdown-date {
  font-size: 1.125rem;
  color: hsl(var(--primary));
  font-weight: 500;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: countdownDateGlow 3s ease-in-out infinite; */
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* animation: countdownItemFloat 4s ease-in-out infinite; */
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(3) { animation-delay: 0.5s; }
.countdown-item:nth-child(5) { animation-delay: 1s; }
.countdown-item:nth-child(7) { animation-delay: 1.5s; }

.countdown-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  text-shadow: 
    0 0 20px hsl(var(--primary) / 0.5),
    0 0 40px hsl(var(--primary) / 0.3);
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--primary) / 0.8) 50%, 
    hsl(var(--primary)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 80px;
  text-align: center;
  position: relative;
  /* animation: countdownNumberPulse 1.5s ease-in-out infinite; */
}

.countdown-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 70%);
  border-radius: 50%;
  /* animation: countdownNumberGlow 2s ease-in-out infinite; */
}

.countdown-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* animation: countdownLabelFloat 3s ease-in-out infinite; */
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  text-shadow: 0 0 20px hsl(var(--primary) / 0.5);
  /* animation: countdownSeparatorBlink 1s ease-in-out infinite; */
}

.countdown-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.countdown-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.8) 0%, 
    transparent 70%);
  border-radius: 50%;
  /* animation: countdownParticleFloat 8s linear infinite; */
}

.countdown-particles .particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.countdown-particles .particle-2 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.countdown-particles .particle-3 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.countdown-particles .particle-4 {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
  animation-duration: 6.5s;
}

.countdown-particles .particle-5 {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 7.5s;
}

/* Countdown Animations */
@keyframes countdownFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes countdownShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes countdownTitlePulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes countdownDateGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes countdownItemFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

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

@keyframes countdownNumberGlow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes countdownLabelFloat {
  0%, 100% { transform: translateY(0px); opacity: 0.7; }
  50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes countdownSeparatorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes countdownParticleFloat {
  0% { 
    transform: translateY(100vh) rotate(0deg); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { 
    transform: translateY(-100px) rotate(360deg); 
    opacity: 0; 
  }
}

/* Responsive Countdown */
@media (max-width: 768px) {
  .countdown-container {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  
  .countdown-timer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
  }
  
  .countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;
    min-width: 80px;
    animation: none;
  }
  
  .countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
    display: block;
    text-shadow: 0 0 10px hsl(var(--primary) / 0.3);
  }
  
  .countdown-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .countdown-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .countdown-date {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    padding: 1rem 0.75rem;
    margin: 0 0.25rem;
  }
  
  .countdown-timer {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .countdown-item {
    padding: 0.75rem 0.25rem;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.65rem;
  }
  
  .countdown-title {
    font-size: 1rem;
  }
  
  .countdown-date {
    font-size: 0.8rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollIndicatorReveal 1s ease-out 2s forwards;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

@keyframes scrollIndicatorReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, 
    hsl(var(--primary)), 
    transparent);
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid hsl(var(--primary));
  border-bottom: 2px solid hsl(var(--primary));
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scroll-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Interactive Hover Effects */
.hero-banner:hover .particle {
  animation-duration: 4s;
}

.hero-banner:hover .shape {
  animation-duration: 8s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .particle {
    display: none;
  }
  
  .shape {
    display: none;
  }
  
  /* Mobile Floating PNG Adjustments */
  .floating-png {
    opacity: 0.08;
  }
  
  .floating-png-1, .floating-png-3, .floating-png-6, .floating-png-9, .floating-png-11, .floating-png-13, .floating-png-15 {
    width: 35px;
    height: 35px;
  }
  
  .floating-png-2, .floating-png-4, .floating-png-7, .floating-png-8, .floating-png-12, .floating-png-14, .floating-png-16 {
    width: 28px;
    height: 28px;
  }
  
  .floating-png-5, .floating-png-10 {
    width: 25px;
    height: 25px;
  }
  
  /* Reduce animation intensity on mobile */
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    25% {
      transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
      transform: translateY(-15px) rotate(0deg);
    }
    75% {
      transform: translateY(-8px) rotate(-0.5deg);
    }
  }
  
  @keyframes floatSideToSide {
    0%, 100% {
      transform: translateX(0px) rotate(0deg);
    }
    25% {
      transform: translateX(6px) rotate(0.25deg);
    }
    50% {
      transform: translateX(12px) rotate(0deg);
    }
    75% {
      transform: translateX(6px) rotate(-0.25deg);
    }
  }
  
  @keyframes floatDiagonal {
    0%, 100% {
      transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
      transform: translate(8px, -5px) rotate(0.75deg);
    }
    50% {
      transform: translate(15px, -10px) rotate(0deg);
    }
    75% {
      transform: translate(8px, -5px) rotate(-0.75deg);
    }
  }
  
  
  .orb {
    display: none;
  }
  
  .ray {
    display: none;
  }
  
  .animated-grid {
    opacity: 0.1;
  }
  
  .scroll-indicator {
    bottom: 0.5rem;
  }
  
  .hero-banner {
    padding: 1rem 0;
    padding-top: 5.5rem; /* Extra padding for mobile header */
  }
  
  .hero-buttons {
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .animated-overlay {
    opacity: 0.2;
  }
  
  .floating-particles,
  .geometric-shapes,
  .floating-orbs,
  .light-rays {
    display: none;
  }
  
  /* Mobile Header Ultra Small Screens */
  .nav-glass .container {
    padding: 0 0.5rem !important;
  }
  
  .nav-glass .flex {
    gap: 0.25rem;
  }
  
  .logo-container .text-xl {
    font-size: 1rem;
  }
  
  .mobile-menu {
    max-height: 95vh;
  }
  
  .mobile-nav-link {
    padding: 0.6rem 1rem;
    margin: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .mobile-theme-toggle-btn,
  .mobile-login-button,
  .mobile-cta-button {
    padding: 0.6rem 1rem;
    margin: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .hero-banner {
    padding-top: 5rem; /* Extra padding for ultra-small screens */
  }
  
  /* Ultra-small mobile header optimizations */
  .lg\:hidden .text-sm {
    font-size: 0.65rem;
    line-height: 1.0;
  }
  
  .lg\:hidden .logo-container {
    width: 40px;
    height: 40px;
  }
  
  .lg\:hidden .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .lg\:hidden .pdc-logo {
    width: 30px;
    height: 30px;
  }
  
  .lg\:hidden .mobile-menu-btn {
    width: 2rem;
    height: 2rem;
  }
}

/* Additional alignment fixes */
.hero-banner .container {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
}

.hero-banner .max-w-4xl {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

/* About Section - Unique Modern Layout */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--background) / 0.95) 50%, 
    hsl(var(--background)) 100%);
}

/* Clean Two Column Layout Styles */
.about-left-content {
  position: relative;
  padding-right: 2rem;
}

.about-graphics-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding-left: 2rem;
}

.why-participate-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-title-wrapper {
  position: relative;
}

.about-title-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 2px;
  margin-top: 1rem;
}

.side-graphics-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 300px;
  position: relative;
  padding: 1.5rem;
  background: radial-gradient(circle at center, 
    rgba(255, 255, 255, 0.02) 0%, 
    transparent 70%);
  border-radius: 30px;
  overflow: hidden;
}

.side-graphics-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 107, 107, 0.1) 60deg,
    transparent 120deg,
    rgba(78, 205, 196, 0.1) 180deg,
    transparent 240deg,
    rgba(69, 183, 209, 0.1) 300deg,
    transparent 360deg
  );
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

.side-graphics-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, 
    rgba(255, 255, 255, 0.05) 0%, 
    transparent 50%),
    radial-gradient(circle at 70% 80%, 
    rgba(255, 255, 255, 0.03) 0%, 
    transparent 50%);
  z-index: 1;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Cards with Cursor Interaction */
.side-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.side-card {
  opacity: 0;
  transform: translateX(50px) scale(0.9) rotateY(15deg);
  animation: cardSlideIn 0.8s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.side-card:nth-child(1) {
  animation-delay: 0.2s;
}

.side-card:nth-child(2) {
  animation-delay: 0.4s;
}

.side-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Floating Animation */
.side-card {
  animation: cardSlideIn 0.8s ease-out forwards, floatCard 6s ease-in-out infinite;
}

.side-card:nth-child(1) {
  animation: cardSlideIn 0.8s ease-out 0.2s forwards, floatCard 6s ease-in-out infinite 0.2s;
}

.side-card:nth-child(2) {
  animation: cardSlideIn 0.8s ease-out 0.4s forwards, floatCard 6s ease-in-out infinite 0.4s;
}

.side-card:nth-child(3) {
  animation: cardSlideIn 0.8s ease-out 0.6s forwards, floatCard 6s ease-in-out infinite 0.6s;
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9) rotateY(15deg);
  }
  60% {
    opacity: 0.8;
    transform: translateX(-10px) scale(1.05) rotateY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-8px) rotateY(2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(0deg);
  }
  75% {
    transform: translateY(-6px) rotateY(-2deg);
  }
}

.side-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.side-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.8s ease;
}

.side-card:hover::before {
  left: 100%;
}

/* Cursor Interaction Effects */
.side-card:hover {
  transform: translateY(-15px) scale(1.08) rotateY(5deg) rotateX(5deg);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 255, 255, 0.1);
  animation-play-state: paused;
}

.side-card:hover .card-icon {
  transform: scale(1.3) rotate(10deg) translateZ(20px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.side-card:hover .card-text {
  transform: translateX(8px) translateZ(10px);
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Magnetic Cursor Effect */
.side-card {
  will-change: transform;
}

.side-card:hover::before {
  left: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
}

/* 3D Tilt Effect */
.side-card:hover {
  transform-style: preserve-3d;
}

.side-card .card-icon,
.side-card .card-text {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.side-card .card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.side-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.side-card .card-text {
  color: plum;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.side-card:hover .card-text {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

/* Individual Card Enhancements with Floating Effects */
.side-card-1 {
  border-color: rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.2s forwards, floatCard 6s ease-in-out infinite 0.2s, cardGlow1 4s ease-in-out infinite;
}

.side-card-1:hover {
  border-color: rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(255, 107, 107, 0.3),
    0 0 0 1px rgba(255, 107, 107, 0.3),
    0 0 40px rgba(255, 107, 107, 0.2),
    0 0 80px rgba(255, 107, 107, 0.1);
}

.side-card-2 {
  border-color: rgba(78, 205, 196, 0.3);
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.4s forwards, floatCard 6s ease-in-out infinite 0.4s, cardGlow2 4s ease-in-out infinite 1s;
}

.side-card-2:hover {
  border-color: rgba(78, 205, 196, 0.6);
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(78, 205, 196, 0.3),
    0 0 0 1px rgba(78, 205, 196, 0.3),
    0 0 40px rgba(78, 205, 196, 0.2),
    0 0 80px rgba(78, 205, 196, 0.1);
}

.side-card-3 {
  border-color: rgba(69, 183, 209, 0.3);
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.6s forwards, floatCard 6s ease-in-out infinite 0.6s, cardGlow3 4s ease-in-out infinite 2s;
}

.side-card-3:hover {
  border-color: rgba(69, 183, 209, 0.6);
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(69, 183, 209, 0.3),
    0 0 0 1px rgba(69, 183, 209, 0.3),
    0 0 40px rgba(69, 183, 209, 0.2),
    0 0 80px rgba(69, 183, 209, 0.1);
}

/* Individual Card Glow Animations */
@keyframes cardGlow1 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(255, 107, 107, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(255, 107, 107, 0.2),
      0 0 60px rgba(255, 107, 107, 0.1);
  }
}

@keyframes cardGlow2 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(78, 205, 196, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(78, 205, 196, 0.2),
      0 0 60px rgba(78, 205, 196, 0.1);
  }
}

@keyframes cardGlow3 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(69, 183, 209, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(69, 183, 209, 0.2),
      0 0 60px rgba(69, 183, 209, 0.1);
  }
}

/* Side Visual - Enhanced with Modern Effects */
.side-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
  z-index: 2;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  animation: visualAppear 1.2s ease-out 0.8s forwards;
}

@keyframes visualAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.side-visual .visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-visual .visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: enhancedPulse 3s ease-in-out infinite;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.side-visual .visual-circle-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
  border-color: rgba(255, 107, 107, 0.6);
  box-shadow: 
    0 0 40px rgba(255, 107, 107, 0.3),
    inset 0 0 40px rgba(255, 107, 107, 0.15),
    0 0 80px rgba(255, 107, 107, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite, orbitRotate 15s linear infinite;
}

.side-visual .visual-circle-2 {
  width: 150px;
  height: 150px;
  animation-delay: 1.5s;
  border-color: rgba(78, 205, 196, 0.6);
  box-shadow: 
    0 0 35px rgba(78, 205, 196, 0.3),
    inset 0 0 35px rgba(78, 205, 196, 0.15),
    0 0 70px rgba(78, 205, 196, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite 1.5s, orbitRotate 15s linear infinite reverse;
}

.side-visual .visual-circle-3 {
  width: 100px;
  height: 100px;
  animation-delay: 3s;
  border-color: rgba(69, 183, 209, 0.6);
  box-shadow: 
    0 0 30px rgba(69, 183, 209, 0.3),
    inset 0 0 30px rgba(69, 183, 209, 0.15),
    0 0 60px rgba(69, 183, 209, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite 3s, orbitRotate 15s linear infinite;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.side-visual .visual-center {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 255, 255, 0.3),
    inset 0 3px 15px rgba(255, 255, 255, 0.4),
    0 0 100px rgba(255, 255, 255, 0.1);
  animation: centerGlow 3s ease-in-out infinite alternate, centerFloat 6s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.side-visual .visual-center::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.3) 90deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.1) 270deg,
    transparent 360deg
  );
  animation: centerRotate 4s linear infinite;
  z-index: -1;
}

@keyframes centerFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes centerRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.side-visual .center-icon {
  font-size: 2rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  animation: iconFloat 4s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
  }
}

/* Enhanced Animations */
@keyframes enhancedPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes centerGlow {
  0% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.3),
      0 0 40px rgba(255, 255, 255, 0.2),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.3),
      0 0 60px rgba(255, 255, 255, 0.4),
      inset 0 2px 10px rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* @keyframes sidePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
} */

/* Responsive adjustments for clean layout */
@media (max-width: 1024px) {
  .about-main-content .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-left-content {
    padding-right: 0;
    text-align: center;
  }
  
  .about-graphics-right {
    order: 2;
    min-height: 300px;
    padding-left: 0;
  }
  
  .side-graphics-container {
    flex-direction: row;
    max-width: none;
    justify-content: center;
    gap: 2rem;
  }
  
  .side-cards {
    flex-direction: row;
    gap: 1rem;
  }
  
  .side-card {
    padding: 1rem 1.25rem;
  }
  
  .side-card .card-icon {
    font-size: 1.75rem;
  }
  
  .side-card .card-text {
    font-size: 1rem;
  }
  
  .side-visual {
    width: 160px;
    height: 160px;
  }
  
  .side-visual .visual-circle-1 {
    width: 160px;
    height: 160px;
  }
  
  .side-visual .visual-circle-2 {
    width: 120px;
    height: 120px;
  }
  
  .side-visual .visual-circle-3 {
    width: 80px;
    height: 80px;
  }
  
  .side-visual .visual-center {
    width: 55px;
    height: 55px;
  }
  
  .side-visual .center-icon {
    font-size: 1.75rem;
  }
  
  .why-participate-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-main-content .grid {
    gap: 2rem;
  }
  
  .about-left-content {
    text-align: left;
  }
  
  .side-graphics-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .side-cards {
    flex-direction: column;
    gap: 1rem;
  }
  
  .side-card {
    padding: 1rem 1.25rem;
  }
  
  .side-card .card-icon {
    font-size: 1.5rem;
  }
  
  .side-card .card-text {
    font-size: 0.95rem;
  }
  
  .side-visual {
    width: 140px;
    height: 140px;
  }
  
  .side-visual .visual-circle-1 {
    width: 140px;
    height: 140px;
  }
  
  .side-visual .visual-circle-2 {
    width: 105px;
    height: 105px;
  }
  
  .side-visual .visual-circle-3 {
    width: 70px;
    height: 70px;
  }
  
  .side-visual .visual-center {
    width: 50px;
    height: 50px;
  }
  
  .side-visual .center-icon {
    font-size: 1.5rem;
  }
  
  .about-title {
    font-size: 2.5rem !important;
  }
  
  .about-subtitle {
    font-size: 1.125rem !important;
  }
  
  .about-content-title {
    font-size: 1.5rem !important;
  }
  
  .about-text-1,
  .about-text-2 {
    font-size: 1rem !important;
  }
}

/* Background Shapes */
.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.1) 0%, 
    rgba(78, 205, 196, 0.1) 50%, 
    rgba(69, 183, 209, 0.1) 100%);
  /* animation: floatShape 20s ease-in-out infinite; */
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
}

.bg-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.bg-shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes floatShape {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Hero Section */
.about-hero {
  position: relative;
  z-index: 2;
}

.about-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.about-title-accent {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {
  0%, 100% { 
    width: 60px;
    opacity: 1;
  }
  50% { 
    width: 120px;
    opacity: 0.8;
  }
}

/* Floating Cards */
.floating-cards-container {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  /* animation: floatCard 6s ease-in-out infinite; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.floating-card-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 70%;
  right: 35%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-20px) rotate(5deg);
  }
}

.card-content {
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Content Badge */
.content-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Visual Container */
.visual-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid hsl(var(--primary) / 0.3);
  animation: rotateCircle 10s linear infinite;
}

.visual-circle-1 {
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.visual-circle-2 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation-delay: 3s;
  animation-direction: reverse;
}

.visual-circle-3 {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 100px;
  animation-delay: 6s;
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.center-icon {
  font-size: 2rem;
}

@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Benefits Section - Standalone */
.benefits-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--background) / 0.95) 50%, 
    hsl(var(--background)) 100%);
}

/* Background Shapes for Benefits */
.benefits-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.benefit-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.08) 0%, 
    rgba(78, 205, 196, 0.08) 50%, 
    rgba(69, 183, 209, 0.08) 100%);
  /* animation: floatShape 25s ease-in-out infinite; */
}

.benefit-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.benefit-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: -3%;
  animation-delay: 5s;
}

.benefit-shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.benefit-shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 15s;
}

/* Benefits Hero */
.benefits-hero {
  position: relative;
  z-index: 2;
}

.benefits-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.benefits-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: benefitsAccentGlow 3s ease-in-out infinite;
}

@keyframes benefitsAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

.benefits-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

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

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.benefit-desc {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* CTA Section - Enhanced Attractive Design */
.about-cta-section {
  position: relative;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15) 0%, 
    hsl(var(--accent) / 0.15) 50%,
    hsl(var(--primary) / 0.1) 100%);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 40px;
  padding: 4rem 2rem;
  margin-top: 0;
  margin-bottom: 3rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-cta-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px hsl(var(--primary) / 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: hsl(var(--primary) / 0.3);
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.05) 0%, 
    rgba(59, 130, 246, 0.03) 50%, 
    rgba(245, 158, 11, 0.05) 100%);
  border-radius: 40px;
  z-index: 1;
}

.about-cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    hsl(var(--primary) / 0.1) 0%, 
    transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

/* Floating particles for CTA section */
.about-cta-section .floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-cta-section .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  /* animation: floatParticle 8s ease-in-out infinite; */
}

.about-cta-section .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.about-cta-section .particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.about-cta-section .particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.about-cta-section .particle:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
  animation-duration: 9s;
}

/* @keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-15px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.1);
    opacity: 0.9;
  }
} */

.cta-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.about-cta-title {
  position: relative;
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--accent)) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.cta-badge:hover::before {
  left: 100%;
}

.cta-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-cta-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.about-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  flex: 1;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 25px 25px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat:hover::before {
  opacity: 1;
}

.about-stat:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.18) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.about-stat:hover .stat-number {
  color: hsl(var(--primary));
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  transition: color 0.3s ease;
}

.about-stat:hover .stat-label {
  color: hsl(var(--foreground));
}

.cta-visual {
  position: relative;
  width: 200px;
  height: 200px;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    hsl(var(--primary) / 0.3), 
    hsl(var(--accent) / 0.3));
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes ctaFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
  }
  50% { 
    transform: translateY(-20px) scale(1.1);
  }
}

/* Animation Classes */
.about-title,
.about-subtitle,
.about-content,
.about-content-title,
.about-text-1,
.about-text-2,
.benefit-card,
.about-cta-title,
.about-cta-text,
.about-stat {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section.animate .about-title,
.about-section.animate .about-subtitle,
.about-section.animate .about-content,
.about-section.animate .about-content-title,
.about-section.animate .about-text-1,
.about-section.animate .about-text-2,
.about-section.animate .benefit-card,
.about-section.animate .about-cta-title,
.about-section.animate .about-cta-text,
.about-section.animate .about-stat {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .about-stat {
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .floating-cards-container {
    height: 300px;
  }
  
  .visual-container {
    width: 250px;
    height: 250px;
  }
  
  .about-cta-section {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-badge {
    font-size: 1.25rem;
    padding: 0.6rem 1.5rem;
  }
  
  .about-cta-text {
    font-size: 1.1rem;
  }
  
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-title {
    font-size: 2.5rem;
  }
  
  .benefits-subtitle {
    font-size: 1.1rem;
  }
}

/* Problem Statements Section - Modern Layout */
.problems-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--secondary) / 0.1) 0%, 
    hsl(var(--background)) 50%, 
    hsl(var(--secondary) / 0.1) 100%);
  contain: layout style paint;
}

/* Background Shapes */
.problems-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.problem-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(69, 183, 209, 0.1) 0%, 
    rgba(255, 107, 107, 0.1) 50%, 
    rgba(78, 205, 196, 0.1) 100%);
  animation: problemFloat 25s ease-in-out infinite;
}

.problem-shape-1 {
  width: 400px;
  height: 400px;
  top: 5%;
  left: -15%;
  animation-delay: 0s;
}

.problem-shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -10%;
  animation-delay: 8s;
}

.problem-shape-3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
  animation-delay: 16s;
}

.problem-shape-4 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: 20%;
  animation-delay: 24s;
}

@keyframes problemFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Disable heavy animations on mobile for better performance */
@media (max-width: 768px) {
  .problem-shape {
    animation: none !important;
  }
  
  .problems-section {
    background: hsl(var(--background)) !important;
  }
  
  .problems-bg-shapes {
    display: none !important;
  }
}

/* Hero Section */
.problems-hero {
  position: relative;
  z-index: 2;
}

.problems-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.problems-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: problemAccentGlow 3s ease-in-out infinite;
}

@keyframes problemAccentGlow {
  0%, 100% { 
    width: 80px;
    opacity: 1;
  }
  50% { 
    width: 150px;
    opacity: 0.8;
  }
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* Problem Cards */
.problem-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.problem-card:hover::before {
  left: 100%;
}

.problem-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

/* Problem Header */
.problem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.problem-number {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
}

.problem-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: hsl(var(--accent));
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Problem Content */
.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.problem-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.problem-category {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  position: relative;
  z-index: 2;
}

/* Staggered Animation Delays */
.problem-card-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.problem-card-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.problem-card-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.problem-card-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.problem-card-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.problem-card-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.problem-card-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.problem-card-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.problem-card-9 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.problem-card-10 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.problem-card-11 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.problem-card-12 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.problem-card-13 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }
.problem-card-14 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards; }
.problem-card-15 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards; }
.problem-card-16 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s forwards; }
.problem-card-17 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s forwards; }
.problem-card-18 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards; }
.problem-card-19 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.9s forwards; }
.problem-card-20 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.0s forwards; }
.problem-card-21 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.1s forwards; }
.problem-card-22 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s forwards; }
.problem-card-23 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s forwards; }
.problem-card-24 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.4s forwards; }
.problem-card-25 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.5s forwards; }
.problem-card-26 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.6s forwards; }
.problem-card-27 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.7s forwards; }
.problem-card-28 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.8s forwards; }
.problem-card-29 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.9s forwards; }
.problem-card-30 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.0s forwards; }

/* Animation Classes */
.problems-title,
.problems-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problems-title {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.problems-subtitle {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.problems-section.animate .problems-title,
.problems-section.animate .problems-subtitle,
.problems-section.animate .problem-card {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Problems */
@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .problem-card {
    padding: 1.5rem;
  }
  
  .problem-number {
    font-size: 1.5rem;
  }
  
  .problem-title {
    font-size: 1.125rem;
  }
  
  .problem-shape-1,
  .problem-shape-2,
  .problem-shape-3,
  .problem-shape-4 {
    display: none;
  }
  
  /* Mobile Table Optimizations */
  .problems-section table {
    font-size: 0.875rem;
  }
  
  .problems-section th,
  .problems-section td {
    padding: 0.75rem 0.5rem;
  }
  
  .problems-section th:first-child,
  .problems-section td:first-child {
    width: 3rem;
    min-width: 3rem;
  }
  
  .problems-section th:nth-child(2),
  .problems-section td:nth-child(2) {
    width: 5rem;
    min-width: 5rem;
  }
  
  .problems-section th:nth-child(3),
  .problems-section td:nth-child(3) {
    width: 8rem;
    min-width: 8rem;
  }
  
  .problems-section th:last-child,
  .problems-section td:last-child {
    min-width: 12rem;
  }
  
  /* Disable heavy animations on mobile */
  .problem-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .problems-section.animate .problem-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Reduce backdrop blur for better performance */
  .problems-section table {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  /* Optimize table rendering on mobile */
  .problems-section table tbody tr {
    will-change: auto;
  }
  
  /* Use transform3d for hardware acceleration */
  .problems-section table {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  .problems-section table tbody tr:hover {
    background-color: hsl(var(--muted) / 0.3) !important;
    transition: background-color 0.2s ease;
  }
  
  /* Reduce table complexity for mobile */
  .problems-section table {
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .problems-section table th,
  .problems-section table td {
    border-bottom: 1px solid hsl(var(--border) / 0.5);
  }
  
  .problems-section table tbody tr:last-child td {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  /* Ultra-mobile optimizations */
  .problems-section table {
    font-size: 0.8rem;
  }
  
  .problems-section th,
  .problems-section td {
    padding: 0.5rem 0.25rem;
  }
  
  .problems-section th:first-child,
  .problems-section td:first-child {
    width: 2.5rem;
    min-width: 2.5rem;
  }
  
  .problems-section th:nth-child(2),
  .problems-section td:nth-child(2) {
    width: 4rem;
    min-width: 4rem;
  }
  
  .problems-section th:nth-child(3),
  .problems-section td:nth-child(3) {
    width: 6rem;
    min-width: 6rem;
  }
  
  .problems-section th:last-child,
  .problems-section td:last-child {
    min-width: 10rem;
  }
  
  /* Hide problem shapes completely on very small screens */
  .problems-bg-shapes {
    display: none;
  }
}

/* Instructions Section - Modern GSAP-Style Layout */
.instructions-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.05) 50%, 
    hsl(var(--background)) 100%);
}

/* 3x2 Cards Grid Layout */
.instructions-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.instruction-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.instruction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instruction-card:hover::before {
  opacity: 1;
}

.instruction-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.instruction-card .card-content {
  position: relative;
  z-index: 2;
}

.instruction-card .card-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.2), 
    hsl(var(--accent) / 0.2));
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid hsl(var(--primary) / 0.3);
}

.instruction-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.3;
}

.instruction-card .card-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Individual Card Styling */
.instruction-card-1 {
  border-color: rgba(255, 107, 107, 0.3);
}

.instruction-card-1 .card-badge {
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.2), 
    rgba(255, 107, 107, 0.1));
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
}

.instruction-card-2 {
  border-color: rgba(78, 205, 196, 0.3);
}

.instruction-card-2 .card-badge {
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.2), 
    rgba(78, 205, 196, 0.1));
  color: #4ecdc4;
  border-color: rgba(78, 205, 196, 0.3);
}

.instruction-card-3 {
  border-color: rgba(69, 183, 209, 0.3);
}

.instruction-card-3 .card-badge {
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.2), 
    rgba(69, 183, 209, 0.1));
  color: #45b7d1;
  border-color: rgba(69, 183, 209, 0.3);
}

.instruction-card-4 {
  border-color: rgba(255, 193, 7, 0.3);
}

.instruction-card-4 .card-badge {
  background: linear-gradient(135deg, 
    rgba(255, 193, 7, 0.2), 
    rgba(255, 193, 7, 0.1));
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.3);
}

.instruction-card-5 {
  border-color: rgba(156, 39, 176, 0.3);
}

.instruction-card-5 .card-badge {
  background: linear-gradient(135deg, 
    rgba(156, 39, 176, 0.2), 
    rgba(156, 39, 176, 0.1));
  color: #9c27b0;
  border-color: rgba(156, 39, 176, 0.3);
}

.instruction-card-6 {
  border-color: rgba(76, 175, 80, 0.3);
}

.instruction-card-6 .card-badge {
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, 0.2), 
    rgba(76, 175, 80, 0.1));
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

/* Responsive Design for 3x2 Cards */
@media (max-width: 1024px) {
  .instructions-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
  
  .instruction-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .instruction-card .card-title {
    font-size: 1.125rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .instructions-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instruction-card {
    padding: 1.25rem;
  }
  
  .instruction-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .instruction-card .card-title {
    font-size: 1rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.85rem;
  }
  
  .instruction-card .card-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Background Shapes */
.instructions-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.instruction-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.1) 0%, 
    rgba(69, 183, 209, 0.1) 50%, 
    rgba(255, 107, 107, 0.1) 100%);
  animation: instructionFloat 30s ease-in-out infinite;
}

.instruction-shape-1 {
  width: 350px;
  height: 350px;
  top: 5%;
  left: -10%;
  animation-delay: 0s;
}

.instruction-shape-2 {
  width: 250px;
  height: 250px;
  top: 40%;
  right: -8%;
  animation-delay: 10s;
}

.instruction-shape-3 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 15%;
  animation-delay: 20s;
}

.instruction-shape-4 {
  width: 300px;
  height: 300px;
  top: 25%;
  right: 25%;
  animation-delay: 30s;
}

@keyframes instructionFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-50px) rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
}

/* Hero Section */
.instructions-hero {
  position: relative;
  z-index: 2;
}

.instructions-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.instructions-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: instructionAccentGlow 4s ease-in-out infinite;
}

@keyframes instructionAccentGlow {
  0%, 100% { 
    width: 100px;
    opacity: 1;
  }
  50% { 
    width: 200px;
    opacity: 0.8;
  }
}

/* Timeline Container */
.instructions-timeline {
  position: relative;
  z-index: 2;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--accent)) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { 
    opacity: 0.6;
    transform: translateX(-50%) scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: translateX(-50%) scaleY(1.05);
  }
}

/* Timeline Steps */
.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step:nth-child(odd) {
  flex-direction: row;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-content {
  text-align: right;
}

/* Step Visual */
.step-visual {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3rem;
}


.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 3px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 15;
}

.step-connector {
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, 
    hsl(var(--primary) / 0.5), 
    hsl(var(--accent) / 0.5));
  margin-top: 1rem;
  border-radius: 2px;
  animation: connectorGlow 2s ease-in-out infinite;
}

@keyframes connectorGlow {
  0%, 100% { 
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* Step Content */
.step-content {
  flex: 1;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.step-content:hover::before {
  left: 100%;
}

.step-content:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.step-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Rules Section */
.instructions-rules {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
}

.rules-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.05) 0%, 
    hsl(var(--accent) / 0.05) 100%);
  border-radius: 30px;
  padding: 4rem 2rem;
  border: 1px solid hsl(var(--primary) / 0.2);
  position: relative;
  overflow: hidden;
}

.rules-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(69, 183, 209, 0.05) 25%, 
    rgba(255, 107, 107, 0.05) 50%, 
    rgba(254, 202, 87, 0.05) 75%, 
    rgba(78, 205, 196, 0.05) 100%);
  background-size: 400% 400%;
  animation: rulesGradientShift 10s ease infinite;
  opacity: 0.5;
}

@keyframes rulesGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.rules-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.rules-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.rules-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.rules-accent-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  margin: 0 auto;
  border-radius: 2px;
  animation: rulesLineGlow 3s ease-in-out infinite;
}

@keyframes rulesLineGlow {
  0%, 100% { 
    width: 100px;
    opacity: 1;
  }
  50% { 
    width: 150px;
    opacity: 0.8;
  }
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.rule-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.rule-item:hover::before {
  left: 100%;
}

.rule-item:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.rule-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.rule-item:hover .rule-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rule-text {
  color: hsl(var(--foreground));
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Animation Classes */
.instructions-title,
.instructions-subtitle,
.timeline-step,
.rule-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructions-section.animate .instructions-title,
.instructions-section.animate .instructions-subtitle,
.instructions-section.animate .timeline-step,
.instructions-section.animate .rule-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.timeline-step-1 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.timeline-step-2 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.timeline-step-3 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.timeline-step-4 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.timeline-step-5 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.timeline-step-6 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }

.rule-item-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.rule-item-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.rule-item-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.rule-item-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.rule-item-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.rule-item-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.rule-item-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }
.rule-item-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards; }

/* Responsive Design for Instructions */
@media (max-width: 1024px) {
  .timeline-container::before {
    left: 2rem;
  }
  
  .timeline-step {
    flex-direction: row !important;
    margin-left: 4rem;
  }
  
  .timeline-step .step-content {
    text-align: left !important;
  }
  
  .step-visual {
    margin: 0 2rem 0 0;
  }
}

@media (max-width: 768px) {
  .timeline-container::before {
    display: none;
  }
  
  .timeline-step {
    flex-direction: column !important;
    margin-left: 0;
    text-align: center;
  }
  
  .step-visual {
    margin: 0 0 2rem 0;
  }
  
  .step-connector {
    display: none;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .instruction-shape-1,
  .instruction-shape-2,
  .instruction-shape-3,
  .instruction-shape-4 {
    display: none;
  }
}

/* Timeline Section - Modern GSAP-Style Layout */
.timeline-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.03) 50%, 
    hsl(var(--background)) 100%);
}

/* Background Shapes */
.timeline-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.timeline-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.08) 0%, 
    rgba(69, 183, 209, 0.08) 50%, 
    rgba(255, 107, 107, 0.08) 100%);
  animation: timelineFloat 25s ease-in-out infinite;
}

.timeline-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.timeline-shape-2 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -3%;
  animation-delay: 8s;
}

.timeline-shape-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 10%;
  animation-delay: 16s;
}

.timeline-shape-4 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: 20%;
  animation-delay: 24s;
}

@keyframes timelineFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) rotate(180deg) scale(1.05);
    opacity: 0.6;
  }
}

/* Hero Section */
.timeline-hero {
  position: relative;
  z-index: 2;
}

.timeline-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: timelineAccentGlow 3s ease-in-out infinite;
}

@keyframes timelineAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

/* Timeline Container */
.timeline-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--accent)) 50%,
    hsl(var(--primary)) 100%);
  transform: translateX(-50%);
  border-radius: 3px;
  animation: timelineTrackPulse 4s ease-in-out infinite;
  z-index: 1;
  display: none;
}

@keyframes timelineTrackPulse {
  0%, 100% { 
    opacity: 0.7;
    transform: translateX(-50%) scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: translateX(-50%) scaleY(1.02);
  }
}

/* Timeline Nodes */
.timeline-node {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-node:nth-child(odd) {
  flex-direction: row;
}

.timeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-node:nth-child(even) .node-content {
  text-align: right;
}

/* Node Visual */
.node-visual {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 4rem;
}

.node-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 4px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.node-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border-radius: 50%;
  animation: nodeRotate 8s linear infinite;
  z-index: 1;
}

@keyframes nodeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.node-number {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--primary));
  background: hsl(var(--background));
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  border: 2px solid hsl(var(--primary));
  z-index: 20;
}

.node-icon {
  font-size: 2.5rem;
  z-index: 15;
  position: relative;
  transition: all 0.3s ease;
}

.node-connector {
  width: 6px;
  height: 80px;
  background: linear-gradient(180deg, 
    hsl(var(--primary) / 0.4), 
    hsl(var(--accent) / 0.4));
  margin-top: 1rem;
  border-radius: 3px;
  animation: nodeConnectorGlow 2.5s ease-in-out infinite;
}

@keyframes nodeConnectorGlow {
  0%, 100% { 
    opacity: 0.6;
    transform: scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* Node Content */
.node-content {
  flex: 1;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.node-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.node-content:hover::before {
  left: 100%;
}

.node-content:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.content-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.15));
  border: 1px solid hsl(var(--primary) / 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.content-date {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.content-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.content-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Animation Classes */
.timeline-title,
.timeline-subtitle,
.timeline-node {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-section.animate .timeline-title,
.timeline-section.animate .timeline-subtitle,
.timeline-section.animate .timeline-node {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.timeline-node-1 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.timeline-node-2 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.timeline-node-3 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.timeline-node-4 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.timeline-node-5 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.timeline-node-6 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.timeline-node-7 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.timeline-node-8 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
  .timeline-track::before {
    left: 2rem;
  }
  
  .timeline-node {
    flex-direction: row !important;
    margin-left: 5rem;
  }
  
  .timeline-node .node-content {
    text-align: left !important;
  }
  
  .node-visual {
    margin: 0 2rem 0 0;
  }
  
  .node-circle {
    width: 80px;
    height: 80px;
  }
  
  .node-icon {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .timeline-track::before {
    display: none;
  }
  
  .timeline-node {
    flex-direction: column !important;
    margin-left: 0;
    text-align: center;
    gap: 2rem;
  }
  
  .node-visual {
    margin: 0;
  }
  
  .node-connector {
    display: none;
  }
  
  .node-content {
    max-width: 100%;
    padding: 2rem;
  }
  
  .timeline-shape-1,
  .timeline-shape-2,
  .timeline-shape-3,
  .timeline-shape-4 {
    display: none;
  }
}

/* FAQ Section - Modern GSAP-Style Layout */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.05) 50%, 
    hsl(var(--background)) 100%);
}

/* Background Shapes */
.faq-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.06) 0%, 
    rgba(69, 183, 209, 0.06) 50%, 
    rgba(255, 107, 107, 0.06) 100%);
  animation: faqFloat 30s ease-in-out infinite;
}

.faq-shape-1 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: -3%;
  animation-delay: 0s;
}

.faq-shape-2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -2%;
  animation-delay: 6s;
}

.faq-shape-3 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  left: 5%;
  animation-delay: 12s;
}

.faq-shape-4 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 15%;
  animation-delay: 18s;
}

.faq-shape-5 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 5%;
  animation-delay: 24s;
}

@keyframes faqFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
}

/* Hero Section */
.faq-hero {
  position: relative;
  z-index: 2;
}

.faq-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.faq-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: faqAccentGlow 3s ease-in-out infinite;
}

@keyframes faqAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

/* FAQ Container */
.faq-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* FAQ Items */
.faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: fit-content;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.faq-card:hover::before {
  left: 100%;
}

.faq-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.1);
}

/* FAQ Header */
.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-icon {
  flex-shrink: 0;
}

.faq-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.15));
  border: 2px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border-radius: 50%;
  animation: faqIconRotate 6s linear infinite;
  z-index: 1;
}

@keyframes faqIconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.faq-icon-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  position: relative;
  z-index: 2;
}

.faq-button {
  flex: 1;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-button:hover .faq-question {
  color: hsl(var(--primary));
}

.faq-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-plus,
.faq-minus {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.faq-minus {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-card.active .faq-plus {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-card.active .faq-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-card.active .faq-icon-circle {
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.25), 
    hsl(var(--accent) / 0.25));
  border-color: hsl(var(--primary) / 0.5);
  transform: scale(1.1);
}

/* FAQ Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.faq-card.active .faq-content {
  max-height: 200px;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Animation Classes */
.faq-title,
.faq-subtitle,
.faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-section.animate .faq-title,
.faq-section.animate .faq-subtitle,
.faq-section.animate .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.faq-item-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.faq-item-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.faq-item-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.faq-item-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.faq-item-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.faq-item-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.faq-item-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.faq-item-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.faq-item-9 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.faq-item-10 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.faq-item-11 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.faq-item-12 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.faq-item-13 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-card {
    border-radius: 15px;
  }
  
  .faq-header {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .faq-icon-circle {
    width: 40px;
    height: 40px;
  }
  
  .faq-icon-text {
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .faq-shape-1,
  .faq-shape-2,
  .faq-shape-3,
  .faq-shape-4,
  .faq-shape-5 {
    display: none;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    gap: 1rem;
  }
  
  .faq-header {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .faq-icon-circle {
    width: 35px;
    height: 35px;
  }
  
  .faq-icon-text {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
  }
}

/* Modern Navigation Bar Styles */
.nav-glass {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(15, 23, 42, 0.85) 50%, 
    rgba(15, 23, 42, 0.9) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
  width: 100% !important;
}

/* Navigation Container - Full Width */
.nav-glass .container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 2rem !important;
}

/* Mobile Header Layout Fixes */
@media (max-width: 1024px) {
  .nav-glass .container {
    padding: 0 1rem !important;
  }
  
  .nav-glass .flex {
    gap: 1rem;
  }
}

/* Professional Mobile Header Styles */
.mobile-header {
  display: none;
  width: 100%;
  padding: 0.75rem 0;
}

.mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.mobile-kit-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mobile-logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-logo-fallback {
  display: none;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
}

.mobile-college-name {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  min-width: 0;
}

.mobile-right-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-pdc-logo {
  display: flex;
  align-items: center;
}

.mobile-pdc-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-college-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  word-break: break-word;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-glass .container {
    padding: 0 1rem !important;
  }
  
  /* Hide desktop layout on mobile */
  .hidden.lg\:flex {
    display: none !important;
  }
  
  /* Show mobile layout */
  .mobile-header {
    display: block !important;
  }
  
  .lg\:hidden {
    display: none !important;
  }
  
  /* Mobile header single row layout */
  .mobile-header-top {
    gap: 0.5rem;
  }
  
  .mobile-college-text {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

/* Ultra-small mobile screens */
@media (max-width: 480px) {
  .mobile-header {
    padding: 0.5rem 0;
  }
  
  .mobile-logo-image {
    width: 45px;
    height: 45px;
  }
  
  .mobile-logo-fallback {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .mobile-pdc-image {
    width: 35px;
    height: 35px;
  }
  
  .mobile-college-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .mobile-menu-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .mobile-right-section {
    gap: 0.5rem;
  }
  
  .mobile-college-text {
    font-size: 0.65rem;
    line-height: 1.0;
  }
  
  .mobile-header-top {
    gap: 0.25rem;
  }
}

/* Light theme support for mobile header */
[data-theme="light"] .mobile-college-text {
  color: hsl(var(--foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .mobile-menu-btn {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .hamburger-line {
  background: hsl(var(--foreground));
}

/* Light theme support for mobile countdown */
[data-theme="light"] .countdown-item {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .countdown-number {
  color: hsl(var(--foreground));
}

[data-theme="light"] .countdown-label {
  color: hsl(var(--muted-foreground));
}

/* Footer Container - Full Width */
.footer-section .container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 2rem;
}

/* Logo Text Responsive */
.nav-glass .flex .flex-col .text-xl {
  font-size: 1.125rem;
  line-height: 1.2;
}

/* Responsive Navigation Container */
@media (max-width: 1024px) {
  .nav-glass .container .flex {
    gap: 2rem;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-glass .container .flex {
    padding: 0 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 0.875rem;
  }
  
  .nav-glass .flex .flex-col .text-xs {
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .nav-glass .container .flex {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Responsive Footer Container */
@media (max-width: 768px) {
  .footer-section .container {
    padding: 0 1rem;
  }
}

.nav-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.nav-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent);
  animation: slide 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes slide {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Navigation Links */
.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.1),
    hsl(var(--primary) / 0.1));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  transform: scale(0.8);
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  z-index: -1;
}

.nav-link:hover {
  color: hsl(var(--foreground));
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 0 20px hsl(var(--primary) / 0.3);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 
    0 4px 20px hsl(var(--primary) / 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.nav-link:active {
  transform: translateY(-1px) scale(1.01);
}

.nav-link:focus {
  outline: 2px solid hsl(var(--primary) / 0.5);
  outline-offset: 2px;
}

/* CTA Button */
.nav-cta-button {
  position: relative;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.3);
}

.nav-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsl(var(--primary) / 0.4);
}

.nav-cta-button:hover::before {
  left: 100%;
}

.nav-cta-button:active {
  transform: translateY(-1px);
}

/* Login Button */
.nav-login-button {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.nav-login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.nav-login-button:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.2);
}

.nav-login-button:hover::before {
  opacity: 1;
}

.nav-login-button:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}


.hamburger-line {
  width: 1.25rem;
  height: 2px;
  background: hsl(var(--foreground));
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-line:not(:last-child) {
  margin-bottom: 0.25rem;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.mobile-menu.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Ensure mobile menu doesn't cover hero content */
@media (max-width: 1024px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 70vh;
  }
}

/* Ensure mobile menu is visible on small screens */
@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    border-radius: 0 0 1rem 1rem;
    max-height: 90vh;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-kit-logo {
    width: 35px;
    height: 35px;
  }
  
  .mobile-menu-kit-fallback {
    width: 35px;
    height: 35px;
  }
  
  .mobile-menu-pdc-logo {
    width: 30px;
    height: 30px;
  }
  
  .mobile-menu-close-btn {
    width: 32px;
    height: 32px;
  }
  
  .mobile-nav-link {
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0.75rem;
    font-size: 0.95rem;
  }
  
  .mobile-theme-toggle-btn,
  .mobile-login-button,
  .mobile-cta-button {
    width: 100%;
    margin: 0.25rem 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .mobile-theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .mobile-theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .mobile-login-button {
    background: transparent;
    border: 1px solid hsl(var(--primary) / 0.3);
    color: hsl(var(--primary));
  }
  
  .mobile-login-button:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
  }
  
  .mobile-cta-button {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border: none;
    color: white;
    font-weight: 600;
  }
  
  .mobile-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  }
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.875rem;
  margin: 0.25rem 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.1),
    hsl(var(--primary) / 0.1));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  transform: scale(0.8);
  z-index: -1;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  z-index: -1;
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
  transform: translateX(8px) scale(1.02);
  text-shadow: 0 0 20px hsl(var(--primary) / 0.3);
}

.mobile-nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 
    0 4px 20px hsl(var(--primary) / 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.mobile-cta-button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.3);
  margin: 0.25rem auto;
  display: block;
  width: fit-content;
}

.mobile-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px hsl(var(--primary) / 0.4);
}

.mobile-login-button {
  padding: 0.875rem 2rem;
  background: transparent;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0.25rem auto;
  display: block;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.mobile-login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.875rem;
}

.mobile-login-button:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.2);
}

.mobile-login-button:hover::before {
  opacity: 1;
}

/* Responsive adjustments for navigation */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

@media (max-width: 1023px) {
  .lg\:hidden { 
    display: flex !important; 
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .hidden.lg\:flex { display: none !important; }
}

@media (max-width: 1023px) {
  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
 
  
  .nav-glass .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Scroll effect for navigation */
.nav-glass.scrolled {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(15, 23, 42, 0.9) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-glass.scrolled::before {
  animation-duration: 2s;
}

.nav-glass.scrolled::after {
  animation-duration: 3s;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.1);
}

.nav-glass .group:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nav-glass .group:active .logo-image {
  transform: scale(1.05) rotate(2deg);
}

.nav-glass .group:hover .logo-container {
  transform: scale(1.05);
}

/* PDC Logo Styles */
.pdc-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pdc-logo-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.pdc-logo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1);
  border-radius: 50%;
}

/* Mobile PDC Logo - Next to KIT Logo */
.pdc-logo-container-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pdc-logo-container-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.pdc-logo-mobile {
  height: 70px;
  width: 70px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

/* Responsive logo sizing */
@media (max-width: 640px) {
  .logo-container {
    width: 40px;
    height: 40px;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .nav-glass .group span {
    font-size: 0.875rem;
  }
  
  .pdc-logo-container {
    width: 50px;
    height: 50px;
  }
  
  .pdc-logo {
    height: 40px;
    width: 40px;
  }
  
  .pdc-logo-container-mobile {
    width: 40px;
    height: 40px;
    margin-left: 0.25rem;
  }
  
  .pdc-logo-mobile {
    height: 40px;
    width: 40px;
  }
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-toggle-btn:active {
  transform: translateY(0);
}

.theme-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-icon,
.moon-icon {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: hsl(var(--foreground));
}

.sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.moon-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0.8);
}

/* Light theme icon states */
[data-theme="light"] .sun-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0.8);
}

[data-theme="light"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Mobile Theme Toggle Button */
.mobile-theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: hsl(var(--foreground));
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem auto;
  width: fit-content;
}

.mobile-theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.mobile-theme-toggle-btn .theme-toggle-icon {
  width: 20px;
  height: 20px;
}

.theme-toggle-text {
  transition: all 0.3s ease;
}

/* Smooth theme transitions */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Light theme specific adjustments */
[data-theme="light"] {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

[data-theme="light"] .nav-glass {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.85) 50%, 
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-glass::before {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
}

[data-theme="light"] .nav-glass::after {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mobile-theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Modern Footer Styles */
.footer-section {
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.8) 50%, 
    hsl(var(--background)) 100%);
  border-top: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Background Shapes */
.footer-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(69, 183, 209, 0.05) 50%, 
    rgba(255, 107, 107, 0.05) 100%);
  animation: footerFloat 20s ease-in-out infinite;
}

.footer-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.footer-shape-2 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: -3%;
  animation-delay: 5s;
}

.footer-shape-3 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.footer-shape-4 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 20%;
  animation-delay: 15s;
}

@keyframes footerFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-icon {
  flex-shrink: 0;
  position: relative;
}

.footer-logo-image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: contain;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-logo-image:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.footer-logo-fallback {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-logo-circle {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer-logo-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05));
  border-radius: 16px;
  animation: footerLogoRotate 8s linear infinite;
  z-index: 1;
}

@keyframes footerLogoRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-subtitle {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-weight: 500;
}

.footer-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1rem;
  max-width: 400px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.footer-social-link:hover::before {
  left: 100%;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Links Grid */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 200px;
}

/* Mobile Footer Responsive Styles */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-column {
    padding-left: 0;
    align-items: center;
  }
  
  .footer-column-title {
    text-align: center;
  }
  
  .footer-column-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-link-list {
    align-items: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 1.5rem 0;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
  
  .footer-column {
    gap: 1rem;
  }
  
  .footer-column-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .footer-contact-item {
    font-size: 0.9rem;
  }
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-link:hover {
  color: hsl(var(--primary));
  padding-left: 12px;
}

.footer-link:hover::before {
  width: 8px;
}

/* Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: hsl(var(--foreground));
  transform: translateX(4px);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: hsl(var(--primary) / 0.3);
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile Footer Bottom Responsive */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-built {
    font-size: 0.8rem;
  }
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-copyright p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.footer-built {
  font-size: 0.85rem;
}

.footer-heart {
  color: #ff6b6b;
  animation: footerHeartBeat 2s ease-in-out infinite;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-legal-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: hsl(var(--primary));
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 0;
    gap: 2.5rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-shape-1,
  .footer-shape-2,
  .footer-shape-3,
  .footer-shape-4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 2rem 0;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Light theme footer adjustments */
[data-theme="light"] .footer-section {
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.5) 50%, 
    hsl(var(--background)) 100%);
  border-top: 1px solid hsl(var(--border) / 0.3);
}

[data-theme="light"] .footer-social-link {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-social-link:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: hsl(var(--primary) / 0.3);
}

[data-theme="light"] .footer-contact-icon {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-contact-item:hover .footer-contact-icon {
  background: rgba(0, 0, 0, 0.1);
}

/* Button styles */
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

button:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: hsl(var(--primary));
}

/* Form styles */
input, textarea, select {
  font-family: inherit;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  padding: 0.5rem 0.75rem;
  color: hsl(var(--foreground));
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Card styles */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

th {
  background-color: hsl(var(--muted));
  font-weight: 600;
}

tr:hover {
  background-color: hsl(var(--muted) / 0.5);
}

/* Accordion styles */
.accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
}

/* Timeline styles */
.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-dot {
  position: absolute;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  border: 4px solid hsl(var(--background));
  box-shadow: var(--glow-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
  
  .text-7xl {
    font-size: 3.5rem;
  }
  
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Custom Registration Pop-up Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-container {
  transform: scale(1) translateY(0);
}

.popup-content {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.1) 0%, 
    rgba(59, 130, 246, 0.05) 50%, 
    rgba(245, 158, 11, 0.1) 100%);
  border-radius: 24px;
  z-index: 1;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem 2rem;
  position: relative;
  z-index: 2;
}

.popup-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.2), 
    hsl(var(--accent) / 0.2));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  animation: popupIconPulse 2s ease-in-out infinite;
}

@keyframes popupIconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 hsl(var(--primary) / 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 8px hsl(var(--primary) / 0.1);
  }
}

.popup-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: hsl(var(--foreground));
  transform: scale(1.1);
}

.popup-body {
  padding: 0 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.popup-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-message {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.popup-date {
  color: hsl(var(--accent));
  font-weight: 600;
  background: linear-gradient(135deg, 
    hsl(var(--accent)), 
    hsl(var(--primary)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.1), 
    rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.countdown-item:hover::before {
  opacity: 1;
}

.countdown-item:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.countdown-label {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.popup-footer {
  padding: 0 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.popup-button {
  width: 100%;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.popup-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.popup-button:hover::before {
  left: 100%;
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popup-button:active {
  transform: translateY(0);
}

/* Responsive Design for Pop-up */
@media (max-width: 768px) {
  .popup-container {
    max-width: 400px;
    width: 95%;
  }
  
  .popup-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .popup-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .popup-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .popup-title {
    font-size: 1.5rem;
  }
  
  .popup-message {
    font-size: 1rem;
  }
  
  .popup-countdown {
    gap: 0.75rem;
  }
  
  .countdown-item {
    padding: 0.75rem 0.25rem;
  }
  
  .countdown-number {
    font-size: 1.25rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .popup-countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* Light Theme Support for Pop-up */
[data-theme="light"] .popup-content {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .popup-content::before {
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.05) 0%, 
    rgba(59, 130, 246, 0.03) 50%, 
    rgba(245, 158, 11, 0.05) 100%);
}

[data-theme="light"] .popup-close {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: hsl(var(--muted-foreground));
}

[data-theme="light"] .popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  color: hsl(var(--foreground));
}

[data-theme="light"] .countdown-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .countdown-item::before {
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.05), 
    rgba(59, 130, 246, 0.03));
}

[data-theme="light"] .countdown-item:hover {
  border-color: hsl(var(--primary) / 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--accent) / 0.9));
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile responsiveness for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
    
    /* Ultra-mobile header optimizations */
    .logo-container {
        width: 45px;
        height: 45px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .nav-glass .flex .flex-col .text-xl {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .mobile-menu-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .mobile-menu-header {
        padding: 0.5rem 0.75rem;
    }
    
    .mobile-menu-kit-logo {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-kit-fallback {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-pdc-logo {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-close-btn {
        width: 28px;
        height: 28px;
    }
}

/* Light theme support for back to top button */
[data-theme="light"] .back-to-top {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .back-to-top:hover {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--accent) / 0.9));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Light theme support for mobile menu and header */
[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-nav-link {
    color: hsl(var(--muted-foreground));
}

[data-theme="light"] .mobile-nav-link:hover {
    color: hsl(var(--foreground));
}

[data-theme="light"] .mobile-theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: hsl(var(--foreground));
}

[data-theme="light"] .mobile-theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mobile-login-button {
    color: hsl(var(--foreground));
    border: 1px solid rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mobile-login-button:hover {
    color: hsl(var(--primary));
    border-color: hsl(var(--primary) / 0.5);
}

[data-theme="light"] .hamburger-line {
    background: hsl(var(--foreground));
}

[data-theme="light"] .mobile-menu-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Light theme support for header text */
[data-theme="light"] .nav-glass .flex .flex-col .text-xl {
    color: hsl(var(--foreground)) !important;
}

[data-theme="light"] .nav-glass .flex .flex-col .text-xs {
    color: hsl(var(--muted-foreground)) !important;
}
