

/* NavBar */
.navbar {
  transition: top 0.3s; /* Smooth transition for hide/show */
}
.navbar.hidden {
  top: -80px; /* Move navbar out of viewport */
}
 .navbar {
    background-color: #FFA500;
    padding: 1rem;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.navlink:hover {
    color: #FF4500 !important;
}

.contact-btn {
    background-color: #FF4500;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #FF3300;
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    .contact-btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }
    .navbar-brand img {
        height: 25px;
    }
    .contact-btn {
        display: inline-block;
    }



/* Custom Toggler Button */
.custom-toggler {
    border: none; /* Remove default border */
    background: transparent;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hamburger Icon Container */
  .custom-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  /* Hamburger Lines */
  .custom-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color); /* Line color */
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: relative;
  }
  
  /* Collapsed State (Cross Icon) */
  .custom-toggler.collapsed .custom-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .custom-toggler.collapsed .custom-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .custom-toggler.collapsed .custom-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
}


nav ul li a.active {
  color: var(--primary-orange) !important; /* Change to your desired color */
  font-weight: bold; /* Optional */
}
