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

:root {
  --primary-50: #f5f3ff;
  --primary-100: #ede9fe;
  --primary-200: #ddd6fe;
  --primary-300: #c4b5fd;
  --primary-400: #a78bfa;
  --primary-500: #8b5cf6;
  --primary-600: #7c3aed;
  --primary-700: #6d28d9;
  --primary-800: #5b21b6;
  --primary-900: #4c1d95;

  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;

  --secondary-400: #818cf8;
  --secondary-500: #6366f1;
  --secondary-600: #4f46e5;

  /* Default Light Theme Styles */
  --bg-dark: #f8fafc;
  --bg-dark-secondary: #f1f5f9;
  --bg-dark-secondary-rgb: 241, 245, 249;
  --bg-dark-tertiary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-light: #ffffff;
  --bg-light-secondary: #f8fafc;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #d946ef 100%);
  --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  --gradient-hero: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, rgba(241, 245, 249, 0.8) 100%);
  --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);

  --glow-primary: 0 10px 30px rgba(124, 58, 237, 0.06);
  --glow-accent: 0 10px 30px rgba(217, 70, 239, 0.06);
  --glow-secondary: 0 10px 30px rgba(99, 102, 241, 0.06);

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans: 'Kanit', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  --border-glass: rgba(124, 58, 237, 0.12);

  --orb-opacity: 0.1;
  --bg-navbar: rgba(255, 255, 255, 0.75);
  --bg-navbar-scrolled: rgba(255, 255, 255, 0.88);
  --bg-mobile-nav: rgba(255, 255, 255, 0.6);
  --navbar-link-active-color: var(--primary-600);
  --navbar-link-active-bg: rgba(124, 58, 237, 0.08);
  --text-gradient-shifting: linear-gradient(90deg, #1e1b4b 0%, #7c3aed 25%, #4f46e5 50%, #7c3aed 75%, #1e1b4b 100%);

  /* SVG Custom styling */
  --svg-bg-start: #f8fafc;
  --svg-bg-end: #e2e8f0;
  --svg-text-primary: #0f172a;
  --svg-text-secondary: #475569;
  --svg-card-bg: rgba(255, 255, 255, 0.85);
  --svg-border: rgba(124, 58, 237, 0.12);
  --svg-stroke-grid: rgba(0, 0, 0, 0.04);

  --svg-about-bg-start: #f8fafc;
  --svg-about-bg-end: #e2e8f0;
}

/* Dark Theme Overrides for report.html & announcements.html */
.dark-theme {
  --bg-dark: #030308;
  --bg-dark-secondary: #080712;
  --bg-dark-secondary-rgb: 8, 7, 18;
  --bg-dark-tertiary: #0c0a1a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-light: #030308;
  --bg-light-secondary: #080712;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #ffffff;

  --gradient-hero: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
  --gradient-dark: linear-gradient(180deg, #030308 0%, #080712 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

  --glow-primary: 0 0 40px rgba(124, 58, 237, 0.25);
  --glow-accent: 0 0 30px rgba(217, 70, 239, 0.2);
  --glow-secondary: 0 0 30px rgba(99, 102, 241, 0.2);

  --border-glass: rgba(255, 255, 255, 0.08);

  --orb-opacity: 0.15;
  --bg-navbar: rgba(3, 3, 8, 0.7);
  --bg-navbar-scrolled: rgba(3, 3, 8, 0.85);
  --bg-mobile-nav: rgba(3, 3, 8, 0.6);
  --navbar-link-active-color: #ffffff;
  --navbar-link-active-bg: rgba(255, 255, 255, 0.05);
  --text-gradient-shifting: linear-gradient(90deg, #030308 0%, #7c3aed 25%, #ffffff 50%, #7c3aed 75%, #030308 100%);

  --svg-bg-start: #0b081c;
  --svg-bg-end: #05030d;
  --svg-text-primary: #ffffff;
  --svg-text-secondary: rgba(255, 255, 255, 0.5);
  --svg-card-bg: rgba(255, 255, 255, 0.03);
  --svg-border: rgba(255, 255, 255, 0.08);
  --svg-stroke-grid: rgba(255, 255, 255, 0.03);

  --svg-about-bg-start: #060514;
  --svg-about-bg-end: #0a091a;
}

/* Base resets & layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a {
  touch-action: manipulation;
}

/* Custom cursor trail dot (desktop only) */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: var(--accent-500);
  background: rgba(217, 70, 239, 0.06);
}

@media (max-width: 992px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.noise-overlay {
  pointer-events: none;
  opacity: 0.03;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  width: 100%;
  z-index: 9999;
  transform-origin: 0% 50%;
  transform: scaleX(0);
  transition: transform 0.08s linear;
  will-change: transform;
}

/* Shared components */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-dark {
  background: var(--bg-dark-secondary);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--primary-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.section-label svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.section-title {
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

.section-description {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  will-change: transform, box-shadow;
}

/* Ripple effect on click */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  transform: scale(0);
  opacity: 1;
  transition: transform 0.5s var(--ease-smooth), opacity 0.4s ease;
}

.btn:active::after {
  transform: scale(2.5);
  opacity: 0;
}

.btn svg {
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-600);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: white;
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
}

/* Premium Placeholders instead of images */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  border: 1px dashed rgba(139, 92, 246, 0.2);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

.image-placeholder-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  filter: blur(50px);
  opacity: 0.35;
  border-radius: 50%;
  animation: float-glow 6s infinite ease-in-out alternate;
}

@keyframes float-glow {
  0% {
    transform: translate(-20px, -20px) scale(0.9);
  }

  100% {
    transform: translate(20px, 20px) scale(1.1);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 1.2rem 2rem;
  transition: padding 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  will-change: padding, background, box-shadow;
}

.navbar--scrolled {
  padding: 0.8rem 2rem;
  background: var(--bg-navbar-scrolled);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}



.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transition: transform 0.3s;
}

.navbar__logo:hover {
  transform: scale(1.02);
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.navbar__logo-icon svg {
  color: white;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}

/* Sliding underline indicator */
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-smooth);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: calc(100% - 2rem);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--navbar-link-active-color);
  background: var(--navbar-link-active-bg);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.navbar__toggle-line {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s var(--ease-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-mobile-nav);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-dark-secondary);
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: right 0.45s var(--ease-smooth);
  will-change: right;
}

.mobile-nav--open .mobile-nav__content {
  right: 0;
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.mobile-nav__close {
  background: var(--navbar-link-active-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.mobile-nav__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: block;
  transition: all 0.3s var(--ease-smooth);
  transform: translateX(0);
}

.mobile-nav__link:hover {
  transform: translateX(6px);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background: var(--navbar-link-active-bg);
  color: var(--navbar-link-active-color);
}

/* =====================================================
   Smooth Animation System
   ===================================================== */

/* Page entrance fade */
@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: page-enter 0.55s var(--ease-smooth) both;
}

/* Generic opacity-0 inline-style elements */
[style*="opacity:0"],
[style*="opacity: 0"] {
  transition:
    opacity 0.75s var(--ease-smooth),
    transform 0.75s var(--ease-smooth);
  will-change: opacity, transform;
}

/* Reveal active — snap everything back to natural state */
.reveal-active {
  opacity: 1 !important;
  transform: none !important;
}

/* Staggered delay tiers for child elements */
.reveal-active:nth-child(1) {
  transition-delay: 0ms !important;
}

.reveal-active:nth-child(2) {
  transition-delay: 80ms !important;
}

.reveal-active:nth-child(3) {
  transition-delay: 160ms !important;
}

.reveal-active:nth-child(4) {
  transition-delay: 240ms !important;
}

.reveal-active:nth-child(5) {
  transition-delay: 320ms !important;
}

.reveal-active:nth-child(6) {
  transition-delay: 400ms !important;
}

/* ---- data-animate declarative system ---- */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.75s var(--ease-smooth),
    transform 0.75s var(--ease-smooth);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-down"] {
  transform: translateY(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="scale-up"] {
  transform: scale(0.88);
}

[data-animate="zoom-in"] {
  transform: scale(0.8) translateY(20px);
}

[data-animate-delay="1"] {
  transition-delay: 100ms;
}

[data-animate-delay="2"] {
  transition-delay: 200ms;
}

[data-animate-delay="3"] {
  transition-delay: 300ms;
}

[data-animate-delay="4"] {
  transition-delay: 400ms;
}

[data-animate-delay="5"] {
  transition-delay: 500ms;
}

[data-animate-delay="6"] {
  transition-delay: 600ms;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Glow Card Effect */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(255, 255, 255, 0.12),
      transparent 40%);
  -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: 3;
}

/* Footer styling */
.footer {
  padding: 5rem 2rem 3rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
  text-align: center;
  position: relative;
}

.footer-slogan {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.footer-divider {
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 auto 2rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  transition: all 0.3s;
  margin-bottom: 2.5rem;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright a {
  text-decoration: none;
  color: var(--primary-500);
  font-weight: 600;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* Responsive grid rules */
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .section-container {
    padding: 0 0.5rem;
  }

  .hero-section {
    min-height: auto;
    padding: 5.5rem 1.25rem 3rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-image-wrapper {
    max-width: 100%;
  }
}

/* Homepage-specific styles */

/* 1. Hero Section */
/* 1. Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 232, 255, 0.92) 85%, var(--bg-dark) 100%), url('images/ss.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@keyframes text-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: var(--orb-opacity, 0.15);
  will-change: transform;
  transition: transform 0.1s linear;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  top: -10%;
  right: -10%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-500);
  bottom: -10%;
  left: -10%;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--secondary-500);
  top: 40%;
  left: 30%;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-deco {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 50%;
}

.hero-deco-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.hero-deco-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -50px;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-number-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2);
  margin-bottom: 2.5rem;
  padding: 0;
  animation: pulse-badge 2.5s infinite alternate ease-in-out;
}

.hero-number-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(139, 92, 246, 0.45);
  animation: spin-dashed 25s linear infinite;
}

@keyframes spin-dashed {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(124, 58, 237, 0.5);
  }
}

.hero-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  line-height: 0.95;
}

.hero-number-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero-section .hero-tagline {
  color: #374151;
  /* Dark grey */
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tagline img,
.hero-tagline .logo-icon-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-section .hero-title {
  background: var(--text-gradient-shifting);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-gradient-shift 8s linear infinite;
}

.hero-section .hero-title span {
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  animation: inherit;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  font-family: 'Outfit', sans-serif;
  margin-left: 0.5rem;
  font-size: 1.25em;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  animation: shine-gradient 4s linear infinite;
  display: inline-block;
}

@keyframes shine-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-slogan-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-500);
  padding-left: 1.25rem;
}

.hero-section .hero-tagline-accent {
  background: var(--text-gradient-shifting);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-gradient-shift 8s linear infinite;
}

.hero-tagline-accent {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-600);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
  display: inline-block;
  align-self: flex-start;
}

.hero-section .hero-slogan-sub {
  background: var(--text-gradient-shifting);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-gradient-shift 8s linear infinite;
}

.hero-slogan-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero-section .hero-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(139, 92, 246, 0.35);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  color: var(--primary-600);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.05);
}

.hero-section .hero-subtitle span {
  background: var(--text-gradient-shifting);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-gradient-shift 8s linear infinite;
  display: inline-block;
}

.hero-section .btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #374151;
}

.hero-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(139, 92, 246, 0.4);
}

@media (max-width: 992px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-section .hero-slogan-wrapper {
    align-self: center;
    text-align: left;
  }

  .hero-section .hero-tagline {
    justify-content: center;
  }

  .hero-section .hero-title span {
    display: block;
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }

  .hero-section .btn-group {
    justify-content: center;
    width: 100%;
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 30px;
  pointer-events: none;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  z-index: 10;
}

.scroll-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-500), transparent);
  animation: scroll-anim 2s infinite ease-in-out;
  transform-origin: top;
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* 2. Stats Section */
.stats-section {
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease-smooth);
  will-change: transform, box-shadow;
}

/* Shimmer sweep on hover */
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 70%);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
}

.stat-card:hover::after {
  background-position: 200% 0;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.stat-icon.float {
  animation: float-icon 3s infinite alternate ease-in-out;
}

@keyframes float-icon {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* 3. About Section */
.about-section {
  padding: 6rem 2rem;
  position: relative;
  background: var(--gradient-dark);
}

.about-background {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-team-image-wrapper {
  position: relative;
  width: 100%;
}

.about-team-image-container {
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
  position: relative;
  border: 1px solid var(--border-glass);
}

.about-team-glow {
  position: absolute;
  inset: -10px;
  background: var(--gradient-primary);
  filter: blur(30px);
  opacity: 0.1;
  pointer-events: none;
}

.about-team-logo {
  border-radius: 50%;
  border: 4px solid var(--border-glass);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-team-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-team-badge-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-400);
}

.about-team-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.about-content-side {
  width: 100%;
}

.about-intro-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.35) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 25px 60px -10px rgba(139, 92, 246, 0.15), 0 12px 24px -10px rgba(0, 0, 0, 0.05);
}

.about-intro-text {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =====================================================
   Policy Section - Animated Background (High Visibility)
   ===================================================== */
.policy-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Floating gradient orbs */
.policy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.policy-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
  top: -120px;
  left: -100px;
  animation: policy-drift-1 9s ease-in-out infinite alternate;
}

.policy-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.40) 0%, rgba(196, 38, 211, 0.12) 50%, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation: policy-drift-2 12s ease-in-out infinite alternate;
}

.policy-orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(79, 70, 229, 0.1) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: policy-drift-3 7s ease-in-out infinite alternate;
}

@keyframes policy-drift-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, 50px) scale(1.2);
  }
}

@keyframes policy-drift-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-70px, -40px) scale(1.15);
  }
}

@keyframes policy-drift-3 {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.25);
  }
}

/* Dot grid overlay */
.policy-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.35) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  animation: policy-grid-pulse 4s ease-in-out infinite;
}

@keyframes policy-grid-pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* Floating sparkle particles */
.policy-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size, 7px);
  height: var(--size, 7px);
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #f0abfc);
  opacity: 0;
  animation: policy-particle-float var(--d, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 12px 4px rgba(167, 139, 250, 0.8), 0 0 24px rgba(217, 70, 239, 0.4);
}

@keyframes policy-particle-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.4);
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) scale(1.5);
  }
}

/* Sweeping wave shimmer */
.policy-wave {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
      transparent 20%,
      rgba(167, 139, 250, 0.12) 40%,
      rgba(217, 70, 239, 0.08) 50%,
      rgba(167, 139, 250, 0.12) 60%,
      transparent 80%);
  background-size: 250% 100%;
  animation: policy-wave-sweep 5s linear infinite;
}

@keyframes policy-wave-sweep {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}


/* 4. Bento Grid Spotlight Section */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.bento-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  align-items: flex-end;
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
  z-index: 1;
  will-change: transform, box-shadow;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
  border-color: rgba(139, 92, 246, 0.35);
}

.bento-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.bento-card:hover .bento-glow {
  opacity: 0.05;
}

.bento-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  clip-path: circle(70% at 100% 0);
  opacity: 0.1;
  z-index: 0;
  transition: all 0.5s var(--ease-smooth);
}

.bento-card:hover .bento-corner {
  width: 180px;
  height: 180px;
  opacity: 0.15;
}

.bento-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.bento-icon-wrapper {
  position: relative;
  width: 54px;
  height: 54px;
}

.bento-icon-hex {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 0.5s var(--ease-smooth);
}

.bento-card:hover .bento-icon-hex {
  transform: rotate(15deg);
}

.bento-icon-ring {
  position: absolute;
  inset: -4px;
  border: 1px dashed;
  border-radius: 20px;
  opacity: 0.4;
  animation: rotate-ring 15s linear infinite;
}

@keyframes rotate-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bento-text {
  margin-top: auto;
}

.bento-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bento-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.bento-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.bento-arrow {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: scale(0.8) translate(10px, 10px);
  opacity: 0;
  transition: all 0.4s var(--ease-smooth);
}

.bento-card:hover .bento-arrow {
  transform: scale(1) translate(0, 0);
  opacity: 1;
}

.bento-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.bento-card:hover .bento-accent-line {
  transform: scaleX(1);
}

.view-all-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--primary-600);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
  border-color: transparent;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-large,
  .bento-medium {
    grid-column: span 1;
  }
}

/* 5. Campaign Gallery Section */
.campaign-gallery-section {
  padding: 6rem 2rem;
  background: var(--bg-dark-secondary);
}

.gallery-day-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  scrollbar-width: none;
}

.gallery-day-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: var(--text-secondary);
  transition: all 0.35s var(--ease-smooth);
  will-change: transform;
}

.gallery-day-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.gallery-day-tab.active svg {
  color: white;
}

.gallery-day-tab svg {
  color: var(--primary-400);
  margin-bottom: 0.5rem;
}

.gallery-day-label {
  font-size: 1rem;
  font-weight: 700;
}

.gallery-day-date {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
  margin-top: 0.15rem;
}

.gallery-camera-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-camera-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.gallery-camera-tab.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.gallery-main {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--text-secondary);
}

.gallery-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--primary-400);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  height: 100%;
}

.gallery-placeholder-item {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.gallery-placeholder-item:hover {
  transform: translateY(-5px) scale(1.02);
}

@media (max-width: 768px) {
  .gallery-placeholder-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. Section Team Slider */
.section-team {
  padding: 6rem 0;
  position: relative;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team-carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
  overflow-x: auto;
  scroll-snap-type: none;
  user-select: none;
}

.team-carousel-track.active-drag {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.team-carousel-item {
  flex-shrink: 0;
  width: 250px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: all 0.4s var(--ease-smooth);
  scroll-snap-align: center;
  cursor: grab;
}

.team-carousel-item:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
  border-color: rgba(139, 92, 246, 0.35);
}

.team-carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 8, 0.9) 0%, rgba(3, 3, 8, 0) 60%);
  z-index: 1;
}

.team-carousel-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: white;
}

.team-carousel-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.team-carousel-role {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 500;
}

.team-carousel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

/* Policy Page specific styles */

.particle-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.policy-section {
  padding: 4rem 2rem 6rem;
  position: relative;
  z-index: 1;
}

.policy-section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.policy-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.policy-section-label {
  color: var(--primary-500);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.policy-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
}

.policy-section-description {
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.policy-slides {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-slide {
  background: rgba(15, 15, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.policy-slide:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.18);
}

.policy-slide-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.policy-slide:hover .policy-slide-glow {
  opacity: 0.16;
}

.policy-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  width: 100%;
}

.policy-number-badge {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
  margin-bottom: 1.5rem;
}

.policy-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid;
  margin-bottom: 1rem;
}

.policy-slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.policy-slide-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 1.25rem;
}

.policy-slide-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.policy-slide-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.policy-slide-image-wrapper {
  position: relative;
  width: 100%;
}

.policy-slide-image-glow {
  position: absolute;
  inset: -15px;
  filter: blur(40px);
  opacity: 0.12;
  border-radius: 30px;
  pointer-events: none;
}

.policy-slide-image-container {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: white;
  position: relative;
}

.policy-slide-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.policy-slide-floating-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid white;
  z-index: 2;
  animation: float-icon 4s infinite alternate ease-in-out;
}

.policy-slide-reversed .policy-slide-floating-icon {
  right: auto;
  left: 20px;
}

@media (max-width: 992px) {

  .policy-slide,
  .policy-slide-reversed {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .policy-slide-reversed .policy-slide-content {
    order: 1;
  }

  .policy-slide-reversed .policy-slide-image-wrapper {
    order: 2;
  }
}

/* Team and Org Chart specific styles */

.leadership-section-v2 {
  padding: 4rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark-secondary);
}

.leadership-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary-500) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.leadership-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.leader-card-v2 {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.leader-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(124, 58, 237, 0.3);
  border-color: rgba(139, 92, 246, 0.45);
}

.leader-card-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.leader-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.leader-card-v2:hover .leader-card-photo {
  transform: scale(1.06);
}

.leader-card-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark-secondary) 0%, rgba(var(--bg-dark-secondary-rgb), 0) 100%);
  z-index: 1;
}

.leader-icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1.5px solid var(--border-glass);
}

.leader-card-content {
  padding: 2rem;
  background: var(--bg-dark-secondary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.leader-card-position {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.leader-card-role {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.leader-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.leader-card-accent-bar {
  height: 4px;
  width: 60px;
  border-radius: 2px;
  margin-top: auto;
}

@media (max-width: 992px) {
  .leadership-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .leadership-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Organization Section (Flow Chart) */
.organization-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.org-header-centered {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-header-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--primary-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.org-flow-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.org-flow-line-desktop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-800), var(--accent-600), var(--primary-800));
}

.org-flow-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  list-style: none;
}

.org-flow-item {
  display: flex;
  width: 100%;
  position: relative;
}

.org-flow-item.left {
  justify-content: flex-start;
}

.org-flow-item.right {
  justify-content: flex-end;
}

.org-connector-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
}

.org-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
  transition: transform 0.3s;
}

.org-flow-item:hover .org-dot {
  transform: scale(1.3);
}

.org-line-to-card {
  width: 40px;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.org-flow-item.left .org-line-to-card {
  order: 1;
}

.org-flow-item.right .org-line-to-card {
  order: 2;
}

.org-flow-card {
  width: 42%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.org-flow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
  border-color: rgba(139, 92, 246, 0.35);
}

.org-icon-floating {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-smooth);
}

.org-flow-card:hover .org-icon-floating {
  transform: scale(1.1) rotate(5deg);
}

.org-content-body {
  flex-grow: 1;
}

.org-flow-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.org-flow-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.org-flow-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-400);
  border: 1px solid var(--border-glass);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

.org-footer-stat {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.stat-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-connector-top {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-800), var(--primary-500));
}

.stat-box-glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 1.5rem 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-glow-effect {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
}

.stat-content-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}

.stat-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--primary-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text-group {
  display: flex;
  flex-direction: column;
}

.stat-big-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
}

.stat-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .org-flow-line-desktop {
    left: 20px;
    transform: none;
  }

  .org-flow-item {
    justify-content: flex-end !important;
  }

  .org-flow-card {
    width: calc(100% - 50px);
  }

  .org-connector-node {
    left: 20px;
    transform: translate(-50%, -50%);
  }

  .org-line-to-card {
    width: 20px;
  }
}

/* Announcements Portal specific styles */

.announcements-section {
  flex-direction: column;
  min-height: 100vh;
  padding: 8rem 1rem 0;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

.announcements-container {
  z-index: 10;
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}

.announcements-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.announcements-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.announcements-hero-title {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, #cbd5e1 100%);
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.announcements-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
}

.announcements-hero-divider {
  background: linear-gradient(90deg, #8b5cf6, #ec4899, #8b5cf6) 0 0/200% 100%;
  border-radius: 2px;
  height: 4px;
  margin: 0 auto;
  animation: 3s infinite gradient-shift;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.announcements-grid-wrapper {
  width: 100%;
}

.announcements-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  display: grid;
}

.announcement-card-modern {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  transition: all 0.45s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
}

.announcement-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

.announcement-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  transition: all 0.5s ease;
}

.announcement-card-modern:hover .announcement-card-glow {
  transform: scale(1.3);
  background: radial-gradient(circle, rgba(217, 70, 239, 0.35) 0%, transparent 70%);
}

.announcement-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 8, 0.95) 0%, rgba(3, 3, 8, 0) 50%);
  z-index: 1;
}

.announcement-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.announcement-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.announcement-date-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.announcement-date-icon {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.6);
}

.announcement-tags-preview {
  display: flex;
  gap: 0.35rem;
}

.announcement-tag-mini {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-300);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.announcement-card-title-modern {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: white;
  transition: color 0.3s;
}

.announcement-card-modern:hover .announcement-card-title-modern {
  color: var(--primary-300);
}

.announcement-card-excerpt {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.announcement-card-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.announcement-link {
  color: var(--primary-400);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.announcement-link:hover {
  text-decoration: underline;
  color: var(--primary-300);
}

.announcement-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.announcement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.announcement-card-indicator {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(10px);
}

.announcement-card-modern:hover .announcement-card-indicator {
  opacity: 1;
  transform: translateX(0);
  background: var(--gradient-primary);
  color: white;
}

@media (max-width: 992px) {
  .announcements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcements-grid {
    grid-template-columns: 1fr;
  }
}

/* 7. Report Page Styles */
.report-section {
  padding: 8rem 2rem 6rem;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.report-container {
  max-width: 1000px;
  margin: 0 auto;
}

.report-header {
  text-align: center;
  margin-bottom: 4rem;
}

.report-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--primary-400);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.report-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.report-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .report-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Glassmorphic Form Card */
.report-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s var(--ease-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-500);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.03);
}

/* Custom Select Styling */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
}

select.form-control option {
  background: var(--bg-dark-secondary);
  color: var(--text-primary);
}

/* Anonymous Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-input:checked {
  background: var(--primary-500);
  border-color: var(--primary-500);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.checkbox-input:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Drag and Drop Area */
.upload-area {
  border: 2px dashed rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: rgba(139, 92, 246, 0.01);
  transition: all 0.3s var(--ease-smooth);
}

.upload-area:hover {
  border-color: var(--primary-500);
  background: rgba(139, 92, 246, 0.03);
}

.upload-icon {
  font-size: 2.2rem;
  color: var(--primary-400);
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.upload-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.upload-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Dashboard & Feed */
.report-feed-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.report-feed-title svg {
  color: var(--accent-500);
}

.report-feed-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.issue-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.issue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.issue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.issue-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.tag-facility {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-400);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.tag-tech {
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.tag-activity {
  background: rgba(217, 70, 239, 0.1);
  color: #f472b6;
  border: 1px solid rgba(217, 70, 239, 0.15);
}

.issue-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.status-badge-pending {
  background: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.status-badge-progress {
  background: rgba(6, 182, 212, 0.08);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.status-badge-done {
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dot-pending {
  background-color: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
  animation: status-pulse-yellow 2s infinite;
}

.dot-progress {
  background-color: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: status-pulse-cyan 2s infinite;
}

.dot-done {
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: status-pulse-green 2s infinite;
}

@keyframes status-pulse-yellow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px #fbbf24;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes status-pulse-cyan {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px #22d3ee;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes status-pulse-green {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px #34d399;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.issue-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.issue-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 0.75rem;
}

.issue-card-author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Success Popup Modal */
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-smooth);
  padding: 1.5rem;
}

.report-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 8, 0.7);
  backdrop-filter: blur(15px);
}

.report-modal-content {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s var(--ease-bounce);
}

.report-modal--open .report-modal-content {
  transform: translateY(0) scale(1);
}

.report-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
  animation: pulse-badge 2s infinite alternate ease-in-out;
}

.report-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.report-modal-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* =====================================================
   Ripple Effect (JS-injected span inside buttons)
   ===================================================== */
span.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(0);
  animation: ripple-burst 0.6s linear forwards;
  pointer-events: none;
}

@keyframes ripple-burst {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* =====================================================
   Form Input — smooth focus glow ring
   ===================================================== */
.form-control:focus {
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18),
    0 0 18px rgba(124, 58, 237, 0.2) !important;
}

/* =====================================================
   Section label pill — subtle hover lift
   ===================================================== */
.section-label {
  transition: transform 0.35s var(--ease-smooth),
    opacity 0.35s var(--ease-smooth),
    box-shadow 0.35s var(--ease-smooth);
}

.section-label:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
}

/* =====================================================
   Footer social link — enhanced hover
   ===================================================== */
.footer-social-link {
  will-change: transform, box-shadow;
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   View-all button — icon nudge on hover
   ===================================================== */
.view-all-btn svg {
  transition: transform 0.35s var(--ease-smooth);
}

.view-all-btn:hover svg {
  transform: translateX(6px);
}

/* =====================================================
   Org-chart cards — smoother transition
   ===================================================== */
.org-flow-card {
  will-change: transform, box-shadow;
}

/* =====================================================
   Announcement hero divider — grow-in animation
   ===================================================== */
.announcements-hero-divider {
  width: 0;
  animation: divider-grow 1s var(--ease-smooth) 0.5s forwards,
    3s infinite gradient-shift;
}

@keyframes divider-grow {
  to {
    width: 80px;
  }
}

/* =====================================================
   Stat card shimmer already handled via ::after
   Keep final empty line for clean EOF
   ============================================/* =====================================================
   Team Page — Animated Background Elements
   ===================================================== */

/* --- Leadership Section Background --- */
.team-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.team-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  /* Brighter visibility in light theme */
  will-change: transform;
  transition: opacity 0.5s ease;
}

.dark-theme .team-orb {
  opacity: 0.45;
  /* Enhanced visibility in dark theme */
}

.team-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  animation: team-orb-drift-1 16s ease-in-out infinite alternate;
}

.team-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.5) 0%, transparent 70%);
  bottom: -20%;
  left: -12%;
  animation: team-orb-drift-2 20s ease-in-out infinite alternate;
}

.team-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  animation: team-orb-drift-3 14s ease-in-out infinite alternate;
}

@keyframes team-orb-drift-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, 80px) scale(1.2);
  }
}

@keyframes team-orb-drift-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(90px, -70px) scale(1.15);
  }
}

@keyframes team-orb-drift-3 {
  0% {
    transform: translateX(-50%) translate(0, 0) scale(0.9);
  }

  100% {
    transform: translateX(-50%) translate(60px, -60px) scale(1.25);
  }
}

/* Grid Overlay */
.team-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 85%);
}

/* Floating Particles */
.team-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.85);
  box-shadow: 0 0 15px 4px rgba(139, 92, 246, 0.6), 0 0 30px rgba(217, 70, 239, 0.4);
  animation: team-particle-float var(--d) ease-in-out infinite alternate;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

@keyframes team-particle-float {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0.3;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(-80px) translateX(40px) scale(1.4);
    opacity: 0.2;
  }
}

/* Expanding Pulse Rings */
.team-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, 0.25);
  animation: team-pulse-expand 7s ease-out infinite;
  will-change: transform, opacity;
}

.team-pulse-ring-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.team-pulse-ring-2 {
  width: 200px;
  height: 200px;
  top: 65%;
  right: 15%;
  animation-delay: 3.5s;
}

@keyframes team-pulse-expand {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }

  70% {
    opacity: 0.25;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* --- Organization Section Background --- */
.team-org-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.team-org-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.3;
  /* Brighter visibility in light theme */
  will-change: transform;
  transition: opacity 0.5s ease;
}

.dark-theme .team-org-orb {
  opacity: 0.4;
}

.team-org-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, transparent 70%);
  top: -20%;
  left: -12%;
  animation: team-org-orb-1 18s ease-in-out infinite alternate;
}

.team-org-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
  animation: team-org-orb-2 15s ease-in-out infinite alternate;
}

@keyframes team-org-orb-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(100px, 70px) scale(1.25);
  }
}

@keyframes team-org-orb-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-90px, -60px) scale(1.2);
  }
}

/* Mesh Pattern */
.team-org-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(139, 92, 246, 0.08) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  animation: team-mesh-shift 24s linear infinite;
}

@keyframes team-mesh-shift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 35px 35px;
  }
}

/* Aurora Wave */
.team-aurora-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(139, 92, 246, 0.05) 30%,
      rgba(217, 70, 239, 0.08) 60%,
      rgba(99, 102, 241, 0.05) 100%);
  animation: team-aurora-pulse 10s ease-in-out infinite alternate;
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

@keyframes team-aurora-pulse {
  0% {
    opacity: 0.5;
    transform: translateY(0) scaleY(1);
  }

  100% {
    opacity: 0.9;
    transform: translateY(-25px) scaleY(1.25);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .team-orb,
  .team-org-orb,
  .team-particle,
  .team-pulse-ring,
  .team-org-mesh,
  .team-aurora-wave {
    animation: none !important;
  }
}