/* ===== 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;
  font-size: 18px;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Header ===== */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--primary);
}

.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(--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(--foreground);
  font-size: 0.875rem;
  line-height: 1.25;
  /* max-width: 160px; */
  display: none;
}

@media (min-width: 640px) {
  .header-title {
    display: inline;
  }
}

.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: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--foreground);
}

.header-nav-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.header-nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.header-mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .header-mobile-toggle {
    display: none;
  }
}

.header-mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border);
  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: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
  font-size: 1.1rem;
}

.header-mobile-menu-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ===== 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;
}

/* Vision Section */
.vision-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.vision-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.05), transparent);
  transition: all 0.8s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.vision-card:hover::before {
  left: 100%;
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vision-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 10px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vision-card:hover .vision-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4), 0 8px 20px rgba(234, 88, 12, 0.3);
}

.vision-header h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.vision-content {
  margin-top: 1rem;
}

.vision-content p {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0;
}

/* Goals Section */
.goals-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.goals-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.goal-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.goal-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.05), transparent);
  transition: all 0.8s ease;
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.goal-item:hover::before {
  left: 100%;
}

.goal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 10px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
}

.goal-item:hover .goal-icon-wrapper {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4), 0 8px 20px rgba(234, 88, 12, 0.3);
}

.goal-icon {
  width: 40px;
  height: 40px;
}

.goal-content h4 {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.goal-content p {
  color: var(--muted-foreground);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vision-card {
    padding: 2rem;
  }
  
  .vision-icon {
    width: 60px;
    height: 60px;
  }
  
  .vision-header h3 {
    font-size: 1.25rem;
  }
  
  .vision-content p {
    font-size: 1rem;
  }
  
  .goals-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .goal-item {
    padding: 2rem;
  }
  
  .goal-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
  }
  
  .goal-content h4 {
    font-size: 1.125rem;
  }
  
  .goal-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .vision-section {
    padding: 4rem 0;
  }
  
  .vision-card {
    padding: 1.5rem;
  }
  
  .vision-icon {
    width: 50px;
    height: 50px;
  }
  
  .vision-header h3 {
    font-size: 1.125rem;
  }
  
  .vision-content p {
    font-size: 0.875rem;
  }
  
  .goals-grid-modern {
    gap: 1rem;
  }
  
  .goal-item {
    padding: 1.5rem;
  }
  
  .goal-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
  }
  
  .goal-content h4 {
    font-size: 1rem;
  }
  
  .goal-content p {
    font-size: 0.75rem;
  }
}

/* ===== Judging 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.25rem, 2vw, 1.5rem);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  flex-direction: row-reverse;
}

.hero-button {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}

.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 {
  display: none;
}

.section-bg-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #ffffff 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.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
  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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.25), 0 3px 10px rgba(234, 88, 12, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.35), 0 5px 15px 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: 1.15rem;
}

/* ===== 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%, #fafbfc 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, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(234, 88, 12, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
  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, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.cta-background-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background-logo .logo-bse {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background-logo .logo-bse svg {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 1200px;
}

.cta-background-logo .logo-symbol {
  transform-origin: center;
}

.cta-background-logo .logo-group-1 {
  animation: logoPulse1 3s ease-in-out infinite;
}

.cta-background-logo .logo-group-2 {
  animation: logoPulse2 3s ease-in-out infinite 0.5s;
}

.cta-background-logo .logo-group-3 {
  animation: logoPulse3 3s ease-in-out infinite 1s;
}

.cta-background-logo .logo-group-4 {
  animation: logoPulse4 3s ease-in-out infinite 1.5s;
}

.cta-background-logo .logo-group-5 {
  animation: logoPulse5 3s ease-in-out infinite 2s;
}

.cta-background-logo .logo-group-6 {
  animation: logoPulse6 3s ease-in-out infinite 2.5s;
}

@keyframes logoPulse1 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes logoPulse2 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes logoPulse3 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes logoPulse4 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}

@keyframes logoPulse5 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.55;
  }
}

@keyframes logoPulse6 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.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%, #fafbfc 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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.conditions-timeline {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1B2D6B 0%, #ea580c 100%);
  overflow: hidden;
}

.conditions-timeline::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.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(135deg, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.categories-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.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, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.process-steps.cta-section {
  padding: 10rem 0;
}

.process-container {
  position: relative;
  z-index: 2;
  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, #ffffff 0%, #fafbfc 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: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3), 0 3px 10px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.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%, #fafbfc 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;
}

/* ===== Prize Benefits Section ===== */
.prize-benefits-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.prize-benefits-section.dark-background {
  background: linear-gradient(135deg, #1B2D6B 0%, #ea580c 100%);
  overflow: hidden;
}

.prize-benefits-section.dark-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.prize-benefits-section.dark-background::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;
}

.prize-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.prize-benefit-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(234, 88, 12, 0.15);
  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;
}

.prize-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #f97316 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prize-benefit-card:hover::before {
  transform: scaleX(1);
}

.prize-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
  border-color: rgba(234, 88, 12, 0.3);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== About Section ===== */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.about-content {
  margin-top: 3rem;
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Non-Approval Section ===== */
.non-approval-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.non-approval-content {
  margin-top: 3rem;
}

.non-approval-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-weight: 500;
}

.non-approval-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.non-approval-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #fff5f5 0%, #fef2f2 100%);
  border: 2px solid rgba(234, 88, 12, 0.2);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.non-approval-step:hover {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
  transform: translateX(-4px);
}

.non-approval-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.non-approval-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section,
  .non-approval-section {
    padding: 4rem 0;
  }
  
  .about-text {
    font-size: 1.125rem;
  }
  
  .non-approval-step {
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .non-approval-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* ===== Objectives Section ===== */
.objectives-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.objective-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(234, 88, 12, 0.15);
  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;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #f97316 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.objective-card:hover::before {
  transform: scaleX(1);
}

.objective-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
  border-color: rgba(234, 88, 12, 0.3);
}

.objective-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

.objective-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.objective-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== Nomination Section ===== */
.nomination-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.nomination-criteria {
  margin-top: 3rem;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(234, 88, 12, 0.1);
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.criteria-item:hover {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
  transform: translateX(-4px);
}

.criteria-check {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.criteria-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
  font-weight: 500;
}

/* ===== Selection Section ===== */
.selection-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.selection-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  position: relative;
}

.selection-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #f97316 100%);
  border-radius: 2px;
  z-index: 0;
}

.selection-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 1.5rem 1rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(234, 88, 12, 0.1);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.selection-step:hover {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.12);
  transform: translateY(-8px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
  margin-bottom: 1rem;
  border: 4px solid #ffffff;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .objectives-section,
  .nomination-section,
  .selection-section {
    padding: 4rem 0;
  }
  
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  
  .objective-card {
    padding: 2rem;
  }
  
  .criteria-item {
    padding: 1.25rem;
  }
  
  .selection-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .selection-steps::before {
    display: none;
  }
  
  .selection-step {
    flex-direction: row;
    text-align: right;
    align-items: flex-start;
    padding: 1.25rem;
  }
  
  .step-number {
    margin-bottom: 0;
    margin-left: 1rem;
    border-radius: 1rem;
  }
  
  .step-description {
    font-size: 0.9375rem;
  }
}

/* ===== Categories & Requirements Section ===== */
.categories-requirements-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.categories-requirements-symmetric {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.category-symmetric {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(234, 88, 12, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-symmetric::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
  border-radius: 0 0 0 100%;
  transform: translate(50%, -50%);
}

.category-symmetric.young-engineer {
  border-color: rgba(234, 88, 12, 0.2);
}

.category-symmetric.experienced-engineer {
  border-color: rgba(27, 45, 107, 0.2);
}

.category-symmetric.experienced-engineer::before {
  background: linear-gradient(135deg, rgba(27, 45, 107, 0.05) 0%, transparent 70%);
}

.category-symmetric:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
}

.category-symmetric.young-engineer:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.25);
}

.category-symmetric.experienced-engineer:hover {
  border-color: #1B2D6B;
  box-shadow: 0 20px 60px rgba(27, 45, 107, 0.25);
}

.category-header-symmetric {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.category-badge-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

.experienced-engineer .category-badge-large {
  background: linear-gradient(135deg, #1B2D6B 0%, #2d4a9e 100%);
  box-shadow: 0 8px 24px rgba(27, 45, 107, 0.3);
}

.category-heading-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.category-summary-large {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

.category-requirements-list {
  position: relative;
  z-index: 2;
}

.requirement-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(234, 88, 12, 0.08);
  transition: all 0.3s ease;
}

.requirement-row:last-child {
  border-bottom: none;
}

.category-symmetric:hover .requirement-row {
  padding: 1rem 0.5rem;
}

.requirement-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.experienced-engineer .requirement-icon {
  background: linear-gradient(135deg, #1B2D6B 0%, #2d4a9e 100%);
  box-shadow: 0 4px 12px rgba(27, 45, 107, 0.2);
}

.requirement-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  font-weight: 500;
}

.category-accent-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #f97316 100%);
  border-radius: 2px 2px 0 0;
}

.experienced-engineer .category-accent-line {
  background: linear-gradient(90deg, #1B2D6B 0%, #2d4a9e 100%);
}

.symmetric-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.divider-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 3px solid rgba(234, 88, 12, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.15);
  position: relative;
}

.divider-circle::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid rgba(234, 88, 12, 0.1);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.divider-text {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, #1B2D6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-requirements-symmetric {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .symmetric-divider {
    padding: 1rem 0;
    transform: rotate(90deg);
  }
  
  .category-symmetric {
    padding: 2rem;
  }
  
  .category-badge-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .category-heading-large {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .categories-requirements-section {
    padding: 4rem 0;
  }
  
  .category-symmetric {
    padding: 1.5rem;
  }
  
  .category-badge-large {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .category-heading-large {
    font-size: 1.25rem;
  }
  
  .category-summary-large {
    font-size: 1rem;
  }
  
  .requirement-row {
    padding: 0.75rem 0;
  }
  
  .requirement-icon {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  .requirement-text {
    font-size: 0.9rem;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.03) 0%, transparent 70%);
  transform: rotate(45deg);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.faq-header .section-subtitle {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(234, 88, 12, 0.1);
  border-radius: 1.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, #f97316 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.15);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  z-index: 2;
}

.faq-question:hover {
  background: linear-gradient(145deg, #fafbfc 0%, #ffffff 100%);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.faq-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.25);
  transition: all 0.3s ease;
}

.faq-item:hover .faq-number {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

.faq-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.5;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.faq-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(234, 88, 12, 0.2) 50%, transparent 100%);
}

.faq-answer p {
  padding: 2rem 0;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
  font-size: 1.0625rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-header {
    margin-bottom: 3rem;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question-content {
    gap: 1rem;
  }
  
  .faq-number {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  
  .faq-text {
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .faq-answer p {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
}

.achievement-conditions {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.achievement-conditions::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.criteria-card:hover .criteria-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4), 0 8px 20px rgba(234, 88, 12, 0.3);
}

.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;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.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 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.podium-item.gold .podium-icon {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.podium-item:hover .podium-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4), 0 8px 20px rgba(234, 88, 12, 0.3);
}

.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, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.field-card.mechanical .field-icon {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.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.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4), 0 8px 20px rgba(234, 88, 12, 0.3);
}

.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%);
}

/* Deadline Highlight */
.deadline-highlight {
  margin: 2rem 0;
  text-align: center;
}

.deadline-date {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
  border: 2px solid rgba(234, 88, 12, 0.3);
  transition: all 0.3s ease;
}

.deadline-date:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%);
}

.deadline-date svg {
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .deadline-highlight {
    margin: 1.5rem 0;
  }
  
  .deadline-date {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .deadline-date svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .deadline-highlight {
    margin: 1rem 0;
  }
  
  .deadline-date {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .deadline-date svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Hero Deadlines ===== */
.hero-deadlines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.deadline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.deadline-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.deadline-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 2rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
  transition: all 0.3s ease;
}

.deadline-content {
  flex: 1;
}

.deadline-content h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.deadline-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-deadlines {
    margin: 1.5rem 0;
    padding: 1rem;
  }
  
  .deadline-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .deadline-item:hover {
    transform: translateY(-5px);
  }
  
  .deadline-icon {
    width: 40px;
    height: 40px;
  }
  
  .deadline-content h4 {
    font-size: 1rem;
  }
  
  .deadline-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-deadlines {
    margin: 1rem 0;
    padding: 0.75rem;
  }
  
  .deadline-item {
    padding: 0.5rem;
  }
  
  .deadline-icon {
    width: 35px;
    height: 35px;
  }
  
  .deadline-content h4 {
    font-size: 0.875rem;
  }
  
  .deadline-content p {
    font-size: 0.75rem;
  }
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(100%);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero-slide .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.7) 100%);
  z-index: 1;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #ffffff;
}

/* Announcement Badge */
.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.announcement-badge svg {
  width: 20px;
  height: 20px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.slider-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.3);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(220, 38, 38, 0.8) 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
}

.slider-arrow-prev {
  right: 2rem;
}

.slider-arrow-next {
  left: 2rem;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.slider-arrow:hover svg {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }
  
  .slider-nav {
    bottom: 1rem;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  
  .slider-arrow-prev {
    right: 1rem;
  }
  
  .slider-arrow-next {
    left: 1rem;
  }
  
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .announcement-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .announcement-badge svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
    min-height: 450px;
  }
  
  .slider-arrow {
    width: 35px;
    height: 35px;
  }
  
  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }
  
  .announcement-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .announcement-badge svg {
    width: 14px;
    height: 14px;
  }
}

/* Hero Section - Keep existing styles for compatibility */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.hero-button {
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  flex-direction: row-reverse;
}

.hero-button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
}

.hero-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-button {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  flex-direction: row-reverse;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  flex-direction: row-reverse;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-button:hover::before {
  left: 100%;
}

.hero-button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
  border: none;
}

.hero-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-button svg {
  flex-shrink: 0;
}

/* Process CTA Section */
.process-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
  border-radius: 2rem;
  border: 2px solid rgba(234, 88, 12, 0.2);
  backdrop-filter: blur(10px);
}

/* Horizontal Process Steps */
.process-container-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
  position: relative;
}

.process-container-horizontal::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #dc2626, var(--primary));
  z-index: 1;
}

.process-step-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 200px;
}

.process-step-horizontal .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.process-step-horizontal:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
}

.process-step-horizontal .step-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step-horizontal:hover .step-content {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.2);
}

.process-step-horizontal .step-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step-horizontal .step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.4);
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
}

.cta-button svg {
  flex-shrink: 0;
}

.process-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.process-note svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .process-container-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .process-container-horizontal::before {
    display: none;
  }
  
  .process-step-horizontal {
    max-width: 100%;
    width: 100%;
  }
  
  .process-step-horizontal .step-content {
    padding: 1.25rem 1rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .process-cta {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .process-note {
    font-size: 0.875rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .process-cta {
    padding: 1rem;
    margin-top: 1.5rem;
  }
  
  .process-step-horizontal .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-step-horizontal .step-title {
    font-size: 1rem;
  }
  
  .process-step-horizontal .step-description {
    font-size: 0.8rem;
  }
}

/* Award Description Full */
.award-description-full {
  margin-bottom: 3rem;
}

.award-description-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-description-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.award-icon-main {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.award-description-card:hover .award-icon-main {
  transform: scale(1.1) rotate(-5deg);
}

.award-content h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.award-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

/* Award Recipients */
.award-recipients {
  margin-top: 3rem;
}

.recipients-header {
  text-align: center;
  margin-bottom: 2rem;
}

.recipients-header h3 {
  color: var(--foreground);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.recipients-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.6;
}

.recipients-content {
  max-width: 800px;
  margin: 0 auto;
}

.recipients-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipients-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.recipients-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.recipients-card:hover .recipients-icon {
  transform: scale(1.1) rotate(-5deg);
}

.recipients-text h4 {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.recipients-text p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .award-description-card,
  .recipients-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .award-icon-main,
  .recipients-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .award-content h3,
  .recipients-text h4 {
    font-size: 1.125rem;
  }
  
  .award-content p,
  .recipients-text p {
    font-size: 1rem;
  }
  
  .recipients-header h3 {
    font-size: 1.5rem;
  }
  
  .recipients-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .award-description-card,
  .recipients-card {
    padding: 1.5rem;
  }
  
  .award-icon-main,
  .recipients-icon {
    width: 50px;
    height: 50px;
  }
  
  .award-content h3,
  .recipients-text h4 {
    font-size: 1rem;
  }
  
  .award-content p,
  .recipients-text p {
    font-size: 0.875rem;
  }
}

/* Judging Section */
.judging-section {
  margin-top: 3rem;
}

.judging-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.judging-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.judging-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.judging-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
  transition: all 0.4s ease;
}

.judging-card:hover .judging-icon {
  transform: scale(1.1) rotate(-5deg);
}

.judging-title-section h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.judging-title-section p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.judging-description p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.judging-description p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .judging-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .judging-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .judging-title-section h3 {
    font-size: 1.125rem;
  }
  
  .judging-title-section p {
    font-size: 0.875rem;
  }
  
  .judging-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .judging-card {
    padding: 1.5rem;
  }
  
  .judging-icon {
    width: 50px;
    height: 50px;
  }
  
  .judging-title-section h3 {
    font-size: 1rem;
  }
  
  .judging-title-section p {
    font-size: 0.75rem;
  }
  
  .judging-description p {
    font-size: 0.875rem;
  }
}

/* ===== Award Grid Layout ===== */
.award-grid-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* First Row: Video and Details */
.award-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 600px;
}

/* Video Column */
.award-video-column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-wrapper-modern {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.video-container-modern {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(234, 88, 12, 0.25), 0 12px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  border: 3px solid rgba(234, 88, 12, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-height: 400px;
}

.video-container-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(234, 88, 12, 0.35), 0 18px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(234, 88, 12, 0.4);
}

.video-frame-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.2rem;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  border-radius: 1.2rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container-modern:hover .video-overlay {
  opacity: 1;
}

.video-play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(220, 38, 38, 0.8) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.video-container-modern:hover .video-play-button {
  transform: scale(1);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.5);
}

.video-play-button svg {
  width: 30px;
  height: 30px;
  margin-right: 3px;
}

.video-info {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.video-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.18), 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(234, 88, 12, 0.25);
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 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);
  margin-bottom: 1rem;
}

.video-info h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.video-info p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Details Column */
.award-details-column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.award-details-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 3rem;
  height: 100%;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.award-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #dc2626, var(--primary));
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.award-details-card:hover {
  transform: translateY(-8px) 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: rgba(234, 88, 12, 0.25);
}

.award-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(234, 88, 12, 0.1);
}

.award-icon-main {
  width: 80px;
  height: 80px;
  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 15px 40px rgba(234, 88, 12, 0.4);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.award-details-card:hover .award-icon-main {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.5);
}

.award-title-section h3 {
  color: var(--foreground);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.award-title-section p {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.award-description {
  margin-bottom: 2rem;
}

.award-description p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.award-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.05) 0%, rgba(234, 88, 12, 0.02) 100%);
  border-radius: 1rem;
  border-right: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.08) 0%, rgba(234, 88, 12, 0.04) 100%);
  transform: translateX(5px);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}

/* Second Row: Award Categories */
.award-categories-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.award-category-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary), #dc2626, var(--primary));
  border-radius: 2rem;
  padding: 2px;
  margin: -2px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

.award-category-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 60px rgba(234, 88, 12, 0.2), 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 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;
}

.award-category-card:hover .category-icon {
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.5);
}

.award-category-card h4 {
  color: var(--foreground);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.award-category-card p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .award-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .award-categories-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-container-modern {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .award-grid-container {
    gap: 2rem;
  }
  
  .award-details-card {
    padding: 2rem;
  }
  
  .award-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .award-icon-main {
    width: 60px;
    height: 60px;
  }
  
  .award-title-section h3 {
    font-size: 1.5rem;
  }
  
  .video-container-modern {
    height: 300px;
  }
  
  .video-info {
    padding: 1.5rem;
  }
  
  .video-info h3 {
    font-size: 1.25rem;
  }
  
  .award-category-card {
    padding: 2rem 1.5rem;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .award-category-card h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .award-details-card {
    padding: 1.5rem;
  }
  
  .video-container-modern {
    height: 250px;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .award-category-card {
    padding: 1.5rem;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .award-category-card h4 {
    font-size: 1.125rem;
  }
  
  .award-category-card p {
    font-size: 0.875rem;
  }
}

.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, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.graduation-conditions::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.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;
  }
}

/* ===== New Specializations Grid ===== */
.specializations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specialization-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.specialization-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.specialization-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.specialization-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card:hover .specialization-image img {
  transform: scale(1.1);
}

.specialization-content {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.specialization-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  position: relative;
}

.specialization-desc {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Specialization Card Variations */
.specialization-card.architectural {
  border-color: rgba(239, 68, 68, 0.2);
}

.specialization-card.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-card.civil {
  border-color: rgba(34, 197, 94, 0.2);
}

.specialization-card.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-card.electrical {
  border-color: rgba(234, 88, 12, 0.2);
}

.specialization-card.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-card.mechanical {
  border-color: rgba(217, 119, 6, 0.2);
}

.specialization-card.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-card.chemical {
  border-color: rgba(236, 72, 153, 0.2);
}

.specialization-card.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);
}

/* Responsive Design for Specializations Grid */
@media (max-width: 1024px) {
  .specializations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .specializations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .specialization-image {
    height: 180px;
  }
  
  .specialization-content {
    padding: 1.25rem;
  }
  
  .specialization-name {
    font-size: 1.125rem;
  }
}

/* ===== Stats Banner ===== */
.stats-banner {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.stats-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item-simple {
  text-align: center;
  padding: 0 2rem;
  flex: 1;
}

.stat-number-simple {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label-simple {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .stats-banner-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider {
    width: 60px;
    height: 2px;
    margin: 0.5rem auto;
  }
  
  .stat-item-simple {
    padding: 0 1rem;
  }
  
  .stat-number-simple {
    font-size: 2.5rem;
  }
  
  .stat-label-simple {
    font-size: 1rem;
  }
}

/* ===== Award Full Section ===== */
.award-section-full {
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.award-full-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Background Animated Logo */
.award-background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.logo-animated {
  width: 100%;
  height: 100%;
  animation: logoFloat 8s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

/* Left Side: Award Info */
.award-left-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats-bar-floating {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-item-floating {
  text-align: center;
  color: #ffffff;
}

.stat-number-floating {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label-floating {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.95;
}

.stat-divider-floating {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* Award Info No Card */
.award-info-no-card {
  padding: 0;
}

.award-title-no-card {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.award-desc-no-card {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.award-features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(234, 88, 12, 0.1);
  border: 2px solid rgba(234, 88, 12, 0.2);
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(234, 88, 12, 0.2);
  border-color: rgba(234, 88, 12, 0.3);
  transform: translateY(-2px);
}

/* Right Side: Floating Video */
.award-right-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.video-floating-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  padding: 1rem;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: videoFloat 6s ease-in-out infinite;
  max-width: 400px;
  width: 100%;
}

@keyframes videoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.video-floating-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(234, 88, 12, 0.3), 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper-floating {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
}

.video-frame-floating {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-floating-card:hover .video-play-overlay {
  opacity: 1;
}

.video-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-play-button:hover {
  transform: scale(1.1);
  background: #ffffff;
}

.video-badge-floating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.stats-bar-floating {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}

/* Vision Section Modern */
.vision-section-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(234, 88, 12, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.vision-header-modern {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-container-modern {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.vision-block-modern {
  flex: 1;
  position: relative;
  padding: 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-background-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.12;
  pointer-events: none;
  transition: all 0.5s ease;
}

.vision-icon-1 {
  color: #ea580c;
}

.vision-icon-2 {
  color: #1B2D6B;
}

.vision-block-modern:hover .vision-background-icon {
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(1.15);
}

.vision-content-modern {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
}

.vision-label {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(234, 88, 12, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Arial', sans-serif;
}

.vision-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.vision-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 2px;
}

.vision-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--muted-foreground);
  margin: 0;
}

.vision-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.divider-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(234, 88, 12, 0.3), transparent);
}

.divider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .vision-container-modern {
    flex-direction: column;
    gap: 3rem;
  }
  
  .vision-divider {
    flex-direction: row;
    padding: 2rem 0;
  }
  
  .divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.3), transparent);
  }
  
  .vision-block-modern {
    min-height: auto;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .vision-section-modern {
    padding: 4rem 0;
  }
  
  .vision-header-modern {
    margin-bottom: 3rem;
  }
  
  .vision-label {
    font-size: 4rem;
  }
  
  .vision-heading {
    font-size: 2rem;
  }
  
  .vision-text {
    font-size: 1.1rem;
  }
  
  .vision-background-icon {
    width: 200px;
    height: 200px;
  }
}

/* Goals Section Modern */
.goals-section-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(234, 88, 12, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.goals-header-modern {
  text-align: center;
  margin-bottom: 5rem;
}

.goals-layout-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
}

.goal-item-modern {
  position: relative;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-item-modern:hover {
  transform: translateY(-8px);
}

.goal-background-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  opacity: 0.08;
  pointer-events: none;
  transition: all 0.5s ease;
}

.goal-item-modern:hover .goal-background-icon {
  opacity: 0.12;
  transform: translate(-50%, -50%) scale(1.1);
}

.goal-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(234, 88, 12, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Arial', sans-serif;
  position: relative;
  z-index: 2;
}

.goal-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.goal-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1200px) {
  .goals-layout-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .goals-layout-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .goal-item-modern {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .goals-section-modern {
    padding: 4rem 0;
  }
  
  .goals-header-modern {
    margin-bottom: 3rem;
  }
  
  .goals-layout-modern {
    grid-template-columns: 1fr;
  }
  
  .goal-item-modern {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  
  .goal-number {
    font-size: 3rem;
  }
  
  .goal-heading {
    font-size: 1.1rem;
  }
  
  .goal-text {
    font-size: 0.9rem;
  }
}
.judging-categories-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1B2D6B 0%, #ea580c 100%);
  position: relative;
  overflow: hidden;
}

.judging-categories-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-centered .section-title {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.75rem;
  font-weight: 500;
}

.judging-interactive-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.judging-main-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.judging-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
  transform: translate(50%, -50%);
}

.judging-main-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.judging-main-content {
  position: relative;
  z-index: 2;
}

.judging-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.judging-main-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.judging-main-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.judging-secondary-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.judging-secondary-card.full-height {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.judging-secondary-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1B2D6B 0%, #2d4a9e 100%);
  opacity: 0.1;
  border-radius: 0 0 100% 0;
}

.judging-secondary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.secondary-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.secondary-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.secondary-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1B2D6B 0%, #ea580c 100%);
  border-radius: 0 2px 0 0;
}

.categories-section-wrapper {
  margin-bottom: 3rem;
}

.categories-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.categories-section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
  border-radius: 2px;
}

.categories-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.category-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #ea580c 50%, transparent 100%);
}

.category-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.category-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.category-desc-modern {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.category-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1B2D6B 0%, #ea580c 100%);
  border-radius: 0 2px 0 0;
}

.judging-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .judging-interactive-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .judging-categories-section {
    padding: 4rem 0;
  }
  
  .judging-main-card {
    padding: 2rem;
  }
  
  .judging-main-title {
    font-size: 1.5rem;
  }
  
  .judging-secondary-card {
    padding: 1.75rem;
  }
  
  .secondary-title {
    font-size: 1.25rem;
  }
  
  .categories-section-title {
    font-size: 1.5rem;
  }
  
  .categories-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card-modern {
    padding: 2rem;
  }
  
  .category-title-modern {
    font-size: 1.25rem;
  }
  
  .judging-stats-bar {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .stat-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .award-full-layout {
    grid-template-columns: 1fr;
  }
  
  .award-left-side {
    position: static;
  }
  
  .vision-layout-redesigned {
    grid-template-columns: 1fr;
  }
  
  .categories-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .award-section-full {
    padding: 2rem 0;
  }
  
  .stats-bar-floating {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider-floating {
    width: 50px;
    height: 2px;
  }
  
  .stat-number-floating {
    font-size: 2rem;
  }
  
  .award-info-highlight {
    padding: 2rem;
  }
  
  .award-title-highlight {
    font-size: 1.5rem;
  }
  
  .award-logo-large {
    width: 80px;
    height: 80px;
  }
  
  .categories-simple {
    grid-template-columns: 1fr;
  }
  
  .vision-card-redesigned {
    padding: 2rem;
  }
  
  .judging-simple,
  .target-audience-simple {
    padding: 2rem;
  }
}


/* ===== Award Modern Layout ===== */
.award-modern-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.award-video-section {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: skewY(-3deg);
  background: linear-gradient(135deg, #1B2D6B 0%, #2d4a8f 100%);
}

.video-container-modern {
  width: 100%;
  transform: skewY(3deg);
}

.video-frame-modern {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.video-overlay-modern {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transform: skewY(3deg);
}

.video-badge-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.award-content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.award-intro-modern {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.1), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.award-logo-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.award-logo-modern .logo-bse {
  width: 100%;
  height: 100%;
}

.award-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.award-desc-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

.award-info-modern {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.25), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-item-modern {
  text-align: center;
  color: #ffffff;
}

.info-number-modern {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-label-modern {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.95;
}

.award-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-modern:hover {
  transform: translateX(-8px);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(234, 88, 12, 0.3);
}

.feature-icon-modern {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.25), 0 3px 10px rgba(234, 88, 12, 0.15);
}

.feature-modern span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.award-categories-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-card-modern {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.1), 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.category-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
}

.category-icon-modern {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.category-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.category-desc-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

.judging-modern {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.1), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.judging-header-modern {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.judging-icon-modern {
  width: 64px;
  height: 64px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3), 0 4px 12px rgba(234, 88, 12, 0.2);
  flex-shrink: 0;
}

.judging-text-modern {
  flex: 1;
}

.judging-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.judging-subtitle-modern {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
}

.judging-desc-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 992px) {
  .award-modern-layout {
    grid-template-columns: 1fr;
  gap: 2rem;
  transform: none;
  }
  
  .award-video-section {
    transform: none;
  }
  
  .video-container-modern {
    transform: none;
  }
  
  .video-overlay-modern {
    transform: none;
  }
  
  .award-categories-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .award-info-modern {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-number-modern {
    font-size: 2rem;
  }
  
  .award-categories-modern {
    grid-template-columns: 1fr;
  }
  
  .category-card-modern {
    padding: 1.5rem;
  }
  
  .category-icon-modern {
    width: 56px;
    height: 56px;
  }
  
  .judging-header-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .judging-modern {
    padding: 2rem;
  }
}


/* ===== Society Timeline ===== */
.society-timeline {
  padding: 2rem 0;
}

.timeline-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.timeline-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0;
}

.timeline-track {
  position: relative;
  padding: 2rem 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 4px solid #ea580c;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.1);
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.25rem;
  border: 2px solid rgba(234, 88, 12, 0.15);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 55%;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(234, 88, 12, 0.3);
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 992px) {
  .timeline-track::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-item {
    justify-content: flex-start;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
    width: calc(100% - 70px);
  }
}

@media (max-width: 768px) {
  .timeline-intro {
    padding: 1.5rem;
  }
  
  .timeline-description {
    font-size: 1.125rem;
  }
  
  .timeline-content {
    padding: 1.25rem;
  }
  
  .timeline-year {
    font-size: 0.8rem;
  }
  
  .timeline-title {
    font-size: 1.125rem;
  }
  
  .timeline-text {
    font-size: 0.95rem;
  }
}

