/* ===== CSS Variables ===== */
:root {
  /* Colors - Orange Theme */
  --primary: #ea580c;
  --primary-foreground: #ffffff;
  --secondary: #fff7ed;
  --secondary-foreground: #9a3412;
  --background: #ffffff;
  --foreground: #0c0a09;
  --card: #ffffff;
  --card-foreground: #0c0a09;
  --muted: #fef3c7;
  --muted-foreground: #78716c;
  --border: #fed7aa;
  --input: #ffffff;
  --ring: #ea580c;
  
  /* Logo Colors */
  --logo-bg: #FAF6F0;
  --logo-text: #ea580c;
  
  /* Gradients - Orange Theme */
  --hero-gradient: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  --hero-gradient-dark: linear-gradient(135deg, #c2410c 0%, #b91c1c 100%);
  
  /* Typography */
  --font-family: 'Cairo', sans-serif;
  
  /* Spacing */
  --container-padding: 1rem;
  --header-height: 4rem;
  
  /* Shadows */
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-card-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
  --shadow-orange: 0 0 20px rgba(234, 88, 12, 0.3);
}

/* ===== Base Styles ===== */
* {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  direction: rtl;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Header ===== */
.header {
  background: var(--hero-gradient);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: var(--header-height);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary-foreground);
}

.header-logo-container {
  background-color: var(--logo-bg);
  border-radius: 0.75rem;
  padding: 0.625rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.header-logo-text {
  font-weight: 700;
  color: var(--logo-text);
  font-size: 1.5rem;
  line-height: 1;
}

.header-title {
  font-weight: 700;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  line-height: 1.25;
  max-width: 160px;
  display: none;
}

@media (min-width: 640px) {
  .header-title {
    display: block;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--primary-foreground);
}

.header-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--primary-foreground);
}

.header-mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--primary-foreground);
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .header-mobile-toggle {
    display: none;
  }
}

.header-mobile-menu {
  display: none;
  background: var(--hero-gradient-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .header-mobile-menu {
    display: none !important;
  }
}

.header-mobile-menu.show {
  display: block;
}

.header-mobile-menu-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.header-mobile-menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Logo Component ===== */
.logo {
  background-color: var(--logo-bg);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-text);
  font-weight: 700;
}

.logo-large {
  width: 10rem;
  height: 10rem;
  font-size: 4rem;
}

.logo-medium {
  width: 5rem;
  height: 5rem;
  font-size: 2rem;
}

.logo-small {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
}

/* ===== Animated BSE Logo ===== */
.logo-bse {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.logo-bse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.logo-bse:hover::before {
  transform: translateX(100%);
}

.logo-bse svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Logo animations */
@keyframes logoPulse1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

@keyframes logoPulse2 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.3)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); }
  50% { filter: drop-shadow(0 0 16px rgba(234, 88, 12, 0.6)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); }
}

@keyframes logoMirror {
  0%, 100% { opacity: 0.15; transform: scaleY(-1) translateY(0); }
  50% { opacity: 0.3; transform: scaleY(-1) translateY(-5px); }
}

.logo-bse-animated .logo-group-1 {
  animation: logoPulse1 3s ease-in-out infinite;
  transform-origin: center;
}

.logo-bse-animated .logo-group-2 {
  animation: logoPulse2 3.2s ease-in-out infinite 0.2s;
  transform-origin: center;
}

.logo-bse-animated .logo-group-3 {
  animation: logoPulse1 3.4s ease-in-out infinite 0.4s;
  transform-origin: center;
}

.logo-bse-animated .logo-group-4 {
  animation: logoPulse2 3.1s ease-in-out infinite 0.6s;
  transform-origin: center;
}

.logo-bse-animated .logo-group-5 {
  animation: logoPulse1 3.3s ease-in-out infinite 0.8s;
  transform-origin: center;
}

.logo-bse-animated .logo-group-6 {
  animation: logoPulse2 3.5s ease-in-out infinite 1s;
  transform-origin: center;
}

.logo-bse-animated .logo-symbol {
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-bse-animated .logo-mirror {
  animation: logoMirror 3s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.2;
}

/* Logo sizes */
.logo-bse-small {
  width: 48px;
  height: 48px;
  padding: 0.75rem;
}

.logo-bse-medium {
  width: 64px;
  height: 64px;
  padding: 1rem;
}

.logo-bse-large {
  width: 96px;
  height: 96px;
  padding: 1.25rem;
}

.logo-bse-xl {
  width: 160px;
  height: 160px;
  padding: 2rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(15, 23, 42, 0.7) 0%, 
    rgba(15, 23, 42, 0.6) 50%, 
    rgba(15, 23, 42, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-button {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-button-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-orange);
}

.hero-button-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-button-secondary {
  border: 2px solid var(--primary-foreground);
  color: var(--primary-foreground);
}

.hero-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 3.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #dc2626 50%, #b91c1c 100%);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.section-bg-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #fff9f5 50%, #fff5f0 100%);
  position: relative;
  padding: 8rem 0;
}

.section-bg-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="%23ea580c" opacity="0.08"/></svg>');
  background-size: 60px 60px, 80px 80px, 30px 30px;
  pointer-events: none;
}

.section-bg-secondary .section-title {
  color: var(--foreground);
  text-shadow: 0 3px 6px rgba(234, 88, 12, 0.1);
}

.section-content {
  position: relative;
  z-index: 1;
}

/* ===== Cards ===== */
.card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(234, 88, 12, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #dc2626 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(234, 88, 12, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-header {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 0 0 1rem 1rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.card-title {
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== Grid ===== */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  justify-content: center;
  align-items: stretch;
}

.grid::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.3), transparent);
}

.grid-cols-1 { 
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.grid-cols-2 { 
  flex-direction: row;
}

.grid-cols-3 { 
  flex-direction: row;
}

.grid-cols-4 { 
  flex-direction: row;
}

.grid-cols-5 { 
  flex-direction: row;
}

.grid > * {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

@media (max-width: 1024px) {
  .grid-cols-3,
  .grid-cols-4,
  .grid-cols-5 {
    flex-wrap: wrap;
  }
  
  .grid > * {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .grid-cols-5 {
    flex-direction: column;
  }
  
  .grid {
    gap: 2rem;
  }
  
  .grid > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .grid-cols-3,
  .grid-cols-4,
  .grid-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .grid-cols-4,
  .grid-cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Modern Design Elements ===== */
.feature-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  overflow: hidden;
}

.feature-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.feature-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 45, 107, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #dc2626 50%, #b91c1c 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.timeline-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 2rem;
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.15), 0 8px 15px rgba(0, 0, 0, 0.1);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2);
  z-index: 1;
}

.testimonial-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #ffedd5 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ea580c" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ea580c" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23ea580c" opacity="0.05"/></svg>');
  background-size: 100px 100px;
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
}

.testimonial-text {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.cta-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><polygon points="100,10 40,198 160,78 40,78 160,198" fill="%23ffffff" opacity="0.05"/></svg>');
  background-size: 200px 200px;
  animation: float 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  border: 3px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== Distinguished Engineer Page Styles ===== */
.engineer-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 50%, var(--primary) 100%);
}

.engineer-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="%23ffffff" opacity="0.03"/></svg>');
  background-size: 60px 60px;
  animation: float 25s linear infinite;
}

.prize-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  position: relative;
}

.prize-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.prize-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary), #fed7aa, var(--primary));
  border-radius: 2rem;
  padding: 2px;
  margin: -2px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.prize-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.conditions-timeline {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.condition-item {
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border-right: 4px solid var(--primary);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.condition-item:hover {
  transform: translateX(-10px);
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.2);
  border-right-width: 6px;
}

.condition-number {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.categories-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.categories-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.category-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(234, 88, 12, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.category-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.category-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
}

.category-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

.category-title {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Application Process Steps ===== */
.process-steps {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  position: relative;
  overflow: hidden;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon points="50,10 90,40 90,80 50,90 10,80 10,40" fill="%23ffffff" opacity="0.05"/></svg>');
  background-size: 100px 100px;
  animation: float 30s linear infinite;
}

.process-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ===== Notes Section ===== */
.notes-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  position: relative;
}

.notes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #dc2626, var(--primary));
}

.notes-container {
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 100%);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(234, 88, 12, 0.2);
  position: relative;
  overflow: hidden;
}

.notes-container::before {
  content: '!';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.notes-title {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.notes-list {
  list-style: none;
  padding: 0;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(234, 88, 12, 0.05);
  border-radius: 1rem;
  border-right: 4px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-item:hover {
  background: rgba(234, 88, 12, 0.1);
  transform: translateX(-10px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.15);
}

.note-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.note-text {
  color: var(--foreground);
  line-height: 1.7;
  font-size: 1.125rem;
}

/* ===== Life Achievement Page Styles ===== */
.achievement-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 50%, #dc2626 100%);
}

.achievement-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.05"/><circle cx="60" cy="60" r="3" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="40" r="2" fill="%23ffffff" opacity="0.03"/></svg>');
  background-size: 80px 80px;
  animation: float 30s linear infinite;
}

.achievement-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  position: relative;
}

.achievement-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, var(--primary), #dc2626);
}

.achievement-prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.prize-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.prize-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.prize-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.prize-item:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
}

.prize-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
  transition: all 0.4s ease;
}

.prize-item:hover .prize-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.7);
}

.prize-title {
  color: var(--foreground);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.prize-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.achievement-conditions {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  position: relative;
  overflow: hidden;
}

.achievement-conditions::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.achievement-conditions::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.condition-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 100%);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.condition-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(234, 88, 12, 0.08), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.condition-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.condition-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.25);
}

.condition-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.condition-card:hover .condition-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
}

.condition-content {
  flex: 1;
}

.condition-title {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.condition-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
}

.achievement-timeline {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  overflow: hidden;
}

.achievement-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), #dc2626);
  transform: translateX(50%);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  width: calc(50% - 3rem);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.timeline-content:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.25), 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(234, 88, 12, 0.2);
}

.timeline-dot {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 24px;
  height: 24px;
  background: var(--primary);
  border: 5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.3), 0 12px 25px rgba(0, 0, 0, 0.2);
}

.timeline-year {
  position: absolute;
  top: -15px;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.achievement-criteria {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.achievement-criteria::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.achievement-criteria::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.criteria-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.criteria-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.criteria-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.criteria-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
}

.criteria-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
  transition: all 0.4s ease;
}

.criteria-card:hover .criteria-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.7);
}

.criteria-title {
  color: var(--foreground);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.criteria-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.achievement-process {
  padding: 10rem 0;
  background: linear-gradient(135deg, #dc2626 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.achievement-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><rect x="10" y="10" width="100" height="100" fill="%23ffffff" opacity="0.03" rx="15"/></svg>');
  background-size: 120px 120px;
  animation: float 35s linear infinite reverse;
}

.process-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffffff, transparent, #ffffff);
  border-radius: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.process-number {
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.process-card:hover .process-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.process-title {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.process-description {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* ===== Prize Showcase New Design ===== */
.prize-showcase-new {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  margin-top: 3rem;
  position: relative;
}

/* First Prize - Largest Card */
.prize-card-first {
  flex: 2;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 4px solid #fbbf24;
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 40px 100px rgba(251, 191, 36, 0.4),
    0 20px 50px rgba(251, 191, 36, 0.3),
    0 0 80px rgba(251, 191, 36, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prize-card-first::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: goldenFloat 6s ease-in-out infinite;
}

.prize-card-first:hover {
  transform: translateY(-15px);
  box-shadow: 
    0 50px 120px rgba(251, 191, 36, 0.5),
    0 25px 60px rgba(251, 191, 36, 0.4),
    0 0 100px rgba(251, 191, 36, 0.3);
}

.prize-header-first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.prize-crown-first {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
  animation: crownPulse 3s ease-in-out infinite;
}

.prize-number-first {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
}

.prize-content-first {
  text-align: center;
}

.prize-icon-first {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 2rem;
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.5);
}

.prize-title-first {
  color: #f59e0b;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.prize-amount-first {
  color: #f59e0b;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.prize-desc-first {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.prize-features-first {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-item svg {
  color: #f59e0b;
  flex-shrink: 0;
}

.prize-footer-first {
  padding-top: 2rem;
  border-top: 2px solid rgba(251, 191, 36, 0.2);
}

.awards-count-first {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Side Cards Container */
.prize-side-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Second and Third Prize Cards */
.prize-card-side {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
}

.prize-card-side.second {
  border-color: #64748b;
}

.prize-card-side.third {
  border-color: #ea580c;
}

.prize-card-side:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.prize-card-side.second:hover {
  box-shadow: 0 25px 60px rgba(100, 116, 139, 0.3), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.prize-card-side.third:hover {
  box-shadow: 0 25px 60px rgba(234, 88, 12, 0.3), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.prize-number-side {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.prize-card-side.second .prize-number-side {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 15px 40px rgba(100, 116, 139, 0.4);
}

.prize-card-side.third .prize-number-side {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.prize-content-side {
  text-align: center;
}

.prize-icon-side {
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 1.5rem;
}

.prize-card-side.second .prize-icon-side {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 15px 40px rgba(100, 116, 139, 0.4);
}

.prize-card-side.third .prize-icon-side {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.prize-title-side {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.prize-amount-side {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.prize-card-side.second .prize-amount-side {
  color: #64748b;
}

.prize-card-side.third .prize-amount-side {
  color: #ea580c;
}

.prize-desc-side {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.prize-footer-side {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.awards-count-side {
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.prize-card-side.second .awards-count-side {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 6px 16px rgba(100, 116, 139, 0.3);
}

.prize-card-side.third .awards-count-side {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}

/* Animations */
@keyframes goldenFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

@keyframes crownPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 25px 60px rgba(251, 191, 36, 0.6); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .prize-showcase-new {
    flex-direction: column;
    gap: 2rem;
  }
  
  .prize-card-first {
    flex: 1;
    padding: 2rem;
  }
  
  .prize-side-cards {
    flex: 1;
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .prize-card-side {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .prize-showcase-new {
    gap: 1.5rem;
  }
  
  .prize-card-first {
    padding: 1.5rem;
  }
  
  .prize-title-first {
    font-size: 2rem;
  }
  
  .prize-amount-first {
    font-size: 2.5rem;
  }
  
  .prize-side-cards {
    flex-direction: column;
  }
  
  .prize-card-side {
    padding: 1.5rem;
  }
  
  .prize-title-side {
    font-size: 1.25rem;
  }
  
  .prize-amount-side {
    font-size: 1.75rem;
  }
}
.prize-podium-new {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
  position: relative;
  flex-wrap: wrap;
}

.prize-podium-new::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: goldenGlow 3s ease-in-out infinite;
  z-index: 0;
}

/* First Prize - Center (Larger with Golden Glow) */
.prize-podium-new .first-prize {
  flex: 1.5;
  min-width: 300px;
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 3px solid #fbbf24;
  box-shadow: 
    0 30px 80px rgba(251, 191, 36, 0.3),
    0 15px 40px rgba(251, 191, 36, 0.2),
    0 0 60px rgba(251, 191, 36, 0.1);
}

.prize-podium-new .first-prize::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: goldenPulse 2s ease-in-out infinite;
  z-index: -1;
}

.prize-podium-new .first-prize:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 40px 100px rgba(251, 191, 36, 0.4),
    0 20px 50px rgba(251, 191, 36, 0.3),
    0 0 80px rgba(251, 191, 36, 0.2);
}

/* Second Prize - Left */
.prize-podium-new .second-prize {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #64748b;
  position: relative;
  z-index: 1;
}

.prize-podium-new .second-prize:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(100, 116, 139, 0.3);
}

/* Third Prize - Right */
.prize-podium-new .third-prize {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(145deg, #fef7ed 0%, #fed7aa 100%);
  border: 2px solid #ea580c;
  position: relative;
  z-index: 1;
}

.prize-podium-new .third-prize:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(234, 88, 12, 0.3);
}

/* Prize Icon Colors */
.prize-podium-new .first-prize .prize-icon {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
}

.prize-podium-new .second-prize .prize-icon {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 15px 40px rgba(100, 116, 139, 0.4);
}

.prize-podium-new .third-prize .prize-icon {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

/* Prize Number Colors */
.prize-podium-new .first-prize .prize-number {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.prize-podium-new .second-prize .prize-number {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 10px 25px rgba(100, 116, 139, 0.4);
}

.prize-podium-new .third-prize .prize-number {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
}

/* Prize Amount Colors */
.prize-podium-new .first-prize .prize-amount {
  color: #f59e0b;
  font-size: 2.5rem;
}

.prize-podium-new .second-prize .prize-amount {
  color: #64748b;
  font-size: 2rem;
}

.prize-podium-new .third-prize .prize-amount {
  color: #ea580c;
  font-size: 2rem;
}

/* Awards Count Colors */
.prize-podium-new .first-prize .awards-count {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.prize-podium-new .second-prize .awards-count {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.prize-podium-new .third-prize .awards-count {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Golden Animations */
@keyframes goldenGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes goldenPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .prize-podium-new {
    flex-direction: column;
    gap: 2rem;
  }
  
  .prize-podium-new .first-prize {
    order: 1;
    flex: 1;
  }
  
  .prize-podium-new .second-prize {
    order: 2;
    flex: 1;
  }
  
  .prize-podium-new .third-prize {
    order: 3;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .prize-podium-new {
    gap: 1.5rem;
  }
  
  .prize-podium-new .first-prize .prize-amount {
    font-size: 2rem;
  }
  
  .prize-podium-new .second-prize .prize-amount,
  .prize-podium-new .third-prize .prize-amount {
    font-size: 1.75rem;
  }
}
.graduation-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 50%, #1e40af 100%);
}

.graduation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect x="10" y="10" width="40" height="40" fill="%23ffffff" opacity="0.03" rx="8"/><circle cx="30" cy="30" r="15" fill="%23ffffff" opacity="0.02"/></svg>');
  background-size: 60px 60px;
  animation: float 25s linear infinite;
}

.graduation-cap-animation {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

.prize-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  position: relative;
}

.prize-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #ea580c, #1e40af);
}

.prize-podium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.podium-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.podium-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.podium-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.podium-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.podium-item.gold {
  border-color: rgba(251, 191, 36, 0.3);
}

.podium-item.gold:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.podium-item.silver {
  border-color: rgba(156, 163, 175, 0.3);
}

.podium-item.silver:hover {
  border-color: rgba(156, 163, 175, 0.5);
  box-shadow: 0 25px 60px rgba(156, 163, 175, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.podium-item.bronze {
  border-color: rgba(205, 127, 50, 0.3);
}

.podium-item.bronze:hover {
  border-color: rgba(205, 127, 50, 0.5);
  box-shadow: 0 25px 60px rgba(205, 127, 50, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.podium-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  transition: all 0.4s ease;
}

.podium-item.gold .podium-number {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.podium-item.silver .podium-number {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
  box-shadow: 0 8px 20px rgba(156, 163, 175, 0.4);
}

.podium-item.bronze .podium-number {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 8px 20px rgba(205, 127, 50, 0.4);
}

.podium-item:hover .podium-number {
  transform: scale(1.1) rotate(5deg);
}

.podium-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.podium-item.gold .podium-icon {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.podium-item.silver .podium-icon {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
  box-shadow: 0 12px 30px rgba(156, 163, 175, 0.5);
}

.podium-item.bronze .podium-icon {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 12px 30px rgba(205, 127, 50, 0.5);
}

.podium-item:hover .podium-icon {
  transform: scale(1.1) rotate(-5deg);
}

.podium-title {
  color: var(--foreground);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.podium-amount {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.podium-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
}

.specializations-showcase {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.specializations-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.specializations-showcase::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.engineering-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.field-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.field-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.field-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.field-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.field-card.architectural:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 25px 60px rgba(239, 68, 68, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.field-card.civil:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 25px 60px rgba(34, 197, 94, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.field-card.electrical:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.field-card.mechanical:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.field-card.chemical:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.field-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.field-card.architectural .field-icon {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
}

.field-card.civil .field-icon {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.field-card.electrical .field-icon {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.field-card.mechanical .field-icon {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.field-card.chemical .field-icon {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.field-card:hover .field-icon {
  transform: scale(1.1) rotate(-5deg);
}

.field-title {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.field-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.field-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  animation: pulse 2s ease-in-out infinite;
}

.field-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.field-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.field-card.architectural .field-dots span {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.field-card.civil .field-dots span {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.field-card.electrical .field-dots span {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.field-card.mechanical .field-dots span {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.field-card.chemical .field-dots span {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
}

.conditions-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  position: relative;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.requirement-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.requirement-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.08), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.requirement-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.requirement-item:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(251, 191, 36, 0.25);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.requirement-item:hover .requirement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
}

.requirement-content {
  flex: 1;
}

.requirement-title {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.requirement-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
}

.notes-showcase {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f97316f2 0%, #fee2e2 100%);
  position: relative;
  overflow: hidden;
}

.notes-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.warning-container {
  background: linear-gradient(145deg, #ffffff 0%, #f97316f2 100%);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
}

.warning-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.warning-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.warning-title {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.warning-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 1rem;
  border-right: 4px solid rgba(239, 68, 68, 0.3);
  transition: all 0.3s ease;
}

.warning-item:hover {
  background: rgba(239, 68, 68, 0.08);
  border-right-color: rgba(239, 68, 68, 0.5);
  transform: translateX(5px);
}

.warning-bullet {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.warning-text {
  color: var(--foreground);
  line-height: 1.6;
  font-size: 1.0625rem;
  flex: 1;
}

.section-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ===== Innovation Showcase Styles ===== */
.innovation-showcase {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.innovation-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.innovation-showcase::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.innovation-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.innovation-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.08), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.innovation-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.innovation-card.featured {
  background: linear-gradient(145deg, #fff7ed 0%, #ffffff 100%);
  border-color: rgba(220, 38, 38, 0.25);
  transform: scale(1.02);
}

.innovation-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.25);
}

.innovation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.innovation-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
}

.innovation-icon-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon,
.innovation-card:hover .innovation-icon-large {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

.innovation-badge {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  color: #ffffff;
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.innovation-title {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.innovation-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.innovation-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.innovation-progress {
  height: 6px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #dc2626 0%, #ea580c 100%);
  border-radius: 3px;
}

.innovation-dots {
  display: flex;
  gap: 0.5rem;
}

.innovation-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
}

.innovation-dots span:nth-child(2) {
  opacity: 0.7;
}

.innovation-dots span:nth-child(3) {
  opacity: 0.4;
}

.innovation-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.innovation-level {
  display: flex;
  gap: 0.375rem;
}

.level-item {
  width: 30px;
  height: 6px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 3px;
}

.level-item.active {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
}

.innovation-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.innovation-check svg {
  flex-shrink: 0;
}

/* ===== New Prize Layout Styles ===== */
.prize-podium-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.prize-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid transparent;
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1e40af, #ea580c, #1e40af);
  border-radius: 2rem;
  padding: 2px;
  margin: -2px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

.prize-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(251, 191, 36, 0.25), 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* First Prize - Center and Larger */
.prize-card.first-prize {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  transform: scale(1.1);
}

.prize-card.first-prize::before {
  background: linear-gradient(45deg, #ea580c, #f97316, #ea580c);
  animation: borderRotate 3s linear infinite;
}

.prize-card.first-prize:hover {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 40px 80px rgba(251, 191, 36, 0.3), 0 20px 40px rgba(0, 0, 0, 0.15);
}

.prize-crown {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
  animation: float 3s ease-in-out infinite;
}

.prize-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.prize-card.first-prize .prize-number {
  width: 60px;
  height: 60px;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

.prize-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 2rem auto 2rem;
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
  transition: all 0.4s ease;
}

.prize-card.first-prize .prize-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
}

.prize-card:hover .prize-icon {
  transform: scale(1.1);
}

.prize-title {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.prize-card.first-prize .prize-title {
  font-size: 1.75rem;
}

.prize-amount {
  color: #1e40af;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.prize-card.first-prize .prize-amount {
  font-size: 3rem;
  color: #ea580c;
}

.prize-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.prize-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.prize-side-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}

.prize-card.second-prize {
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  flex: 1;
}

.prize-card.second-prize::before {
  background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
}

.prize-card.second-prize .prize-number {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.prize-card.second-prize .prize-icon {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.prize-card.second-prize .prize-amount {
  color: #6b7280;
}

.prize-card.third-prize {
  background: linear-gradient(145deg, #fef7ed 0%, #fed7aa 100%);
  flex: 1;
}

.prize-card.third-prize::before {
  background: linear-gradient(45deg, #d97706, #ea580c, #d97706);
}

.prize-card.third-prize .prize-number {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.prize-card.third-prize .prize-icon {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.prize-card.third-prize .prize-amount {
  color: #d97706;
}

/* ===== Specializations Showcase ===== */
.specializations-showcase {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.specializations-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.specializations-showcase::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.specializations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.specialization-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid transparent;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: right;
}

.specialization-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(234, 88, 12, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.specialization-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.specialization-icon-small {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.specialization-name {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Specialization Item Variations */
.specialization-item.architectural {
  border-color: rgba(239, 68, 68, 0.2);
}

.specialization-item.architectural .specialization-icon-small {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.3);
}

.specialization-item.architectural:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialization-item.civil {
  border-color: rgba(34, 197, 94, 0.2);
}

.specialization-item.civil .specialization-icon-small {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

.specialization-item.civil:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialization-item.electrical {
  border-color: rgba(234, 88, 12, 0.2);
}

.specialization-item.electrical .specialization-icon-small {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.3);
}

.specialization-item.electrical:hover {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialization-item.mechanical {
  border-color: rgba(217, 119, 6, 0.2);
}

.specialization-item.mechanical .specialization-icon-small {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.3);
}

.specialization-item.mechanical:hover {
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialization-item.chemical {
  border-color: rgba(236, 72, 153, 0.2);
}

.specialization-item.chemical .specialization-icon-small {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.3);
}

.specialization-item.chemical:hover {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Hover Effects */
.specialization-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialization-item:hover .specialization-icon-small {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .specializations-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .specializations-showcase {
    padding: 4rem 0;
  }
  
  .specializations-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .specialization-item {
    padding: 1.5rem;
  }
  
  .specialization-icon-small {
    width: 60px;
    height: 60px;
  }
  
  .specialization-name {
    font-size: 1.25rem;
  }
}
.engineering-universe {
  padding: 8rem 0;
  background: radial-gradient(ellipse at center, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.engineering-universe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  animation: universePulse 20s ease-in-out infinite;
}

.universe-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  margin-top: 4rem;
}

/* Central Orb */
.central-orb {
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.orb-core {
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  border: 3px solid transparent;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 100px rgba(251, 191, 36, 0.5),
    0 0 50px rgba(251, 191, 36, 0.3),
    inset 0 0 50px rgba(0, 0, 0, 0.3);
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-core::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ea580c, #ea580c, #ea580c);
  border-radius: 50%;
  padding: 3px;
  margin: -3px;
  z-index: -1;
  animation: borderRotate 8s linear infinite;
}

.orb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

.orb-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(251, 191, 36, 0.6);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.orb-core:hover .orb-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 30px 80px rgba(251, 191, 36, 0.8);
}

.orb-title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.orb-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(148, 163, 184, 0.3);
}

/* Orbit System */
.orbit-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.orbit-item {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: all;
}

.orbit-item:nth-child(1) {
  transform: rotate(0deg);
}

.orbit-item:nth-child(2) {
  transform: rotate(72deg);
}

.orbit-item:nth-child(3) {
  transform: rotate(144deg);
}

.orbit-item:nth-child(4) {
  transform: rotate(216deg);
}

.orbit-item:nth-child(5) {
  transform: rotate(288deg);
}

.orbit-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.3), transparent);
  transform-origin: center top;
  animation: connectorPulse 3s ease-in-out infinite;
}

.orbit-item.architectural .orbit-connector {
  background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.3), transparent);
}

.orbit-item.civil .orbit-connector {
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.orbit-item.electrical .orbit-connector {
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.orbit-item.mechanical .orbit-connector {
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.orbit-item.chemical .orbit-connector {
  background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

.orbit-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  border: 2px solid transparent;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  width: 220px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: orbitFloat 8s ease-in-out infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ea580c, #ea580c, #ea580c);
  border-radius: 2rem;
  padding: 2px;
  margin: -2px;
  z-index: -1;
  animation: borderRotate 10s linear infinite;
}

.orbit-item.architectural .orbit-card::before {
  background: linear-gradient(45deg, #ef4444, #dc2626, #ef4444);
}

.orbit-item.civil .orbit-card::before {
  background: linear-gradient(45deg, #22c55e, #16a34a, #22c55e);
}

.orbit-item.electrical .orbit-card::before {
  background: linear-gradient(45deg, #ea580c, #d97706, #ea580c);
}

.orbit-item.mechanical .orbit-card::before {
  background: linear-gradient(45deg, #ea580c, #d97706, #ea580c);
}

.orbit-item.chemical .orbit-card::before {
  background: linear-gradient(45deg, #ec4899, #db2777, #ec4899);
}

.orbit-card:hover {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.orbit-card:hover .card-glow {
  opacity: 1;
}

.architectural-glow {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
}

.civil-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
}

.electrical-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
}

.mechanical-glow {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
}

.chemical-glow {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.orbit-item.architectural .card-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.orbit-item.civil .card-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.orbit-item.electrical .card-icon {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.orbit-item.mechanical .card-icon {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.orbit-item.chemical .card-icon {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

.orbit-card:hover .card-icon {
  transform: scale(1.2) rotate(-10deg);
}

.card-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.skill {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.orbit-item.architectural .skill {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.orbit-item.civil .skill {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.orbit-item.electrical .skill {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.orbit-item.mechanical .skill {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.orbit-item.chemical .skill {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.card-pulse {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: #ea580c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.orbit-item.architectural .card-pulse {
  background: #ef4444;
}

.orbit-item.civil .card-pulse {
  background: #22c55e;
}

.orbit-item.electrical .card-pulse {
  background: #ea580c;
}

.orbit-item.mechanical .card-pulse {
  background: #ea580c;
}

.orbit-item.chemical .card-pulse {
  background: #ec4899;
}

/* Animations */
@keyframes universePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateX(-50%) translateY(-50%) scale(1); }
  50% { transform: translateX(-50%) translateY(-60px) scale(1.02); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .engineering-universe {
    padding: 4rem 0;
    min-height: auto;
  }

  .universe-container {
    min-height: auto;
    margin-top: 2rem;
  }

  .central-orb {
    margin-bottom: 3rem;
  }

  .orb-core {
    width: 200px;
    height: 200px;
  }

  .orb-icon {
    width: 80px;
    height: 80px;
  }

  .orb-title {
    font-size: 1.25rem;
  }

  .orb-subtitle {
    font-size: 0.875rem;
  }

  .orbit-system {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .orbit-item {
    position: relative;
    transform: none !important;
    width: 100%;
    height: auto;
  }

  .orbit-connector {
    display: none;
  }

  .orbit-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    animation: none;
  }

  .orbit-card:hover {
    transform: scale(1.05) !important;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .prize-podium-new {
    gap: 2rem;
  }

  .prize-card.first-prize {
    transform: scale(1);
    max-width: 100%;
  }

  .prize-card.first-prize:hover {
    transform: scale(1.02) translateY(-10px);
  }

  .prize-side-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .prize-card {
    padding: 2rem;
  }

  .prize-icon {
    width: 60px;
    height: 60px;
  }

  .prize-card.first-prize .prize-icon {
    width: 80px;
    height: 80px;
  }

  .categories-showcase {
    padding: 4rem 0;
  }

  .hexagon-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hexagon-shape {
    width: 240px;
    height: 280px;
  }

  .hexagon-inner {
    padding: 1.5rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-title {
    font-size: 1rem;
  }
}

/* ===== Graduation Conditions Styles ===== */
.graduation-conditions {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.graduation-conditions::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.graduation-conditions .requirements-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.graduation-conditions .requirement-item {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.15), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.graduation-conditions .requirement-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(234, 88, 12, 0.08), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.graduation-conditions .requirement-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(100%);
}

.graduation-conditions .requirement-item:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fed7aa 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
}

.graduation-conditions .requirement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.graduation-conditions .requirement-item:hover .requirement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.6);
}

/* ===== Goals Showcase Styles ===== */
.goals-showcase {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
}

.goals-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(234, 88, 12, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
  animation: universePulse 20s ease-in-out infinite;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.goal-card-modern {
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #ea580c;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(234, 88, 12, 0.25), 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #ea580c;
}

.goal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.goal-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
  transition: all 0.4s ease;
}

.goal-card-modern:hover .goal-icon-modern {
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.6);
}

.goal-title-modern {
  color: var(--foreground);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: center;
  transition: all 0.4s ease;
}

.goal-card-modern:hover .goal-title-modern {
  color: #ea580c;
  transform: translateY(-2px);
}

.goal-description-modern {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.goal-card-modern:hover .goal-description-modern {
  color: var(--foreground);
}

.goal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.goal-tag-modern {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.goal-card-modern:hover .goal-tag-modern {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.5);
}

.goal-progress {
  width: 100%;
  height: 6px;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 1s ease-in-out;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.goal-card-modern:hover .progress-bar {
  width: 75%;
}

/* Progress Animation */
@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .goals-showcase {
    padding: 4rem 0;
  }
  
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .goal-card-modern {
    padding: 1.5rem;
  }
  
  .goal-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .goal-title-modern {
    font-size: 1.25rem;
  }
  
  .goal-description-modern {
    font-size: 0.9rem;
  }
  
  .goal-tag-modern {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .goals-showcase {
    padding: 3rem 0;
  }
  
  .goal-card-modern {
    padding: 1.25rem;
  }
  
  .goal-icon-modern {
    width: 50px;
    height: 50px;
  }
  
  .goal-title-modern {
    font-size: 1.125rem;
  }
  
  .goal-description-modern {
    font-size: 0.875rem;
  }
  
  .goal-tag-modern {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }
}
.podium-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 191, 36, 0.1);
  text-align: center;
}

.awards-count {
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.podium-item.gold .awards-count {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.podium-item.silver .awards-count {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
  box-shadow: 0 4px 12px rgba(156, 163, 175, 0.3);
}

.podium-item.bronze .awards-count {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

@media (max-width: 768px) {
  .innovation-showcase {
    padding: 4rem 0;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .innovation-card.featured {
    transform: scale(1);
  }

  .innovation-card:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .innovation-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .innovation-icon-large {
    width: 50px;
    height: 50px;
  }

  .innovation-stats {
    justify-content: center;
  }

  .innovation-check {
    justify-content: center;
  }
}
