.institute-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

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

.institute-card-image img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    padding: 3px !important;
    border-radius: 15px !important;
}


.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: #fddc01;
}
.institute-card-body h3:hover{
    color: #ffffff;
}

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

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

@media (max-width: 768px) {
  .institute-card-wrapper {
    justify-content: center;
  }
}

