/* =============================================
   AWS Student Builder Group CUST — Global Stylesheet
   Design System: Dark / Light Purple Theme
   ============================================= */

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

/* ─── CSS Variables ─────────────────────────── */
:root {
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-primary: #1A1521;
  --bg-secondary: #0b0b0b;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(173, 92, 255, 0.38);
  --purple-primary: #7B5EA7;
  --purple-secondary: #9F84D4;
  --purple-glow: rgba(123, 94, 167, 0.18);
  --purple-deep: #5A3E9E;
  --text-primary: #F0EEFF;
  --text-secondary: #C4AFF5;
  --text-muted: #5C5C72;
  --grid-line: #AD5CFF;
  --gradient-hero: linear-gradient(150deg, #1A1521 0%, #110E1C 55%, #130B2A 100%);
  --gradient-card: linear-gradient(135deg, rgba(123, 94, 167, 0.12), rgba(159, 132, 212, 0.04));
  --gradient-btn: linear-gradient(135deg, #7B5EA7, #5A3E9E);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-btn: 0 4px 18px rgba(123, 94, 167, 0.28);
  --navbar-bg: rgba(26, 21, 33, 0.88);
  --footer-bg: #000000;
  --input-bg: rgba(255, 255, 255, 0.05);
}

.team-card,
.event-card,
.stat-card,
.mvv-card,
.cert-card,
.project-card,
.contact-info-card,
.contact-form,
.featured-card,
.timeline-content,
.links-category {
  position: relative;
  z-index: 1;
}
.mission-section,
.stats-section,
.featured-section,
.page-header,
section {
  position: relative;
  z-index: 1;
}

/* ─── Reset & Base ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}


/* ─── Global Grid Background ────────────────── */
body::before {
  content: '';
position: fixed ;
inset: 0;
background-image:
  linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
background-size: 120px 120px;
pointer-events: none;
z-index: 0;
}


/* Ensure all content sits above the grid */
body > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ─── Scroll-bar ─────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-primary);
  border-radius: 999px;
}

/* ─── Utility ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, .15);
  color: var(--purple-secondary);
  border: 1px solid rgba(124, 58, 237, .25);
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-btn);
  border-radius: 999px;
  margin: 1rem auto;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, .45);
}

.btn-outline {
  background: transparent;
  color: var(--purple-secondary);
  border: 1.5px solid var(--border-accent);
}

.btn-outline:hover {
  background: var(--purple-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: .5rem 1.1rem;
  font-size: .82rem;
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-pill {
  border-radius: 999px !important;
  padding: 0.5rem 1.2rem !important;
}

/* ─── Glassmorphism Card ───────────────────────
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
} */

/* ─── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

/* Container for the logo - No background or borders */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Logo Logic */
/* --- Logo Theme Logic --- */

/* By default (or in Light mode), hide the white logo and show the black one */
.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

/* When the theme is Dark, hide the black logo and show the white one */
.logo-dark {
  display: block !important;
}

.logo-light {
  display: none !important;
}

/* Ensure the logo container doesn't shift when swapping */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  /* Matches your logo width to prevent layout jump */
}

/* _____________________________________________________________________ */

/* Control the size of the logo here */
.main-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Styled CUST to be bold and clean */
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  /* Large enough to match the bigger logo */
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Nav Links (center) */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--purple-primary);
  border-radius: 999px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-secondary);
  background: var(--purple-glow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: .9rem;
  right: .9rem;
}

/* Nav Actions (right) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: var(--purple-glow);
  border-color: var(--border-accent);
  color: var(--purple-secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .3rem;
  animation: slideDown .25s ease;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  font-size: .95rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--purple-glow);
  color: var(--purple-secondary);
}

.mobile-menu .mobile-contact {
  margin-top: .75rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Hero Section ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var();
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(173, 92, 255, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  /* background: linear-gradient(to bottom, transparent, var(--bg-secondary)); */
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-secondary);
  margin-bottom: 1.2rem;
  background: rgba(124, 58, 237, .1);
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, .2);
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-secondary);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 .highlight {
  background: linear-gradient(var(--purple-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orb-container {
  position: relative;
  width: 420px;
  height: 420px;
}

.orb-main {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, .4) 0%, rgba(109, 40, 217, .15) 60%, transparent 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orb-ring:nth-child(2) {
  width: 340px;
  height: 340px;
  animation: spin 12s linear infinite;
  border-color: rgba(124, 58, 237, .3);
}

.orb-ring:nth-child(3) {
  width: 400px;
  height: 400px;
  animation: spin 20s linear infinite reverse;
}

.orb-ring:nth-child(4) {
  width: 440px;
  height: 440px;
  animation: spin 28s linear infinite;
  border-color: rgba(124, 58, 237, .1);
}

.aws-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}

.aws-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-btn);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(124, 58, 237, .5);
}

.aws-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--purple-secondary);
  letter-spacing: .08em;
}

.float-badge {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  animation: floatY 4s ease-in-out infinite;
}

.float-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.float-badge.b1 {
  top: 18%;
  left: 0;
  animation-delay: 0s;
}

.float-badge.b2 {
  bottom: 18%;
  right: 0;
  animation-delay: 1.5s;
}

.float-badge.b3 {
  top: 65%;
  left: -5%;
  animation-delay: .8s;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}


/* ─── Mission Section ────────────────────────── */
.mission-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mission-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  /* background: linear-gradient(to bottom, transparent, var(--bg-primary)); */
  pointer-events: none;
  z-index: 1;
}

.mission-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.mission-quote em {
  font-style: normal;
  color: var(--purple-secondary);
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── Numbers / Stats ────────────────────────── */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-btn);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-weight: 900;
}

.stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
  margin-top: .5rem;
  text-transform: uppercase;
}

/* ─── Featured Event ─────────────────────────── */
.featured-section {
  padding: 80px 0 120px;
  /* background: var(--bg-primary); */
  position: relative;
}

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  background: var(--gradient-card), var(--bg-primary);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .featured-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem;
    gap: 3rem;
  }

  .featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-card .event-meta,
  .featured-card .event-info-list {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .captain-links {
    justify-content: flex-start;
  }

  .featured-card-img {
    flex: 1;
    max-width: 55%;
    margin-bottom: 0 !important;
  }
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .2), transparent 70%);
}

.event-meta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  justify-content: center;
}

.event-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, .15);
  color: var(--purple-secondary);
  border: 1px solid rgba(124, 58, 237, .25);
}

.featured-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.featured-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.event-info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2rem;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: normal;
}

.event-info-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-secondary);
  flex-shrink: 0;
}

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-visual-card {
  width: 100%;
  max-width: 320px;
  background: rgba(124, 58, 237, .12);
  border: 1px solid rgba(124, 58, 237, .25);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.event-date-display {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.event-month {
  font-size: 1rem;
  color: var(--purple-secondary);
  font-weight: 600;
  margin-top: .25rem;
}

.event-time-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(124, 58, 237, .2);
  color: var(--purple-secondary);
  padding: .4rem .8rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ─── Page Header (inner pages) ─────────────── */
.page-header {
  padding: 140px 0 80px;
  /* background: var(--bg-primary); */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(124, 58, 237, .2), transparent 70%);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Events grid */
.events-filter {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--purple-glow);
  border-color: var(--border-accent);
  color: var(--purple-secondary);
}

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

.event-card {
  border-radius: 20px;
  background: linear-gradient(var(--bg-card), var(--bg-card)), var(--bg-primary);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  border-color: var(--purple-secondary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  overflow: hidden;
}

.event-card-img-wrapper.grayscale-img img {
  filter: grayscale(100%);
  opacity: 0.7;
}

.event-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.05);
  /* zoom effect */
}

.featured-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 1rem;
}

.event-date-floating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(17, 17, 24, 0.85);
  /* Dark translucent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--purple-secondary);
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.event-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
}

.event-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.event-info-grid .event-info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: normal;
}

.event-info-grid .event-info-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-card-footer {
  padding: 0 1.5rem 1.5rem;
}

.btn-full {
  display: inline-flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.event-type-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, .15);
  color: var(--purple-secondary);
}

/* RSVP Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 2.5rem;
  width: 90%;
  max-width: 480px;
  transform: scale(.94);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay.show .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

/* ─── About Page ─────────────────────────────── */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-primary), transparent);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gradient-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px var(--purple-glow);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition: all var(--transition);
}

.timeline-content:hover {
  border-color: var(--border-accent);
}

.timeline-year {
  font-size: .75rem;
  font-weight: 700;
  color: var(--purple-secondary);
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.timeline-content p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mission/Vision/Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.mvv-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mvv-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.mvv-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Team Cards — Circular photo style */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-grid>* {
  width: calc(33.333% - 1.34rem);
}

.team-card {
  border-radius: 20px;
  background: linear-gradient(var(--bg-card), var(--bg-card)), var(--bg-primary);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/* Circular avatar */
.team-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 3px solid var(--border-accent);
  box-shadow: 0 0 0 5px var(--purple-glow);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
  position: relative;
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-avatar-wrap .avatar-placeholder {
  font-size: 3.5rem;
  line-height: 1;
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: .3rem;
}

.team-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1rem;
  flex: 1;
}



/* Social icons row */
.team-links {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: auto;
}

.captain-links {
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.team-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .95rem;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.team-link:hover {
  color: var(--purple-secondary);
  border-color: var(--purple-secondary);
  background: var(--purple-glow);
  transform: translateY(-2px);
}

/* ─── Resources Page ─────────────────────────── */
.cert-path {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.cert-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cert-arrow {
  font-size: 1.4rem;
  color: var(--purple-secondary);
  flex-shrink: 0;
}

.cert-cards-row {
  display: flex;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}

.cert-card {
  flex: 1;
  min-width: 160px;
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.cert-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.cert-card .cert-level {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 4px;
  margin-bottom: .6rem;
  display: inline-block;
}

.cert-card.foundation .cert-level {
  background: rgba(34, 197, 94, .15);
  color: #22c55e;
}

.cert-card.associate .cert-level {
  background: rgba(234, 179, 8, .15);
  color: #eab308;
}

.cert-card.professional .cert-level {
  background: rgba(239, 68, 68, .15);
  color: #ef4444;
}

.cert-card.specialty .cert-level {
  background: rgba(124, 58, 237, .15);
  color: var(--purple-secondary);
}

.cert-card h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.cert-card p {
  font-size: .78rem;
  color: var(--text-muted);
}

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

.links-category {
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.links-cat-header {
  padding: 1.25rem 1.5rem;
  background: var(--gradient-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
}

.links-cat-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.link-list {
  padding: .75rem;
}

.link-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .75rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.link-item:hover {
  background: var(--purple-glow);
  color: var(--purple-secondary);
}

.link-item .link-arrow {
  margin-left: auto;
  font-size: .75rem;
  opacity: .5;
}

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

.project-card {
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all var(--transition);
}

.project-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.project-icon {
  font-size: 1.6rem;
}

.project-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.project-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.project-tag {
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 4px;
  background: rgba(124, 58, 237, .12);
  color: var(--purple-secondary);
  border: 1px solid rgba(124, 58, 237, .2);
}

/* ─── Contact Page ───────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: linear-gradient(var(--bg-card), var(--bg-card)), var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-info-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: linear-gradient(var(--bg-card-hover), var(--bg-card-hover)), var(--bg-primary);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--purple-glow);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple-secondary);
}

.contact-info-card h4 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.contact-info-card p {
  font-size: .83rem;
  color: var(--text-muted);
}

.social-links-contact {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--purple-glow);
  border-color: var(--border-accent);
  color: var(--purple-secondary);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(var(--bg-card), var(--bg-card)), var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  resize: none;
}

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

.form-control:focus {
  border-color: var(--purple-primary);
  background: rgba(124, 58, 237, .08);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .1);
}

.form-control.error {
  border-color: #ef4444;
}

.form-error {
  font-size: .75rem;
  color: #ef4444;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .25);
  color: #22c55e;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

/* ─── Footer ─────────────────────────────────── */
footer {
  background: var(--footer-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(124, 58, 237, .15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .626);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: #fff;
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col a {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.626);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--purple-secondary);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.626);
}

.footer-bottom a {
  color: rgb(124, 157, 255);
}

/* ─── Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid>* {
    width: calc(50% - 1rem);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #navContactBtn {
    display: none;
  }

  .hero {
    margin-top: 25px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;

    .float-badge.b1 {
      left: -1%;
    }

    .float-badge.b2 {
      right: -3%;
    }

    .float-badge.b3 {
      left: 55%;
      top: 10%;
    }
  }

  .orb-container {
    width: 280px;
    height: 280px;
  }

  .orb-ring:nth-child(2) {
    width: 220px;
    height: 220px;
  }

  .orb-ring:nth-child(3) {
    width: 260px;
    height: 260px;
  }

  .orb-ring:nth-child(4) {
    width: 290px;
    height: 290px;
  }

  .float-badge.b1 {
    left: 0;
  }

  .float-badge.b2 {
    right: 0;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .team-grid>* {
    width: 100%;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }

  .cert-row {
    flex-direction: column;
  }

  /* Featured Card */
  .featured-card {
    padding: 20px;
  }

  /* Contact Form */
  .contact-form {
    padding: 20px;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple-secondary), var(--purple-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-cursor {
  display: inline-block;
  color: var(--purple-secondary);
  font-weight: 300;
  animation: cursorBlink 0.75s step-end infinite;
  margin-left: 2px;
  -webkit-text-fill-color: var(--purple-secondary);
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── Mobile: ≤480px ── */
@media(max-width:480px) {
  .orb-container {
    width: 300px;
    height: 300px
  }

  .orb-main {
    width: 200px;
    height: 200px
  }

  .orb-ring:nth-child(2) {
    width: 230px;
    height: 230px
  }

  .orb-ring:nth-child(3) {
    width: 270px;
    height: 270px
  }

  .orb-ring:nth-child(4) {
    width: 300px;
    height: 300px
  }

  .aws-icon {
    font-size: 24px
  }

  .float-badge {
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px
  }

  .float-badge .dot {
    width: 7px;
    height: 7px
  }


}

/* ── Small phones: ≤360px ── */
@media(max-width:360px) {
  .orb-container {
    width: 260px;
    height: 260px
  }

  .orb-main {
    width: 170px;
    height: 170px
  }

  .orb-ring:nth-child(2) {
    width: 195px;
    height: 195px
  }

  .orb-ring:nth-child(3) {
    width: 230px;
    height: 230px
  }

  .orb-ring:nth-child(4) {
    width: 260px;
    height: 260px
  }

  .float-badge {
    font-size: 10px;
    padding: 4px 9px
  }
}



.contact-cta {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 1rem 0;

}

.contact-cta-span {
  color: var(--purple-secondary);
}

.about-span {
  color: var(--purple-secondary);
}


/* Form Control */
/* 1. Ensure the select text is visible */
.form-control {
  color: var(--text-primary);
}

/* 2. Specifically target the options */
select.form-control option {
  background-color: #111118;
  /* Match your --bg-secondary */
  color: var(--text-primary);
}

/* 3. Handle the 'Select a subject' placeholder specifically if needed */
select.form-control option[value=""] {
  color: var(--text-muted);
}


/* Footer Logo */
/* ─── Footer Logo ─────────────────────────────── */
.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 70px;
  flex-shrink: 0;
}

.footer-main-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff !important;
  /* Always white regardless of theme */
  letter-spacing: 0.02em;
  line-height: 1;
}