
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg-dark: #080808;
  --bg-dark-2: #111111;
  --bg-light: #fafafa;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --green: #a3e635;
  --green-dark: #84cc16;
  --green-muted: rgba(163,230,53,0.12);
  --text-white: #f5f5f5;
  --text-gray: #999;
  --text-dark: #1a1a1a;
  --text-dark-muted: #666;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-white); background: var(--bg-dark); -webkit-font-smoothing: antialiased; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(8,8,8,0.95); }
.nav-logo img { height: 250px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--text-gray); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-socials { display: flex; gap: 10px; }
.nav-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--text-gray); text-decoration: none; font-size: 14px; transition: var(--transition); }
.nav-socials a:hover { border-color: var(--green); color: var(--green); }
.btn-enroll { background: var(--green); color: var(--bg-dark); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: var(--transition); border: none; cursor: pointer; font-family: var(--font-body); }
.btn-enroll:hover { background: var(--green-dark); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-white); font-size: 24px; cursor: pointer; }

/* ===== TRAINING DROPDOWN (NEW) ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  font-size: 10px;
  transition: var(--transition);
}
.nav-dropdown.open .nav-dropdown-arrow,
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 8px;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-white);
}

/* ===== MOBILE TRAINING DROPDOWN (NEW) ===== */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.mobile-dropdown-arrow {
  font-size: 10px;
  transition: var(--transition);
}
.mobile-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  margin-top: 8px;
  gap: 8px;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
/* ===== TRAINING TOGGLE AS BUTTON (UPDATED) ===== */
button.nav-dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  color: var(--text-gray);
  padding: 0;
  transition: var(--transition);
}
button.nav-dropdown-toggle:hover {
  color: var(--text-white);
}
/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(163,230,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 24px;
} 
.hero-badge span { font-size: 16px; }
.hero-title { font-family: var(--font-display); line-height: 0.95; margin-bottom: 28px; }
.hero-title .line { display: block; font-size: clamp(52px, 7vw, 88px); font-weight: 700; color: var(--text-white); }
.hero-title .line.green { color: var(--green); }
.hero-desc { color: var(--text-gray); font-size: 17px; line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 56px; }
.btn-primary { background: var(--green); color: var(--bg-dark); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-white); padding: 14px 32px; border-radius: 50px; font-weight: 500; font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.hero-stats { display: flex; gap: 40px; }
.stat { position: relative; padding-right: 40px; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: var(--border-dark); }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--green); }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-gray); margin-top: 4px; }

/* Quick Start Card */
.quick-start {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border-dark);
  position: relative; z-index: 1;
}
.qs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.qs-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.qs-header svg { color: var(--green); }
.qs-sub { color: var(--text-gray); font-size: 14px; margin-bottom: 24px; }
.qs-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark);
  margin-bottom: 12px; cursor: pointer; transition: var(--transition);
  text-decoration: none; color: var(--text-white);
}
.qs-item:hover { background: rgba(163,230,53,0.06); border-color: rgba(163,230,53,0.2); }
.qs-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.qs-icon.ios { background: rgba(59,130,246,0.15); color: #3b82f6; }
.qs-icon.pbi { background: rgba(234,179,8,0.15); color: #eab308; }
.qs-icon.n8n { background: rgba(239,68,68,0.15); color: #ef4444; }
.qs-item-info h4 { font-size: 15px; font-weight: 600; }
.qs-item-info span { font-size: 13px; color: var(--text-gray); }
.qs-item-arrow { margin-left: auto; color: var(--text-gray); font-size: 18px; }
.qs-status { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13px; color: var(--text-gray); }
.qs-status::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }



.hero-visual {
  position: relative; z-index: 1;
  height: 100%; max-height: 560px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-dark);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.5) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-visual { max-height: 340px; margin-top: 32px; }
}
 
/* ===== ABOUT US ===== */
.skill-about { background: var(--bg-dark); padding: 0 0 80px; }
.skill-banner-wrap { position: relative; }
.skill-banner { width: 100%; height: 340px; object-fit: cover; display: block; }
.skill-banner-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
  pointer-events: none;
}
.skill-about-inner { max-width: 900px; margin: 0 auto; padding: 60px 48px 0; text-align: center; }
.skill-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: var(--text-white); margin-bottom: 20px; }
.skill-about-text { color: var(--text-gray); font-size: 16px; line-height: 1.8; }
.accent-half { color: var(--green); }


/* ===== CTA BANNER (updated to dark) ===== */
.cta-banner { background: var(--bg-dark-2); padding: 90px 48px; text-align: center; border-top: 1px solid var(--border-dark); }
.cta-banner-inner { max-width: 600px; margin: 0 auto; }
.cta-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.cta-banner p { color: var(--text-gray); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }




/* ===== FOUNDER MESSAGE ===== */
.skill-founder { background: var(--bg-dark-2); padding: 80px 48px; }
.founder-inner { max-width: 1000px; margin: 0 auto 60px; display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; }
.founder-img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green); }
.founder-text p { color: var(--text-gray); font-size: 15px; line-height: 1.8; margin-top: 12px; }

.stats-bar { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; padding-top: 40px; border-top: 1px solid var(--border-dark); }
.stat-block { text-align: center; }
.stat-block-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--green); }
.stat-block-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-gray); margin-top: 6px; }

/* ===== OPPORTUNITY CARDS ===== */
.opportunity-section { background: var(--bg-dark); padding: 0 48px 90px; }
.opportunity-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.opportunity-card {
  background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; transition: var(--transition);
}
.opportunity-card.active { border-color: var(--green); background: var(--green-muted); }
.opportunity-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text-white); margin-bottom: 12px; }
.opportunity-card p { color: var(--text-gray); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.opportunity-btn {
  display: inline-block; background: var(--green); color: var(--bg-dark);
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: var(--transition);
}
.opportunity-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.opportunity-soon {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  background: rgba(255,255,255,0.05); color: var(--text-gray); font-size: 13px; font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-img { margin: 0 auto; }
  .opportunity-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .skill-about-inner { padding: 50px 20px 0; }
  .skill-founder { padding: 50px 20px; }
  .opportunity-section { padding: 0 20px 60px; }
  .stats-bar { gap: 32px; }
}

/* ===== 3D TILT EFFECT — hero-visual & skill-banner-wrap ===== */
.hero-visual,
.skill-banner-wrap {
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease-out;
  will-change: transform;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* soft moving light/glare that follows the cursor for depth */
.hero-visual::before,
.skill-banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.25), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hero-visual:hover::before,
.skill-banner-wrap:hover::before {
  opacity: 1;
}

/* respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .skill-banner-wrap {
    transition: none;
  }
}
 
 



/* ===== PAGE NO 02,  COURSES SECTION ===== */
.courses {
  background: var(--bg-light); color: var(--text-dark);
  padding: 100px 48px;
}
.section-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-badge.green-outline { border: 1px solid var(--green-dark); color: var(--green-dark); }
.section-badge.dark { background: var(--bg-dark); color: var(--text-white); }
.section-center { text-align: center; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 16px; }
.section-title .accent { color: var(--green-dark); }
.section-desc { color: var(--text-dark-muted); font-size: 16px; line-height: 1.7; max-width: 600px; margin: 0 auto 48px; }

.course-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 56px; }
.course-tab {
  padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border-light); background: transparent; color: var(--text-dark-muted);
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.course-tab.active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.course-tab:hover:not(.active) { border-color: var(--green-dark); color: var(--green-dark); }

.course-panel { display: none; }
.course-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.course-image {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  position: relative;
}
.course-image img { width: 100%; height: 100%; object-fit: cover; }
.course-image .badge-overlay {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(10px);
  color: #fff; padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
}

.course-tagline { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.course-name { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.course-desc-text { color: var(--text-dark-muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.course-topics-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark-muted); margin-bottom: 16px; }
.course-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.topic-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dark); }
.topic-check { color: var(--green-dark); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.course-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dark-muted); }
.perk svg { width: 16px; height: 16px; color: var(--text-dark-muted); }

.course-cta {
  display: flex; align-items: center; gap: 24px;
  background: #f0f0f0; border-radius: var(--radius); padding: 20px 28px;
}
.cta-price-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark-muted); }
.cta-price { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text-dark); }
.cta-price .rs { font-size: 16px; font-weight: 500; color: var(--text-dark-muted); }
.cta-discount { font-size: 13px; color: #ef4444; font-weight: 600; }
.cta-register {
  margin-left: auto;
  background: var(--bg-dark); color: #fff; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: var(--transition); border: none; cursor: pointer;
  font-family: var(--font-body);
}
.cta-register:hover { background: #222; transform: translateY(-1px); }
/* ===== COURSE DETAILS BUTTON + MODAL (NEW) ===== */
.course-details-btn {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  margin-top: 4px;
}
.course-details-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.course-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.course-modal-overlay.active { display: flex; }

.course-modal {
  background: #fff;
  color: var(--text-dark);
  width: 100%;
  max-width: 780px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
}

.course-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark-muted);
}
.course-modal-close:hover { color: var(--text-dark); }

.course-modal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}
.course-modal-body .cm-tagline {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 20px;
}
.course-modal-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 28px 0 12px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}
.course-modal-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 16px 0 6px;
}
.course-modal-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 10px;
}
.course-modal-body ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
}
.course-modal-body li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 4px;
}
.course-modal-body strong { color: var(--text-dark); }

.course-modal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 13px;
}
.course-modal-table th, .course-modal-table td {
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.course-modal-table th {
  background: #f0f0f0;
  font-weight: 700;
}

@media (max-width: 600px) {
  .course-modal { padding: 28px 20px; }
}


/* Smooth crossfade for course panels */
.course-panel.active {
  opacity: 1;
  transition: opacity 0.45s ease;
}
.course-panel.course-fade-out,
.course-panel.course-fade-in {
  opacity: 0 !important;
}


/* ===== COURSE DETAILS VIEW (SAME PAGE, NO NEW FILE) ===== */
.details-page {
  display: none;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 48px 100px;
}
.details-page.active { display: block; }

.details-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  margin-bottom: 32px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}
.details-back-link:hover { gap: 12px; }

.details-header { text-align: center; margin-bottom: 48px; }
.details-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.details-content {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
}

a.course-details-btn { display: inline-block; text-decoration: none; }

@media (max-width: 600px) {
  .details-page { padding: 40px 20px 60px; }
  .details-content { padding: 28px 20px; }
}










/* =====PAGE NO. 05 REVIEWS ===== */
.reviews { background: var(--bg-light); color: var(--text-dark); padding: 80px 48px 100px; }
.reviews-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.review-stat {
  text-align: center; padding: 28px 20px;
  border: 1px solid var(--border-light); border-radius: var(--radius);
}
.review-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--green-dark); }
.review-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark-muted); margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border-light); transition: var(--transition);
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #eab308; font-size: 16px; }
.review-text { font-size: 14px; color: var(--text-dark-muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.review-highlight {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(163,230,53,0.1); color: var(--green-dark);
  padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
  margin-bottom: 18px; width: fit-content;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: #fff;
}
.review-author-info h5 { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.review-author-info span { font-size: 12px; color: var(--text-dark-muted); display: block; }

/* ===== PAGE NO. 06 CONTACT ===== */
.contact {
  background: var(--bg-dark); padding: 100px 48px;
  position: relative;
}
.contact .hero-grid-bg { opacity: 0.02; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-info-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-muted); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.contact-item-value { font-size: 15px; color: var(--text-white); margin-top: 2px; }

.advisor-card {
  margin-top: 32px; padding: 20px 24px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark); border-radius: var(--radius);
}
.advisor-status { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-white); }
.advisor-status::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.advisor-note { font-size: 13px; color: var(--text-gray); margin-top: 6px; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-gray); }
.form-input, .form-select, .form-textarea {
  background: transparent; border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text-white); font-size: 14px; font-family: var(--font-body);
  transition: var(--transition); outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-select option { background: var(--bg-dark); }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: var(--green); color: var(--bg-dark); padding: 16px 36px;
  border-radius: 50px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  transition: var(--transition); width: fit-content;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark); border-top: 1px solid var(--border-dark);
  padding: 64px 48px 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-gray); font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-brand img { height: 200px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--text-gray); text-decoration: none; font-size: 13px; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-gray); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--text-gray); font-size: 14px; text-decoration: none; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--text-white); }
.footer-batch {
  margin-top: 20px; padding: 14px 18px;
  border: 1px solid rgba(163,230,53,0.2); border-radius: var(--radius-sm);
  background: var(--green-muted);
}
.footer-batch strong { color: var(--green); font-size: 14px; display: block; }
.footer-batch span { color: var(--text-gray); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-dark); }
.footer-bottom span { color: var(--text-gray); font-size: 13px; }
.footer-bottom a { color: var(--text-gray); font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .quick-start { max-width: 500px; }
  .course-panel.active { grid-template-columns: 1fr; }
  .course-image { max-width: 500px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-socials { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu { 
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(20px); z-index: 999;
    flex-direction: column; padding: 32px 20px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--text-white); text-decoration: none; font-size: 20px; font-weight: 500; padding: 16px 0; border-bottom: 1px solid var(--border-dark); display: block; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding-right: 24px; }
  .courses, .reviews, .contact { padding: 60px 20px; }
  .course-tabs { flex-wrap: wrap; }
  .course-topics { grid-template-columns: 1fr; }
  .course-perks { grid-template-columns: 1fr; }
  .course-cta { flex-direction: column; align-items: flex-start; }
  .cta-register { margin-left: 0; width: 100%; justify-content: center; }
  .reviews-stats { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}






/* ===== PAGE 7: COMING SOON in scholarship section ===== */
.coming-soon {
  min-height: 80vh; padding: 160px 48px 100px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.coming-soon::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(163,230,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.coming-soon-inner { max-width: 640px; position: relative; z-index: 1; }
.coming-soon-inner .hero-badge { justify-content: center; }
.coming-soon-title {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); font-weight: 700;
  color: var(--text-white); line-height: 1; margin: 24px 0 24px;
}
.coming-soon-title .green { color: var(--green); }
.coming-soon-text { color: var(--text-gray); font-size: 17px; line-height: 1.7; margin-bottom: 36px; }
.coming-soon-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .coming-soon { padding: 130px 20px 70px; min-height: 60vh; }
}


/* ================================
   PAGE 8: FAQ SECTION
================================ */

.faq-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 48px;
  min-height: 80vh;
}

.faq-header {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-title span {
  color: var(--green-dark);
}

.faq-description {
  color: var(--text-dark-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(132, 204, 22, 0.35);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-muted);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--green-dark);
  color: #fff;
}

/* FAQ RESPONSIVE */

@media (max-width: 768px) {

  .faq-section {
    padding: 80px 20px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 18px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 13px;
  }

}
/* ================================
   FAQ VISUAL — floating animated bubbles
   Pure CSS/SVG animation, no video file needed.
   Sits in the top-right of the FAQ header, desktop only.
   UPDATED: layered 3D depth + subtle tilt
================================ */
.faq-section {
  position: relative;
}

.faq-visual {
  position: absolute;
  top: 40px;
  right: 48px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
  perspective: 900px;
}

.faq-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* soft pulsing ring behind the bubbles */
.faq-pulse-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: faqPulseRing 3s ease-out infinite;
}

/* the three floating "chat / FAQ" bubbles — now with layered depth shadows */
.faq-bubble {
  transform-box: fill-box;
  transform-origin: center;
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
}

.faq-bubble-1 {
  animation: faqFloat3D-a 4.5s ease-in-out infinite;
}
.faq-bubble-2 {
  animation: faqFloat3D-b 5.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.faq-bubble-3 {
  animation: faqFloat3D-c 5s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Each bubble tilts slightly differently for an organic, non-cartoonish feel */
@keyframes faqFloat3D-a {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter:
      drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06))
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10))
      drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: translateY(-12px) rotateX(5deg) rotateY(-4deg);
    filter:
      drop-shadow(0 2px 3px rgba(0, 0, 0, 0.07))
      drop-shadow(0 14px 22px rgba(0, 0, 0, 0.13))
      drop-shadow(0 26px 40px rgba(0, 0, 0, 0.10));
  }
}

@keyframes faqFloat3D-b {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter:
      drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06))
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10))
      drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: translateY(-16px) rotateX(-4deg) rotateY(5deg);
    filter:
      drop-shadow(0 2px 3px rgba(0, 0, 0, 0.07))
      drop-shadow(0 16px 24px rgba(0, 0, 0, 0.14))
      drop-shadow(0 28px 44px rgba(0, 0, 0, 0.11));
  }
}

@keyframes faqFloat3D-c {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter:
      drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06))
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10))
      drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: translateY(-10px) rotateX(4deg) rotateY(4deg);
    filter:
      drop-shadow(0 2px 3px rgba(0, 0, 0, 0.07))
      drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12))
      drop-shadow(0 22px 36px rgba(0, 0, 0, 0.09));
  }
}

@keyframes faqPulseRing {
  0%   { opacity: 0.30; transform: scale(0.8); }
  70%  { opacity: 0;    transform: scale(1.3); }
  100% { opacity: 0;    transform: scale(1.3); }
}

/* hide on smaller screens so it never overlaps or crowds the question text */
@media (max-width: 1024px) {
  .faq-visual { display: none; }
}

/* respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {
  .faq-pulse-ring,
  .faq-bubble-1,
  .faq-bubble-2,
  .faq-bubble-3 {
    animation: none;
    filter:
      drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06))
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10));
  }
}
 
/* ===== PAGE 3: ONE-TO-ONE HERO ===== */
.one-hero {
      padding: 80px 48px 60px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
      background: var(--bg-dark);
      border-bottom: 1px solid var(--border-dark);
    }
    .one-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1; }
    .one-hero h1 .green { color: var(--green); }
    .one-hero p { color: var(--text-gray); font-size: 17px; line-height: 1.7; margin: 20px 0 30px; max-width: 500px; }
    .one-hero .badge { display: inline-block; background: var(--green-muted); color: var(--green); padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
    .one-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
    .one-features li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--text-gray); font-size: 14px; }
    .one-features li::before { content: "✓"; color: var(--green); font-weight: 700; }
    .btn-demo { background: var(--green); color: var(--bg-dark); padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-block; transition: var(--transition); border: none; cursor: pointer; }
    .btn-demo:hover { background: var(--green-dark); transform: translateY(-2px); }
    /* .one-visual { background: var(--bg-card); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border-dark); text-align: center; }
    .one-visual .icon-big { font-size: 80px; margin-bottom: 10px; }
    .one-visual h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
    .one-visual p { color: var(--text-gray); font-size: 14px; }*/
    .one-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--border-dark);
  text-align: center;
  transition: var(--transition);
}
.one-visual:hover {
  border-color: rgba(163,230,53,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.one-visual-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(163,230,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}
 
.one-visual .icon-big {
  position: relative; z-index: 1;
  width: 92px; height: 92px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(163,230,53,0.16), rgba(163,230,53,0.04));
  border: 1px solid rgba(163,230,53,0.25);
  box-shadow: 0 8px 24px rgba(163,230,53,0.12);
}  
.one-visual-tag {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.one-visual h3 {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-white);
}
.one-visual p {
  position: relative; z-index: 1;
  color: var(--text-gray); font-size: 14px; line-height: 1.7;
  max-width: 320px; margin: 0 auto;
}

    /* ===== TRAINING OPTIONS ===== */
    .training-options {
      padding: 70px 48px;
      background: var(--bg-dark-2);
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
    }
    .training-card {
      background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px 24px;
      border: 1px solid var(--border-dark); transition: var(--transition);
    }
    .training-card:hover { border-color: var(--green); background: var(--green-muted); }
    .training-card .emoji { font-size: 40px; margin-bottom: 12px; }
    .training-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
    .training-card p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

/* ===== FREE DEMO TOP TOGGLE ===== */

.demo-toggle-bar {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 48px;
  background: var(--bg-dark-2);
  border-bottom: 1px solid var(--border-dark);
  z-index: 100;
}

.demo-toggle-btn {
  background: var(--green);
  color: var(--bg-dark);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.demo-toggle-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.demo-form-box {
  position: absolute;
  top: calc(100% + 10px);
  right: 48px;
  width: 390px;
  max-width: calc(100vw - 30px);
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.demo-form-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.demo-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.demo-form-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 5px;
}

.demo-form-header p {
  color: var(--text-gray);
  font-size: 13px;
  margin: 0;
}

.demo-close {
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.demo-close:hover {
  color: var(--green);
}

.demo-field {
  margin-bottom: 16px;
}

.demo-field label {
  display: block;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

.demo-field input,
.demo-field textarea,
.demo-field select {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.demo-field input:focus,
.demo-field textarea:focus,
.demo-field select:focus {
  border-color: var(--green);
}

.demo-field textarea {
  min-height: 90px;
  resize: vertical;
}

.demo-field select {
  cursor: pointer;
}

.demo-submit {
  width: 100%;
  background: var(--green);
  color: var(--bg-dark);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.demo-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}


/* ===== FREE DEMO MOBILE ===== */

@media (max-width: 600px) {

  .demo-toggle-bar {
    padding: 12px 20px;
  }

  .demo-form-box {
    right: 15px;
    width: calc(100vw - 30px);
  }

}
 

/* ===== UPGRADED CHOICE 1: GLASSMORPHISM 3D CARD ===== */
.one-visual {
  position: relative;
  overflow: hidden;
  background: rgba(22, 22, 22, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  text-align: center;
  transition: transform 0.1s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.one-visual:hover {
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(163, 230, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Pulsing Ambient Background Glow */
.one-visual-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translateX(-50%) scale(0.9); opacity: 0.6; }
  100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

/* Status Indicator Dot */
.card-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border-dark);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(163, 230, 53, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(163, 230, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}

/* Clean Graphic Icon Box */
.one-visual .icon-big {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  margin: 10px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.15), rgba(163, 230, 53, 0.02));
  border: 1px solid rgba(163, 230, 53, 0.3);
  box-shadow: 0 10px 25px rgba(163, 230, 53, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.one-visual:hover .icon-big {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--green);
}

/* Skill Pills Styling with Hover Effects */
.skill-pills-wrapper {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.skill-pill {
  background: var(--green-muted);
  border: 1px solid rgba(163, 230, 53, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.skill-pill:hover {
  background: var(--green);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(163, 230, 53, 0.3);
}

 

 

 


    /* ===== PAGE 4: CAREERS PAGE =====*/
.careers-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 48px 50px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}
.careers-hero::before {
  content: '';
  position: absolute; top: -220px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(163,230,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.careers-kicker {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted);
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 18px;
}
.careers-hero h1 {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 700;
}
.careers-hero .green { color: var(--green); }
.careers-hero p {
  position: relative; z-index: 1;
  color: var(--text-gray); font-size: 17px; max-width: 600px; margin: 16px 0 28px; line-height: 1.7;
}

.tech-pills {
  position: relative; z-index: 1;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.tech-pill {
  background: var(--green-muted);
  color: var(--green);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(163,230,53,0.18);
  transition: var(--transition);
}
.tech-pill:hover {
  background: rgba(163,230,53,0.16);
  border-color: rgba(163,230,53,0.4);
  transform: translateY(-2px);
}

.careers-grid {
  padding: 50px 48px 80px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px;
}

.career-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}
.career-card:hover {
  border-color: rgba(163,230,53,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}
.career-card-index {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--text-gray); opacity: 0.4;
}
.career-card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(163,230,53,0.16), rgba(163,230,53,0.04));
  border: 1px solid rgba(163,230,53,0.22);
  margin-bottom: 20px;
}
.career-card-category {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.career-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-white);
}
.career-card p {
  color: var(--text-gray); font-size: 14px; line-height: 1.65; margin-bottom: 18px;
}
.career-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.career-card-link span { transition: transform 0.2s ease; }
.career-card-link:hover span { transform: translateX(4px); }

/* ===== IMPROVED SHARE MENU (UI POLISH) ===== */
.share-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.share-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.share-menu-item:hover .share-menu-icon {
  background: var(--green);
  color: var(--bg-dark);
}

