/* Guest of Honour Section */
.custom-container1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

/* Heading */
.Gue_heading {
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
    color: #ffbb00;
}

/* Grid Layout */
.grid-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}

/* Card Container */
.card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Individual Card */
.card1 {
    width: 100%;
    max-width: 225px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Card Top Section */
.top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.card-img {
    width: 100%;
    max-width: 220px;
    min-width: 150px;
    border: 0.5px solid gray;
    border-radius: 50%;
    background-color: gainsboro;
}

/* Card Bottom Section */
.bottom {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Text Styles */
.name {
    font-size: 16px;
    font-weight: 700;
    color: #0c4b8b;
}

.designation {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: red;
}

.university {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 20px;
    }
}

@media (max-width: 600px) {
    .name,
    .designation,
    .university {
        font-size: 14px;
    }
}