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