.institute-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.institute-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 300px;
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.institute-card:hover {
    transform: translateY(-6px);
}

.institute-card-image {
    width: 100%;
    height: 180px; /* Fixed height box */
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.institute-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.institute-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.institute-card-body h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #333;
}

.institute-card-body p {
    font-size: 0.95em;
    margin: 8px 0;
    color: #555;
}

.cm-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 18px;
    background-color: #008fb7 !important; /* Example blue color */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}
.cm-btn:hover {
    background-color: #e64a19 !important;
    color: #ffffff !important;
}

