/* Font size buttons */
.font-size-btn {
    background-color: #003366 !important;
    color: white !important;
}

/* Fixed position buttons */
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 1000;
}

/* Header background */
.header-dark-blue {
    background-color: #003366 !important;
}

/* Profile card images */
.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #003366;
}

/* Card titles */
.card-title-blue {
    color: #003366;
    font-weight: bold;
}

/* Banner images */
.static-image,
.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* University logos */
.university-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Digital initiative logos */
.digital-logo {
    width: 150px;
    height: auto;
    object-fit: cover;
    image-orientation: from-image;
}

/* Testimonial images */
.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #003366;
}

/* Photo gallery */
.gallery-img {
    height: 300px;
    object-fit: cover;
}

/* Carousel controls */
.carousel-control-custom {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

/* Section backgrounds */
.section-light-blue {
    background-color: #eef2f5;
}

.section-light-gray {
    background-color: #ced4da;
}

/* Text colors */
.text-blue {
    color: #003366;
}

.text-white {
    color: white;
}

/* Card styles */
.card-shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.rounded-card {
    border-radius: 0.75rem;
}

/* Logo section gradient */
.logo-gradient {
    background: linear-gradient(to right, #FF9933, white, #138808);
}

/* Card header styles */
.card-header-blue {
    background-color: #003366 !important;
    color: white;
    font-size: 22px;
}

/* Image sizing */
.img-max-60 {
    max-height: 60px;
}

/* Overflow text */
.text-overflow {
    max-height: 150px;
    overflow: hidden;
}

/* Mobile menu */
.mobile-menu-width {
    width: 80%;
}

/* Google Translate */
.hidden-element {
    display: none;
}

.university-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.university-header {
    background-color: #003366 !important;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    min-height: 80px;
    /* To align titles of different lengths */
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-row {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.info-icon {
    color: #003366;
    width: 25px;
    text-align: center;
    margin-right: 8px;
}

.btn-visit {
    background-color: #003366;
    color: white;
    border: none;
}

.btn-visit:hover {
    background-color: #cc0000;
    /* Matching your secondary red color */
    color: white;
}