#gpm-academic-department {
    width: 100%;
    height: auto;
    margin-top: 25px;
}

#gpm-academic-department-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-academic-department-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-academic-department-main .gpm-academic-department-heading-main {
    color: #c21717;
}

.gpm-academic-department-main {
    width: 100%;
}

.gpm-academic-department-content-section {
    width: 100%;
    margin: 40px auto;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.gpm-academic-department-content-section:hover {
    transform: translateY(-5px);
}

.gpm-academic-department-content-text {
    width: 60%;
    padding: 30px;
}

.gpm-academic-department-content-text h2 {
    font-weight: 700;
    color: black;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}

.gpm-academic-department-content-text h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1976d2;
    border-radius: 2px;
}

.gpm-academic-department-content-text h3 {
    margin: 20px 0;
    font-weight: 500;
    color: #1976d2;
    font-size: 20px;
}

.gpm-academic-department-content-text p {
    color: black;
    line-height: 1.8;
    font-size: 16px;
}

.gpm-academic-department-content-image {
    width: 40%;
    height: 300px;
    padding: 20px;
    position: relative;
}

.gpm-academic-department-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 19% 86% 14% 81% / 86% 14% 92% 8% ; */
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gpm-academic-department-content-image img:hover {
    transform: scale(1.02);
}

.gpm-academic-department-gpm-academic-department-features-feature-s {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.gpm-academic-department-features-feature- {
    margin-right: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.gpm-academic-department-features-feature-::before {
    content: '✓';
    display: inline-block;
    margin-right: 8px;
    color: #3498db;
    font-weight: bold;
}

/* Responsive layout adjustments */
@media (max-width: 991px) {
    .gpm-academic-department-content-section {
        flex-direction: column;
        width: 95%;
    }

    .gpm-academic-department-content-text,
    .gpm-academic-department-content-image {
        width: 100%;
        padding: 15px;
    }

    .gpm-academic-department-content-image {
        height: 300px;
        margin: 20px 0;
    }

    .gpm-academic-department-content-text h2 {
        font-size: 28px;
    }

    .gpm-academic-department-content-text h3 {
        font-size: 18px;
    }
}