/* Font Family */
@font-face {
    font-family: 'Poppins';
    src: url('/gpmau/library/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/gpmau/library/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Apply Poppins font to the entire document */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

/* Loader Animation */
#gpm-main-loader {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
    top: 0;
    background-color: white;
    left: 0;
    transition: all 2s ease-in-out;
}

.gpm-loader-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.gpm-loader-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.gpm-loader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.gpm-loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border: 4px solid transparent;
    border-top: 4px solid #c21717;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.75s linear infinite;
}

/* Smooth rotation animation */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    60% {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    75% {
        transform: translate(-50%, -50%) rotate(270deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.gpm-loading-text h2 {
    padding: 25px;
    font-size: 30px;
    color: #1976d2;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

/* gpm-loading text animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.7;
    }
}

@media (max-width:700px) {
    .gpm-loader-container {
        width: 150px;
        height: 150px;
    }

    .gpm-loader-image {
        width: 120px;
        height: 120px;
    }

    .gpm-loader-circle {
        width: 170px;
        height: 170px;
    }

    .gpm-loading-text h2 {
        font-size: 25px;
        padding: 18px;
    }
}

@media (max-width:450px) {
    .gpm-loader-container {
        width: 150px;
        height: 150px;
    }

    .gpm-loader-image {
        width: 120px;
        height: 120px;
    }

    .gpm-loader-circle {
        width: 170px;
        height: 170px;
    }

    .gpm-loading-text h2 {
        font-size: 20px;
        padding: 15px;
    }
}

/* Styles for the Back to Top button */
#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    outline: none;
    font-size: 24px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    overflow: hidden;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
#backToTopBtn:hover {
    background-color: #1976d2;
    transform: scale(1.1);
}

/* Fade-in effect */
#backToTopBtn.show {
    display: block;
    opacity: 1;
}

#backToTopBtn::before {
    animation: shine 2s ease-out infinite;
}

#backToTopBtn::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* Breadcumb Details */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Overlay */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 90%;
    /* Add width to control content size */
}

.banner-content h3 {
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 800;
}

.breadcrumb {
    margin-bottom: 20px;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: auto;
    display: flex;
    /* Make it a flex container */
    flex-wrap: wrap;
    /* Allow items to wrap */
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb span {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-content h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
        /* Add some bottom margin */
    }

    .banner img {
        width: 100%;
        height: 150px;
    }

    .breadcrumb {
        font-size: 12px;
        /* Reduce font size on small screens */
        line-height: 1.4;
        /* Improve line height for readability */
        justify-content: center;
        /* Center align the breadcrumbs */
    }

    /* Handle long breadcrumbs better */
    .banner-content {
        width: 95%;
        max-height: 80%;
        overflow-y: auto;
        /* Allow scrolling if content is too tall */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .banner-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .breadcrumb {
        font-size: 10px;
    }

}

/* Styling for the navigation bar */
#gpmau-top-navbar {
    width: 100%;
    background: linear-gradient(60deg, #c21717, #1976d2, #388e3c);
    animation: topnav 5s linear infinite;
    color: white;
    height: auto;
}

@keyframes topnav {
    100% {
        filter: hue-rotate(360deg);
    }
}

#gpmau-top-navbar .top-nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

#top-nav-data-1,
#top-nav-data-2 {
    display: flex;
    align-items: center;
}

.nav-item-1,
.nav-item-2 {
    margin: 0 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.nav-item-1 i,
.nav-item-2 i {
    margin-right: 8px;
    font-size: 16px;
}

.social-media {
    display: flex;
}

.nav-item-2 {
    margin-left: 8px;
}

.nav-item-2:hover {
    color: #f0f0f0;
    /* Light color on hover */
}

/* Responsive adjustments */
@media (max-width:1290px) {

    .nav-item-1,
    .nav-item-2 {
        font-size: 14px;
    }

    .nav-item-1 i,
    .nav-item-2 i {
        font-size: 14px;
    }

}

@media (max-width:1140px) {
    #gpmau-loc {
        display: none;
    }
}

@media (max-width: 768px) {
    #gpmau-top-navbar .top-nav {
        flex-direction: row;
        align-items: flex-start;
    }

    #top-nav-data-1,
    #top-nav-data-2 {
        width: 100%;
        justify-content: space-between;
    }
}

@media(max-width:650px) {
    .social-media {
        display: none;
    }
}

@media(max-width:400px) {

    .nav-item-1,
    .nav-item-2 {
        font-size: 11px;
    }

    .nav-item-1 i,
    .nav-item-2 i {
        font-size: 11px;
    }

    .nav-item-1,
    .nav-item-2 {
        margin: 0 0px;
    }
}

@media (max-width: 300px) {
    #gpmau-top-navbar .top-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

#gpmau-middle-navbar {
    width: 100%;
    height: auto;
    background-color: white;
}

#middle-nav {
    width: 90%;
    margin: auto;
    padding: 5px;

}

#gpmau-middle-1 {
    display: flex;
}

#gpmau-data-text {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

#gpmau-data-text h1 {
    font-size: 25px;
    font-weight: 700;
    color: #c21717;
    text-align: center;
}

#gpmau-data-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #c21717;
    text-align: center;
}

#gpmau-data-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #c21717;
    text-align: center;
}

#gpmau-middle-1 img {
    width: 120px;
    height: 120px;
    max-width: 100%;
}

#gpmau-middle-2 {
    display: flex;
}

#gpmau-middle-2 img {
    width: 180px;
    padding: 10px;
    height: 120px;
    margin: auto;
    max-width: 100%;
}

@media (max-width:1070px) {
    #gpmau-data-text {
        margin: auto;
    }
}

@media (max-width:710px) {
    #gpmau-middle-1 {
        flex-direction: column;
    }

    #gpmau-middle-1 img {
        margin: auto;
    }
}

@media (max-width:1070px) {
    #gpmau-data-text h1 {
        font-size: 20px;
        font-weight: 600;
        color: #c21717;
    }

    #gpmau-data-text h2 {
        font-size: 18px;
        font-weight: 600;
        color: #c21717;
    }

    #gpmau-data-text h4 {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width:500px) {
    #gpmau-data-text h1 {
        font-size: 18px;
        font-weight: 600;
        color: #c21717;
    }

    #gpmau-data-text h2 {
        font-size: 16px;
        font-weight: 600;
        color: #c21717;
    }

    #gpmau-data-text h4 {
        font-size: 8px;
        font-weight: 600;
    }
}

/* Pop Up Data */
.gpm-hero-section-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gpm-hero-section-popup-overlay.gpm-hero-section-active {
    opacity: 1;
}

.gpm-hero-section-popup-card {
    position: relative;
    background: white;
    width: 500px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.gpm-hero-section-popup-overlay.gpm-hero-section-active .gpm-hero-section-popup-card {
    transform: scale(1);
}

.gpm-hero-section-popup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #6366f1, #4f46e5);
}

.gpm-hero-section-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4d4f 0%, #f5222d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gpm-hero-section-close-btn:hover {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #ff7875 0%, #ff4d4f 100%);
}

.gpm-hero-section-cancel-gif {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: 3s ease-in-out infinite;
}

.gpm-hero-section-notification-text {
    font-size: 24px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Updated search container styles */
.gpm-hero-section-seach-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.gpm-hero-section-seach-box {
    width: 100%;
    max-width: 500px;
    height: 45px;
    border-radius: 12px;
    border: 2px solid #4f46e5;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    padding: 0 15px;
}

.gpm-hero-section-seach-box:focus {
    border-color: #4338ca;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}

/* New typing animation styles */
.typing-text {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-style: italic;
    pointer-events: none;
    display: inline-block;
    font-size: 18px;
}

.typing-text::after {
    content: '|';
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.gpm-hero-section-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.gpm-hero-section-action-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gpm-hero-section-primary-btn {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.gpm-hero-section-secondary-btn {
    background: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.gpm-hero-section-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .gpm-hero-section-popup-card {
        width: 90%;
        margin: 20px;
        padding: 20px;
    }

    .gpm-hero-section-action-buttons {
        flex-direction: column;
    }

    .gpm-hero-section-action-btn {
        width: 100%;
    }

    .gpm-hero-section-seach-box {
        width: 90%;
        height: 40px;
        font-size: 14px;
    }

    .typing-text {
        font-size: 14px;
        left: 20px;
    }
}

/* header */
#container {
    width: 100%;
    background-color: #1976d2;
    z-index: 1000;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: all 2s ease-in-out;
}

.header {
    display: flex;
    width: 90%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.header .menu .head {
    display: none;
}

.header .menu ul {
    list-style: none;
    margin: auto;
    padding-inline-start: 5px;

}

.header .menu>ul>li {
    display: inline-block;
}

.header .menu>ul>li:not(:last-child) {
    margin-right: 15px;
}

.header .menu .dropdown {
    position: relative;
}

.header .menu a {
    font-size: 15px;
    font-weight: 500;
    color: white;
    display: block;
    margin: auto;
    text-decoration: none;
}

.header .menu>ul>li>a {
    padding: 14px 0px;
}

.header .menu>ul>.dropdown>a {
    padding-right: 15px;
}

.header .menu i {
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: white;
    top: calc(50% - 6px);
}

.header .menu>ul>li>i {
    right: 0;
}

.header .menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    padding: 15px 0;
    background: #c21717;
    border-radius: 10px;
    box-shadow: 0 0 1px 0.5px #004A99;
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}

.header .menu .sub-menu-right {
    left: 100%;
    top: 0;
}

.header .menu .sub-menu-left {
    top: 0;
    left: auto;
    right: 100%;
}

.header .menu li:hover>.sub-menu {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}

.header .menu .sub-menu a {
    padding: 6px 24px;
}

.header .menu .sub-menu .dropdown>a {
    padding-right: 34px;
}

/* .header .menu ul li a {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.header .menu ul li a:hover {
    background-size: 100% 2px;
} */
.main-tab {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.main-tab:hover {
    background-size: 100% 2px;
}

.header .menu .sub-menu span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;

}

.header .menu .sub-menu li:hover>a>span {
    background-size: 100% 1.75px;
}

.header .menu .sub-menu i {
    transform: rotate(-90deg);
    right: 24px;
}

.header-right {
    display: flex;
}

.header-right>* {
    margin-left: 10px;

}

.header-right .icon-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    outline: none;
}

.header-right .icon-btn:hover {
    transition: all 0.5s ease-in-out;
    background-color: #1976d2;
}

.header-right .open-menu-btn {
    display: none;
    outline: none;
}

@media(max-width:1000px) {
    .header {
        padding: 12px 0px;
    }

    .header .menu {
        position: fixed;
        right: 0;
        top: 0;
        width: 320px;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        padding: 30px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }

    .header .menu a {
        color: red;
        font-size: 18px;
    }

    .header .menu .sub-menu {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: none;
        border-radius: 10px;
    }

    .header .menu.open {
        transform: none;
    }

    .main-tab {
        background-image: linear-gradient(hsl(209, 88%, 48%), hsl(223, 100%, 50%));
    }

    .header .menu .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .menu .close-menu-btn {
        height: 35px;
        width: 35px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #c21717;
        cursor: pointer;
        border: none;
        margin-bottom: 30px;
        left: 90%;
        padding: 10px;
        outline: none;
    }

    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after {
        content: '';
        position: absolute;
        width: 90%;
        height: 2px;
        background-color: white;
    }

    .header .menu .close-menu-btn::before {
        transform: rotate(45deg);
    }

    .header .menu .close-menu-btn::after {
        transform: rotate(-45deg);
    }

    .header .menu>ul>li {
        display: block;
    }

    .header .menu>ul>li:not(:last-child) {
        margin-right: 0;
    }

    .header .menu li {
        border-bottom: 1px solid hsla(0, 0%, 100%.0.25);
    }

    /* .header .menu li:first-child {
        border-top: 2px solid white;
    } */

    .header .menu>ul>li>a {
        padding: 12px 0;
    }

    .header .menu>ul>.dropdown>a {
        padding-right: 34px;
    }

    .header .menu i {
        height: 34px;
        width: 34px;
        border: 2px solid #c21717;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
        color: #c21717;
    }


    .header .menu .dropdown.active>i {
        border: 2px solid #c21717;
        transition: all 0.5s ease-in-out;
        transform: rotate(180deg);
    }

    .header .menu .sub-menu {
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    .header .menu .dropdown.active>.sub-menu {
        display: block;
    }

    .header .menu .sub-menu li:last-child {
        border: none;
    }

    .header .menu .sub-menu a {
        padding: 12px 0 12px 15px;
    }

    .header .menu .sub-menu .sub-menu a {
        padding-left: 30px;
    }

    .header .menu .sub-menu .sub-menu .sub-menu a {
        padding-left: 45px;
    }

    .header .menu .sub-menu span {
        background-image: none;
    }

    .header .menu .sub-menu i {
        transform: none;
        right: 0;
    }

    .header-right .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: absolute;
        background-color: transparent;
        border: none;
    }

    .header-right .open-menu-btn .line {
        height: 2.5px;
        width: 35px;
        background-color: white;
        position: absolute;
    }

    .header-right .open-menu-btn .line-1 {
        transform: translateY(-8px);
    }

    .header-right .open-menu-btn .line-3 {
        transform: translateY(8px);
    }

    #search {
        left: 5%;
    }

    #user {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #menu {
        position: absolute;
        right: 5%;
    }

    .header-right .icon-btn {
        font-size: 25px;
    }

    .header .menu .sub-menu span {
        background-image: linear-gradient(hsl(212, 100%, 50%), hsl(224, 100%, 50%));
    }

    .header .menu .sub-menu li:hover>a>span {
        background-size: 100% 1.75px;
    }
}

@media(max-width:995px) {
    .header .menu.open {
        width: 60%;
    }
}

@media(max-width:800px) {
    .header .menu.open {
        width: 60%;
    }
}

@media(max-width:600px) {
    .header .menu.open {
        width: 100%;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .header .menu a {
        font-size: 16px
    }
}

/* Sidebar */
.sidebar-item {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #004aad;
    color: white;
    transition: width 0.3s ease;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width:1000px) {
    .sidebar-item {
        z-index: 800;
    }
}

.sidebar-item:hover {
    width: 180px;
}

.icon {
    font-size: 16px;
    min-width: 40px;
    text-align: center;
    margin-left: 6px;
}

.label-sidebar {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-item:hover .label-sidebar {
    opacity: 1;
}

.submit-query-sidebar {
    background-color: #2067c4;
    top: 250px;
}

.pgi-erp-sidebar {
    background-color: #d14242;
    top: 300px;
}

.admission-sidebar {
    background-color: #4caf50;
    top: 350px;
}

.pay-fee-sidebar {
    background-color: #ec9f2b;
    top: 400px;
}

.submit-query-sidebar:hover {
    background-color: #004aad;
}

.pgi-erp-sidebar:hover {
    background-color: #b22222;
}

.admission-sidebar:hover {
    background-color: #22ac27;
}

.pay-fee-sidebar:hover {
    background-color: #ff9800;
}

/* Blinking caret */
.caret {
    display: inline-block;
    width: 2px;
    background-color: #f6ebeb;
    animation: blink 0.8s step-end infinite;
}

.close-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #ff6b6b;
    color: #fdfafa;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    outline: none;
    font-size: 1rem;
    z-index: 3000;
    display: none;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #ff4b4b;
}

.close-btn.active {
    display: block;
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}

#gpm-details-card {
    width: 100%;
    height: auto;
    margin-top: -50px;
    z-index: 500;
    position: relative;
}

#gpm-details-card-main {
    width: 90%;
    height: auto;
    display: flex;
    margin: auto;
}

.gpm-details-card-main-data {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.gpm-details-card-data-show {
    height: 200px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: #e8e3e2;
    margin: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    cursor: pointer;
}

.gpm-details-card-data-show {
    height: 200px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, z-index 0.3s ease;
    background-color: #e8e3e2;
    margin: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    cursor: pointer;
    transform: scale(1);
    z-index: 1;
}

.gpm-details-card-data-show:hover {
    transform: scale(1.1);
    /* Use a smaller scale factor if 1.5 is too large */
    z-index: 10;
    /* Bring the element to the front on hover */
}


@media (max-width:800px) {
    .gpm-details-card-main-data {
        margin: 5px;
    }

    .gpm-details-card-main-data {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width:350px) {
    #gpm-details-card-main {
        display: flex;
        flex-direction: column;
    }
}

.gpm-data-box i {
    font-size: xx-large;
    padding-bottom: 10px;
}

/* About Us */
#gpm-about-us-section {
    width: 100%;
    height: auto;
}

#gpm-about-us-section-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-about-us-main-data {
    margin-top: 30px;
}

#gpm-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

#gpm-about-us-main-data img {
    width: 300px;
    height: 300px;
}

#gpm-principal-image {
    display: flex;
    padding: 15px;
    justify-content: center;
    align-items: center;
}

#gpm-principal-image img {
    width: 300px;
    height: 300px;
    cursor: pointer;
    border-radius: 10px;
}

/* Notification */
#gpm-imp-notice {
    width: 100%;
    height: auto;
    margin-top: 40px;
}

#gpm-impt-notice-main-1 {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-about-us-section h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-about-us-section h2 .gpm-heading-main {
    color: #c21717;
}

.gpm-imp-notice-main {
    height: 600px;
    margin: auto;
    background-color: white;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
}

.gpm-announcement-section {
    text-align: center;
}

.gpm-announcement-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-announcement-section h2 .gpm-heading-main {
    color: #c21717;
}

.gpm-under-line-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.gpm-under-line-main .gpm-line-main {
    height: 4px;
    width: 35px;
    background-color: #c21717;
    border-radius: 2px;
}

.gpm-under-line-main .gpm-center-main {
    height: 10px;
    width: 50px;
    background-color: #c21717;
    margin: 0 -2px;
    border-radius: 5px;
}

.gpm-notice-section {
    width: 90%;
    height: 500px;
    overflow: hidden;
}

.gpm-scroll-container {
    height: 95%;
    overflow: hidden;
    position: relative;
}

.gpm-scroll-content {
    position: absolute;
    animation: scrollUp 40s linear infinite; /* Slow and smooth scroll */
}

@keyframes scrollUp {
    0%, 15% {
        transform: translateY(0);
    }
    25%, 40% {
        transform: translateY(-40px);
    }
    50%, 65% {
        transform: translateY(-80px);
    }
    75%, 90% {
        transform: translateY(-120px);
    }
    100% {
        transform: translateY(-160px);
    }
}
.gpm-courses-notice-main h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-courses-notice-section h2 .gpm-heading-main {
    color: #c21717;
}

.gpm-courses-notice-main {
    background-color: white;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
    border-radius: 10px;
    height: 600px;
    color: black;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

#gpm-offered-courses {
    width: 100%;
    height: 500px;
    overflow: auto;
}

/* Counter  */
#gpm-counter-main {
    background: url('/gpmau/assets/images/background-image.jpg') no-repeat center center/cover;
    backdrop-filter: blur(10px);
    width: 100%;
    height: auto;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.counter-section {
    padding: 50px 0;
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gpm-counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.89);
    z-index: 1;
}

.counter-box {
    color: white;
    padding: 15px;
    margin: auto;
    max-width: 200px;
}

.counter-icon {
    font-size: 2.5em;
    color: #ddff00;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.counter-box:hover .counter-icon {
    transform: scale(1.2);
}

.counter-box h2 {
    font-size: 2.2em;
    margin: 0;
    font-weight: bold;
}

.counter-box p {
    font-size: 1.1em;
    margin-top: 5px;
    text-transform: uppercase;
    color: white;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .counter-section {
        padding: 30px 0;
    }

    .counter-box {
        max-width: 150px;
        padding: 10px;
    }

    .counter-icon {
        font-size: 2em;
    }

    .counter-box h2 {
        font-size: 1.8em;
    }

    .counter-box p {
        font-size: 1em;
    }
}

@media screen and (max-width: 576px) {
    .counter-section {
        padding: 20px 0;
    }

    .counter-box {
        max-width: 120px;
    }

    .counter-icon {
        font-size: 1.8em;
    }

    .counter-box h2 {
        font-size: 1.5em;
    }

    .counter-box p {
        font-size: 0.9em;
    }
}

/* Mentors */
#gpm-mentors {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-mentors-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-mentors-main h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-mentors-main .gpm-heading-main {
    color: #c21717;
}

.mentor-card {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    border-bottom: 2px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
    transition: transform 0.3s;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.mentor-info {
    padding: 15px;
}

.mentor-name {
    color: #388e3c;
    margin: 10px 0 5px;
    font-weight: bold;
}

.mentor-title {
    font-size: 12px;
    color: black;
    font-weight: bold;
}

/* Academic Departments */
#gpm-academic-department {
    width: 100%;
    margin-top: 45px;
    height: auto;
}

#gpm-depart-main {
    width: 90%;
    margin: auto;
    height: auto;
}

#gpm-academic-department h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-academic-department .gpm-heading-main {
    color: #c21717;
}

.depart-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
    /* Increased min-width */
    gap: 20px;
    width: 100%;
    margin-left: auto;

}

.depart-card {
    background-color: hsl(0, 11%, 89%);
    color: hsla(0, 63%, 5%, 0.834);
    text-align: center;
    padding: 40px;
    /* Increased padding for larger box size */
    border-radius: 8px;
    border: 1.5px solid black;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.depart-card:hover {
    transform: scale(1.1);
    background-color: #1976d2;
    color: #f9f9f9;
}

.depart-icon-depart-container {
    background-color: #1976d2;
    color: #fff;
    width: 80px;
    /* Circle size */
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.depart-card:hover .depart-icon-depart-container {
    border: 2px solid #ded3d3;
    /* background-color: #ded3d3; */
}

.depart-icon {
    font-size: 40px;
}

.depart-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .depart-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .depart-icon-depart-container {
        width: 60px;
        height: 60px;
    }

    .depart-icon {
        font-size: 30px;
    }

    .depart-card h3 {
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    .depart-container {
        grid-template-columns: 1fr;
    }

    .depart-card {
        padding: 30px;
    }

    .depart-icon-depart-container {
        width: 50px;
        height: 50px;
    }

    .depart-icon {
        font-size: 24px;
    }

    .depart-card h3 {
        font-size: 12px;
    }
}

/* Faculty Details */
#gpm-faculty-details-main {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-faculty-details-main-child h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-faculty-details-main-child .gpm-heading-main {
    color: #c21717;
}

#gpm-faculty-details-main-child {
    width: 90%;
    height: auto;
    margin: auto;
}

.gpm-slider-wrapper {
    margin: 0 30px 20px;
    padding: 20px 30px;
    overflow: hidden;
}

.card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 20px #00000030;
}

.content-img-main,
.content-box-2 {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;

}

.content-img-main {
    position: relative;
    row-gap: 5px;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00039d;
    border-radius: 25px 25px 25px 0;
}

.overlay::before {
    content: '';
    position: absolute;
    height: 40px;
    width: 40px;
    background: #00039d;
    left: 0;
    bottom: -40px;
}

.overlay::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 40px;
    background: #ffffff;
    left: 0;
    bottom: -40px;
    border-radius: 25px 0 0 0;
}

.gpm-card-img {
    width: 130px;
    height: 130px;
    position: relative;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.gpm-card-img .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00039d;
}

.content-box-2 .username-profile {
    font-size: 26px;
    font-weight: 600;
    color: #09003a;
    padding-bottom: 6px;
    z-index: 1;
}

.content-box-2 .user-profession {
    font-size: 16px;
    font-weight: 500;
    color: #09003a;
    margin: 0;
    padding: 0;
}

.social-icon {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
}

.social-icon li {
    list-style: none;
}

.social-icon li a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00039d;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon li a::before {
    content: '';
    position: absolute;
    height: 40px;
    width: 0;
    top: 0;
    left: 0;
    background: #ff008c;
    transition: 0.5s;
    z-index: -1;
}

.social-icon li a:hover::before {
    width: 100%;
}

.btn {
    cursor: pointer;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: #00039d;
    color: #fff;
    border-radius: 6px;
    z-index: 1;
    position: relative;
    outline: none;
    border: none;
    overflow: hidden;
}

.btn::before {
    animation: shine 2s ease-out infinite;
}

.btn::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.btn:focus {
    outline: none;
    border: none;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.gpm-slider-wrapper .swiper-pagination-bullet {
    background: #00039d;
    height: 13px;
    width: 13px;
    opacity: 0.5;
}

.gpm-slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.gpm-slider-wrapper .swiper-slide-button {
    color: #00039d;
    transition: 0.5s;
}

/* Responsive Code */
@media screen and (max-width: 768px) {
    .gpm-slider-wrapper {
        margin: 0 20px 20px;
        padding: 20px 30px;
    }
}
/* Announcements */
.gpm-quick-access-main-content {
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: filter 0.3s ease;
}

.gpm-quick-access-main-content h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

.gpm-quick-access-main-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.gpm-quick-access-main-content.gpm-quick-access-blur {
    filter: blur(3px);
    pointer-events: none;
}

.gpm-quick-access-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: none;
}

.gpm-quick-access-popup-overlay.gpm-quick-access-active {
    display: flex;
}

.gpm-quick-access-popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    max-width: 900px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: scroll;
    scrollbar-width: none;
    animation: gpm-quick-access-slideIn 0.5s ease-out;
    border-top: 7px solid #1976d2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.gpm-quick-access-popup-header {
    background: #dc3545;
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.gpm-quick-access-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #1976d2;
    border: none;
    color: white;
    font-size: 28px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gpm-quick-access-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.gpm-quick-access-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    height: 80px;
    margin: 0 auto;
}

.gpm-quick-access-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid white;
    background: #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gpm-quick-access-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.gpm-quick-access-header-text {
    flex: 1;
    padding: 0 10px;
}

.gpm-quick-access-header-text h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gpm-quick-access-header-text .gpm-quick-access-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.gpm-quick-access-header-text .gpm-quick-access-tagline {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

.gpm-quick-access-notice-banner {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gpm-quick-access-popup-content {
    padding: 15px;
    max-height: 60vh;
}

.gpm-quick-access-popup-content-image {
    height: auto;
    width: 95%;
    margin: auto;
    object-fit: cover;

}

.gpm-quick-access-popup-content-image img {
    height: auto;
    width: 100%;
    border: 2px solid black;
}

.gpm-quick-access-important-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
    border-left: 5px solid #dc3545;
}

.gpm-quick-access-important-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.gpm-quick-access-note-icon {
    color: #dc3545;
    font-size: 18px;
    margin-right: 10px;
}

@keyframes gpm-quick-access-slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Tablets */
@media screen and (max-width: 992px) {
    .gpm-quick-access-popup-container {
        margin: 15px;
        max-height: 85vh;
    }

    .gpm-quick-access-header-text h1 {
        font-size: 22px;
    }

    .gpm-quick-access-header-text .gpm-quick-access-subtitle {
        font-size: 13px;
    }

    .gpm-quick-access-header-text .gpm-quick-access-tagline {
        font-size: 14px;
    }

    .gpm-quick-access-logo {
        width: 60px;
        height: 60px;
    }

    .gpm-quick-access-apply-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .gpm-quick-access-notice-banner {
        font-size: 16px;
        padding: 12px;
    }

    .gpm-quick-access-important-note p {
        font-size: 14px;
    }
}

/* Responsive Design for Mobile */
@media screen and (max-width: 576px) {
    .gpm-quick-access-header-content {
        flex-direction: column;
        gap: 8px;
        height: auto;
    }

    .gpm-quick-access-header-text {
        text-align: center;
        padding: 0 5px;
    }

    .gpm-quick-access-header-text h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .gpm-quick-access-header-text .gpm-quick-access-subtitle {
        font-size: 12px;
    }

    .gpm-quick-access-header-text .gpm-quick-access-tagline {
        font-size: 13px;
    }

    .gpm-quick-access-logo {
        width: 70px;
        height: 70px;
    }

    .gpm-quick-access-popup-content {
        padding: 12px;
    }

    .gpm-quick-access-apply-btn {
        font-size: 12px;
        padding: 8px 14px;
        width: 100%;
        text-align: center;
    }

    .gpm-quick-access-notice-banner {
        font-size: 14px;
        padding: 10px;
    }

    .gpm-quick-access-important-note {
        padding: 15px;
    }

    .gpm-quick-access-important-note p {
        font-size: 14px;
    }

    .gpm-quick-access-close-btn {
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
}

/* Tiny screens (very small phones) */
@media screen and (max-width: 380px) {
    .gpm-quick-access-header-text h1 {
        font-size: 16px;
    }

    .gpm-quick-access-header-text .gpm-quick-access-tagline {
        font-size: 12px;
    }

    .gpm-quick-access-notice-banner {
        font-size: 13px;
    }

    .gpm-quick-access-apply-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .gpm-quick-access-important-note p {
        font-size: 14px;
    }
}
/* Facilities Section */
#gpm-facilities {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-facilities-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-facilities-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-facilities-main .gpm-heading-main {
    color: #c21717;
}

.facility-main {
    width: 100%;
}

.content-section {
    width: 100%;
    margin: 40px auto;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
}

.content-text {
    width: 60%;
    padding: 30px;
}

.content-text h2 {
    font-weight: 700;
    color: black;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}

.content-text h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1976d2;
    border-radius: 2px;
}

.content-text h3 {
    margin: 20px 0;
    font-weight: 500;
    color: #1976d2;
    font-size: 20px;
}

.content-text p {
    color: black;
    line-height: 1.8;
    font-size: 16px;
}

.content-image {
    width: 40%;
    height: 300px;
    padding: 20px;
    position: relative;
}

.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);
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Responsive layout adjustments */
@media (max-width: 991px) {
    .content-section {
        flex-direction: column;
        width: 95%;
    }

    .content-text,
    .content-image {
        width: 100%;
        padding: 15px;
    }

    .content-image {
        height: 300px;
        margin: 20px 0;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .content-text h3 {
        font-size: 18px;
    }
}

/* Our Recruiters Section */
#gpm-recruiters {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-recruiters-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-recruiters-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-recruiters-main .gpm-heading-main {
    color: #c21717;
}

.carousel-container-recruiters {
    width: 100%;
    text-align: center;
    margin-top: 45px;
    overflow: hidden;
    cursor: grab;
    position: relative;
}

.carousel-title-recruiters {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.carousel-track {
    display: flex;
    will-change: transform;
}

.carousel-item-recruiters {
    min-width: 200px;
    flex-shrink: 0;
    margin: 0 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recruiter-logo {
    width: 150px;
    height: 150px;
    padding: 20px;
}

/* Faculties Section */
#gpm-faculties-details-main {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-faculties-details-main-child h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-faculties-details-main-child .gpm-heading-main {
    color: #c21717;
}

#gpm-faculties-details-main-child {
    width: 90%;
    height: auto;
    margin: auto;
}

/* Testimonial */
.gpm-about-testimonial-section {
    width: 100%;
    overflow: hidden;
}
.gpm-about-testimonial-section-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-about-testimonial-section-main .gpm-heading-main {
    color: #c21717;
}
.gpm-about-testimonial-section-main {
    width: 90%;
    margin: auto;
}

.gpm-about-testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.gpm-about-testimonial-subtitle {
    color: #1976d2;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gpm-about-testimonial-title {
    font-size: 24px;
    color: black;
}

.gpm-about-testimonial-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gpm-about-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gpm-about-testimonial-item {
    flex: 0 0 calc(33.333% - 30px);
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gpm-about-testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #1976d2;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.gpm-about-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gpm-about-testimonial-img:hover {
    transform: scale(1.05);
}

.gpm-about-testimonial-text {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: black;
    margin-bottom: 22px;
    line-height: 1.6;
}

.gpm-about-testimonial-rating {
    color: #1976d2;
    margin-bottom: 15px;
}

.gpm-about-testimonial-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: black;
}

.gpm-about-testimonial-profession {
    font-size: 18px;
    color: black;
}

.gpm-about-testimonial-quote-icon {
    position: absolute;
    color: #1976d2;
    opacity: 0.8;
    font-size: 3rem;
}

.gpm-about-testimonial-quote-left {
    top: 20px;
    left: 20px;
}

.gpm-about-testimonial-quote-right {
    bottom: 20px;
    right: 20px;
}

.gpm-about-testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gpm-about-testimonial-btn {
    background-color: #1976d2;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gpm-about-testimonial-btn:hover {
    background-color: #1565c0;
    transform: scale(1.1);
}

.gpm-about-testimonial-btn:focus {
    outline: none;
}

@media (max-width: 1024px) {
    .gpm-about-testimonial-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .gpm-about-testimonial-item {
        flex: 0 0 calc(100% - 30px);
        min-height: 300px;
    }

    .gpm-about-testimonial-title {
        font-size: 1.8rem;
    }
}

/* Gallery */
#gpm-gallery {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-gallery-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-gallery-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-gallery-main .gpm-heading-main {
    color: #c21717;
}

.img-gallery-main {
    width: 100%;
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
    grid-gap: 15px;
    /* Reduced gap */
}

.img-gallery-main img {
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
    height: 250px;
    /* Adjusted height */
    border: 1px solid black;
}

.img-gallery-main img:hover {
    transform: scale(1.07);
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}

.imageWrapper-main {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.imageWrapper-main img {
    width: 90%;
    max-width: 500px;
}

.imageWrapper-main span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    font-family: sans-serif;
    color: #fff;
    cursor: pointer;
}
@media screen and (max-width:992px){
    .img-gallery-main {
    grid-template-columns: repeat(auto-fit, minmax(44%, 1fr));
    }
}
@media screen and (max-width:552px){
    .img-gallery-main {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
    }
}
#gpm-gallery-button {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#gpm-gallery-button-main {
    outline: none;
    border: none;
    overflow: hidden;
    background-color: #1976d2;
}

#gpm-gallery-button-main::before {
    animation: shine 2s ease-out infinite;
}

#gpm-gallery-button-main::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* FAQ */
#gpm-faq {
    width: 100%;
    height: auto;
    margin-top: 45px;
}

#gpm-faq-main {
    width: 90%;
    height: auto;
    margin: auto;
}

#gpm-faq-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-faq-main .gpm-heading-main {
    color: #c21717;
}

#FAQ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 45px;
    width: 100%;
    height: 100%;
}

.accordian {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.gpm-faq-item {
    background-color: #e7ecf5;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s ease;
}

.gpm-faq-item.selected {
    background-color: #ffffff;
}

.gpm-faq-item::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #06965c;
}

.FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #131414;
}

.faqQuestion {
    font-size: 15px;
    color: #131414;
    text-align: start;
}

.FAQ-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #131414;
}

.FAQ-content.show {
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
    max-height: 9999px;
}

.expandToggle {
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
}

.FAQ-ShowMore {
    text-align: center;
    margin-top: 10px;
}

.FAQ-ShowMore button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #06965c;
    color: white;
    outline: none;
    border: none;
    cursor: pointer;
    transition: background-color 1s ease-in-out;
}

.FAQ-ShowMore button:hover {
    background-color: #1976d2;
    color: black;
    font-weight: 700;
}

/* Footer Section */
footer {
    width: 100%;
    background-color: #c21717;
    color: white;
    padding-bottom: 10px;
    padding-top: 40px;
    margin-top: 45px;
}

#footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 20px;
}

.institute-info .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    margin: auto;
}

.institute-info .logo img {
    height: 90%;
    width: 90%;
    border-radius: 50%;
}

.footer-section h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 22px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 25px;
    margin-bottom: 40px;
    position: relative;
}

.footer-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 70px;
    background: white;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.footer-section ul li a:hover {
    background-size: 100% 2px;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.social-icons a {
    color: white;
    border: 2px solid #aaa;
    font-size: 14px;
    transition: all .75s ease;
    padding: 10px;
    border-radius: 50px;
}

.social-icons a:hover {
    color: white;
    background-color: #796f6f;
}

.weather-info h3 i {
    margin-right: 5px;
}

.air-pollution {
    border: 1px dotted white;
    padding: 5px;
    margin-top: 10px;
    display: inline-block;
}

#footer-bottom {
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 16px;
    color: white;
}

#footer-bottom-line {
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: white;
}

#footer-bottom p {
    margin: 10px 0;
}

#footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 750px) {
    #footer-main {
        flex-direction: column;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .institute-info .logo {
        height: 200px;
        width: 200px;
    }
}

/* Pop Ups Redirects */
.gpm-syllabus-popup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gpm-syllabus-popup-container-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-syllabus-popup-button-btn {
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 5s ease;
    background: #df0d0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gpm-syllabus-popup-button-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gpm-syllabus-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: all 3s ease;
    backdrop-filter: blur(5px);

}

.gpm-syllabus-popup-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 1s ease-in-out;
    position: relative;
    border-top: 4px solid #360eeb;
}

.gpm-syllabus-popup-overlay.active {
    display: flex;
}

.gpm-syllabus-popup-overlay.active .gpm-syllabus-popup-card {
    transform: scale(1);
    opacity: 1;
}

.gpm-syllabus-popup-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gpm-syllabus-popup-cross:hover {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(180deg);
}

.gpm-syllabus-popup-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-syllabus-popup-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #333;
}

.gpm-syllabus-popup-icon img:hover {
    transform: scale(1.2);
    transition: transform 0.5s, opacity 0.5s;
}

.gpm-syllabus-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.gpm-syllabus-popup-paragraph {
    color: black;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.gpm-syllabus-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gpm-syllabus-popup-ok-btn {
    padding: 12px 30px;
    background: #3f20c7;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-syllabus-popup-cancel-btn {
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-syllabus-popup-ok-btn:hover,
.gpm-syllabus-popup-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .gpm-syllabus-popup-buttons{
    flex-direction: column;
    }
}
/* Academic Calender Pop Ups */
.gpm-academic-calender-popup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gpm-academic-calender-popup-container-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-academic-calender-popup-button-btn {
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #df0d0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gpm-academic-calender-popup-button-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gpm-academic-calender-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);

}

.gpm-academic-calender-popup-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #360eeb;
}

.gpm-academic-calender-popup-overlay.active {
    display: flex;
}

.gpm-academic-calender-popup-overlay.active .gpm-academic-calender-popup-card {
    transform: scale(1);
    opacity: 1;
}

.gpm-academic-calender-popup-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gpm-academic-calender-popup-cross:hover {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(180deg);
}

.gpm-academic-calender-popup-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-academic-calender-popup-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #333;
}

.gpm-academic-calender-popup-icon img:hover {
    transform: scale(1.2);
    transition: transform 0.5s, opacity 0.5s;
}

.gpm-academic-calender-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.gpm-academic-calender-popup-paragraph {
    color: black;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.gpm-academic-calender-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gpm-academic-calender-popup-ok-btn {
    padding: 12px 30px;
    background: #3f20c7;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-academic-calender-popup-cancel-btn {
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-academic-calender-popup-ok-btn:hover,
.gpm-academic-calender-popup-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .gpm-academic-calender-popup-buttons{
    flex-direction: column;
    }
}
/* Examination Cell */
.gpm-examination-cell-popup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gpm-examination-cell-popup-container-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-examination-cell-popup-button-btn {
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #df0d0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gpm-examination-cell-popup-button-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gpm-examination-cell-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);

}

.gpm-examination-cell-popup-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #360eeb;
}

.gpm-examination-cell-popup-overlay.active {
    display: flex;
}

.gpm-examination-cell-popup-overlay.active .gpm-examination-cell-popup-card {
    transform: scale(1);
    opacity: 1;
}

.gpm-examination-cell-popup-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gpm-examination-cell-popup-cross:hover {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(180deg);
}

.gpm-examination-cell-popup-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-examination-cell-popup-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #333;
}

.gpm-examination-cell-popup-icon img:hover {
    transform: scale(1.2);
    transition: transform 0.5s, opacity 0.5s;
}

.gpm-examination-cell-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.gpm-examination-cell-popup-paragraph {
    color: black;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.gpm-examination-cell-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gpm-examination-cell-popup-ok-btn {
    padding: 12px 30px;
    background: #3f20c7;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-examination-cell-popup-cancel-btn {
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-examination-cell-popup-ok-btn:hover,
.gpm-examination-cell-popup-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .gpm-examination-cell-popup-buttons{
    flex-direction: column;
    }
}
/* Important Dates */
.gpm-imp-dates-popup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gpm-imp-dates-popup-container-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-imp-dates-popup-button-btn {
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #df0d0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gpm-imp-dates-popup-button-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gpm-imp-dates-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);

}

.gpm-imp-dates-popup-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #360eeb;
}

.gpm-imp-dates-popup-overlay.active {
    display: flex;
}

.gpm-imp-dates-popup-overlay.active .gpm-imp-dates-popup-card {
    transform: scale(1);
    opacity: 1;
}

.gpm-imp-dates-popup-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gpm-imp-dates-popup-cross:hover {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(180deg);
}

.gpm-imp-dates-popup-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-imp-dates-popup-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #333;
}

.gpm-imp-dates-popup-icon img:hover {
    transform: scale(1.2);
    transition: transform 0.5s, opacity 0.5s;
}

.gpm-imp-dates-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.gpm-imp-dates-popup-paragraph {
    color: black;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.gpm-imp-dates-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gpm-imp-dates-popup-ok-btn {
    padding: 12px 30px;
    background: #3f20c7;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-imp-dates-popup-cancel-btn {
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-imp-dates-popup-ok-btn:hover,
.gpm-imp-dates-popup-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .gpm-imp-dates-popup-buttons{
    flex-direction: column;
    }
}

/* Scholarships */

.gpm-scholarships-popup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gpm-scholarships-popup-container-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-scholarships-popup-button-btn {
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #df0d0d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gpm-scholarships-popup-button-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gpm-scholarships-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);

}

.gpm-scholarships-popup-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #360eeb;
}

.gpm-scholarships-popup-overlay.active {
    display: flex;
}

.gpm-scholarships-popup-overlay.active .gpm-scholarships-popup-card {
    transform: scale(1);
    opacity: 1;
}

.gpm-scholarships-popup-cross {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gpm-scholarships-popup-cross:hover {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(180deg);
}

.gpm-scholarships-popup-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-scholarships-popup-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #333;
}

.gpm-scholarships-popup-icon img:hover {
    transform: scale(1.2);
    transition: transform 0.5s, opacity 0.5s;
}

.gpm-scholarships-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.gpm-scholarships-popup-paragraph {
    color: black;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.gpm-scholarships-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gpm-scholarships-popup-ok-btn {
    padding: 12px 30px;
    background: #3f20c7;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-scholarships-popup-cancel-btn {
    padding: 12px 30px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpm-scholarships-popup-ok-btn:hover,
.gpm-scholarships-popup-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .gpm-scholarships-popup-buttons{
    flex-direction: column;
    }
}