/* General Body Styling */
body {
  padding-top: 70px;
}

/* Header Font Styling */
.header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* General Text Styling */
.text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.txt {
  font-family: 'Montserrat', sans-serif;
}

.textdark {
  color: #033679;
}

/* Navbar Styling */
.navbar {
  height: fit-content;
  background-color: white !important;
  padding: 0;
}

.nav-link {
  color: #033679 !important; /* Default link color */
  text-decoration: none;
}

.nav-link:hover {
  color: #E1C340 !important; /* Hover effect */
  text-decoration: none;
}

.navbar-scroll.navbar-scrolled {
  background-color: rgb(10, 12, 33);
  font-size: 1.2rem;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Dropdown Item Styling */
.dropdown-item {
  color: #033679 !important;
  text-decoration: none;
}

.dropdown-item:hover {
  color: #E1C340 !important;
  text-decoration: underline;
  border-radius: 10px;
}

/* Logo Styling */
.logo {
  max-height: 60px;
}

/* Button Styling */
.btn-dark {
  color: #E1C340;
  background-color: #033679;
}

.btn-dark:hover {
  color: #033679;
  background-color: #E1C340;
}

.btn-light {
  background-color: #E1C340;
  color: #033679;
  box-shadow: none;
}

.btn-light:hover {
  background-color: #fefefe;
  color: #033679;
  box-shadow: none;
}

.tr-btn {
  background-color: #033679;
  color: #E1C340;
}

.tr-btn:hover {
  color: black;
  background-color: #E1C340;
}

.tl-btn {
  visibility: hidden;
  display: none;
}

/* Footer Link Styling */
.footer-link {
  color: #ffffff;
}

.footer-link:hover {
  color: #E1C340;
}

/* Media Queries for Responsiveness */
@media (max-width: 1199px) {
  body {
    padding-top: 130px;
  }

  .logo {
    max-height: 80px;
  }

  .tr-btn {
    visibility: hidden;
    display: none;
  }

  .tl-btn {
    visibility: visible;
    display: inline;
    width: 100%;
  }

  .fa-bars {
    color: #E1C340 !important;
  }
}
.site-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2100;
  display: grid;
  width: min(390px, calc(100vw - 2rem));
  gap: .65rem;
  pointer-events: none;
}

.site-message {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .7rem .75rem;
  border: 1px solid #e1e6ef;
  border-radius: 14px;
  color: #263554;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 40px rgba(24, 38, 77, .18);
  pointer-events: auto;
  animation: site-message-in 180ms ease-out;
}

.site-message-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #177857;
  background: #e7f7f1;
  font-size: .78rem;
}

.site-message-error .site-message-icon,
.site-message-danger .site-message-icon {
  color: #b33b4d;
  background: #fdecef;
}

.site-message-warning .site-message-icon {
  color: #8a6915;
  background: #fff4d7;
}

.site-message-info .site-message-icon {
  color: #405989;
  background: #edf1f8;
}

.site-message-copy {
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-message-close {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #7b8497;
  background: transparent;
}

.site-message-close:hover {
  color: #18264d;
  background: #f0f2f7;
}

@keyframes site-message-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575.98px) {
  .site-messages { top: .7rem; right: .7rem; width: calc(100vw - 1.4rem); }
}
