:root {
  --body-bg-color: #141414;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #141414;
  --link-color: #1b9425;
  --header-bg-color: #081114;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 135px 0 55px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.cust-span {
  display: block;
}
.heading {
  border-left: 4px solid #00ff6a;
  padding: 1.5rem 21px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  margin: 15px 0;
}

.heading:hover {
  transform: translateX(6px);
  border-left-color: #00e65c;
}

.heading h2 {
  color: #00ff6a;
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(0, 255, 100, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.heading p {
  color: #d8d8d8;
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.heading ul li {
  color: #d8d8d8;
}

.heading p:last-of-type {
  margin-bottom: 0;
}
.header {
  padding: 1rem 0 1rem;
  margin: 1rem auto;
  border-top: 3px solid #00ff6a;
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ff6a, #007f3b, #00ff6a);
  opacity: 0.6;
  filter: blur(4px);
  pointer-events: none;
}

.header h2 {
  color: #00ff6a;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-shadow: 0 0 10px rgba(0, 255, 100, 0.35);
}

.header p {
  color: #cfcfcf;
  line-height: 1.65;
  font-size: 1.06rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}
.header ul li {
  color: #cfcfcf;
}

.header p:hover {
  opacity: 1;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.img-shadow {
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.35), 0 0 35px rgba(0, 255, 100, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.img-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.5), 0 0 45px rgba(0, 255, 100, 0.25);
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.cust-bg {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(0, 255, 100, 0.12);
  padding: 1rem 21px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 255, 100, 0.08);
}
.cust-bg h2 {
  color: #00ff6a;
  font-size: 2rem;
  margin-bottom: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.cust-bg h3 {
  color: #00e65c;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.cust-bg .flex-list {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.2rem;
  list-style: none;
}

.cust-bg .flex-list li {
  color: #cecece;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.2rem;
}

.cust-bg .flex-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00ff6a;
  border-radius: 50%;
  left: 0;
  top: 7px;
  box-shadow: 0 0 8px rgba(0, 255, 100, 0.35);
}
.box {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(0, 255, 100, 0.12);
  padding: 21px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 255, 100, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.formats {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(0, 255, 100, 0.1);
  padding: 1.8rem 19px;
  border-radius: 16px;
  margin: 1rem auto;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 255, 100, 0.07);
  backdrop-filter: blur(6px);
}
.formats h2 {
  color: #00ff6a;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  letter-spacing: 0.6px;
  text-shadow: 0 0 10px rgba(0, 255, 100, 0.25);
}
.formats h3 {
  color: #00e65c;
  font-size: 1.45rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  border-left: 3px solid #00ff6a;
  padding-left: 0.6rem;
}
.formats h4 {
  color: #c8ffc8;
  font-size: 1.15rem;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.formats p {
  color: #d4d4d4;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-size: 1.06rem;
}
.formats ul {
  margin: 0.6rem 0 1.4rem;
  padding-left: 1.2rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}

.formats ul li {
  color: #cfcfcf;
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.65;
  font-size: 1.05rem;
}

.formats ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #00ff6a;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 255, 100, 0.35);
}
.formats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #00ff6a, #009f4f, #00ff6a);
  opacity: 0.5;
}
.quick-links {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(0, 255, 100, 0.12);
  padding: 2rem 21px;
  border-radius: 14px;
  width: 279px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 255, 100, 0.08);
}
.quick-links h2 {
  color: #00ff6a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.4px;
  text-align: left;
}
.quick-links .sidebar-page-list {
  margin: 0;
  padding: 0;
}
.quick-links .sidebar-page-list li {
  margin-bottom: 0.8rem;
}

.quick-links .sidebar-page-list li:last-child {
  margin-bottom: 0;
}

.quick-links .sidebar-page-list a {
  display: block;
  padding: 0.55rem 0.6rem;
  color: #dcdcdc;
  font-size: 1.05rem;
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.quick-links .sidebar-page-list a:hover {
  color: #00ff6a;
  border-left: 3px solid #00ff6a;
  transform: translateX(4px);
}
.quick-links .sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar {
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(0, 255, 106, 0.15);
  color: #d4d4d4;
  padding: 3rem 1.5rem 1.8rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 230px;
  min-width: 220px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo img {
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
}

/* Headings */
.site-footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #00ff6a;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Quick links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.98rem;
  position: relative;
  padding-left: 0.6rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00ff6a;
  transform: translateY(-50%);
  opacity: 0.7;
}

.footer-links a:hover {
  color: #00ff6a;
  transform: translateX(4px);
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-bottom: 0.9rem;
}

.newsletter-form {
  max-width: 360px;
}

.newsletter-field {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .newsletter-field {
    flex-direction: column;
  }
}

.newsletter-field input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0f12;
  color: #f5f5f5;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-field input[type="email"]::placeholder {
  color: #777;
}

.newsletter-field input[type="email"]:focus {
  border-color: #00ff6a;
  box-shadow: 0 0 0 1px rgba(0, 255, 106, 0.45);
}

.newsletter-field button {
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #00ff6a, #00c756);
  color: #050608;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.newsletter-field button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0, 255, 106, 0.4);
  filter: brightness(1.06);
}

.newsletter-form small {
  font-size: 0.8rem;
  color: #888;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8f8f8f;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-right a {
  color: #bcbcbc;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-right a:hover {
  color: #00ff6a;
}

.footer-bottom-right .divider {
  opacity: 0.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .footer-top {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.error-404 {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 700px;
  margin: 4rem auto;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 16px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(0, 255, 100, 0.08);
  backdrop-filter: blur(6px);
}

.error-404 h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #00ff6a;
  text-shadow: 0 0 12px rgba(0, 255, 100, 0.25);
}

.error-404 p {
  font-size: 1.1rem;
  color: #d4d4d4;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Home Button */
.home-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00ff6a, #00c757);
  color: #050608;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0, 255, 100, 0.45);
  filter: brightness(1.08);
}
