/* accordion */

.department-card-text {
    text-align: center;
    color: #ffff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;

}

.acc-head {
    border: var(--theme-blue) 1px solid;
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.acc-head-body {
    background-color: var(--theme-blue) !important;
    padding: 5px 15px;
}

.acc-head-text {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    padding: 10px;
    margin: 0;
    width: 100%;
}


.accordion-button:not(.collapsed) {
    background-color: var(--theme-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}


.accordion-button:not(.collapsed) .icon {
    transform: rotate(90deg);
    transition: 0.3s;
}

.accordion-button .icon {
    transition: 0.3s;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* annual-report */
.annual-report-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.annual-report-icon {
    font-size: 26px;
    color: var(--theme-blue);
}

.annual-report-arrow {
    font-size: 20px;
    color: var(--theme-blue);
    transition: transform 0.3s ease;
}

.annual-report-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--theme-blue);
}

.annual-report-year {
    font-size: 13px;
    color: #777;
    margin-bottom: 0px;
}


.annual-report-card:hover {
    background: var(--theme-blue);
    transform: translateY(-3px);
}

.annual-report-card:hover .annual-report-text,
.annual-report-card:hover .annual-report-year,
.annual-report-card:hover .annual-report-icon,
.annual-report-card:hover .annual-report-arrow {
    color: #fff;
}

.annual-report-card:hover .annual-report-arrow {
    transform: translateX(5px);
}

/* faculty */
.faculty-img {
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
}

.faculty-card {
    border-radius: 20px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fac-name-text {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0px;
}

.fac-designation-text {
    color: rgb(109, 109, 109);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0px;
}

.fac-profile-btn {
    background-color: var(--theme-blue);
    color: #fff;
    font-size: 14px;
}

.fac-profile-btn:hover {
    border: 1px solid var(--theme-blue);
    color: var(--theme-blue);
}

/* event */

.event-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.18);
}

/*  */
.committee-member {
    height: 100%;
    border: none;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    border-radius: 0px;
    height: auto;
}

.member-info {
    background-color: #E5E5E5;
}

.member-name {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.member-desi {
    font-size: 12px;
    font-weight: 400;
    color: #444444;
    text-align: center;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .department-card-text {
        font-size: 13px;
    }
}

@media only screen and (max-width: 576px) {
    .department-card-text {
        font-size: 10px;
    }
}