/* Custom Design System for TutorFlow */

/* Custom properties for color system */
:root {
  --bg-dark: #000000;
  --bg-dark-accent: #0D1215;
  --bg-light: #FFFFFF;
  --bg-light-accent: #F6F6F6;

  --text-light: #FFFFFF;
  --text-light-secondary: rgba(255, 255, 255, 0.6);
  --text-dark: #0D1215;
  --text-dark-secondary: #525252;
  --text-dark-muted: #747474;

  --accent-green: #00BD23;
  --accent-green-hover: #00E02A;
  --accent-green-glow: rgba(0, 189, 35, 0.35);

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-badge: 'Poppins', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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


html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1,
h2 {
  text-transform: uppercase;
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--accent-green);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  border-radius: 44px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-success {
  background-color: var(--accent-green);
  color: #FFFFFF;
}

.btn-success:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--accent-green-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(0, 189, 35, 0.5);
}

.btn-outline:hover {
  background-color: rgba(0, 189, 35, 0.05);
  border-color: var(--accent-green);
  box-shadow: 0 0 15px var(--accent-green-glow);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
}

.navbar {
  max-width: 820px;
  margin: 0 auto;
  height: 59px;
  background-color: rgba(13, 18, 21, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 24px;
  transition: var(--transition-smooth);
}

.logo-img {
  height: 22px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  /* color: var(--text-light-secondary); */
  color: rgb(255 255 255);
}

.nav-links a:hover {
  color: var(--text-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn-join {
  background-color: var(--accent-green);
  color: #0D1215;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 64px;
}

.nav-actions .btn-join:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

/* Hamburger active animation into X */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent-green);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--accent-green);
}

/* Mobile Menu Drawer Overlay (Screen Backdrop) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Full Width Right Sliding Drawer */
.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: rgba(13, 18, 21, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8), -2px 0 20px rgba(0, 189, 35, 0.12);
  box-sizing: border-box;
}

.mobile-menu-overlay.active .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(0, 189, 35, 0.15);
  color: var(--accent-green);
  border-color: rgba(0, 189, 35, 0.4);
  transform: scale(1.05);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0;
}

.mobile-nav-links li a {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
  padding: 10px 16px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:focus {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--accent-green);
  padding-left: 20px;
}

.mobile-menu-footer .btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 160px;
  text-align: center;
  background-color: #000509;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  /* height: 500px; */
  height: 100%;
  background-image: url('assets/hero_bottom_bg.jpg');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}


.hero-container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 100%;
}

.academy-badge {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #44A332;
}

.badge-text {
  font-family: var(--font-badge);
  font-size: 14px;
  font-weight: 500;
  color: #A5A5A5;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-family: var(--font-title);
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.hero-subtitle {
  position: relative;
  z-index: 10;
  font-family: var(--font-body);
  font-size: 15px;
  max-width: 680px;
  margin: 0 auto 36px;
  color: #A5A5A5;
  line-height: 1.6;
}

.hero-ctas {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-ctas .btn {
  border-radius: 44px;
  padding: 14px 32px;
}

.hero-ctas .btn-success,
.cta-buttons .btn-success {
  display: flex;
  width: 186px;
  height: 56px;
  padding: 18px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: linear-gradient(90deg, #5FEC61 0%, #008402 100%);
  box-shadow: 0 2px 0 0 rgba(255, 240, 240, 0.70) inset;
}

.hero-ctas .btn-outline,
.cta-buttons .btn-outline {
  display: flex;
  height: 56px;
  padding: 18px 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid rgba(245, 190, 9, 0.20);
  background: linear-gradient(180deg, rgba(234, 233, 237, 0.00) 0%, rgba(234, 233, 237, 0.06) 100%), rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 1px 0 rgba(255, 255, 255, 0.45) inset, 0 -4px 12px 0 rgba(246, 200, 26, 0.25) inset;
  color: #FFFFFF;
}




.arrow {
  margin-left: 6px;
}

/* Floating Elements (Hero) */
.floating-students {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.student-avatars {
  display: flex;
}

.student-avatars .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #000000;
  margin-left: -12px;
  object-fit: cover;
}

.student-avatars .avatar:first-child {
  margin-left: 0;
}

.student-count-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.floating-security-card {
  position: absolute;
  bottom: 40px;
  right: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
  text-align: left;
}

.floating-security-card .security-stat {
  display: flex;
  flex-direction: column;
}

.floating-security-card .stat-num {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
}

.floating-security-card .stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: #8E8D90;
}

.hero-coin-container {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.golden-coin {
  width: 350px;
  height: 350px;
  filter: drop-shadow(0 20px 50px rgba(0, 189, 35, 0.15));
  animation: floatCoin 6s ease-in-out infinite;
}


/* Why Us Section */
.why-us-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 37px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-light-secondary);

}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  background-color: #16161A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.why-card:hover {
  background-color: #1C1C22;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.why-card h3 {
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #A5A5A5;
}

.callout-card {
  background-color: var(--bg-light);
  color: var(--bg-dark);
  border: none;
  border-radius: 20px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.callout-card:hover {
  background-color: var(--bg-light);
  transform: none;
}

.callout-image-wrapper {
  width: 100%;
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}

.callout-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.callout-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.callout-content h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
  max-width: 300px;
}

.callout-content .btn-success {
  background-color: #00BD23;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.callout-content .btn-success:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 189, 35, 0.3);
}


/* Empower Section (Alternate Light Background) */
.empower-section {
  padding: 120px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.empower-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.empower-title {
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #0D1215;
  margin-bottom: 30px;
}

.empower-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 80px;
  max-width: 800px;
}

.stats-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}

.stat-card {
  border-left: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1;
}


.stat-description {
  font-size: 14px;
  color: var(--text-dark-muted);
}

/* Skills Showcase Section */
.skills-showcase-section {
  position: relative;
  padding: 120px 0 0;
  background: url(images/bg-1.png);
  background-color: #000;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}


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

.showcase-header h2 {
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.showcase-header p {
  font-size: 16px;
  color: var(--text-light-secondary);
}

.skills-stack-container {
  position: relative;
  width: 100%;
  max-width: 670px;
  margin: 60px auto 0;
  /* padding-bottom: 60px; */
}

.skill-stack-card {
  position: sticky;
  top: 160px;
  width: 100%;
  max-width: 670px;
  min-height: 340px;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto 60px auto;
  /* centered inside block container */
  transform-origin: center top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}


/* Dynamic Z-indexing, Colors, and Rotations to create a fanned figma card pile */
.skill-stack-card.card-1 {
  background-color: #FFFFFF;
  color: #0D1215;
  transform: rotate(1deg);
  z-index: 1;
}

.skill-stack-card.card-1 h3 {
  color: #0D1215;
}

.skill-stack-card.card-1 p {
  color: #525252;
}

.skill-stack-card.card-2 {
  background-color: #A9ED44;
  /* Premium lime green from mockup */
  color: #0D1215;
  transform: rotate(-3deg);
  z-index: 2;
}

.skill-stack-card.card-2 h3 {
  color: #0D1215;
}

.skill-stack-card.card-2 p {
  color: #2B3814;
}

.skill-stack-card.card-3 {
  background-color: #16161A;
  color: #FFFFFF;
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.skill-stack-card.card-3 h3 {
  color: #FFFFFF;
}

.skill-stack-card.card-3 p {
  color: #A5A5A5;
}

.skill-stack-card.card-4 {
  background-color: #EFEFEF;
  color: #0D1215;
  transform: rotate(-1.5deg);
  z-index: 4;
}

.skill-stack-card.card-4 h3 {
  color: #0D1215;
}

.skill-stack-card.card-4 p {
  color: #525252;
}

.skill-stack-card.card-5 {
  background-color: #FFFFFF;
  color: #0D1215;
  transform: rotate(2.5deg);
  z-index: 5;
}

.skill-stack-card.card-5 h3 {
  color: #0D1215;
}

.skill-stack-card.card-5 p {
  color: #525252;
}

.skill-stack-card.card-6 {
  background-color: #A9ED44;
  color: #0D1215;
  transform: rotate(-2deg);
  z-index: 6;
}

.skill-stack-card.card-6 h3 {
  color: #0D1215;
}

.skill-stack-card.card-6 p {
  color: #2B3814;
}

.skill-stack-card.card-7 {
  background-color: #16161A;
  color: #FFFFFF;
  transform: rotate(1.5deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 7;
}

.skill-stack-card.card-7 h3 {
  color: #FFFFFF;
}

.skill-stack-card.card-7 p {
  color: #A5A5A5;
}

.skill-stack-card.card-8 {
  background-color: #EFEFEF;
  color: #0D1215;
  transform: rotate(-1deg);
  z-index: 8;
}

.skill-stack-card.card-8 h3 {
  color: #0D1215;
}

.skill-stack-card.card-8 p {
  color: #525252;
}



.card-num-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #00BD23;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.card-num {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

.skill-stack-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: #0D1215;
  margin-bottom: 16px;
  line-height: 1.25;
}

.skill-stack-card p {
  font-family: var(--font-body);
  font-size: 17px;
  color: #525252;
  line-height: 1.5;
}


/* Process Section */
.process-section {
  padding: 100px 0 30px;
  background-color: #000000;
  /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.step-card {
  background-color: #16161A;
  border: 1.5px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  transition: var(--transition-smooth);
  text-align: left;
}

.step-card:hover {
  background: linear-gradient(180deg, #0A4315 0%, #041B08 100%);
  border-color: rgba(0, 189, 35, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.step-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A5A5A5;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-box {
  background: linear-gradient(135deg, #5FEC61 0%, #008402 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 189, 35, 0.25);
}

.step-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #8E8D90;
  transition: var(--transition-smooth);
}

.step-card:hover .step-tag {
  color: #FFFFFF;
  font-weight: 700;
}


.step-card h3 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #FFFFFF;
  margin-top: auto;
}


/* Programs Section */
.programs-section {
  position: relative;
  padding: 120px 0 200px;
  background: url(images/bg-2.png);
  background-color: var(--bg-dark);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.programs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.mini-badge {
  margin-bottom: 16px;
  border: 1.5px solid rgb(20 20 20 / 7%);
}

.programs-header h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

.programs-header p {
  font-size: 15px;
  color: var(--text-light-secondary);
}

.programs-wrapper-card {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #131315;
  border: 1.5px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.program-column {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1.5px solid rgba(255, 255, 255, 0.04);
  text-align: left;
}

.program-column:last-child {
  border-right: none;
}

.program-column.highlighted {
  background: radial-gradient(circle at center, rgba(0, 189, 35, 0.15) 0%, transparent 80%), rgba(255, 255, 255, 0.01);
  border-left: 1.5px solid rgba(0, 189, 35, 0.15);
  border-right: 1.5px solid rgba(0, 189, 35, 0.15);
}

.program-column-header h3 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.program-column-header p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #A5A5A5;
  line-height: 1.5;
  margin-bottom: 32px;
}

.program-column-body h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.includes-list {
  list-style: none;
  margin-bottom: 40px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.includes-list li span {
  font-family: var(--font-body);
  font-size: 15px;
  color: #C4C4C4;
}

.includes-list .check-icon {
  flex-shrink: 0;
  stroke: #FFFFFF;
  opacity: 0.8;
}

.btn-outline-enroll {
  display: flex;
  width: 100%;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.btn-outline-enroll:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

.btn-success-enroll {
  display: flex;
  width: 100%;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: linear-gradient(90deg, #5FEC61 0%, #008402 100%);
  box-shadow: 0 2px 0 0 rgba(255, 240, 240, 0.70) inset;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-success-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 189, 35, 0.35);
}


.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Testimonials Section (Alternate Light Background) */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
  color: #0D1215;
}

.testimonials-header p {
  font-size: 16px;
  color: var(--text-dark-secondary);
}

.testimonials-marquee-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
  height: 650px;
  overflow: hidden;
}

/* Seamless gradient overlays for the scroll mask */
.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-marquee-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-marquee-wrapper::after {
  bottom: 0;
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
}

.track-up {
  animation: marquee-up 35s linear infinite;
}

.track-down {
  animation: marquee-down 35s linear infinite;
}

/* Pause scroll animation on hover to allow reading card feedback */
.testimonials-marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 12px));
  }

  /* adjusts half the gap */
}

@keyframes marquee-down {
  0% {
    transform: translateY(calc(-50% - 12px));
  }

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

.testimonial-card {
  background-color: #F6F6F6;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.testimonial-card p.quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #0D1215;
  font-weight: 500;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #0D1215;
  margin: 0 0 2px 0;
}

.author-info span {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8E8D90;
}




/* Mentors Section (Alternate Light Background) */
.mentors-section {
  display: none;
  padding: 0px 0 100px;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.mentors-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.mentors-header h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
  color: #0D1215;
}

.mentors-header p {
  font-size: 18px;
  color: var(--text-dark-secondary);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mentor-card {
  background-color: #F6F6F6;
  color: #0D1215;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
  min-height: 172px;
}

.mentor-card:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: #000000;
}

.mentor-img-wrapper {
  width: 140px;
  height: 140px;
  background-color: #D2D2D2;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.mentor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.mentor-card:hover .mentor-img {
  transform: scale(1.05);
}

.mentor-details {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.mentor-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: #0D1215;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.mentor-card:hover h3 {
  color: #FFFFFF;
}

.mentor-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: #8E8D90;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.mentor-card:hover .mentor-role {
  color: #A5A5A5;
}

.mentor-meta {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  color: #8E8D90;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mentor-card:hover .mentor-meta {
  max-height: 60px;
  opacity: 0.7;
  margin-top: 12px;
  color: #FFFFFF;
}


/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 5px;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.accordion-item:first-child {
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #16161A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: var(--transition-fast);
  color: #FFFFFF;
  flex-shrink: 0;
}

.accordion-icon svg {
  transition: transform 0.3s ease;
}

.accordion-trigger:hover .accordion-icon {
  background-color: #222226;
  border-color: rgba(255, 255, 255, 0.15);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon svg {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
  padding-top: 16px;
}

.accordion-body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #A5A5A5;
  line-height: 1.6;
}



/* CTA Section */
.cta-section {
  padding: 100px 0 0 0;
  background-color: #000509;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-image: url(assets/hero_bottom_bg.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.cta-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 189, 35, 0.28) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
}

.cta-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content-wrapper h2 {
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1.1;
  margin: 24px 0 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cta-content-wrapper p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 680px;
  color: #A5A5A5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.cta-coin-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: 20px;
  z-index: 2;
}

.cta-coin {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 189, 35, 0.15));
  animation: floatCoin 6s ease-in-out infinite;
}

@keyframes floatCoin {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

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

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}


/* Footer Section */
.footer {
  background-color: #000000;
  padding: 100px 0 60px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  max-width: 360px;
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-family: var(--font-body);
  font-size: 15px;
  color: #8E8D90;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #8E8D90;
  margin: 0;
}

.footer-disclaimer {
  margin-top: 15px;
}

.footer-disclaimer p {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.6;
  color: #525252;
  text-align: left;
  margin: 0;
}


/* Motion Design & Scroll Reveal System */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  transform: none;
}

.reveal-slide-up {
  transform: translateY(30px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-active {
  opacity: 1;
  transform: none;
}

/* Responsiveness (Media Queries) */
@media (max-width: 1200px) {
  .floating-students {
    left: 20px;
  }

  .floating-security-card {
    right: 20px;
  }
}

@media (max-width: 1199px) {
  .why-grid {
    gap: 16px;
  }

  .why-card {
    padding: 28px 22px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .callout-card {
    padding: 36px 24px;
  }

  .callout-content h3 {
    font-size: 20px;
    max-width: 100%;
  }

  .stats-showcase {
    gap: 30px;
  }

  .stat-number {
    font-size: 40px;
  }

  .skill-stack-card {
    top: 140px;
    padding: 40px;
    min-height: 320px;
  }

  .skill-stack-card h3 {
    font-size: 28px;
  }

  .cta-content-wrapper h2 {
    font-size: 44px;
  }

  .cta-coin {
    width: 350px;
  }
}

@media (max-width: 991px) {

  .hero-section {
    height: auto;
    min-height: 700px;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 38px;
  }

  .golden-coin {
    width: 340px;
    height: 340px;
  }

  .section-title,
  .empower-content h2,
  .showcase-header h2,
  .programs-header h2,
  .testimonials-header h2,
  .mentors-header h2,
  .faq-header h2 {
    font-size: 28px;
  }

  .hero-title {
    font-size: 42px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .callout-card {
    grid-column: span 2;
    order: -1;
    padding: 36px 28px;
  }

  .callout-content h3 {
    font-size: 22px;
    max-width: 500px;
  }

  .why-card {
    padding: 28px 22px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .stat-number {
    font-size: 38px;
  }

  .empower-subtitle {
    margin-bottom: 50px;
  }

  .skill-stack-card {
    top: 120px;
    padding: 36px 30px;
    min-height: 290px;
    margin-bottom: 50px;
  }

  .cta-section {
    padding: 80px 0 0 0;
  }

  .cta-content-wrapper h2 {
    font-size: 38px;
  }

  .cta-content-wrapper p {
    font-size: 15px;
    max-width: 580px;
    margin-bottom: 32px;
  }

  .cta-buttons {
    margin-bottom: 40px;
  }

  .cta-coin {
    width: 290px;
  }

  .skill-stack-card {
    top: 120px;
    padding: 36px 30px;
    min-height: 290px;
    margin-bottom: 50px;
  }

  .skill-stack-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .skill-stack-card p {
    font-size: 15.5px;
  }

  .card-num-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .card-num {
    font-size: 20px;
  }

  .empower-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .program-column {
    border-right: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.04);
    padding: 40px 24px;
  }

  .program-column:last-child {
    border-bottom: none;
  }

  .program-column.highlighted {
    border-left: none;
    border-right: none;
    border-top: 1.5px solid rgba(0, 189, 35, 0.15);
    border-bottom: 1.5px solid rgba(0, 189, 35, 0.15);
  }

  .testimonials-marquee-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }

  .testimonials-marquee-wrapper::before,
  .testimonials-marquee-wrapper::after {
    display: none;
  }

  .testimonial-column {
    height: auto;
  }

  .marquee-track {
    animation: none !important;
  }

  .testimonial-column .testimonial-card:nth-child(n+3) {
    display: none;
  }


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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-coin {
    width: 280px;
  }


  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .empower-title {
    font-size: 28px;
  }

  .why-us-section,
  .empower-section {
    padding: 85px 0;
  }

  .navbar {
    max-width: 100%;
    border-radius: 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-container {
    height: auto;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
    padding: 0 8px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .floating-students {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    margin: 0 auto 24px;
    justify-content: center;
    width: fit-content;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-coin-container {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 auto 24px;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    z-index: 2;
  }

  .hero-coin-container .golden-coin {
    width: 220px;
    height: 220px;
  }

  .floating-security-card {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 0 auto;
    justify-content: center;
    gap: 24px;
    padding: 12px 20px;
    width: fit-content;
    max-width: 100%;
    transform: none !important;
    opacity: 1 !important;
  }


  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-column {
    gap: 16px;
  }

  .callout-card {
    grid-column: span 1;
    order: -1;
    padding: 32px 20px;
  }

  .callout-image-wrapper {
    height: 140px;
  }

  .callout-content {
    gap: 16px;
  }

  .callout-content h3 {
    font-size: 20px;
    max-width: 100%;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .card-icon-wrapper {
    margin-bottom: 16px;
  }

  .why-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-description {
    font-size: 13px;
  }

  .empower-subtitle {
    margin-bottom: 40px;
  }

  .skills-stack-container {
    margin-top: 40px;
  }

  .skill-stack-card {
    top: 95px;
    padding: 28px 22px;
    border-radius: 24px;
    min-height: 250px;
    margin-bottom: 36px;
  }

  .skill-stack-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .skill-stack-card p {
    font-size: 14.5px;
  }

  .card-num-wrapper {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .card-num {
    font-size: 18px;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .step-card {
    padding: 18px 14px;
    min-height: 150px;
  }

  .step-top {
    margin-bottom: 14px;
  }

  .step-icon-box {
    width: 36px;
    height: 36px;
  }

  .step-card h3 {
    font-size: 14px;
  }

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

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(22, 22, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #000000;
  border-color: rgba(0, 189, 35, 0.45);
  box-shadow: 0 8px 32px rgba(0, 189, 35, 0.2);
  color: #5FEC61;
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }

  .programs-section {

    padding: 50px 0 100px;
  }

  .testimonials-section {
    padding: 80px 0;
  }

  .mentors-header h2 br {
    display: none;
  }

  .testimonials-header {
    margin-bottom: 0;
  }

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

  .accordion-item {
    padding: 20px 0;
  }

  .accordion-trigger {
    font-size: 15px;
  }

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

  .cta-content-wrapper h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 16px 0 12px;
  }

  .cta-content-wrapper p {
    font-size: 14px;
    margin-bottom: 28px;
    padding: 0 12px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }

  .cta-coin {
    width: 220px;
  }

  .cta-glow {
    width: 350px;
    height: 250px;
    bottom: -80px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13.5px;
  }

  .hero-ctas .btn {
    max-width: 280px;
    font-size: 14px;
  }

  .hero-coin-container .golden-coin {
    width: 180px;
    height: 180px;
  }

  .floating-security-card {
    gap: 16px;
    padding: 10px 16px;
  }

  .floating-security-card .stat-num {
    font-size: 16px;
  }

  .floating-security-card .stat-label {
    font-size: 11px;
  }

  .why-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .callout-card {
    padding: 24px 16px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 13.5px;
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-description {
    font-size: 12.5px;
  }

  .skill-stack-card {
    top: 85px;
    padding: 22px 18px;
    border-radius: 20px;
    min-height: 220px;
    margin-bottom: 28px;
  }

  .skill-stack-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .skill-stack-card p {
    font-size: 13.5px;
  }

  .card-num-wrapper {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .card-num {
    font-size: 16px;
  }

  .skill-stack-card.card-1 {
    transform: rotate(0.5deg);
  }

  .skill-stack-card.card-2 {
    transform: rotate(-1deg);
  }

  .skill-stack-card.card-3 {
    transform: rotate(1deg);
  }

  .skill-stack-card.card-4 {
    transform: rotate(-0.8deg);
  }

  .skill-stack-card.card-5 {
    transform: rotate(1.2deg);
  }

  .skill-stack-card.card-6 {
    transform: rotate(-1deg);
  }

  .skill-stack-card.card-7 {
    transform: rotate(0.8deg);
  }

  .skill-stack-card.card-8 {
    transform: rotate(-0.5deg);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .step-card {
    padding: 14px 12px;
    min-height: 135px;
  }

  .step-card h3 {
    font-size: 13px;
  }

  .step-tag {
    font-size: 12px;
  }

  .cta-section {
    padding: 50px 0 0 0;
  }

  .cta-content-wrapper h2 {
    font-size: 24px;
  }

  .cta-content-wrapper p {
    font-size: 13.5px;
    padding: 0 8px;
  }

  .cta-buttons .btn {
    max-width: 280px;
    padding: 12px 24px;
    font-size: 14px;
  }

  .cta-coin {
    width: 180px;
  }

  .cta-glow {
    width: 280px;
    height: 200px;
  }
}