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

/* 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: #2E2E2E;
}

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

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

.nav-link:hover {
  color: #F05A28 !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: #2E2E2E !important;
  text-decoration: none;
}

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

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

/* Button Styling */
.btn-dark {
  color: #ffffff !important;
  background-color: #F05A28 !important; 
}

.btn-dark:hover {
  color: #ffffff !important;
  background-color: #c94a1f !important;
}





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

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

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

  .logo {
    max-height: 80px;
  }

  .fa-bars {
    color: #2E2E2E !important;
  }
}