/* Main Navbar */
.navbar {
    background: #1f2937;
    padding: 15px 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.navbar .container {
    position: relative;
}

.navbar-brand {
    margin-right: 2rem;
}
.navbar-brand img{
    height:50px;
}
.navbar-toggler {
    padding: 4px 8px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none; 
    border: 1px solid white !important; /* Makes the border white */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


.nav-link {
    color: #ecf0f1 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: #e67e22;
    color: white !important;
}

/* Search Box */
.search-box {
    position: relative;
    margin-right: 20px;
}

.search-box input {
    width: 250px;
    padding: 8px 35px 8px 15px;
    border: none;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
    transition: all 0.3s;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-box input:focus {
    background: rgba(255,255,255,0.2);
}

.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: white;
}

/* Icons */
.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    position: relative;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.nav-icon:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
        margin-right: 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #34495e;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem !important;
        margin: 2px 0;
        border-radius: 4px;
    }

    .search-box {
        width: 100%;
        margin: 1rem 0;
    }

    .search-box input {
        width: 100%;
    }

    .nav-icons {
        justify-content: center;
        padding: 0.5rem 0;
        flex-wrap: wrap;
    }

    .nav-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
	 
    }

    .dropdown-menu {
        background: rgba(255,255,255,0.05);
        border: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-item {
        color: #ecf0f1;
        padding: 0.8rem 1.5rem;
        text-align: center;
    }

    .dropdown-item:hover {
        background: #e67e22;
        color: white;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-icons {
        gap: 10px;
    }

    .nav-icon {
        width: 50px;
        height:50px;
    }

    .bottom-bar {
        font-size: 0.9rem;
    }
}

/* Bottom Bar */
.bottom-bar {
    background: #1f2937;
    padding: 10px 0;
    color: white;
    text-align: center;
}

.announcement {
    position: relative;
    overflow: hidden;
    height: 40px;
    background:#1f2937;
    color: #ffffff;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: scroll 20s linear infinite;
}

.announcement-text {
    white-space: nowrap;
    margin: 0 20px;
    font-size: 0.9rem;
}

.announcement-text spaan {
    color: #f59e0b;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}