/* =========================
   GOOGLE FONTS
========================= */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

/* =========================
   ROOT
========================= */
:root {
  --ink: #424241;
  --orange: #f3a44c;
  --orange-dark: #f0941f;
  --grey: #6e6e6e;
  --bg-left: #fbfffa;
  --bg-right: #d6f7e0;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  width: 100%;
  overflow-x: hidden;

  background-image: url("../images/head-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: rgb(238, 255, 242);
} */

/* =========================
   UTIL
========================= */
.text-green {
  color: #3bce5b;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  height: 112px;
  width: 100%;
  z-index: 1;
}

.navbar-parent {
  padding: 20px;
  max-width: 100%;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
}

.scrolled .navbar-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.navbar-container {
  width: 1200px;
  margin: auto;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 10px;
}

/* Logo */
  .header-logo {
    display: flex;
    flex-direction: column;
  }



/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
}

.nav-links li {
  margin: 0 8px;
  font-family: "Bricolage Grotesque";
  height: 32px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.nav-links li:hover {
  background-color: rgb(8, 47, 37) !important;
}

.nav-links li:hover a {
  color: #fff;
}

.nav-links li:hover .box-outer {
  display: block;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 0 10px;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 46px;
  position: relative;
}

.cta-btn {
  font-family: Bricolage Grotesque;
  background: #efa145;
  color: #fff !important;
  border: none;
  font-size: 16px;
  padding: 14px 15px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}

button#myBtn {
  background: none;
  border: none;
}

/* =========================
   MEGA MENU (FIXED INVALID CSS)
========================= */
.box-sub-menu {
  width: 50%;
  font-family: "Figtree", sans-serif;
  margin: 4px 0;
}

.sub-menu-box {
  padding: 15px;
  width: 292px;
  align-items: center;
  display: flex;
}

.sub-menu-box:hover {
  background: #082f25;
  border-radius: 12px;

  .sun-menu-content-box {
    .sub-title,
    p {
      color: #fff;
    }
  }
}

.sub-menu-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 9.82px;
  padding: 8px;
  background: #3bce5b;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 28px;
  }
}

.sun-menu-content-box {
  .sub-title {
    font-weight: 500;
    font-size: 20px;
    color: #202532;
    padding-bottom: 6px;
  }

  p {
    font-size: 14px;
    color: #03140f99;
    font-family: Figtree;
    font-weight: 400;
    margin: 0;
  }
}

.box-outer {
  display: none;
  position: absolute;
  left: -8%;
  top: 80%;
  z-index: 10;
}

.box-container {
  border-radius: 12px;
  width: 694px;
  background: #fff;
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-container {
  display: none;
}

/* =========================
   MOBILE (HIDE DESKTOP)
========================= */
@media only screen and (max-width: 993px) {
  .navbar-parent {
    display: none;
  }

  .mobile-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
  }
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  overflow: hidden;
}

.modal-content {
  background: #fff;
  width: 78%;
  height: calc(100vh - 67px);
  margin-left: auto;
  margin-right: 5%;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 32px;
  position: static;
}

.close {
  position: absolute;
  left: 24px;
  top: 60px;
  cursor: pointer;
  border: none;
}

.tabline {
  font-family: Bricolage Grotesque;
  font-weight: 600;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* =========================
   MOBILE MENU (FIXED SCROLL)
========================= */
.mobile-menu {
  flex: 1;
  min-height: 0;

  overflow-y: auto;
  overflow-x: hidden;

  width: 100%;
}

.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Menu items */
.menu-item {
  margin-bottom: 16px;
  padding: 6px 0;
}

.menu-toggle,
.menu-link,
.submenu a {
  width: 100%;
  color: #000000;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-family: "Figtree";
  font-weight: 500;

  background: none;
  border: none;
  cursor: pointer;
}

/* Arrow */
.arrow_icon img {
  transition: transform 0.3s ease;
}

.menu-item.active .arrow_icon img {
  transform: rotate(180deg);
}

/* Submenu */
.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.menu-item.active .submenu {
  max-height: 500px;
  opacity: 1;
}

.submenu a {
  padding: 14px 30px;
}
