/* Custom CSS for Notice Board */

@font-face {
    font-family: Mohua;
    src: url("../fonts/bangla/Mohua.ttf");
}

@font-face {
    font-family: Kalpurush;
    src: url("../fonts/bangla/Kalpurush.ttf");
}

.landingTitle {
    font-family: "Mohua", Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
}

:root {
    --action-color: #35b1cf;
}
.notice-card {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 185px;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;
    color: #333;
}

.text-muted {
    font-size: 1rem;
    color: #666;
}

.bg-gray {
    background-color: #eeeeee;
}

table.table-bordered {
    border: 1px solid #d8d8d8;
}
table.table-bordered > thead > tr > th {
    border: 1px solid #d8d8d8;
}
table.table-bordered > tbody > tr > td {
    border: 1px solid #d8d8d8;
}

.table-multi-border {
    border-collapse: separate;
}

.td-custom-text > tbody > tr > td {
    font-weight: bold;
}

.custom-table {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.text-action {
    color: #35b1cf;
}
.line-through {
    display: flex;
    color: var(--action-color);
    text-align: center;
}
.line-through::before,
.line-through::after {
    content: "";
    flex: 1;
    align-self: center;
    border-bottom: 2px solid #d8d8d8;
}
.line-through::before {
    margin-right: 20px;
}
.line-through::after {
    margin-left: 20px;
}
/* Swiper */
.body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}
.slide-content {
    margin: 0 40px;
    overflow: hidden;
    padding: 0 20px;
}
.card-swiper {
    background-color: var(--action-color);
}
.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
    border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070f4;
}
.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #fff;
}
.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}
.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070f4;
}
.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button {
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #4070f4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    background: #265df2;
}
.swiper-navBtn {
    color: #6e93f7;
    transition: color 0.3s ease;
}
.swiper-navBtn:hover {
    color: #4070f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 35px;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: 0;
}
.swiper-pagination-bullet {
    background-color: #6e93f7;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #4070f4;
}
@media screen and (max-width: 768px) {
    .slide-content {
        margin: 0 10px;
    }
    .swiper-navBtn {
        display: none;
    }
}
.about-image {
    width: 55%;
}
.desktop-view {
    display: block;
}
.mobile-view {
    display: none;
}

.committeePRESIDENTImage {
    height: 250px;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .committeePRESIDENTImage {
        height: 350px;
    }
}
@media screen and (max-width: 992px) {
    .about-image {
        width: 100%;
    }
    .desktop-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
}
.heading-name-logo {
    max-width: 435px;
}
.fact-item {
    transition: 0.5s;
}
.fact-item:hover {
    margin-top: -10px;
    background: #ffffff !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 768px) {
    .heading-name-logo {
        width: 100%;
        max-width: 435px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
