.gpm-about-testimonial-container {
    width: 100%;
}

.gpm-about-testimonial-container-main {
    width: 90%;
    margin: auto;
}
.gpm-about-testimonial-container-main  h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-about-testimonial-container-main .gpm-heading-main {
    color: #c21717;
}

.gpm-about-testimonial-header {
    text-align: center;
    position: relative;
}

.gpm-about-testimonial-title {
    font-size: 34px;
    color: #3498db;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gpm-about-testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: #3a7bd5;
    border-radius: 2px;
}

.gpm-about-testimonial-subtitle {
    font-size: 18px;
    color: black;
    max-width: 800px;
    margin: 0 auto;
}

.gpm-about-testimonial-section-title {
    font-size: 26px;
    color: #3a7bd5;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.gpm-about-testimonial-section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3a7bd5;
}

.gpm-about-testimonial-section-title i {
    margin-right: 10px;
    color: #f39c12;
}
#gpm-about-testimonial-all h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-about-testimonial-all .gpm-heading-main {
    color: #c21717;
}

/* Updated grid layout for responsive card display */
.gpm-about-testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Default 4 columns for large screens */
    gap: 25px;
}

.gpm-about-testimonial-card {
    background: white;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gpm-about-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gpm-about-testimonial-card-faculty {
    border-top: 5px solid #3498db;
}

.gpm-about-testimonial-card-team {
    border-top: 5px solid #3a7bd5;
}

.gpm-about-testimonial-card-header {
    padding: 20px;
    text-align: center;
    position: relative;
    margin-bottom: -10px;
}

.gpm-about-testimonial-card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.gpm-about-testimonial-principal {
    background-color: #f1f8ff;
}

.gpm-about-testimonial-card-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #3498db;
}

.gpm-about-testimonial-card-role {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

.gpm-about-testimonial-card-body {
    padding: 0 20px 20px;
}

.gpm-about-testimonial-card-description {
    font-size: 14;
    color: black;
}

.gpm-about-testimonial-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3a7bd5;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Responsive layout adjustments */
@media (max-width: 1200px) {
    .gpm-about-testimonial-cards {
        grid-template-columns: repeat(3, 1fr);
        /* 4 cards on large screens */
    }
}
@media (max-width: 992px) {
    .gpm-about-testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards on medium screens */
    }
}
@media (max-width: 768px) {
    .gpm-about-testimonial-card-tags {display: flex;
    flex-direction: column;
    gap: 10px;
    }
}
@media (max-width: 576px) {
    .gpm-about-testimonial-cards {
        grid-template-columns: 1fr;
        /* 1 card on small screens */
    }

    .gpm-about-testimonial-title {
        font-size: 2rem;
    }

    .gpm-about-testimonial-section-title {
        font-size: 1.5rem;
    }
}

.gpm-about-testimonial-tab-container {
    margin-bottom: 30px;
}

.gpm-about-testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gpm-about-testimonial-tab {
    padding: 10px 20px;
    background: white;
    border: 2px solid #3498db;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gpm-about-testimonial-tab:hover {
    background: #e3f2fd;
}

.gpm-about-testimonial-tab.active {
    background: #3498db;
    color: white;
}

.gpm-about-testimonial-content {
    display: none;
}

.gpm-about-testimonial-content.active {
    display: block;
}

.gpm-about-testimonial-card-tag {
    background: #d8dfe6;
    color: #2c20dd;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gpm-about-testimonial-card,
.gpm-about-testimonial-section-title {
    animation: fadeIn 0.5s ease forwards;
}