/* Custom Orange Navbar */
.navbar-custom {
    position: sticky;
    top: 0;
    transition: background-color 0.3s ease;
    background-color: #FF6B02 !important; 
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0 !important;
}

.navbar-container {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

/* Logo sizing */
.navbar-custom .navbar-brand img {
    height: 40px; /* Larger logo */
    transition: all 0.3s ease;
}

/* Navbar links styling */
.navbar-custom .navbar-nav .nav-link {
    color: rgb(15, 15, 15);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
}

/* Hover effect for links */
.navbar-custom .navbar-nav .nav-link:hover {
    color: rgb(15, 15, 15);
    transform: translateY(-2px);
}

/* Active link styling */
.navbar-custom .navbar-nav .nav-item .nav-link.active {
    font-weight: 800;
}

/* Add underline effect on hover */
.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(15, 15, 15);
    transition: width 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Custom white toggler icon */
.navbar-toggler-icon-custom {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: rgb(15, 15, 15) !important;
}

/* Hover effect for toggler */
.navbar-toggler:hover .navbar-toggler-icon-custom {
    opacity: 0.8;
}