:root {
  --primary: #00ed64;
  --bg: #001620;
  --card: #112d3a;
  --text: #cae7f8;
  --muted: #bacbb7;

  /* FONT SYSTEM */
  --font-headline: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-label: "Space Grotesk", sans-serif;
}

/* BASE */
body {
  margin: 0;
  background: #001620;
  color: #cae7f8;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-headline);
  font-weight: 800;
}

.section-label,
.tag,
.meta,
.stat-item p,
.top-bar {
  font-family: var(--font-label);
  letter-spacing: 2px;
}

/* TOP BAR */
.top-bar {
  background: #00ed64;
  color: #003912;
  text-align: center;
  font-size: 11px;
  padding: 6px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* NAVBAR */
.custom-navbar {
  position: sticky;
  background: rgba(0, 22, 32, 0.85);
  backdrop-filter: blur(20px);
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

/* LOGO */
.logo-img {
  height: auto;
  width: 250px;
  object-fit: contain;
  display: block;
}

/* CENTER NAV */
.nav-center {
  gap: 40px;
}

.nav-center a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-headline);
  font-weight: 700;
}

.nav-center .active {
  color: #00ed64;
  border-bottom: 2px solid #00ed64;
  padding-bottom: 4px;
}

/* RIGHT BUTTONS */
.nav-right {
  gap: 15px;
}

.btn-join {
  background: #00ed64;
  color: #003912;
  padding: 10px 30px;
  border: none;
  font-weight: bold;
  margin-right: 15px;
}

/* PROGRAM DROPDOWN */

.program-dropdown {
  position: relative;
  padding-bottom: 20px; /* creates hover bridge */
}

.program-dropdown-menu {
  position: absolute;
  top: 40px;
  left: -150px;
  width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;

  /* animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.program-dropdown:hover .program-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.program-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 12px;
  color: #1e2a3a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.program-dropdown-menu a:hover {
  background: #f5f7fb;
}

.program-dropdown-menu img {
  width: 28px;
  height: 28px;
}

/* COMPANY DROPDOWN */

.company-dropdown {
  position: relative;
  padding-bottom: 20px;
}

.company-dropdown-menu {
  position: absolute;
  top: 40px;
  left: -80px;
  width: 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;

  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.company-dropdown:hover .company-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.company-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1e2a3a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.company-dropdown-menu a:hover {
  background: #f5f7fb;
}

.company-dropdown-menu img {
  width: 24px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px 120px;
  position: relative;
}

/* GLOW EFFECT */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(160px);
  border-radius: 50%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* SWITCHER CONTAINER */
.switcher {
  display: inline-flex;
  background: rgba(0, 30, 43, 0.8);
  border: 1px solid #1d3846;
  padding: 5px;
  border-radius: 10px;
  gap: 5px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

/* BUTTON BASE */
.switch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-family: "Space Grotesk";
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

/* ICON */
.switch-btn span img {
  width: 16px;
  height: 16px;
}

/* INACTIVE */
.switch-btn.inactive {
  color: #8aa3b0;
  background: transparent;
}

/* ACTIVE */
.switch-btn.active {
  background: linear-gradient(90deg, #00ed64, #00c853);
  color: #001620;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

/* HOVER */
.switch-btn.inactive:hover {
  color: white;
}

/* HERO TEXT */
.hero h1 {
  font-size: 80px;
  font-family: var(--font-headline);
  font-weight: 800;
}

.hero h1 span {
  color: #00ed64;
}

.hero p {
  color: #9ca3af;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  margin-top: 20px;
}

/* BUTTONS */
.hero-btns {
  margin-top: 40px;
}

.btn-main {
  background: #00ed64;
  color: #003912;
  padding: 14px 40px;
  border: none;
  font-weight: bold;
  margin-right: 15px;
  box-shadow: 0 0 30px rgba(0, 237, 100, 0.3);
}

.btn-outline {
  border: 1px solid #3b4b3b;
  color: white;
  padding: 14px 40px;
  background: transparent;
}

/* STATS SECTION */
.stats {
  margin-top: 120px;
  padding: 60px 0;
  border-top: 1px solid #0b2a36;
  border-bottom: 1px solid #0b2a36;
}

.stat-item {
  position: relative;
  padding: 20px 10px;
  transition: 0.3s ease;
}

/* Divider Line */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #00ed64, transparent);
}

/* Numbers */
.stat-item h3 {
  color: #00ed64;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  transition: 0.3s;
}

/* Text */
.stat-item p {
  color: #8aa3b0;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Hover Effect */
.stat-item:hover h3 {
  transform: translateY(-5px);
  text-shadow: 0 0 15px rgba(0, 237, 100, 0.6);
}

.stat-item:hover {
  background: rgba(0, 237, 100, 0.03);
  border-radius: 8px;
}
.btn-main,
.btn-outline,
.btn-login,
.btn-join {
  font-family: var(--font-headline);
  font-weight: 700;
}

/* PARTNERS SECTION */

.partners-section {
  padding: 50px 0;
  background: linear-gradient(to bottom, transparent, #001e2b, transparent);
  border-top: 1px solid #0b2a36;
  border-bottom: 1px solid #0b2a36;
  overflow: hidden;
}

.partners-wrapper {
  text-align: center;
}

.partners-label {
  color: #00ed64;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.partners-slider {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
  min-width: 100%;
}

/* Scroll Animation */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}
.partner {
  color: #8aa3b0;
  font-weight: 700;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.3s;
  white-space: nowrap;
}

.partner:hover {
  color: white;
  opacity: 1;
  transform: scale(1.05);
}

/* Scroll Animation */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* WHO SECTION */
.who-section {
  padding: 140px 0;
  background: #001620;
  position: relative;
}

/* Header */
.who-header {
  margin-bottom: 40px;
}

.who-badge {
  background: rgba(0, 237, 100, 0.1);
  color: #00ed64;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.who-main-title {
  font-size: 48px;
  color: white;
  font-weight: 800;
}

.who-main-title span {
  color: #00ed64;
}

/* Content */

.who-label {
  color: #00ed64;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.who-title {
  font-size: 34px;
  color: white;
  margin-bottom: 20px;
}

.who-text {
  color: #8aa3b0;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Image */

.who-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1d3846;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.who-image:hover img {
  transform: scale(1.05);
}

/* Stats */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-box {
  background: #0b2a36;
  padding: 25px;
  border-radius: 12px;
  border-left: 3px solid #00ed64;
  transition: 0.3s;
  text-align: center;
}

.stat-box.large {
  grid-column: span 1;
}

.stat-box h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 5px;
}

.stat-box p {
  color: #00ed64;
  font-size: 11px;
  letter-spacing: 2px;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.2);
}

/* Responsive */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .who-main-title {
    font-size: 36px;
  }
}

/* SERVICES */
/* SERVICES */

.services-section {
  padding: 120px 0;
  background: #001620;
}

/* CARD */

.service-card {
  background: #112d3a;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  height: 100%;
}

/* Image container */

.service-img {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s;
}

/* Content */

.service-content {
  padding: 30px;
  background: linear-gradient(to bottom, #112d3a, #001620);
}

/* Title */

.service-card h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Link */

.service-card a {
  color: #00ed64;
  font-weight: 600;
  text-decoration: none;
}

/* Hover effects */

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Bottom glow line */

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ed64, transparent);
}

/* Hover glow */

.service-card:hover::after {
  height: 4px;
}

/*Program SECTION */
.featured-section {
  padding: 100px 0;
  background: #001e2b;
}

/* HEADER */
.section-label {
  color: #00ed64;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: bold;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  color: white;
}

.see-all {
  color: #00ed64;
  cursor: pointer;
  text-decoration: none;
}

/* CARD BASE */
.program-card {
  position: relative;
  overflow: hidden;
  background: #112d3a;
  height: 100%;
}

/* IMAGE */
.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* OVERLAY */
.program-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #001620, rgba(0, 0, 0, 0.2));
}

/* CONTENT */
.program-card .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  max-width: 80%;
}

/* BIG CARD */
.big-card {
  height: 500px;
}

/* SMALL CARD */
.small-card {
  height: 240px;
}

/* TEXT */
.program-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.program-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.program-card p {
  color: #9ca3af;
  font-size: 14px;
}

/* TAG */
.tag {
  background: #00ed64;
  color: #003912;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

/* META */
.meta {
  color: #00ed64;
  font-size: 12px;
  font-weight: bold;
}

/* BUTTON */
.btn-enroll {
  background: white;
  color: #001620;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  margin-top: 10px;
}

/* HOVER EFFECT */
.program-card:hover img {
  transform: scale(1.1);
}

.program-card h3,
.program-card h4 {
  font-family: var(--font-headline);
}

.program-card p {
  font-family: var(--font-body);
}

/* SECTION */
.workshop-section {
  padding: 100px 0;
  background: #001620;
}

/* HEADER */
.section-label {
  font-family: "Space Grotesk";
  color: #8aa3b0;
  font-size: 12px;
  letter-spacing: 3px;
}

.section-title {
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  font-weight: 800;
  color: white;
}

/* CARD */
.workshop-card {
  background: #112d3a;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: 0.3s;
}

/* TOP */
.workshop-card .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* ICON */
.icon-box {
  width: 45px;
  height: 45px;
  background: #1d3846;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.icon-box span {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box span img {
  width: 30px;
  height: 30px;
}

/* COLORS */
.green span {
  color: #00ed64;
}
.blue span {
  color: #8ab4ff;
}
.yellow span {
  color: #ffc373;
}

/* TIME */
.time span {
  font-size: 12px;
  color: #8aa3b0;
  font-family: "Space Grotesk";
}

.time h6 {
  color: white;
  font-weight: bold;
}

/* TEXT */
.workshop-card h4 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  margin-bottom: 10px;
}

.workshop-card p {
  color: #8aa3b0;
  font-size: 14px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-outline-card {
  width: 100%;
  padding: 12px;
  border: 1px solid #3b4b3b;
  background: transparent;
  color: white;
  font-weight: bold;
}

/* BORDER COLORS */
.border-green {
  border-bottom: 4px solid #00ed64;
}

.border-blue {
  border-bottom: 4px solid #8ab4ff;
}

.border-yellow {
  border-bottom: 4px solid #ffc373;
}

/* HOVER */
.workshop-card:hover {
  transform: translateY(-8px);
}

/* FOOTER */
.footer-section {
  background: #001620;
  padding: 80px 0 40px;
}

/* TOP LINE */
.footer-line {
  height: 1px;
  background: #1d3846;
  width: 100%;
}

/* LOGO */
.footer-logo {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  color: white;
}

/* TEXT */
.footer-text {
  color: #8aa3b0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
}

/* HEADINGS */
.footer-heading {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  color: #8aa3b0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.footer-links li:hover {
  color: #00ed64;
}

/* ICONS */
.footer-icons {
  display: flex;
  gap: 12px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #112d3a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.icon-box span {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOVER EFFECT */
.icon-box:hover {
  background: #00ed64;
}

.icon-box:hover span {
  color: #001620;
}

/* COPYRIGHT */
.footer-copy {
  color: #8aa3b0;
  font-size: 14px;
}

/* Program Page Css */

/* Hero */

/* ================================= */
/* PROGRAM HERO */
/* ================================= */

.program-hero {
  padding: 180px 0 120px;
  position: relative;
  background: linear-gradient(180deg, #001620 0%, #001e2b 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(180px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-eyebrow {
  color: #00ed64;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin-top: 20px;
}

.hero-title span {
  color: #00ed64;
}

.hero-subtitle {
  color: #8aa3b0;
  font-size: 18px;
  max-width: 600px;
  margin-top: 20px;
}

/* ================================= */
/* FILTER BAR */
/* ================================= */

.filter-wrapper {
  background: #0b222c;
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #8aa3b0;
  font-weight: 600;
  transition: 0.3s;
}

.filter-btn:hover {
  color: white;
}

.filter-btn.active {
  background: #00ed64;
  color: #001620;
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

/* ================================= */
/* PROGRAM CARD */
/* ================================= */

.program-card {
  background: #112d3a;
  padding: 40px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 237, 100, 0.05),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-12px);
  border-color: #00ed64;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.program-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.program-card p {
  color: #8aa3b0;
}

/* ICON */

.program-icon {
  width: 50px;
  height: 50px;
  background: #0b222c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CTA */

.program-link {
  color: #00ed64;
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
}

.program-link:hover {
  color: white;
}

/* animation */

.program-item {
  transition: 0.4s;
}
/* Section */

.section-padding {
  padding: 80px 0;
}

/* Filter Pills */

.filter-wrapper {
  background: #0b222c;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #bacbb7;
  font-weight: 600;
  transition: 0.3s;
}

.filter-btn.active {
  background: #00ed64;
  color: #002108;
}

/* Cards */

.program-card {
  background: #172d37;
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: #00ed64;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.program-icon {
  background: #223742;
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
}

.program-duration {
  background: rgba(0, 237, 100, 0.1);
  color: #00ed64;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.program-title {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.program-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
}

/* Stats */

.stats-section {
  background: #001019;
  padding: 100px 0;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #00ed64;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8aa3b0;
}

.program-item {
  transition: 0.3s;
}

/* Workshop Page Css */

/* ============================= */
/* WORKSHOP HERO */
/* ============================= */

.workshop-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #001620 0%, #001e2b 100%);
}

.workshop-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #001620,
    rgba(0, 22, 32, 0.7),
    transparent
  );
}

/* Glow Effect */

.workshop-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(160px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ============================= */
/* WORKSHOP CARD */
/* ============================= */

/* Workshop Card */

.workshop-card {
  background: #0b222c;
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.workshop-card:hover {
  transform: translateY(-8px);
  background: #172d37;
  border-color: #00ed64;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Image */

.workshop-img {
  width: 100%;
  height: 320px;
  object-fit: fill;
  border-radius: 16px;
}

/* Content */

.workshop-content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .workshop-content {
    padding-left: 0;
  }
}

/* Badge */

.live-badge {
  background: rgba(0, 237, 100, 0.15);
  color: #00ed64;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Title */

.workshop-card h3 {
  font-weight: 700;
}

/* Subtitle */

.workshop-subtitle {
  color: #00ed64;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */

.workshop-desc {
  color: #8aa3b0;
  line-height: 1.6;
}

/* Meta */

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 10px;
  color: #8aa3b0;
  font-size: 14px;
}

/* Features */

.workshop-features {
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workshop-features span {
  background: #112d3a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #8aa3b0;
}

/* Button */

.btn-primary-custom {
  background: linear-gradient(90deg, #00ed64, #00c853);
  border: none;
  color: #002108;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

.workshop-filter {
  background: #0b222c;
  padding: 12px;
  border-radius: 50px;
  display: inline-flex;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #8aa3b0;
  transition: 0.3s;
}

.filter-btn.active {
  background: #00ed64;
  color: #001620;
}

/* Event page css */
/* Events Specific Styles */
.page-hero {
  padding: 150px 20px 80px;
  background: #001620;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 195, 115, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-title {
  font-size: 60px;
  font-family: var(--font-headline);
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.page-title span {
  color: #ffc373;
}

.page-subtitle {
  color: #9ca3af;
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

/* Event Items */
.events-list-section {
  padding: 50px 0 100px;
}

.event-item {
  display: flex;
  align-items: center;
  background: #112d3a;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 4px solid #ffc373;
  transition: transform 0.3s;
}

.event-item:hover {
  transform: translateX(10px);
}

.event-date {
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid #1d3846;
  min-width: 120px;
}

.event-date h3 {
  font-size: 48px;
  color: #ffc373;
  margin: 0;
  line-height: 1;
}

.event-date span {
  font-family: var(--font-label);
  color: #8aa3b0;
  letter-spacing: 2px;
  font-size: 14px;
}

.event-details {
  padding: 0 30px;
  flex: 1;
}

.event-details h4 {
  font-size: 24px;
  color: white;
}

.event-details p {
  color: #8aa3b0;
  margin: 0;
  font-size: 15px;
}

.event-action {
  min-width: 150px;
  text-align: right;
}

/* Mobile Nav Structure */
.mobile-toggle {
  background: transparent;
  border: 1px solid #1d3846;
  border-radius: 8px;
  color: #00ed64;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 22, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid #1d3846;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 0;
  font-family: var(--font-headline);
  border-bottom: 1px solid #112d3a;
}

.mobile-nav a.active {
  color: #00ed64;
}

.click-animate {
  transition: transform 0.1s ease-in-out;
}
.click-animate:active {
  transform: scale(0.95);
}

.text-inherit {
  color: inherit !important;
}
.pointer {
  cursor: pointer;
}

@media (max-width: 768px) {
  .event-item {
    flex-direction: column;
    text-align: left;
  }
  .event-date {
    border-right: none;
    border-bottom: 1px solid #1d3846;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
  }
  .event-details {
    padding: 0;
    margin-bottom: 20px;
  }
  .event-action {
    width: 100%;
    text-align: left;
  }
}

/* LMS Page Css */

.lms-section {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b")
    center/cover no-repeat;
  position: relative;
  min-height: calc(100vh - 80px);
  padding-top: 100px;
}

.lms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 32, 0.85); /* Heavy Blue-Black Tint */
  backdrop-filter: blur(8px);
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.login-wrapper {
  background: rgba(17, 45, 58, 0.7);
  border: 1px solid rgba(138, 180, 255, 0.3);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.auth-title {
  font-family: var(--font-headline);
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.auth-subtitle {
  color: #8aa3b0;
  font-size: 14px;
}

.cyber-label-blue {
  display: block;
  font-family: var(--font-label);
  color: #8ab4ff;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: bold;
}

.cyber-input-blue {
  width: 100%;
  background: rgba(0, 22, 32, 0.6);
  border: 1px solid #1d3846;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.cyber-input-blue:focus {
  outline: none;
  border-color: #8ab4ff;
  box-shadow: 0 0 10px rgba(138, 180, 255, 0.3);
}

.btn-auth {
  background: linear-gradient(90deg, #8ab4ff, #5080e8);
  color: #001620;
  padding: 14px 40px;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  font-family: var(--font-headline);
  box-shadow: 0 0 20px rgba(138, 180, 255, 0.3);
  transition: 0.3s;
}

.btn-auth:hover {
  box-shadow: 0 0 30px rgba(138, 180, 255, 0.6);
}

/* Mobile Nav Structure */
.mobile-toggle {
  background: transparent;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 22, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid #1d3846;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 0;
  font-family: var(--font-headline);
  border-bottom: 1px solid #112d3a;
}
.mobile-nav a.active {
  color: #8ab4ff;
  border-color: #8ab4ff;
}

.click-animate {
  transition: transform 0.1s ease-in-out;
}
.click-animate:active {
  transform: scale(0.95);
}

/* About page css */

/* About Page Specific Styles */
.page-hero {
  padding: 150px 20px 80px;
  background: linear-gradient(180deg, rgba(0, 237, 100, 0.05) 0%, #001620 100%);
}

.page-title {
  font-size: 60px;
  font-family: var(--font-headline);
  font-weight: 800;
  color: white;
}

.page-title span {
  color: #00ed64;
}

.page-subtitle {
  color: #9ca3af;
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Mission section */
.mission-section {
  padding: 60px 0;
  background: #001620;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #1d3846;
}
.image-wrapper img {
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(0, 237, 100, 0.2);
}

.stat-row > div {
  border-left: 2px solid #00ed64;
  padding-left: 15px;
}

/* Team section */
.team-section {
  padding: 80px 0 100px;
  background: #001e2b;
}

.team-card {
  background: #112d3a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  color: white;
  margin-bottom: 5px;
}

.team-info p {
  color: #8aa3b0;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 15px;
}

/* Mobile Nav Structure */
.mobile-toggle {
  background: transparent;
  border: 1px solid #1d3846;
  border-radius: 8px;
  color: #00ed64;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 22, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid #1d3846;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 0;
  font-family: var(--font-headline);
  border-bottom: 1px solid #112d3a;
}
.mobile-nav a.active {
  color: #00ed64;
}

.click-animate {
  transition: transform 0.1s ease-in-out;
}
.click-animate:active {
  transform: scale(0.95);
}

.text-inherit {
  color: inherit !important;
}
.pointer {
  cursor: pointer;
}

/* Hero */

.contact-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 22, 32, 0.3), #001620);
}

/* Form */

.contact-card {
  background: #0b222c;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-input {
  background: #112d3a;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  color: #fff;
}

.contact-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00ed64;
}

/* Button */

.btn-primary-custom {
  background: #00ed64;
  color: #002108;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary-custom:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.3);
}

/* Contact Info */

.contact-info-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #0b222c;
  padding: 20px;
  border-radius: 12px;
  transition: .3s;
}

.contact-info-card:hover{
transform:translateY(-5px);
border:1px solid #00ed64;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #172d37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:20px;
}

/* Offices */

.office-section{
background:#061e28;
padding:80px 0;
}

.office-card{
background:#0b222c;
padding:30px;
border-radius:16px;
height:100%;
transition:.3s;
}

.office-card:hover{
transform:translateY(-8px);
border:1px solid #00ed64;
}

.office-card h4{
margin-bottom:20px;
}

.office-card ul{
list-style:none;
padding:0;
}

.office-card li{
margin-bottom:10px;
color:#8aa3b0;
}

/* Map */

.map-section {
  background: #001620;
  padding: 100px 0;
}

/* Hero */

.team-hero {
  background: radial-gradient(circle at 50% 50%, #0b222c 0%, #001620 100%);
  padding: 120px 0;
  text-align: center;
}

.team-hero h1 {
  font-size: 50px;
  font-weight: 700;
}

.team-hero p {
  color: #8aa3b0;
  max-width: 700px;
  margin: auto;
}

/* Section */

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  color: #8aa3b0;
  max-width: 800px;
}

/* Team Cards */

.team-card {
  background: #172d37;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  border: 1px solid #00ed64;
}

.team-card h4 {
  font-size: 20px;
  margin-top: 15px;
}

.team-card span {
  color: #00ed64;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  color: #8aa3b0;
  font-size: 14px;
}

/* Large Card */

.team-card-large {
  background: #172d37;
  padding: 40px;
  border-radius: 20px;
}

.team-role {
  color: #00ed64;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Hero */

.about-hero {
  background: radial-gradient(circle at 50% 50%, #0b222c 0%, #001620 100%);
  padding: 120px 0;
}

.about-hero h1 {
  font-size: 50px;
  font-weight: 700;
}

.about-hero p {
  color: #8aa3b0;
  max-width: 700px;
}

/* Section */

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  color: #8aa3b0;
  max-width: 900px;
}

/* Cards */

.card-dark {
  background: #172d37;
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s;
  height: 100%;
}

.card-dark:hover {
  transform: translateY(-10px);
  border: 1px solid #00ed64;
}

/* Highlight */

.highlight {
  color: #00ed64;
}

/* Partners */

.partner-box {
  background: #172d37;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}
