/* ========================================= 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 ========================================= */
/* ===============================
Navbar
================================= */

/* ===============================
Navbar
================================= */

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 22, 32, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
}

.navbar-wrapper {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo */

.logo-img {
  width: 220px;
}

/* Center Nav */

.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-center a,
.nav-link-parent {
  color: #9ca3af;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-center a:hover,
.nav-link-parent:hover {
  color: #00ed64;
}

/* Contact Button */

.btn-join {
  background: #00ed64;
  color: #003912;
  padding: 12px 30px;
  font-weight: 600;
}

/* ===============================
Dropdown
================================= */

.program-dropdown,
.company-dropdown {
  position: relative;
  cursor: pointer;
}

.program-dropdown-menu,
.company-dropdown-menu {
  position: absolute;
  top: 40px;
  /* left: 0; */
  min-width: 300px;
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
}

.program-dropdown:hover .program-dropdown-menu,
.company-dropdown:hover .company-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.program-dropdown-menu a,
.company-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #1e2a3a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.program-dropdown-menu a:hover,
.company-dropdown-menu a:hover {
  background: #f5f7fb;
  transform: translateX(4px);
}

.program-dropdown-menu i,
.company-dropdown-menu i {
  width: 18px;
  color: #1e2a3a;
  font-size: 14px;
}

.program-dropdown-menu a:hover i,
.company-dropdown-menu a:hover i {
  color: #00ed64;
}

.nav-link-parent i {
  color: #00ed64;
  font-size: 14px;
}

/* ===============================
Mobile Toggle
================================= */

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid #1d3846;
  color: #00ed64;
  padding: 8px 12px;
}

/* ===============================
Mobile Nav
================================= */

.mobile-nav {
  position: fixed;
  top: 50px;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #001620;
  padding: 30px;
  transition: 0.4s;
  z-index: 9999;
  text-decoration: none;
}

.mobile-nav.active {
  right: 0;
}

.mobile-menu a,
.mobile-dropdown-header {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #0b222c;
  color: #9ca3af;
}

.mobile-dropdown-content {
  display: none;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

/* ===============================
Responsive
================================= */

@media (max-width: 1064px) {
  .nav-center,
  .nav-right {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar-wrapper {
    padding: 0 20px;
  }

  .logo-img {
    width: 180px;
  }
}

@media (max-width: 576px) {
  .mobile-nav {
    width: 280px;
    top: 100px;
  }

  .logo-img {
    width: 150px;
  }
}

/* ===================================== 
Footer 
======================================== */

.footer-section {
  background: #001620;
  padding: 80px 0 30px;
  position: relative;
}

/* Top Gradient Line */

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ed64,
    #00ed64,
    transparent
  );
}

/* Logo */

.footer-logo-img {
  width: 200px;
  max-width: 100%;
}

/* Titles */

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Text */

.footer-text {
  color: #8aa3b0;
  font-size: 14px;
  line-height: 1.7;
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 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;
}

/* Social */

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #112d3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00ed64;
  color: #001620;
}

/* Contact */

.footer-contact {
  color: #8aa3b0;
  font-size: 14px;
}

.footer-contact i {
  color: #00ed64;
  margin-right: 8px;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid #1d3846;
}

.footer-copy {
  color: #8aa3b0;
  margin: 0;
}

.footer-policy {
  color: #8aa3b0;
  margin-left: 20px;
  text-decoration: none;
}

.footer-policy:hover {
  color: #00ed64;
}

/* =====================================
Responsive Footer
====================================== */

/* Tablet */

@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 20px;
  }

  .footer-title {
    margin-top: 10px;
  }

  .footer-bottom .row {
    text-align: center;
    gap: 15px;
  }

  .footer-policy {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-title {
    margin-top: 20px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-policy {
    display: inline-block;
    margin: 5px 10px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-logo-img {
    width: 170px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-contact {
    font-size: 13px;
  }

  .footer-policy {
    display: block;
    margin: 5px 0;
  }
}
