body, html {
  margin: 0;
  padding: 0;
  font-family: 'Overlock', sans-serif;
}
.navbar {
  padding: 15px 0;
  position: sticky; /* Make navbar sticky */
  top: 0; /* Stick to the top of the viewport */
  z-index: 1000; /* Ensure it stays on top of other elements */
  background-color: white; /* Make sure background is set, in case the image or content underneath it is transparent */
}

.navbar-logo {
  height: 65px; /* Logo height */
  margin-right: 15px; /* Add spacing between the logos */
}

.nav-link {
  font-weight: 500;
  font-size: 20px; /* Font size for navbar items */
  color: var(--bg-color); /* Default non-active color */
}

.nav-link:hover {
  color: var(--btn-hover-color); /* Hover color */
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--bg-color) !important; /* Active link color */
}

.navbar-nav .nav-item .nav-link:focus {
  outline: none; /* Remove focus outline for better styling */
}

/* Dropdown item default and hover color */
.dropdown-menu .dropdown-item {
  color: var(--bg-color); /* Default dropdown item color */
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--bg-color); /* Hover background color */
  color: white !important; /* Text color on hover (using !important to override default styles) */
}

.dropdown-menu .dropdown-item:focus {
  outline: none; /* Remove focus outline */
}
.footer {
  background-color: var(--bg-color); /* Background color */
  color: white;
  padding: 20px 0;
}

.footer-logo {
  height: 40px; /* Adjust the size of the logo */
  margin-bottom: 10px; /* Space between the logo and the text */
}

.footer-left p,
.footer-right p,
.footer-center p {
  margin: 5px 0;
}

.footer-left p a,
.footer-right p a {
  color: white;
  text-decoration: none;
}

.footer-left p a:hover,
.footer-right p a:hover {
  text-decoration: underline;
}

.footer h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-center p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-left,
  .footer-right,
  .footer-center {
    text-align: center; /* Center the content for smaller screens */
    margin-bottom: 20px; /* Add space between the sections */
  }
}

.nav-btn{
  display: inline-block;
  background-color: #920101;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #920101;
  transform: translateY(-3px);
}
