:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #11191e;
  --link-color: #10f956;
  --header-bg-color: #000000;
  --font-family: Georgia, serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffff;
}
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;
}

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

.x {
  display: flex;
  justify-content: center;
}

/* ===== Search Box ===== */
.sidebar-search-box {
  background: rgba(18, 28, 24, 0.8);
  padding: 19px;
  border-radius: 14px;
  border: 1px solid rgba(124, 255, 178, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  width: 279px;
}

/* Title */
.sidebar-search-box h3 {
  color: #7CFFB2;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
}

/* little icon under title */
.sidebar-search-box h3::after {
  content: "🔍";
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== Form ===== */
.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Input */
.sidebar-search-box input[type="search"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(124, 255, 178, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #e6f2ec;
  outline: none;
  transition: all 0.3s ease;
}

/* Input focus glow */
.sidebar-search-box input[type="search"]:focus {
  border-color: #7CFFB2;
  box-shadow: 0 0 10px rgba(124, 255, 178, 0.4);
}

/* Placeholder */
.sidebar-search-box input::placeholder {
  color: #9bb5a8;
}

/* Button */
.sidebar-search-box button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #4CAF50, #7CFFB2);
  color: #0f1412;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Disabled button */
.sidebar-search-box button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hover (only if enabled) */
.sidebar-search-box button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.error_page {
  min-height: 70vh;
}

/* ===== Footer Base ===== */
.footer {
  background: #0b120f;
  color: #cfe8dc;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(124, 255, 178, 0.1);
}

/* ===== Logo ===== */
.footer img {
  opacity: 0.9;
  transition: 0.3s ease;
}

.footer img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* ===== Social Icons ===== */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(124, 255, 178, 0.05);
  color: #7CFFB2;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover glow */
.social-icon:hover {
  background: linear-gradient(135deg, #4CAF50, #7CFFB2);
  color: #0b120f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* spacing fix */
.social-icon:not(:last-child) {
  margin-right: 10px;
}

/* ===== Footer Links ===== */
.footer a {
  color: #cfe8dc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Hover links */
.footer a:hover {
  color: #7CFFB2;
  text-shadow: 0 0 8px rgba(124, 255, 178, 0.5);
}

/* ===== Divider ===== */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,255,178,0.3), transparent);
}

/* ===== Bottom Text ===== */
.footer .small {
  color: #9bb5a8;
  font-size: 0.85rem;
}

/* Highlight site link */
.footer-link {
  color: #7CFFB2;
  margin: 0 5px;
}

.footer-link:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 15px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

.navbar {
  background-color: transparent !important;
  transition:
    background-color 0.4s ease,
    box-shadow 0.3s ease;
  position: absolute;
  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: 155px 0 60px;
  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: 100px 0 30px;
  }
}
.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");
}

/* ===== Contact Container ===== */
.contact-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 35px;
  background: rgba(18, 28, 24, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(124, 255, 178, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
  color: #e6f2ec;
}

/* ===== Header ===== */
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #7CFFB2;
  margin-bottom: 10px;
  display: block;
}

.contact-header p {
  color: #9bb5a8;
  font-size: 0.95rem;
}

/* ===== Form Title ===== */
.contact-container h2 {
  text-align: center;
  color: #7CFFB2;
  margin-bottom: 20px;
}

/* ===== Labels ===== */
.form-label {
  color: #cfe8dc;
  font-size: 0.9rem;
}

.form-label i {
  margin-right: 6px;
  color: #7CFFB2;
}

/* ===== Inputs ===== */
.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 255, 178, 0.2);
  color: #e6f2ec;
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

/* Focus effect */
.form-control:focus {
  border-color: #7CFFB2;
  box-shadow: 0 0 10px rgba(124, 255, 178, 0.4);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

/* Placeholder */
.form-control::placeholder {
  color: #8fa79b;
}

/* ===== Button ===== */
.btn-outline-primary {
  border: 1px solid #7CFFB2;
  color: #7CFFB2;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

/* Hover (enabled only) */
.btn-outline-primary:not(:disabled):hover {
  background: linear-gradient(135deg, #4CAF50, #7CFFB2);
  color: #0b120f;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
}

/* Disabled button */
.btn-outline-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Email Link ===== */
.email-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #9bb5a8;
}

.email-link i {
  margin-right: 6px;
  color: #7CFFB2;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-container {
    margin: 30px 20px;
    padding: 25px;
  }
}

.cust-bg {
  margin: 30px auto;
  padding: 30px;
  background: rgba(20, 30, 25, 0.75); /* glass effect */
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(80, 200, 120, 0.15);
}

/* ===== Headings ===== */
.cust-bg h2 {
  margin-bottom: 20px;
  color: #7cffb2; /* soft green accent */
  letter-spacing: 1px;
}

.cust-bg h3 {
  margin-top: 25px;
  color: #9bffcb;
  font-weight: 500;
  position: relative;
}

/* subtle underline accent */
.cust-bg h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #4caf50;
  margin-top: 6px;
  border-radius: 2px;
}

/* ===== Paragraphs ===== */
.cust-bg p {
  color: #cfe8dc;
  font-size: 1rem;
  margin-top: 10px;
}

/* ===== Smooth hover effect ===== */
.cust-bg:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

/* ===== Optional: Spa vibe divider ===== */
.cust-bg p + h3 {
  border-top: 1px solid rgba(124, 255, 178, 0.1);
  padding-top: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cust-bg {
    padding: 19px;
  }
} /* ===== Heading Section ===== */
.heading {
  margin-bottom: 25px;
}

/* Title */
.heading h2 {
  color: #7cffb2;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
}

/* Decorative line under title */
.heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #4caf50, transparent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Paragraph */
.heading p {
  color: #cfe8dc;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}
/* ===== Card Box Styling ===== */
.box {
  background: rgba(18, 28, 24, 0.75);
  padding: 21px;
  border-radius: 14px;
  border: 1px solid rgba(124, 255, 178, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glowing border on hover */
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, transparent, rgba(124,255,178,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Effect */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
}

.box:hover::before {
  opacity: 1;
}

/* ===== Title ===== */
.box h3 {
  color: #7CFFB2;
  margin-bottom: 12px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* small accent line */
.box h3::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #4CAF50;
  margin-top: 6px;
  border-radius: 2px;
}

/* ===== Text ===== */
.box p {
  color: #cfe8dc;
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.9;
}
/* ===== Sidebar Widget ===== */
.sidebar-links {
  background: rgba(18, 28, 24, 0.8);
  padding: 19px;
  border-radius: 14px;
  border: 1px solid rgba(124, 255, 178, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  width: 279px;
}

/* ===== Title ===== */
.sidebar-links h2 {
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

/* decorative underline */
.sidebar-links h2::after {
  content: "🌿";
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  opacity: 0.8;
}

/* ===== List ===== */
.sidebar-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Links ===== */
.sidebar-page-list li {
  margin: 10px 0;
}

.sidebar-page-list a {
  display: block;
  text-decoration: none;
  color: #cfe8dc;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

/* emoji before links */
.sidebar-page-list a::before {
  content: "🧘‍♀️";
  margin-right: 8px;
}

/* Hover Effect */
.sidebar-page-list a:hover {
  color: #0f1412;
  background: linear-gradient(90deg, #4CAF50, #7CFFB2);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* active link style (optional) */
.sidebar-page-list a.active {
  background: rgba(124, 255, 178, 0.15);
  color: #7CFFB2;
}

.colored {
  color: #7CFFB2;
  position: relative;
  display: inline-block;
}

/* subtle glow effect */
.colored::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: rgba(124, 255, 178, 0.2);
  border-radius: 4px;
  z-index: -1;
}