.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    border-radius: 5px;
    margin: 2px 5px;
    width: auto;
}

.dropdown-item:hover {
    background-color: var(--ieee-blue);
    color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bg-primary {
    background-color: var(--ieee-blue) !important;
}

.text-primary {
    color: var(--ieee-blue) !important;
}