/* ========================================= General Styling ========================================= */

: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;
}

/* ========================================= TopBar Styling ========================================= */
.top-bar {
  background: #00ed64;
  color: #003912;
  text-align: center;
  font-size: 11px;
  padding: 6px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ========================================= Navbar Styling ========================================= */
.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-img {
  height: auto;
  width: 250px;
  object-fit: contain;
  display: block;
}

.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;
}

.nav-right {
  gap: 15px;
}

.btn-join {
  background: #00ed64;
  color: #003912;
  padding: 10px 30px;
  border: none;
  font-weight: bold;
  margin-right: 15px;
}

.mobile-toggle {
  display: none;
}

.nav-link-parent {
  color: #9ca3af;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-headline);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #000c16;
  padding: 20px;
  transition: 0.4s;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-logo {
  width: 180px;
}

.mobile-close {
  background: #1d3846;
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.mobile-search {
  position: relative;
  margin-bottom: 20px;
}

.mobile-search input {
  width: 100%;
  padding: 12px;
  background: #0b222c;
  border: none;
  color: white;
}

.mobile-search i {
  position: absolute;
  right: 15px;
  top: 12px;
}

.mobile-menu a,
.mobile-dropdown-header {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #0b222c;
  color: #9ca3af;
  text-decoration: none;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-contact {
  margin-top: 20px;
}

.mobile-contact p {
  color: #8aa3b0;
  font-size: 14px;
}

.mobile-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mobile-social i {
  width: 35px;
  height: 35px;
  background: #0b222c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mobile-toggle {
  background: transparent;
  border: 1px solid #1d3846;
  border-radius: 8px;
  color: #00ed64;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9997;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  z-index: 9998;
}

.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;

  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 {
  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;
}

.custom-navbar .container {
  min-height: 70px;
}

.custom-navbar .container {
  min-height: 70px;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
    z-index: 9999;
  }

  .custom-navbar {
    padding: 15px 0;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 9px;
    padding: 6px 10px;
    letter-spacing: 1px;
  }
}

@media (max-width: 992px) {
  .custom-navbar {
    padding: 12px 0;
  }

  .logo-img {
    width: 170px;
  }

  .nav-center {
    display: none !important;
  }

  .nav-right {
    display: none !important;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 150px;
  }

  .mobile-toggle {
    padding: 6px 10px;
    font-size: 16px;
  }

  .mobile-nav {
    width: 85%;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 130px;
  }

  .mobile-nav {
    width: 100%;
  }

  .top-bar {
    font-size: 8px;
    padding: 5px;
  }
}

/* ================================= Footer Styling ================================= */

/* Footer */

.footer-section {
  background: #001620;
  padding: 80px 0 30px;
  position: relative;
}

/* Top Separator */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ed64,
    #00ed64,
    transparent
  );
}
.footer-logo-img {
  width: 200px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  color: #8aa3b0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8aa3b0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00ed64;
  padding-left: 5px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #112d3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00ed64;
  color: #001620;
}

.footer-contact {
  color: #8aa3b0;
  font-size: 14px;
}

.footer-contact i {
  color: #00ed64;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #1d3846;
}

.footer-copy {
  color: #8aa3b0;
}

.footer-policy {
  color: #8aa3b0;
  margin-left: 20px;
  text-decoration: none;
}

.footer-policy:hover {
  color: #00ed64;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-policy {
    display: block;
    margin: 10px 0;
  }
}
/* ========================================= Home Page Styling ========================================= */
.hero {
  text-align: center;
  padding: 60px 20px 120px;
  position: relative;
}

.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 {
  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;
}

.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;
}

.switch-btn span img {
  width: 16px;
  height: 16px;
}

.switch-btn.inactive {
  color: #8aa3b0;
  background: transparent;
}

.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);
}

.switch-btn.inactive:hover {
  color: white;
}

.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;
}

.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 {
  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;
}

.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);
}

.stat-item h3 {
  color: #00ed64;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  transition: 0.3s;
}

.stat-item p {
  color: #8aa3b0;
  font-size: 12px;
  letter-spacing: 2px;
}

.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 {
   padding: 80px 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;
  margin-top: 40px;
}

/* Track */
.partners-track {
  display: flex;
  gap: 20px;
  padding: 20px;
  animation: scroll 30s linear infinite;
}

/* Logo Card */
.partners-track img {
  background: #112d3a;
  padding: 25px 35px;
  border-radius: 12px;
  height: 90px;
  min-width: 180px;
  object-fit: contain;
  border: 1px solid #1d3846;
  transition: 0.3s;
}

/* Hover */
.partners-track img:hover {
  transform: translateY(-6px);
  border-color: #00ed64;
  box-shadow: 0 10px 30px rgba(0,237,100,0.15);
}

/* Infinite Scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Fade edges */
.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #001620, transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #001620, transparent);
}

.who-section {
  padding: 140px 0;
  background: #001620;
  position: relative;
}

.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;
}

.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;
}

.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);
}

@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-section {
  padding: 120px 0;
  background: #001620;
}

/* CARD */

/* ================= SERVICES SECTION ================= */

.service-card {
  background: #0c2a36;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 255, 150, 0.05);
}

/* Image container */

.service-img {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.service-img img {
  width: 100%;
  height: 300px;
  object-fit: fill;
  transition: 0.6s;
}

/* Content */

.service-content {
  padding: 28px;
  background: linear-gradient(180deg, #0c2a36, #001620);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */

.service-card h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Link */

.service-card a {
  color: #00ed64;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: 0.3s;
}

.service-card a:hover {
  transform: translateX(5px);
}

/* Hover effects */

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover img {
  transform: scale(1.08);
}

/* Bottom glow line */

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ed64, transparent);
  transition: 0.4s;
}

/* Hover glow */

.service-card:hover::after {
  height: 5px;
}

/* Responsive */

@media (max-width: 992px) {
  .service-img img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-img img {
    height: 350px;
  }
}

/*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%;
}

.horizontal-card {
  height: 280px;
}

/* Responsive */

@media (max-width: 992px) {
  .horizontal-card {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .horizontal-card {
    height: 240px;
  }
}

/* CONTENT */
.program-card .content {
  bottom: 20px;
  left: 20px;
  max-width: 85%;
}

/* TEXT */
.program-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.program-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.program-card p {
  color: #9ca3af;
  font-size: 13px;
}

/* 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: 12px;
  display: inline-block;
  text-decoration: none;
}

.btn-enroll:hover {
  background: #00ed64;
  color: #001620;
}

/* 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;
  height: 100%;
  position: relative;
  transition: 0.3s;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

/* WORKSHOP IMAGE */
.workshop-hero-img {
  width: 100%;
  height: 450px; /* Increased size */
  object-fit: fill;
  border-radius: 12px;
  margin-bottom: 24px;
}

/* TEXT */
.workshop-card h4 {
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  margin-bottom: 14px;
}

.workshop-card p {
  color: #8aa3b0;
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* BUTTON */
.btn-outline-card {
  width: 100%;
  padding: 14px;
  border: 1px solid #3b4b3b;
  background: transparent;
  color: white;
  font-weight: bold;
  margin-top: auto;
}

/* BORDER COLORS */
.border-green {
  border-bottom: 4px solid #00ed64;
}

.border-blue {
  border-bottom: 4px solid #8ab4ff;
}

/* HOVER */
.workshop-card:hover {
  transform: translateY(-8px);
}

/* TEAM SECTION */

.team-section {
  padding: 100px 0;
  background: #001620;
}

/* CARD */

/* TEAM SECTION */

.team-card {
  background: #112d3a;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

/* IMAGE FIX */

.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CONTENT ALIGN */

.team-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* NAME */

.team-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* ROLE */

.team-content span {
  color: #00ed64;
  font-size: 14px;
  font-weight: 600;
}

/* DESCRIPTION */

.team-content p {
  color: #8aa3b0;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
  flex-grow: 1;
}

/* SOCIAL */

.team-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.team-social i {
  width: 36px;
  height: 36px;
  background: #1d3846;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
}

.team-social i:hover {
  background: #00ed64;
  color: #001620;
}

/* HOVER */

.team-card:hover {
  transform: translateY(-10px);
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  /* Navbar */

  .logo-img {
    width: 180px;
  }

  .nav-center {
    display: none;
  }

  /* Hero */

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 20px;
  }

  /* Partners */

  .partners-track {
    gap: 30px;
  }

  /* Who Section */

  .who-section {
    padding: 80px 0;
  }

  .who-main-title {
    font-size: 36px;
  }

  .who-title {
    font-size: 26px;
  }

  /* Services */

  .services-section {
    padding: 80px 0;
  }

  /* Programs */

  .section-title {
    font-size: 36px;
  }

  .big-card {
    height: 400px;
  }

  .small-card {
    height: 200px;
  }

  /* Workshop */

  .workshop-section {
    padding: 80px 0;
  }

  /* Footer */

  .footer-section {
    padding: 60px 0 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Topbar */

  .top-bar {
    font-size: 9px;
    padding: 5px;
  }

  /* Hero */

  .hero {
    padding: 40px 15px 80px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  /* Switcher */

  .switcher {
    /* flex-direction:column; */
    gap: 10px;
  }

  /* Glow */

  .glow {
    width: 300px;
    height: 300px;
  }

  /* Who Section */

  .who-main-title {
    font-size: 28px;
  }

  .who-title {
    font-size: 22px;
  }

  /* Stats */

  .stat-item h3 {
    font-size: 28px;
  }

  /* Services */

  .service-card {
    margin-bottom: 30px;
  }

  /* Programs */

  .big-card {
    height: 320px;
  }

  .small-card {
    height: 180px;
  }

  .program-card .content {
    bottom: 15px;
    left: 15px;
  }

  /* Workshops */

  .workshop-card {
    padding: 20px;
  }

  /* Footer */

  .footer-section {
    text-align: center;
  }

  .footer-text {
    margin: auto;
  }

  .footer-icons {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-btns a {
    display: block;
    margin-bottom: 10px;
  }

  .switch-btn {
    font-size: 10px;
    padding: 8px 12px;
  }

  .logo-img {
    width: 150px;
  }
}

/* TESTIMONIAL SECTION */

.testimonial-section {
  padding: 100px 0;
  background: #001620;
}

/* Swiper spacing */

.testimonialSwiper {
  padding-bottom: 50px;
}

/* Card */

.testimonial-card {
  background: #112d3a;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: 0.4s;
  border: 1px solid rgba(0, 255, 150, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Top */

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Text */

.testimonial-card h5 {
  color: white;
  margin: 0;
}

.testimonial-card span {
  color: #00ed64;
  font-size: 14px;
}

.testimonial-card p {
  color: #8aa3b0;
  margin: 15px 0;
}

.testimonial-rating {
  color: #00ed64;
}

/* Pagination */

.swiper-pagination-bullet {
  background: #00ed64;
}

/*===================================== Program Page styling ====================================== */
.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-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 {
  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;
}

@media (max-width: 992px) {
  .program-hero {
    padding: 140px 0 80px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: auto;
  }

  .hero-glow {
    width: 500px;
    height: 500px;
  }

  .filter-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }

  .program-card {
    padding: 30px;
  }

  .program-title {
    font-size: 22px;
  }

  .stats-section {
    padding: 80px 0;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {
  .program-hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-glow {
    width: 350px;
    height: 350px;
    filter: blur(120px);
  }

  .filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 16px;
    padding: 12px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .program-card {
    padding: 25px;
  }

  .program-title {
    font-size: 20px;
  }

  .program-card p {
    font-size: 14px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* ================================= */
/* SMALL MOBILE */
/* ================================= */

@media (max-width: 480px) {
  .program-hero {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .filter-wrapper {
    gap: 6px;
    padding: 10px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .program-card {
    padding: 20px;
  }

  .program-title {
    font-size: 18px;
  }

  .program-icon {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 24px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/*======================================= Workshop Page Styling ================================== */
.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 {
  background: #0b222c;
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

.workshop-card:hover {
  transform: translateY(-8px);
  background: #172d37;
  border-color: #00ed64;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.workshop-badge {
  background: rgba(0,237,100,0.1);
  color: #00ed64;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-subtitle {
  color: #9ca3af;
  font-size: 18px;
  max-width: 600px;
}

/* Image */

.workshop-img {
  width: 100%;
  height: 500px;
  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 Styling ============================================= */
.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 Styling ================================================== */

.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 ======================================*/
.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;
}

/* =============================== Contact Page Styling =============================== */

.contact-hero {
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 22, 32, 0.3), #001620 80%);
}

.contact-hero h1 {
  letter-spacing: -1px;
}

.contact-card {
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0, 237, 100, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-input {
  background: #0f2c38;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 16px 22px;
  color: #fff;
  transition: 0.3s;
}

.contact-input::placeholder {
  color: #7a9ba8;
}

.contact-input:focus {
  outline: none;
  background: #0b222c;
  border-color: #00ed64;
  box-shadow: 0 0 15px rgba(0, 237, 100, 0.2);
}

/* Textarea */

textarea.contact-input {
  border-radius: 20px;
}

.btn-primary-custom {
  background: linear-gradient(90deg, #00ed64, #00c853);
  color: #002108;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.4);
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: #00ed64;
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.15);
}

.contact-info-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-card p {
  margin: 0;
  color: #8aa3b0;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f2c38, #0b222c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.office-section {
  background: #061e28;
  padding: 100px 0;
}

.office-card {
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.office-card:hover {
  transform: translateY(-10px);
  border-color: #00ed64;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.office-card h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.office-card ul {
  list-style: none;
  padding: 0;
}

.office-card li {
  margin-bottom: 12px;
  color: #8aa3b0;
  transition: 0.3s;
}

.office-card li:hover {
  color: #00ed64;
  padding-left: 5px;
}

.map-section {
  background: #001620;
  padding: 100px 0;
}

.map-section img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 30px;
  }

  .contact-hero {
    height: 350px;
  }
}

/* ==================== Team Page Styling ==================== */

/* HERO */

.team-hero {
  padding: 150px 0 80px;
  background: linear-gradient(180deg, rgba(0, 237, 100, 0.05) 0%, #001620 100%);
  text-align: center;
}

.team-hero h1 {
  color: white;
  font-size: 55px;
  font-weight: 800;
}

.team-hero p {
  color: #9ca3af;
  max-width: 600px;
  margin: auto;
  margin-top: 15px;
}

/* TEAM SECTION */

.team-section {
  padding: 80px 0;
  background: #001620;
}

/* TEAM CARD */

.team-card {
  background: #112d3a;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #1d3846;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* IMAGE */

.team-img-wrapper {
  height: 260px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover img {
  transform: scale(1.1);
}

/* INFO */

.team-info {
  padding: 25px;
}

.team-info h4 {
  color: white;
  margin-bottom: 5px;
}

.team-info span {
  color: #00ed64;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-info p {
  color: #8aa3b0;
  font-size: 14px;
}

/* SECTION TITLE */

.section-title {
  color: white;
  font-size: 40px;
  font-weight: 700;
}
/* ==================== About Page Styling ==================== */
/* ==================== HERO SECTION ==================== */
.about-hero {
  position: relative;
  padding: 180px 0 100px;
  background-color: var(--bg-surface);
  border-bottom: 1px solid rgba(53, 75, 86, 0.15);
}
.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 237, 100, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(0, 237, 100, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3N2Zz4=");
  z-index: 0;
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 237, 100, 0.2);
}
.about-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}
.section-padding {
  padding: 100px 0;
  background: var(--bg-deep);
}
.section-surface {
  background: var(--bg-surface);
}
.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 237, 100, 0.5);
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 40px;
}
/* Cards */

.glass-panel {
  background: rgba(4, 41, 56, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(53, 75, 86, 0.3);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.glass-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 237, 100, 0.05) 0%,
    transparent 60%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.glass-panel:hover::before {
  opacity: 1;
}
.glass-panel > * {
  position: relative;
  z-index: 1;
}

/* Mission / Vision Cards */
.tech-card {
  background: var(--bg-card);
  border: 1px solid rgba(53, 75, 86, 0.15);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.tech-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: rgba(0, 237, 100, 0.5);
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.08);
}
.tech-card h3,
.tech-card h4,
.tech-card h5 {
  color: #fff;
  margin-bottom: 15px;
}
.tech-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.tech-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(0, 237, 100, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: 0.3s;
}
.tech-card:hover .icon-wrapper {
  background: var(--primary);
  color: #001019;
  box-shadow: 0 0 15px rgba(0, 237, 100, 0.4);
}

.highlight {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Service Grid Specifics */
.tech-card.text-center i {
  transition: 0.3s;
}
.tech-card.text-center:hover i {
  color: var(--primary) !important;
  transform: scale(1.1);
}

/* Partners */
.partner-box {
  background: var(--bg-card);
  border: 1px solid rgba(53, 75, 86, 0.15);
  padding: 24px;
  text-align: center;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  cursor: default;
}
.partner-box:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 237, 100, 0.05);
  transform: translateY(-5px);
}
