@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ============================================================
   PUROHIT EDTECH — Global Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Poppins:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');


/* ─── CSS Custom Properties ─────────────── */
:root {
  --primary: #0B4F8A;
  --primary-light: #1a6fbe;
  --primary-dark: #083b6e;
  --accent: #F36A1D;
  --accent-bright: #f57b35;
  --gold: #e5a000;
  --green: #059669;
  --red: #dc2626;

  /* Light / White Theme */
  --bg-darkest: #ffffff;
  --bg-dark: #F5F7FA;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-glass-2: rgba(11, 79, 138, 0.04);

  --text-primary: #1F1F1F;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border-glass: rgba(11, 79, 138, 0.12);
  --border-accent: rgba(243, 106, 29, 0.2);

  --glow-primary: 0 4px 32px rgba(11, 79, 138, 0.15);
  --glow-accent: 0 4px 32px rgba(243, 106, 29, 0.18);
  --glow-gold: 0 4px 20px rgba(229, 160, 0, 0.18);

  --shadow-sm: 0 2px 12px rgba(11, 79, 138, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 79, 138, 0.12);
  --shadow-lg: 0 16px 48px rgba(11, 79, 138, 0.15);

  --nav-h: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ────────────────────────— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* Purohit EdTech Logo SVG */
.pe-logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* ─── Page Loader (matching index.html) ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s, visibility .5s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-logo {
  height: 48px;
  width: auto;
}

.ld-ring {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(11, 79, 138, .12);
  border-top-color: #F36A1D;
  border-radius: 50%;
  animation: ldSpin .8s linear infinite;
}

@keyframes ldSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── Custom Cursor ───────────────────────— */
.cursor-dot {
  display: none;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}

.cursor-ring {
  display: none;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(27, 79, 138, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-ring.expanded {
  width: 58px;
  height: 58px;
  border-color: rgba(232, 100, 26, 0.7);
}

body:hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1);
}

/* ─── Scrollbar ───────────────────────────— */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));
  border-radius: 3px;
}

/* ─── Selection ───────────────────────────— */
::selection {
  background: rgba(27, 79, 138, 0.15);
  color: var(--primary-dark);
}



/* ─── Typography ──────────────────────────— */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Custom Scrollbar & Smooth UI ─────────— */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #071324;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0B4F8A, #F36A1D);
  border-radius: 5px;
}

/* ─── Utility Classes ─────────────────────— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.boxed-page-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #FF9D5C 0%, #F36A1D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue-gradient {
  background: linear-gradient(135deg, #00D4FF 0%, #0B4F8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: rgba(11, 79, 138, 0.12);
  border: 1px solid rgba(11, 79, 138, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(11, 79, 138, 0.08);
}

.badge-accent {
  background: rgba(243, 106, 29, 0.12);
  border-color: rgba(243, 106, 29, 0.35);
  color: #f36a1d;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--gold);
}

/* ─── Section Layout ──────────────────────— */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Grid ────────────────────────────────— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Glass Card ──────────────────────────— */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

/* ─── Buttons ─────────────────────────────— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c8510e);
  color: #fff;
  box-shadow: 0 4px 24px rgba(232, 100, 26, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(232, 100, 26, 0.55);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(27, 79, 138, 0.4);
}

.btn-accent:hover {
  box-shadow: 0 8px 36px rgba(27, 79, 138, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid rgba(27, 79, 138, 0.45);
}

.btn-outline:hover {
  background: rgba(27, 79, 138, 0.12);
  border-color: var(--primary-light);
  box-shadow: var(--glow-primary);
}

.btn-ghost {
  background: rgba(27, 79, 138, 0.06);
  color: var(--primary);
  border: 1px solid rgba(27, 79, 138, 0.18);
}

.btn-ghost:hover {
  background: rgba(27, 79, 138, 0.1);
  border-color: var(--primary-light);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ─── Navbar ──────────────────────────────— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 2px 16px rgba(27, 79, 138, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 24px rgba(27, 79, 138, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--glow-primary);
}

.nav-logo .logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-name {
  color: var(--text-primary);
  font-size: 1.02rem;
}

.nav-logo .logo-sub {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-logo .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(var(--primary), var(--accent));
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(27, 79, 138, 0.07);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 16px;
  right: 16px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  padding: 24px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(27, 79, 138, 0.08);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 24px;
}

/* ─── Glowing Background Blobs ───────────— */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(27, 79, 138, 0.10), transparent);
  top: -200px;
  right: -200px;
}

.bg-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232, 100, 26, 0.08), transparent);
  bottom: -150px;
  left: -150px;
}

.bg-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(27, 79, 138, 0.07), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ─── Animated Grid Lines ─────────────────— */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 79, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 79, 138, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Page Hero ───────────────────────────— */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #f0f6ff 0%, #fdf3ec 100%);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 16px 0 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* ─── Stats Bar ───────────────────────────— */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 32px;
  text-align: center;
  border-right: 1px solid var(--border-glass);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(27, 79, 138, 0.04);
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ─── Course Card ─────────────────────────— */
.course-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.course-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.course-card:hover .course-thumb img {
  transform: scale(1.05);
}

.course-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.course-level-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.level-beginner {
  background: rgba(16, 185, 129, 0.2);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.level-intermediate {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.level-advanced {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.course-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  font-size: 1.1rem;
  margin: 12px 0 8px;
}

.course-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.course-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 79, 138, 0.08);
}

.course-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.course-price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ─── Testimonial Card ────────────────────— */
.testi-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  font-family: serif;
  color: rgba(27, 79, 138, 0.08);
  font-weight: 900;
}

.testi-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg-darkest);
  flex-shrink: 0;
}

.testi-info small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ─── Feature/Icon Card ───────────────────— */
.feat-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feat-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ─── Form Styles ─────────────────────────— */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1.5px solid rgba(27, 79, 138, 0.18);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(27, 79, 138, 0.03);
  box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.10);
}

.form-group select option {
  background: #fff;
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ─── Progress Bar ────────────────────────— */
.skill-bar {
  margin-bottom: 20px;
}

.skill-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-bar-top span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.skill-bar-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(27, 79, 138, 0.1);
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-bright));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Accordion ───────────────────────────— */
.accordion-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: left;
}

.accordion-trigger:hover {
  background: rgba(27, 79, 138, 0.04);
}

.accordion-trigger .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.accordion-trigger.open .icon {
  transform: rotate(180deg);
  background: rgba(27, 79, 138, 0.1);
  border-color: var(--primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.open {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 16px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Tabs ────────────────────────────────— */
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-radius: 8px 8px 0 0;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ─── Timeline ────────────────────────────— */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(232, 100, 26, 0.5);
  border: 3px solid var(--bg-darkest);
}

.timeline-date {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-content h4 {
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ─── Tag / Chip ──────────────────────────— */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(27, 79, 138, 0.07);
  border: 1px solid rgba(27, 79, 138, 0.15);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--primary);
}

/* ─── Alert / Notification ────────────────— */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border-left: 3px solid;
}

.alert-success {
  background: rgba(5, 150, 105, 0.08);
  border-color: var(--green);
  color: #065f46;
}

.alert-info {
  background: rgba(27, 79, 138, 0.07);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.alert-warning {
  background: rgba(229, 160, 0, 0.08);
  border-color: var(--gold);
  color: #92400e;
}

/* ─── Footer ──────────────────────────────— */
.footer {
  background: var(--primary-dark);
  border-top: none;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '→';
  opacity: 0;
  transition: var(--transition);
  color: var(--accent);
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-col ul a:hover::before {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--accent);
}

/* ─── Animations & Scroll Reveal ─────────— */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {

  0%,
  100% {
    border-color: var(--primary);
  }

  50% {
    border-color: transparent;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}

/* ─── Floating Particles ──────────────────— */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: float 4s ease-in-out infinite;
}

/* ─── Responsive ──────────────────────────— */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }
}

/* ─── Page Loading Overlay ────────────────— */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(27, 79, 138, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin-slow 0.8s linear infinite;
}

.loader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
}

/* ─── Shimmer Effect ──────────────────────— */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  animation: shimmer 2.5s infinite;
}

/* ─── Glow Text ───────────────────────────— */
.glow-text {
  text-shadow: 0 0 24px rgba(27, 79, 138, 0.35), 0 0 48px rgba(232, 100, 26, 0.2);
}

/* ─── Notification Toast ──────────────────— */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.4s ease;
  max-width: 320px;
  color: var(--text-primary);
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.4);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.4);
}

/* ─── Breadcrumb ──────────────────────────— */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: rgba(27, 79, 138, 0.25);
}

.breadcrumb .current {
  color: var(--text-primary);
}

/* ── Footer matching index.html ─────────── */
footer {
  background: #0d1f35;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.fg-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.fg-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.fg-social {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all .3s;
}

.fs-link:hover {
  background: #F36A1D;
  border-color: #F36A1D;
}

.fg-h {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.fg-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fg-links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  transition: all .3s;
}

.fg-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.fg-contact {
  list-style: none;
}

.fg-contact li {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  align-items: flex-start;
}

.fg-contact li span {
  font-size: .9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}