body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}
.navbar{
    background: linear-gradient(to right, #2f4aa4, #9fcef6, white);
}
.navbar-brand img{
    height: 75px;
}
.navbar-nav{
    align-items: center;
}
.nav-link {
    color: #2f4aa4 !important;
    font-weight: bold;
    text-align: center;
}
marquee{
    color: #2f4aa4;
    font-weight: bold;
}


footer{
    background-color: #2f4aa4;
    color: white;
    font-weight: bold;
}
footer li{
    color: white;
    text-decoration: none;
}
footer h5{
    font-weight: bold;
}
footer .fab,footer .fas{
    color: white;
}
.h2heading{
    color: #2f4aa4;
    font-weight: bold;
    display: inline-block;
    padding-bottom: 2px;
    background: linear-gradient(to right, #2f4aa4, #9fcef6);
    background-size: 100% 3px;
    background-position: bottom;
    background-repeat: no-repeat;
}
.card {
    display: flex;
    height: 100%; /* Ensures all cards have equal height */
}

.card-img-top {
    height: 200px; /* Set a fixed height or max-height */
    object-fit: cover; /* Ensures the image scales properly */
}

.card-body {
    flex-grow: 1; /* Makes all card bodies take equal height */
}

.card-title {
    flex-grow: 0; /* Keeps title fixed */
}

.card-text {
    flex-grow: 1; /* Allows description to stretch within the available space */
}