:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #161a14;
  --link-color: #36bd58;
  --header-bg-color: #1c1c1c;
  --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;

  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/body-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.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;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.navbar {
  background-color: var(--header-bg-color) !important;
}

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

.hero-section.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 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;
  }
}

.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");
}
.heading {
  margin-bottom: 17px;
}

.heading h2 {
  font-weight: 700;
  color: #00ff7f; /* Accent green */
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.heading h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #00ff7f;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.heading p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto;
}

.box {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 21px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 127, 0.15);
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 255, 127, 0.15);
}

.box .image img {
  outline: 1px solid #00ff7f;
  background-color: #000;
  transition: transform 0.3s ease;
}

.box:hover .image img {
  transform: scale(1.05);
}

.box .content {
  text-align: center;
  margin-top: 20px;
}

.box .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ff7f;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.box .content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Optional: subtle divider line */
.box .content h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #00ff7f;
  margin: 10px auto 0;
  border-radius: 2px;
}
.title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00ff7f;
  text-align: left;
  margin: 30px 0 17px;
  position: relative;
}

/* Left accent underline */
.title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ff7f, transparent);
  display: block;
  margin-top: 14px;
  border-radius: 4px;
}

/* Optional subtle glow */
.title {
  text-shadow: 0 0 12px rgba(0, 255, 127, 0.35);
}
.cust-img {
  margin: 30px auto;
  padding: 17px 19px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 127, 0.06),
    rgba(0, 0, 0, 0)
  );
  border-left: 4px solid #00ff7f;
}

/* Main section heading */
.cust-img h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #00ff7f;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Subheadings */
.cust-img h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00ff7f;
  margin: 40px 0 14px;
  position: relative;
}

.cust-img h3::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #00ff7f;
  display: inline-block;
  margin-right: 12px;
  border-radius: 50%;
}

/* Paragraph text */
.cust-img p {
  font-size: 1rem;
  line-height: 1.9;
  color: #d0d0d0;
  margin-bottom: 18px;
}

/* Optional subtle fade-in */
.cust-img {
  animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sidebar Newsletter */
.sidebar-newsletter {
  background: #0f0f0f;
  border: 1px solid rgba(0, 255, 127, 0.18);
  border-radius: 16px;
  padding: 19px;
  box-shadow: 0 18px 40px rgba(0, 255, 127, 0.08);
  width: 279px;
  margin-bottom: 15px;
}

.sidebar-newsletter h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #00ff7f;
  letter-spacing: 0.5px;
}

.sidebar-newsletter p {
  margin: 0 0 16px;
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Form */
.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-field {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-direction: column;
}

.newsletter-field input {
  flex: 1;
  background: #000;
  border: 1px solid rgba(0, 255, 127, 0.25);
  color: #e9e9e9;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-field input::placeholder {
  color: #8f8f8f;
}

.newsletter-field input:focus {
  border-color: #00ff7f;
  box-shadow: 0 0 0 4px rgba(0, 255, 127, 0.18);
}

.newsletter-field button {
  background: #00ff7f;
  color: #000;
  border: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.newsletter-field button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 255, 127, 0.22);
}

.newsletter-field button:active {
  transform: translateY(0);
  opacity: 0.9;
}

/* Checkbox row */
.newsletter-check {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #bdbdbd;
  font-size: 0.9rem;
}

.newsletter-check input {
  width: 18px;
  height: 18px;
  accent-color: #00ff7f;
}

/* Note */
.newsletter-note {
  color: #9a9a9a;
  font-size: 0.85rem;
}

/* Screen-reader only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Sidebar-friendly: stack on very small widths */
@media (max-width: 420px) {
  .newsletter-field {
    flex-direction: column;
  }

  .newsletter-field button {
    width: 100%;
  }
}
.footer {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 127, 0.05),
    rgba(0, 0, 0, 0.9)
  );
  border-top: 1px solid rgba(0, 255, 127, 0.2);
  color: #cfcfcf;
}

.footer img {
  filter: drop-shadow(0 0 12px rgba(0, 255, 127, 0.25));
}

/* Text */
.footer p,
.footer span {
  font-size: 0.95rem;
  color: #bfbfbf;
}

/* Links */
.footer a {
  color: #00ff7f;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Icon */
.footer i {
  color: #00ff7f;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Spacing & alignment improvements */
.footer .row {
  row-gap: 14px;
}

/* Small screen refinements */
@media (max-width: 768px) {
  .footer img {
    width: 180px;
  }

  .footer p,
  .footer span {
    font-size: 0.9rem;
  }
}
