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

:root {
  --color-royal-blue: #1e40af;
  --color-navy-blue: #0f172a;
  --color-orange: #f97316;
  --color-soft-grey: #f8fafc;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  background-color: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f97316;
}

/* Navigation Links Highlight */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-orange);
  transition: width 0.3s ease;
}
.nav-link.active {
  color: var(--color-royal-blue) !important;
  font-weight: 600;
}
.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

/* Hero Slider Text Reveal */
.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float-reverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.floating-element-reverse {
  animation: float-reverse 8s ease-in-out infinite;
}

/* Swiper Pagination Custom Styling */
.swiper-pagination-bullet-active {
  background: var(--color-orange) !important;
  width: 24px !important;
  border-radius: 4px !important;
  transition: width 0.3s ease !important;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-modal {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Animated Border Glow */
.glow-border {
  position: relative;
  transition: all 0.4s ease;
}
.glow-border::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-royal-blue), var(--color-orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
  pointer-events: none;
}
.glow-border:hover::before {
  opacity: 1;
}

/* Shape Utilities (Mirroring the Winged Shield Logo) */
.sports-clip {
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}
.shield-clip {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.wing-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/logo.png') center/contain no-repeat;
  opacity: 0.03;
  pointer-events: none;
  filter: grayscale(100%);
}

/* Timeline Custom line */
.timeline-line {
  background: linear-gradient(to bottom, var(--color-royal-blue) 0%, var(--color-orange) 100%);
}

/* FAQ Accordion Transitions */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-item {
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}
.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-orange);
}

/* Lightbox Styling */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#lightbox.active {
  display: flex;
  opacity: 1;
}

/* Custom Text Underlines */
.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-royal-blue), var(--color-orange));
  border-radius: 2px;
}

.heading-underline-center {
  position: relative;
  display: inline-block;
}
.heading-underline-center::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-royal-blue), var(--color-orange));
  border-radius: 2px;
}

/* Stat Counter Box Styling */
.stat-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  border-radius: 0;
}
.stat-box:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 10px 30px -10px rgba(30, 64, 175, 0.1);
  transform: scale(1.05);
}
