:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #ceb61d;
  --hero-gradient2: #ba9810;
  --footer-bg-color: #0d0d0d;
  --link-color: #e8b13b;
  --header-bg-color: #2c2b2b;
  --font-family: Georgia, serif;
  --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: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 2.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--header-bg-color);
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.footer a:hover {
  color: var(--footer-text-color);
  opacity: 0.85;
}

.footer-divider {
  margin: 2rem 0 0;
  border-color: color-mix(in srgb, var(--link-color) 30%, transparent);
  opacity: 1;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: var(--link-color);
}

.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(--footer-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--link-color);
}

.hero-section {
  padding: 155px 0 60px;
  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;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.45) 90%,
    rgba(26, 30, 30, 0.8) 95%,
    var(--body-bg-color) 100%
  );
  z-index: 1;
}

.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 {
  margin: 40px auto;
  border-radius: 8px;
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-container .form {
  width: 440px;
  height: 510px;
  background: #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.contact-container h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--hero-gradient1) !important;
  border-bottom: 3px solid var(--hero-gradient2);
}
.contact-container input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container input:focus {
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--hero-gradient1);
}
.contact-container button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--hero-gradient1);
  background: 0;
  color: var(--hero-gradient1);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-container button:hover {
  background: var(--hero-gradient2);
  color: #fff;
}
.contact-container .mail-container {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  background: var(--hero-gradient1);
  color: #fff;
  width: 320px;
  padding: 16px 4px 16px 0;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 10px 10px 40px -14px #000;
}
.contact-container .mail-container p:before {
  content: none;
}
.contact-container span {
  margin: 0 5px 0 15px;
}
.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;
}

.heading {
  margin-bottom: 21px;
}

.heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: var(--link-color);
}

.heading h2 {
  margin: 0 0 1.5rem;
  color: var(--heading-color);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.heading p {
  margin: 0 auto 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: rgba(34, 34, 34, 0.82);
}

.heading p:first-of-type {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  color: var(--body-text-color);
}
.cust-bg {
  padding: 30px 19px;
  background:
    linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.95) 0%,
      rgba(248, 250, 252, 1) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(232, 177, 59, 0.12),
      transparent 40%
    );
  color: var(--body-text-color);
  font-family: var(--font-family);
}

.cust-bg {
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(13, 13, 13, 0.08);
}

.cust-bg h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--heading-color);
  line-height: 1.2;
  letter-spacing: -0.03em;
  position: relative;
}

.cust-bg h2:first-child {
  margin-top: 0;
}

.cust-bg h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 0.6rem;
  background: var(--link-color);
  border-radius: 999px;
}

.cust-bg p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  color: rgba(34, 34, 34, 0.85);
}

.cust-bg p:last-of-type {
  margin-bottom: 0;
}

.cust-bg h2 + p {
  color: var(--body-text-color);
}

.cust-bg:hover {
  box-shadow: 0 40px 100px rgba(13, 13, 13, 0.12);
  transform: translateY(-2px);
  transition: all 0.4s ease;
}

.sidebar-links {
  background: #ffffff;
  padding: 19px 11px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13, 13, 13, 0.08);
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
  width: 279px;
  margin-bottom: 15px;
}

/* subtle accent glow */
.sidebar-links::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 177, 59, 0.25),
    transparent 70%
  );
  z-index: 0;
}

.sidebar-links h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.sidebar-links h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 0.4rem;
  background: var(--link-color);
  border-radius: 999px;
}

.sidebar-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.sidebar-page-list li {
  margin-bottom: 0.4rem;
}

.sidebar-page-list a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--body-text-color);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  position: relative;
}

/* hover effect */
.sidebar-page-list a:hover {
  background: rgba(232, 177, 59, 0.12);
  color: var(--heading-color);
  transform: translateX(4px);
}

/* active/important link (optional class you can add) */
.sidebar-page-list a.active {
  background: var(--link-color);
  color: #000;
  font-weight: 600;
}

/* subtle divider effect */
.sidebar-page-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter {
  width: 279px;
  background: #ffffff;
  padding: 19px 11px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13, 13, 13, 0.08);
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

/* subtle glow accent */
.newsletter::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 177, 59, 0.25),
    transparent 70%
  );
}

.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--heading-color);
}

.newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(34, 34, 34, 0.75);
  line-height: 1.5;
}

/* input */
.newsletter input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter input[type="email"]:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 2px rgba(232, 177, 59, 0.2);
}

/* button */
.newsletter button {
  width: 100%;
  padding: 0.65rem;
  border: none;
  border-radius: 10px;
  background: var(--link-color);
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter button:hover {
  background: #d9a635;
  transform: translateY(-1px);
}

/* small note */
.newsletter small {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: rgba(34, 34, 34, 0.6);
  text-align: center;
}

.box {
  background: #ffffff;
  padding: 1.8rem 19px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13, 13, 13, 0.07);
  font-family: var(--font-family);
  color: var(--body-text-color);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* subtle cinematic accent */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--link-color),
    rgba(232, 177, 59, 0.2)
  );
  border-radius: 6px;
}

/* glow detail */
.box::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 177, 59, 0.15),
    transparent 70%
  );
}

.box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.8);
  margin: 0;
}

/* hover effect */
.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(13, 13, 13, 0.12);
}

.article {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 13, 13, 0.08);
  font-family: var(--font-family);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.article .content {
  padding: 1.5rem 1.4rem 1.7rem;
  position: relative;
}

.article .content::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--link-color);
}

.article h3 {
  margin: 0 0 0.75rem;
  color: var(--heading-color);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article p {
  margin: 0;
  color: rgba(34, 34, 34, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(13, 13, 13, 0.14);
}

@media (max-width: 768px) {
  .article .content {
    padding: 1.3rem 1.2rem 1.5rem;
  }
}
.title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;

  font-family: var(--font-family);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  position: relative;
}

/* underline accent */
.title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--link-color);
  border-radius: 999px;
}

/* icon styling */
.title i {
  font-size: 1.2em;
  color: var(--link-color);
  transition: transform 0.25s ease;
}

/* subtle hover effect */
.title:hover i {
  transform: rotate(10deg) scale(1.1);
}
.got-section {
  padding: 3rem 2rem;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 1)),
    radial-gradient(
      circle at top left,
      rgba(232, 177, 59, 0.12),
      transparent 40%
    );
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(13, 13, 13, 0.08);
  font-family: var(--font-family);
  color: var(--body-text-color);
}

.got-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  position: relative;
}

.got-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--link-color);
  border-radius: 999px;
}

.got-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  color: rgba(34, 34, 34, 0.85);
}

.got-subtitle {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

/* facts box */
.got-facts {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 15px 40px rgba(13, 13, 13, 0.06);
  margin-bottom: 1.5rem;
}

.got-facts p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.3rem;
}

.got-facts p:last-child {
  border-bottom: none;
}

.got-facts span {
  font-weight: 600;
  color: var(--heading-color);
}

/* subtle hover polish */
.got-section:hover {
  box-shadow: 0 35px 90px rgba(13, 13, 13, 0.12);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .got-section {
    padding: 1rem 19px;
    border-radius: 18px;
  }
}
