body{
    margin: 0;
}
p{
    font-size: large;
}
.navbar-brand span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.dropdown-menu {
    border-radius: 10px;
    padding: 0.5rem;
}

.dropdown-item:hover {
    background-color: #0d6efd;
    color: #fff;
}
.custom-btn {
    background-color:black ;
    color: white;
    transition: all 0.3s ease;
}
.custom-btn:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}


.fixed-img {
    height: 250px; /* same height for all images */
    object-fit: cover; /* crop neatly without stretching */
    width: 100%; /* keep width full */
    border-top-left-radius: 0.5rem; /* optional smooth corners */
    border-top-right-radius: 0.5rem;
}


@media (max-width: 576px) { 
    .navbar-brand span {
        font-size: .8rem;
        letter-spacing: 0.5px;
    }
 }