/* ==========================================
   V Sports Academy — Complete UI/UX Redesign
   Theme: Emerald + Coral + Glassmorphism
   ========================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --accent: #ff6b35;
  --accent-light: #ff8c5e;
  --accent-dark: #e55a28;
  --emerald: #0d9373;
  --emerald-light: #10b98e;
  --emerald-dark: #087a60;
  --navy: #0b1426;
  --navy-light: #132040;
  --surface: #f7f8fc;
  --surface-2: #eef0f7;
  --text-primary: #1a1e2e;
  --text-secondary: #5c6377;
  --white: #ffffff;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 2px 12px rgba(11, 20, 38, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 20, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 20, 38, 0.1);
  --shadow-xl: 0 30px 80px rgba(11, 20, 38, 0.14);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff3e6c 100%);
  --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, #06d6a0 100%);
  --gradient-dark: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--emerald-dark) 100%);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

.fw-600 {
  font-weight: 600 !important;
}

img {
  max-width: 100%;
}

.set img{
  height: 60px;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 107, 53, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

.preloader-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  /* padding: 1rem 0; */
  transition: var(--transition);
  background: black;
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.navbar-brand span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

/* Custom Hamburger */
.navbar-toggler {
  padding: 0.5rem;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.dropdown-menu {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 230px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: dropIn 0.3s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

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

.dropdown-item {
  color: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
}

.dropdown-item i {
  font-size: 0.8rem;
  opacity: 0.6;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
  color: var(--white) !important;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--emerald);
  top: -200px;
  right: -150px;
  animation: floatBlob 12s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation: floatBlob 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #6366f1;
  top: 50%;
  left: 40%;
  animation: floatBlob 14s ease-in-out infinite 2s;
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.z-2 {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #ff3e6c 50%, var(--emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Images */
.hero-image-stack {
  position: relative;
  height: 520px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float-1 {
  width: 140px;
  height: 140px;
  top: 50px;
  left: 20px;
  animation: floatImg 6s ease-in-out infinite;
}

.hero-img-float-2 {
  width: 130px;
  height: 130px;
  bottom: 40px;
  left: 60px;
  animation: floatImg 6s ease-in-out infinite 1.5s;
}

@keyframes floatImg {

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

  50% {
    transform: translateY(-15px);
  }
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: var(--gradient-accent);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 3px;
}

.marquee-track .dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- SECTION PATTERNS ---------- */
.section-padding {
  padding: 6rem 0;
}

.bg-soft {
  background: var(--surface);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(13, 147, 115, 0.08);
  border: 1px solid rgba(13, 147, 115, 0.2);
  border-radius: 50px;
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-tag.tag-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.accent-text {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ---------- ABOUT ---------- */
.about-gallery {
  position: relative;
  padding: 2rem;
}

.about-img-1 img {
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-img-2 img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-experience-badge {
  position: absolute;
  top: 0;
  right: 40px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  animation: floatImg 5s ease-in-out infinite;
}

.exp-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.4;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.92rem;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(13, 147, 115, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- HISTORY / TIMELINE V2 ---------- */
.timeline-v2 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--emerald), var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-v2-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-v2-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-v2-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--surface), 0 0 20px rgba(255, 107, 53, 0.3);
}

.timeline-v2-dot span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
}

.timeline-v2-card {
  padding: 1.5rem;
  max-width: 380px;
}

.glass-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* ---------- MISSION & VISION ---------- */
.section-gradient-dark {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.section-gradient-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.glass-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.glass-card-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-list li i {
  color: var(--accent-light);
  font-size: 0.75rem;
}

.value-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.value-pill:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
}

.value-pill i {
  color: var(--accent-light);
}

/* ---------- WHY CHOOSE US ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.bg-gradient-1 {
  background: linear-gradient(135deg, #ff6b35, #ff3e6c);
}

.bg-gradient-2 {
  background: linear-gradient(135deg, #0d9373, #06d6a0);
}

.bg-gradient-3 {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
}

.bg-gradient-4 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.bg-gradient-5 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.bg-gradient-6 {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

/* ---------- SERVICES ---------- */
.service-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-v2:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 38, 0.5) 0%, transparent 50%);
}

.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-body {
  padding: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-features span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.service-features i {
  color: var(--emerald);
  margin-right: 0.3rem;
}

/* ---------- PRICING ---------- */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--surface-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pricing-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-badge.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.pricing-amount .price {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-amount .period {
  color: var(--text-secondary);
  font-size: 0.9rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.pricing-body {
  padding: 0 2rem 2rem;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-body li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--surface);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-body li i {
  color: var(--emerald);
}

.pricing-featured {
  background: var(--gradient-dark);
  border-color: transparent;
  position: relative;
}

.pricing-featured .pricing-body li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-featured .pricing-body li i {
  color: var(--accent-light);
}

.pricing-featured .pricing-amount .period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.pricing-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.3rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* ---------- STAFF ---------- */
.staff-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.staff-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.staff-img-v2 {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.staff-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.staff-card-v2:hover .staff-img-v2 img {
  transform: scale(1.08);
}

.staff-social-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(11, 20, 38, 0.8), transparent);
  transform: translateY(100%);
  transition: var(--transition);
}

.staff-card-v2:hover .staff-social-v2 {
  transform: translateY(0);
}

.staff-social-v2 a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.staff-social-v2 a:hover {
  background: var(--accent);
}

.staff-info-v2 {
  padding: 1.2rem 1.5rem;
}

/* ---------- EVENTS ---------- */
.event-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.event-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-img-wrap {
  position: relative;
  height: 83px;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card-v2:hover .event-img-wrap img {
  transform: scale(1.05);
}

.event-date-v2 {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #dec1c1;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.event-date-v2 .day {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.event-date-v2 .month {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.event-body-v2 {
  padding: 1.5rem;
}

.event-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.event-meta span {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.event-meta i {
  font-size: 0.7rem;
  margin-right: 0.2rem;
}

.event-location {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.event-location i {
  color: var(--emerald);
  margin-right: 0.3rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card-v2 {
  text-align: center;
  padding: 2rem;
}

.testimonial-stars {
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 1.1rem;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 107, 53, 0.4);
}

.testimonial-author h6 {
  color: var(--white);
}

.testimonial-author small {
  color: var(--accent-light);
}

.carousel-nav-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav-v2 button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.carousel-nav-v2 button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.carousel-nav-v2 .carousel-indicators {
  display: flex;
  gap: 0.4rem;
}

.carousel-nav-v2 .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  min-width: auto;
}

.carousel-nav-v2 .carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 20px;
}

/* ---------- BLOGS ---------- */
.blog-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card-v2:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.blog-body-v2 {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-meta span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.blog-meta i {
  font-size: 0.7rem;
  margin-right: 0.2rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.blog-read-more:hover {
  gap: 0.7rem;
  color: var(--accent-dark);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 4rem 0;
  background: var(--surface);
}

.cta-inner {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ---------- CONTACT ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(13, 147, 115, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-control,
.form-select {
  border: 2px solid var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer-v2 {
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.footer-brand span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--accent-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
}

.footer-v2 .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-v2 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-v2 .form-control:focus {
  border-color: var(--accent);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

#backToTop.show {
  display: flex;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {

  /* Mobile Nav Container */
  .navbar-collapse {
    background: var(--navy-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Nav Items Layout */
  .navbar-nav {
    gap: 0.1rem;
    padding: 0.25rem 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  /* Nav Links - touch-friendly sizing */
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Active indicator → vertical left bar on mobile */
  .navbar-nav .nav-link.active::before {
    bottom: auto;
    top: 50%;
    left: 0;
    right: auto;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
  }

  /* Dropdown toggle arrow */
  .navbar-nav .dropdown-toggle::after {
    margin-left: auto;
    transition: var(--transition);
  }

  .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Dropdown Menus → inline nested list on mobile */
  .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: none;
    padding: 0.35rem 0 0.35rem 0.5rem;
    margin: 0 0 0.25rem 0.75rem;
    min-width: auto;
    animation: none;
    border-radius: 0;
  }

  .navbar-nav .dropdown-item {
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .navbar-nav .dropdown-item i {
    opacity: 0.7;
  }

  /* "Join Now" button → full-width CTA on mobile */
  .navbar-nav .ms-lg-2 {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav .ms-lg-2 .btn-accent {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .navbar-nav .ms-lg-2 .btn-accent:hover {
    transform: none;
  }

  .timeline-line {
    display: none;
  }

  .timeline-v2-item,
  .timeline-v2-item.right {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-v2-dot {
    left: 0;
    transform: none;
  }

  .timeline-v2-card {
    max-width: 100%;
  }

  .hero-image-stack {
    display: none;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {

  /* Navbar — small phone adjustments */
  .navbar {
    padding: 0.7rem 0;
  }

  .navbar.scrolled {
    padding: 0.5rem 0;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  .navbar-collapse {
    max-height: 70vh;
    padding: 0.75rem;
  }

  .navbar-nav .nav-link {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.9rem;
  }

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

  .stat-card {
    padding: 0.6rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-gallery {
    padding: 0;
  }

  .about-img-2 {
    position: static;
    margin-top: 1rem;
  }

  .about-experience-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .cta-inner {
    padding: 2rem;
  }

  .section-padding {
    padding: 3rem 0;
  }
}