.office-bearers-section{
    padding: 10px 10px;
    background:linear-gradient(180deg,#f8fbfc 0%,#ffffff 100%);
}

.section-title span{
    color:#0c7c73;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#0c2340;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6c757d;
}

.chairman-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-top:60px;
}

.chairman-left{
    width:120px;
    background:linear-gradient(135deg,#00796b,#00a99d);
    display:flex;
    justify-content:center;
    align-items:center;
}

.chairman-badge{
    color:#fff;
    font-size:42px;
}

.chairman-content{
    padding:40px;
    flex:1;
     img{
          border:1px solid #f2f2f2;
            border-radius:15px;
    }
}

.chairman-content .designation{
    color:#00796b;
    font-weight:700;
    font-size:14px;
}

.chairman-content h3{
    font-size:32px;
    font-weight:800;
    color:#0c2340;
    margin:3px 0;
}

.chairman-content h5{
    font-size:28px;
    color:#00796b;
    font-weight:600;
}

.regional-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    border-top:4px solid #0c7c73;

    img{
          border:1px solid #f2f2f2;
            border-radius:15px;
    }
}

.regional-card:hover{
    transform:translateY(-8px);
}

.regional-card span{
    color:#0c7c73;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.regional-card h4{
    font-size:20px;
    font-weight:700;
    color:#0c2340;
    margin-top:10px;
    line-height:20px;
}

.regional-card p{
    font-size:16px;
    color:#00796b;
    font-weight:600;
     line-height:20px;
}
.sponsor-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.sponsor-item{
    display:flex;
    justify-content:center;
    align-items:center;
}

.sponsor-logo{
    width:auto;
    max-height:100px;
    object-fit:contain;
    transition:.3s;
    border-radius:5px;
    border:1px solid #ccc;
}

.sponsor-logo:hover{
    transform:scale(1.05);
}
.sponsor-title{
    color:#091d50;
    font-weight:700;
    margin-bottom:2px;
    font-size:24px;
}
.media-box{
    height:100%;
    padding:2px;
    border-bottom:1px solid #dcdcdc;
    transition:.3s;
}

.media-box:hover{
    background:#f8f9fc;
}

.media-box h5{
    margin:0 0 5px;
    font-size:18px;
    font-weight:600;
    color:#091d50;
    line-height:1.4;
}

.media-medium{
    font-size:14px;
    font-weight:500;
    color:#6c757d;
    margin-left:8px;
}

.media-box a{
    display:block;
    color:#555;
    font-size:13px;
    text-decoration:none;
    word-break:break-all;
}

.media-box a:hover{
    color:#0056b3;
}
/* ================================
   MCES GALLERY
================================ */

.mces-gallery-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #091d50;
    margin-bottom: 0;
}

.gallery-title span {
    color: #e21e2b;
}

.mces-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mces-gallery-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: mcesGalleryScroll 35s linear infinite;
}

.mces-gallery-track:hover {
    animation-play-state: paused;
}

.mces-gallery-item {
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
}

.mces-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mces-gallery-item:hover img {
    transform: scale(1.08);
}


/* Continuous scrolling */
@keyframes mcesGalleryScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }

}


/* ================================
   LIGHTBOX
================================ */

.mces-lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.mces-lightbox.active {
    display: flex;
}

.mces-lightbox-content {
    width: calc(100% - 180px);
    height: calc(100% - 120px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.mces-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    border-radius: 6px;
}


/* Close */

.mces-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;

    border: 0;
    background: transparent;

    color: #fff;
    font-size: 45px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;
}


/* Previous / Next */

.mces-lightbox-prev,
.mces-lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    font-size: 28px;

    cursor: pointer;

    transition: 0.3s;
}

.mces-lightbox-prev:hover,
.mces-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mces-lightbox-prev {
    left: 25px;
}

.mces-lightbox-next {
    right: 25px;
}


/* Mobile */

@media (max-width: 767px) {

    .mces-gallery-section {
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 28px;
    }

    .mces-gallery-item {
        width: 250px;
        height: 170px;
    }

    .mces-gallery-track {
        gap: 12px;
        animation-duration: 25s;
    }

    .mces-lightbox-content {
        width: calc(100% - 80px);
        height: calc(100% - 120px);
    }

    .mces-lightbox-prev,
    .mces-lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .mces-lightbox-prev {
        left: 10px;
    }

    .mces-lightbox-next {
        right: 10px;
    }

    .mces-lightbox-close {
        right: 15px;
        top: 15px;
        font-size: 35px;
    }
}