/* ===== YCS TRUST — SHARED STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&family=Orbitron:wght@400;700;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d2240;
  --blue: #1a4480;
  --teal: #1a7a7a;
  --teal-light: #23a3a3;
  --orange: #f57c1f;
  --gold: #f4b942;
  --white: #ffffff;
  --light: #f0f6ff;
  --dark: #122848;
  --dark2: #162f55;
  --glass: rgba(255,255,255,0.09);
  --glass2: rgba(255,255,255,0.15);
  --border: rgba(26,122,122,0.3);
  --shadow3d: 0 25px 70px rgba(0,0,0,0.45), 0 8px 25px rgba(0,0,0,0.3);
  --glow-teal: 0 0 40px rgba(26,122,122,0.4);
  --glow-orange: 0 0 40px rgba(245,124,31,0.4);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--teal), var(--orange)); border-radius: 3px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.pre-inner { text-align: center; }
.pre-logo { position: relative; width: 120px; height: 120px; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; }
.pre-shield { position: relative; z-index: 2; animation: preShieldPulse 1.5s ease-in-out infinite; }
@keyframes preShieldPulse { 0%,100%{transform:scale(1);filter:drop-shadow(0 0 20px rgba(26,122,122,0.8))} 50%{transform:scale(1.08);filter:drop-shadow(0 0 40px rgba(245,124,31,0.8))} }
.pre-rings { position: absolute; inset: 0; }
.pre-ring { position: absolute; border-radius: 50%; border: 2px solid transparent; }
.r1 { inset: 0; border-top-color: var(--teal); animation: spin 1.2s linear infinite; }
.r2 { inset: 10px; border-right-color: var(--orange); animation: spin 1.8s linear infinite reverse; }
.r3 { inset: 20px; border-bottom-color: rgba(26,122,122,0.4); animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pre-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 0 auto 16px; overflow: hidden; }
.pre-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--orange)); border-radius: 2px; transition: width 1s ease; }
.pre-text { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; letter-spacing: 3px; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%;
  background: rgba(14,32,58,0.90);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(26,122,122,0.25);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  height: 60px;
  background: rgba(14,32,58,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(26,122,122,0.35);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-3d {
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(26,122,122,0.5));
}
.nav-logo:hover .logo-3d {
  filter: drop-shadow(0 0 16px rgba(245,124,31,0.7));
  transform: rotateY(20deg);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem; font-weight: 900;
  color: var(--white); letter-spacing: 1px;
}
.logo-title em { font-style: normal; color: var(--orange); }
.logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: 72px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
nav.scrolled .nav-links > li > a { height: 60px; }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: linear-gradient(90deg, var(--orange), var(--teal));
  transition: all 0.3s ease;
}
.nav-links > li > a:hover, .nav-links > li > a.active-link { color: var(--white); }
.nav-links > li > a:hover::after, .nav-links > li > a.active-link::after { left: 14px; right: 14px; }
.nav-links > li > a .arrow { font-size: 0.55rem; transition: transform 0.3s; opacity: 0.6; }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  min-width: 220px;
  background: rgba(14,32,58,0.97);
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow3d);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center;
  padding: 11px 20px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; font-weight: 500;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  gap: 10px;
}
.dropdown a:hover, .dropdown a.active-link {
  background: rgba(26,122,122,0.15);
  color: var(--white); border-left-color: var(--orange);
  padding-left: 26px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--gold)) !important;
  color: var(--dark) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  height: auto !important;
  margin-left: 8px;
  box-shadow: 0 4px 20px rgba(245,124,31,0.35);
  letter-spacing: 0.5px !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-3px) scale(1.04) !important; box-shadow: 0 8px 30px rgba(245,124,31,0.6) !important; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; transform-origin: left; }
.hamburger.active span:nth-child(1) { transform: rotate(40deg) translate(2px, -2px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-40deg) translate(2px, 2px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(14,32,58,0.99);
  backdrop-filter: blur(20px);
  z-index: 999; overflow-y: auto; padding: 20px 16px 40px;
  gap: 2px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mob-header { display: flex; align-items: center; gap: 12px; padding: 10px 12px 20px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.mob-header span { font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; }
.mob-section { font-family: 'Rajdhani', sans-serif; font-size: 0.7rem; letter-spacing: 3px; color: var(--teal); padding: 14px 12px 6px; text-transform: uppercase; }
.mobile-link { display: block; padding: 10px 12px; color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; border-radius: 6px; transition: all 0.2s; }
.mobile-link:hover { background: rgba(26,122,122,0.15); color: var(--white); padding-left: 20px; }
.mob-sub { padding-left: 24px; font-size: 0.9rem; font-weight: 500; }
.mob-cta { background: linear-gradient(135deg, var(--orange), var(--gold)); color: var(--dark) !important; font-weight: 700 !important; margin-top: 12px; border-radius: 8px; text-align: center; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 320px;
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,68,128,0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,122,122,0.35) 0%, transparent 50%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,122,122,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(26,122,122,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { opacity: 0.4; }
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
}
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION BASE ===== */
section { padding: 90px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 16px;
}
.section-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  margin: 0 auto 20px; border-radius: 2px;
}
.section-desc { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; font-size: 1rem; line-height: 1.9; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(50px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1; transform: none;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 7px;
  font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--dark);
  box-shadow: 0 6px 25px rgba(245,124,31,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,124,31,0.6); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  border: 2px solid rgba(26,122,122,0.55); color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(26,122,122,0.18); border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--glow-teal); }
.btn-ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); transform: translateY(-2px); }

/* Loading button state */
.btn-loading { position: relative; pointer-events: none; opacity: 0.8; }
.btn-loading::before {
  content: ''; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 0.7s linear infinite;
}

/* ===== CARDS ===== */
.card {
  background: rgba(22,47,85,0.75);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow3d); border-color: rgba(26,122,122,0.5); }
.card:hover::before { transform: scaleX(1); }

.tilt-card { transition: transform 0.1s ease, box-shadow 0.3s ease; }

/* ===== GLASS PANEL ===== */
.glass-panel {
  background: rgba(18,40,72,0.7);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  backdrop-filter: blur(20px);
}

/* ===== STAT BOX ===== */
.stat-box { text-align: center; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; margin-top: 6px; text-transform: uppercase; }

/* ===== PILL / TAG ===== */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,122,122,0.15);
  border: 1px solid rgba(26,122,122,0.35);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.82rem; color: var(--teal-light); font-weight: 500;
}
.pill-orange { background: rgba(245,124,31,0.12); border-color: rgba(245,124,31,0.35); color: var(--orange); }

/* ===== PROGRESS BAR ===== */
.progress-wrap { margin: 10px 0; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; color: rgba(255,255,255,0.75); }
.progress-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--orange)); border-radius: 4px; transition: width 1.5s cubic-bezier(0.23,1,0.32,1); }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(26,122,122,0.3);
  border-radius: 8px; color: var(--white); font-family: 'Exo 2', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,122,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--dark2); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
  background: #091c38;
  border-top: 1px solid rgba(26,122,122,0.25);
  position: relative;
}
.footer-wave { line-height: 0; margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 50px; display: block; }
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 60px 5% 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-title { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 900; }
.footer-logo-sub { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 2px; }
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(26,122,122,0.28);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: var(--transition);
}
.soc-btn:hover { background: rgba(26,122,122,0.22); color: var(--white); border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--glow-teal); }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; padding: 4px 0; transition: all 0.2s; }
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 888;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: 1px solid rgba(26,122,122,0.4);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}
#scrollTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: linear-gradient(135deg, var(--orange), var(--gold)); transform: translateY(-4px); box-shadow: var(--glow-orange); }

/* ===== GRADIENT TEXT ===== */
.grad-text {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-teal {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== DIVIDER ===== */
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 20px 0; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,122,122,0.18); border: 1px solid rgba(26,122,122,0.45);
  padding: 6px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light);
}
.badge::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
.badge-orange { background: rgba(245,124,31,0.12); border-color: rgba(245,124,31,0.35); color: var(--orange); }
.badge-orange::before { background: var(--orange); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--teal), var(--orange)); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item::before { content: ''; position: absolute; left: -24px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 2px solid var(--dark); box-shadow: 0 0 12px rgba(245,124,31,0.6); }
.tl-year { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; color: var(--teal); letter-spacing: 2px; margin-bottom: 6px; }
.tl-title { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.tl-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ===== ICON BOX ===== */
.icon-box {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,122,122,0.22), rgba(26,68,128,0.32));
  border: 1px solid rgba(26,122,122,0.35); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
  transition: var(--transition);
}
.card:hover .icon-box { background: linear-gradient(135deg, rgba(245,124,31,0.22), rgba(26,122,122,0.22)); transform: scale(1.1) rotateY(20deg); border-color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .page-hero { min-height: 260px; padding: 110px 5% 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  #scrollTop { bottom: 20px; right: 20px; }
  .btn-primary, .btn-outline { padding: 11px 22px; font-size: 0.88rem; }
}

/* ===== PRELOADER — CLEAN PROGRESS TYPE ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0b1e3a;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.pre-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
/* thin progress bar at top */
.pre-progress-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.pre-progress-bar::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), var(--orange), transparent);
  animation: preBarSlide 1.4s ease-in-out infinite;
}
@keyframes preBarSlide { to { left: 110%; } }

.pre-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-align: center;
}
.pre-emblem {
  margin-bottom: 22px;
  animation: preEmblemIn 0.7s cubic-bezier(0.23,1,0.32,1) both;
  filter: drop-shadow(0 8px 32px rgba(26,122,122,0.45));
}
@keyframes preEmblemIn { from { opacity:0; transform:scale(0.7) translateY(20px); } to { opacity:1; transform:none; } }

.pre-wordmark {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 32px;
  animation: preTextIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.15s both;
}
@keyframes preTextIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.pre-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 4px; color: var(--white);
  text-transform: uppercase;
}
.pre-name em { font-style: normal; color: var(--orange); }
.pre-tagline {
  font-size: 0.65rem; letter-spacing: 4px;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  margin-top: 4px; font-family: 'Rajdhani', sans-serif;
}

.pre-track {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  margin-bottom: 14px;
  animation: preTextIn 0.5s ease 0.2s both;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
  width: 0;
}

.pre-meta {
  display: flex; align-items: center; gap: 10px;
  animation: preTextIn 0.5s ease 0.25s both;
}
.pre-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; color: var(--orange);
  font-weight: 700; letter-spacing: 1px;
  min-width: 38px; text-align: right;
}
.pre-dot { color: rgba(255,255,255,0.2); font-size: 0.8rem; }
.pre-status {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.38); text-transform: uppercase;
}

/* ===== FOOTER DEV CREDIT ===== */
.footer-dev {
  color: rgba(255,255,255,0.28);
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}
.dev-link {
  color: var(--teal-light) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.dev-link:hover { color: var(--orange) !important; }

/* ===== LEADERSHIP PAGE STYLES ===== */
.role-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.role-chair { background: rgba(245,124,31,0.12); border: 1px solid rgba(245,124,31,0.3); color: var(--orange); }
.role-vice  { background: rgba(26,122,122,0.12); border: 1px solid rgba(26,122,122,0.3); color: var(--teal-light); }
.role-sec   { background: rgba(26,68,128,0.18);  border: 1px solid rgba(26,68,128,0.35); color: #7ab0ff; }
.role-biz   { background: rgba(180,100,20,0.12); border: 1px solid rgba(200,130,30,0.3); color: var(--gold); }
.role-legal { background: rgba(100,50,130,0.15); border: 1px solid rgba(140,80,180,0.3); color: #c080f0; }
.role-treas { background: rgba(20,130,70,0.12);  border: 1px solid rgba(30,170,90,0.3);  color: #4dd89a; }

.mem-qual {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 11px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
}
