/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #fef7ed;
  --accent-gold: #F47B20;
  --accent-gold-light: #FDB813;
  --accent-gold-dark: #D4680B;
  --accent-blue: #004a99;
  --accent-blue-light: #3371b5;
  --accent-blue-dark: #003366;
  --bg-dark-blue: #0a1931;
  --accent-orange: #E8650A;
  --accent-maroon: #7A1B4C;
  --text-primary: #1B2A4A;
  --text-secondary: #5a6a7e;
  --text-muted: #94a3b8;
  --border-color: rgba(244, 123, 32, 0.15);
  --border-card: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(0, 74, 153, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide default cursor on desktop where custom cursor is visible */
@media (pointer: fine) {

  body,
  a,
  button,
  .menu-toggle,
  input,
  textarea {
    cursor: none !important;
  }
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, width, height;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-normal);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  transition: background-color 1s ease, color 1s ease;
}

[data-theme="light"] {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] {
  background-color: #0f172a;
  color: #ffffff;
}

[data-theme="dark"] .section-title {
  color: #ffffff;
}

[data-theme="dark"] .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: inherit;
  transition: color 1s ease;
}

.section-title .highlight {
  color: var(--accent-gold);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: inherit;
  opacity: 0.8;
  max-width: 600px;
  line-height: 1.7;
  transition: color 1s ease;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ===== SCROLL-REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(244, 123, 32, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(244, 123, 32, 0.25);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(244, 123, 32, 0.15);
  }

  50% {
    border-color: rgba(244, 123, 32, 0.4);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal);
}

.navbar.scrolled .nav-logo-img {
  height: 55px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-normal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px;
  transition: all var(--transition-normal) !important;
  box-shadow: 0 4px 15px rgba(244, 123, 32, 0.3);
}

.nav-cta:hover {
  background: #004a99 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 74, 153, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(244, 123, 32, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(253, 184, 19, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(122, 27, 76, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.8);
  animation: heroBgFade 30s infinite;
}

.hero-bg img:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg img:nth-child(2) {
  animation-delay: 15s;
}

@keyframes heroBgFade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0.12;
  }

  50% {
    opacity: 0.12;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 123, 32, 0.1);
  border: 1px solid rgba(244, 123, 32, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .line {
  display: block;
}

.hero-title .gold {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-item .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-meta-item .value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(244, 123, 32, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #004a99;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 74, 153, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--border-card);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #004a99;
  border-color: #004a99;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 74, 153, 0.2);
}

.hero-image {
  position: relative;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  padding-top: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;

  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(244, 123, 32, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--bg-secondary);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-cards {
  /* Override grid for stack cards */
  display: block;
}

.about-cards.stack-cards-container {
  position: relative;
  height: 140vh;
}

/* ===== SPOTLIGHT CARDS (About Section) ===== */
.spotlight-wrapper {
  margin-top: 20px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spotlight-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.spotlight-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 40px rgba(244, 123, 32, 0.12);
  border-color: rgba(244, 123, 32, 0.2);
}

/* The actual spotlight border effect */
.spotlight-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  /* The border width */
  background: radial-gradient(400px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
      rgba(244, 123, 32, 0.4),
      transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* The subtle inner spotlight glow */
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
      rgba(244, 123, 32, 0.05),
      transparent 40%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.spotlight-card-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.spotlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.spotlight-card:hover .spotlight-icon {
  background: rgba(244, 123, 32, 0.2);
  transform: scale(1.1) rotate(4deg);
  color: #ffffff;
}

.spotlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.spotlight-card:hover h3 {
  color: var(--accent-gold);
}

.spotlight-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .spotlight-card {
    height: auto;
  }
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  transition: background-color 1s ease, color 1s ease;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(244, 123, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 25px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.stat-item::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: 0.5s;
}

.stat-item:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 20px 40px rgba(244, 123, 32, 0.1);
}

.stat-item:hover::before {
  left: 100%;
}

.stat-number,
.stat-suffix {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 4px 10px rgba(244, 123, 32, 0.1);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.highlights-image {
  margin-top: 50px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-card);
}

.highlights-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlights-image:hover img {
  transform: scale(1.04);
}

.highlights-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.7) 0%, transparent 40%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.highlights-image-overlay .caption {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.highlights-image-overlay .sub-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.category-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), var(--shadow-glow);
}

.category-card:hover::after {
  opacity: 1;
}

.category-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(244, 123, 32, 0.1);
  border: 1px solid rgba(244, 123, 32, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.category-card:hover .category-card-icon {
  background: rgba(244, 123, 32, 0.18);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(244, 123, 32, 0.3);
}

.category-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.categories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.categories-link:hover {
  gap: 14px;
  color: var(--accent-gold-light);
}

/* ===== HOW TO APPLY SECTION ===== */
.apply {
  background: var(--bg-secondary);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.steps {
  margin-top: 40px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.step.active-step {
  background: var(--glass-bg);
  border-color: rgba(244, 123, 32, 0.15);
  box-shadow: 0 10px 30px rgba(244, 123, 32, 0.08);
  transform: translateX(10px);
}

.step:hover:not(.active-step) {
  background: rgba(244, 123, 32, 0.03);
  transform: translateX(5px);
}

.step::before {
  content: '';
  position: absolute;
  left: 44px;
  /* 20px padding + 24px half icon */
  top: 78px;
  /* 20px padding + 48px icon height + 10px margin */
  width: 1px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  opacity: 0.3;
}

.step:last-child::before {
  display: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: all var(--transition-normal);
}

.step:hover .step-icon {
  background: rgba(244, 123, 32, 0.18);
  transform: scale(1.1);
}

.step-content .step-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Box */
.cta-box {
  background: var(--glass-bg);
  border: 1px solid rgba(244, 123, 32, 0.15);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(244, 123, 32, 0.05);
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-box>* {
  position: relative;
  z-index: 1;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-dark), transparent);
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-box>p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-benefits {
  margin-bottom: 28px;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.cta-benefits li .check {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cta-deadline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-deadline strong {
  color: var(--accent-gold);
  font-weight: 700;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
  overflow: hidden;
}



/* ===== TESTIMONIAL MARQUEE ===== */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background: var(--bg-secondary);
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: scrollMarquee 40s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.marquee-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 24px;
  width: 380px;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marquee-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.marquee-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.marquee-quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.marquee-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-author-info .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.marquee-author-info .role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.partners::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.partners.reveal-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--scroll-fill, 0%);
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transform: translateX(-50%);
  transition: width 0.1s ease-out;
}

.partners .section-title,
.partners .section-subtitle {
  transition: color 0.8s ease 0.4s;
}

.partners.reveal-bg.active .section-title,
.partners.reveal-bg.active .section-subtitle {
  color: var(--text-primary);
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

/* Key Partners Styling */
.key-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin: 60px 0 80px;
  position: relative;
}

.key-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.key-partner-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.key-logo-slasscom {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition: all 0.4s ease;
}

.key-logo-ey {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition: all 0.4s ease;
}

/* Specific filter behavior for reveal */
.partners.reveal-bg.active .key-logo-slasscom {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.partners.reveal-bg.active .key-logo-ey {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.key-partner-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.key-partner-item:hover .key-partner-label {
  color: var(--accent-gold-light);
  letter-spacing: 4px;
  opacity: 1;
}

.key-partner-separator {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(244, 123, 32, 0.2), transparent);
}

.partners.reveal-bg.active .key-partner-separator {
  background: linear-gradient(to bottom, transparent, rgba(244, 123, 32, 0.15), transparent);
}

/* Responsive fix for key partners */
@media (max-width: 768px) {
  .key-partners {
    flex-direction: column;
    gap: 50px;
    margin: 40px 0 60px;
  }

  .key-partner-separator {
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 123, 32, 0.2), transparent);
  }
}



.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}

.partners.reveal-bg.active .partners-marquee::before,
.partners.reveal-bg.active .partners-marquee::after {
  opacity: 1;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-left-to-right {
  animation: scrollMarqueeRight 40s linear infinite;
  display: flex;
  gap: 40px;
  width: max-content;
}

.marquee-left-to-right:hover {
  animation-play-state: paused;
}

@keyframes scrollMarqueeRight {
  0% {
    transform: translateX(calc(-50% - 20px));
  }

  100% {
    transform: translateX(0);
  }
}

.partner-logo-card {
  background: transparent;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  width: 160px;
  height: 100px;
  flex-shrink: 0;
}

.partner-logo-card:hover {
  transform: scale(1.05);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  transition: all var(--transition-normal);
}

/* Remove dark mode filter override */
/* .partners.reveal-bg.active .partner-logo-card img {
  filter: brightness(0) invert(1) opacity(0.7);
} */

.partner-logo-card:hover img {
  filter: grayscale(1) brightness(0) opacity(1) !important;
}


/* ===== FOOTER ===== */
.footer {
  background: #1B2A4A;
  border-top: 1px solid var(--border-card);
  padding: 60px 0 30px;
  color: #f1f5f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-brand .brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f1f5f9;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-normal);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li .icon {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 16px;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition-normal);
    border-left: 1px solid var(--border-card);
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-meta {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlights-image img {
    height: 300px;
  }

  .marquee-item {
    width: 320px;
    padding: 20px;
  }

  .testimonial-marquee {
    padding: 30px 0;
  }


  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.2rem;
  }

}


.trophy-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  perspective: 1000px;
}

.rotating-trophy {
  position: relative;
  width: 100%;
  height: 560px;
  transform-style: preserve-3d;
  animation: rotate360 8s linear infinite;
  display: block;
  margin: 0 auto;
}

.trophy-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

/* ===== SLIDESHOW ===== */
/* ===== EVENT HIGHLIGHTS CAROUSEL ===== */
.highlights-section {
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  transition: background-color 1s ease, color 1s ease;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.highlights-subtitle {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: -15px;
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 30px;
  align-items: center;
}

.carousel-item {
  min-width: calc(33.333% - 20px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  opacity: 0.5;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
}

.carousel-item.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.carousel-item.prev,
.carousel-item.next {
  opacity: 0.8;
  transform: scale(0.95);
  z-index: 5;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-item:hover {
  transform: scale(1.15) !important;
  border-color: #f47b20; /** Vibrant Orange **/
  z-index: 15;
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.carousel-btn:hover {
  background: #f47b20;
  border-color: #f47b20;
  box-shadow: 0 0 20px rgba(244, 123, 32, 0.4);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 40px;
  background: #f47b20;
}

@media (max-width: 991px) {
  .carousel-item {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .carousel-item {
    min-width: 100%;
  }
}

/* ===== WHAT WE DO SECTION (REDESIGN) ===== */
.what-we-do {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wwdo-connector-container {
  max-width: 1000px;
  margin: 0 auto -20px;
  height: 100px;
  position: relative;
  z-index: 0;
}

.wwdo-svg {
  width: 100%;
  height: 100%;
}

.wwdo-line {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 1.5;
  stroke-dasharray: 4;
}

.wwdo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.wwdo-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 0;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  height: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.wwdo-card:hover {
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 8px 25px rgba(244, 123, 32, 0.08);
  transform: translateY(-2px);
}

.wwdo-card-header {
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.wwdo-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(244, 123, 32, 0.1);
  color: #F47B20;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wwdo-card-title h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.wwdo-preview {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  transition: opacity 0.3s ease;
}

.wwdo-card.active .wwdo-preview {
  opacity: 0;
}

.wwdo-card-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.4s ease;
  font-size: 0.9rem;
}

.wwdo-card.active .wwdo-card-arrow {
  transform: rotate(180deg);
  color: #F47B20;
}

.wwdo-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwdo-card-inner {
  padding: 0 24px 24px 76px; /* Align with title (icon 44px + gap 16px + offset) */
}

.wwdo-card-inner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.wwdo-card.active {
  border-color: #F47B20;
  box-shadow: 0 12px 30px rgba(244, 123, 32, 0.12);
}

.wwdo-card.active .wwdo-card-body {
  max-height: 200px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .wwdo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wwdo-connector-container {
    display: none;
  }
}

@media (max-width: 600px) {
  .wwdo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wwdo-card-header {
    padding: 20px;
  }
  .wwdo-card-inner {
    padding: 0 20px 20px 20px;
  }
}

/* ===== MODERN CATEGORIES OVERRIDE ===== */
.categories-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 40px;
}

.cat-modern-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 18px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.cat-modern-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(244, 123, 32, 0.1);
}

.cat-modern-icon {
  width: 50px;
  height: 50px;
  background: rgba(244, 123, 32, 0.08);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cat-modern-content {
  display: flex;
  flex-direction: column;
}

.cat-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-modern-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cat-fee {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  display: inline-block;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.cat-free {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
}

.hidden-cat {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===== INTERACTIVE STEPS ===== */
.interactive-steps .step {
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  align-items: flex-start;
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 12px;
  padding: 24px;
}

.step-toggle {
  position: absolute;
  right: 20px;
  top: 30px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.interactive-steps .step.active .step-details {
  max-height: 300px;
  margin-top: 15px;
  opacity: 1;
}

.interactive-steps .step.active .step-toggle {
  transform: rotate(180deg);
}

.interactive-steps .step:hover {
  background: var(--bg-card-hover);
}

/* ===== WINNERS TABLE SECTION ===== */
.winners-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.table-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  overflow-x: auto;
}

.winners-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.winners-table thead {
  background: #1a1a3a; /* Dark Navy */
  color: #ffffff;
}

.winners-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.winners-table tbody tr {
  transition: all 0.3s ease;
}

.winners-table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.winners-table td {
  padding: 18px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.winners-table tbody tr:last-child td {
  border-bottom: none;
}

/* Hover Effect */
.winners-table tbody tr:hover {
  background-color: rgba(244, 123, 32, 0.04);
  transform: scale(1.005);
  box-shadow: 0 5px 15px rgba(244, 123, 32, 0.1);
  cursor: default;
}

.winners-table tbody tr:hover td {
  color: var(--text-primary);
}

.position-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.position-winner {
  background: rgba(244, 123, 32, 0.1);
  color: #F47B20;
  border: 1px solid rgba(244, 123, 32, 0.2);
}

.position-runner {
  background: rgba(212, 168, 67, 0.1);
  color: #d4a843;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.project-title {
  font-weight: 600;
  color: var(--text-primary);
}

.org-name {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Table */
@media (max-width: 768px) {
  .winners-table th, .winners-table td {
    padding: 15px 12px;
    font-size: 0.85rem;
  }
}