:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #8e7f60;
  --hero-gradient2: #28270b;
  --footer-bg-color: #0d0d0d;
  --link-color: #d0b786;
  --header-bg-color: #ffffff;
  --font-family: "Times New Roman", Times, serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color) !important;
  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;
}

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

.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;
}
.footer img {
  filter: brightness(0) invert(1);
}

.navbar {
  z-index: 1030;

  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: var(--header-bg-color) !important;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 55px 0;
  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;
  }
}

@media screen and (min-width: 1199.98px) {
  .dropdown-menu {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

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

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}

.custom-dropdown .dropdown-item i {
  width: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover i {
  color: #fff;
}

.dropdown-menu {
  opacity: 0;
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 1199.98px) {
  .custom-dropdown {
    max-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .custom-dropdown {
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #dee2e6;
  }

  .custom-dropdown .dropdown-item:hover {
    margin: 0;
    border-radius: 0;
    transform: none;
  }
}

.dropdown-menu:hover,
.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #91919131 !important;
}

.contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.box-first,
.box-second {
  background-color: #ebebe7de;
  padding: 17px 15px;
}
.box-second {
  background-color: #dcdcd2;
}
@media (min-width: 767px) {
  .box-first {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .box-second {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .box-first {
    border-radius: 21px 21px 0 0;
  }
  .box-second {
    border-radius: 0 0 21px 21px;
  }
}
.heading {
  font-family: "Merriweather", serif; /* gives a formal, trustworthy vibe */
  font-weight: 700;
  color: #2a2a2a; /* dark neutral for readability */
  border-left: 6px solid #d0b786; /* accent detail */
  padding-left: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(
    to right,
    #fff8e7,
    transparent
  ); /* subtle light background */
}
.box {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 21px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.icon {
  width: 80px;
  height: 80px;
  background-color: #d0b786;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon i {
  font-size: 2rem;
  color: #fff;
}
.campaign-section {
  background-color: #fafafa;
  padding: 30px 17px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 60px auto;
  line-height: 1.7;
  color: #333;
}

.campaign-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.campaign-text {
  flex: 1 1 400px;
}

.campaign-image {
  flex: 1 1 300px;
  text-align: center;
}

.campaign-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.campaign-title {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  color: #2a2a2a;
  border-left: 6px solid #d0b786;
  padding-left: 14px;
  margin-bottom: 20px;
}

.policy-section {
  margin-bottom: 17px;
  padding: 19px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.policy-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Merriweather", serif;
  font-size: 1.3rem;
  color: #2a2a2a;
  margin-bottom: 15px;
  border-bottom: 2px solid #d0b786;
  padding-bottom: 8px;
}

.policy-section i {
  color: #d0b786;
  font-size: 1.4rem;
}

.policy-section p {
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.media-section {
  background-color: #fafafa;
  padding: 30px 19px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 30px auto;
}

.media-section .heading {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  color: #2a2a2a;
  border-left: 6px solid #d0b786;
  padding-left: 14px;
  margin-bottom: 25px;
}

.media-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
  position: relative;
}

.media-video {
  float: right;
  width: 45%;
  margin: 0 0 15px 25px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .media-video {
    float: none;
    width: 100%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
  }

  .media-text {
    text-align: left;
  }
}
.cust-bg {
  background-color: #f0e6d2;
  padding: 15px;
  border-radius: 10px;
} /* Error Page Styling */
.error-page {
  background: #fefcf8;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 80px auto;
  position: relative;
}

/* Sad Emoji Icon */
.error-page .bi-emoji-frown-fill {
  color: #d0b786;
  font-size: 4rem;
  animation: bounce 2s infinite;
}

/* 404 Title */
.error-page h1.display-1 {
  font-family: "Merriweather", serif;
  color: #2a2a2a;
  font-size: 6rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px rgba(208, 183, 134, 0.2);
}

/* Subtitle */
.error-page h2 {
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Description */
.error-page p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Buttons */
.error-page .btn {
  border-width: 2px;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}

.error-page .btn-outline-primary {
  color: #d0b786;
  border-color: #d0b786;
}

.error-page .btn-outline-primary:hover {
  background-color: #d0b786;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(208, 183, 134, 0.3);
}

.error-page .btn-outline-secondary {
  color: #888;
  border-color: #888;
}

.error-page .btn-outline-secondary:hover {
  background-color: #888;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(136, 136, 136, 0.3);
}

/* Stars Decoration */
.error-page .bi-stars {
  color: #d0b786;
  animation: twinkle 2s infinite alternate;
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.6;
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.9) rotate(-10deg);
  }
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 80px auto;
  background-color: #fafafa;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  font-family: 'Inter', sans-serif;
}

.contact-left {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 3rem;
  color: #d0b786;
  background-color: rgba(208, 183, 134, 0.1);
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(208,183,134,0.2);
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-left h2 {
  font-size: 2rem;
  color: #2a2a2a;
}

.contact-left p {
  color: #555;
  font-size: 1rem;
}

.contact-left .email-link {
  color: #d0b786;
  font-weight: 500;
  margin-top: 10px;
}

.contact-right {
  flex: 1 1 400px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right .btn-primary {
  background-color: #d0b786;
  border-color: #d0b786;
  transition: all 0.3s ease;
}

.contact-right .btn-primary:hover {
  background-color: #b99e63;
  border-color: #b99e63;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(208,183,134,0.3);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contact-left, .contact-right {
    flex: 1 1 100%;
  }

  .contact-left {
    align-items: center;
    text-align: center;
  }
}
