/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= BODY ================= */
body1 {
    background-color: #f4f6f9;
    color: #333;
}

/* ================= PAGE TITLE ================= */
.page-title1 {
    background-color: #1a237e;
    color: #fff;
    padding: 18px 30px;
}

.page-title1 h1 {
    font-size: 26px;
    font-weight: bold;
}

/* ================= MAIN CONTAINER ================= */
.container1 {
    max-width: 1200px;
    margin: 25px auto;
    display: flex;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
}

/* ================= SIDEBAR ================= */
.sidebar1 {
    width: 260px;
    background-color: #f8f9fc;
    border-right: 1px solid #ddd;
}

.sidebar1 ul {
    list-style: none;
}

.sidebar1 ul li {
    padding: 14px 18px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: background-color 0.3s;
}

.sidebar1 ul li:hover {
    background-color: #e8eaf6;
}

.sidebar1 ul li.active {
    background-color: #1a237e;
    color: #fff;
    font-weight: bold;
}

/* ================= CONTENT AREA ================= */
.content1 {
    flex: 1;
    padding: 25px 30px;
}

.content1 h2 {
    color: #1a237e;
    margin-bottom: 12px;
    font-size: 24px;
}

.content1 p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

/* ================= TAB SECTIONS ================= */
.content-section1 {
    display: none;
}

.content-section.active1 {
    display: block;
}

/* ================= SECTION HEADINGS ================= */
.content1 h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: #1a237e;
    font-size: 18px;
}

/* ================= TABLES ================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
    font-size: 14px;
}

table th,
table1 td {
    border: 1px solid #ccc;
    padding: 8px 6px;
    text-align: center;
}

table th {
    background-color: #1a237e;
    color: #fff;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #eef1ff;
}

/* ================= IMAGE SLIDER (MST) ================= */
.slider1 {
    position: relative;
    max-width: 700px;
    margin: 20px auto;
}

.slide1 {
    width: 100%;
    display: none;
    border-radius: 10px;
}

.slide.active1 {
    display: block;
}

/* ================= VIDEO SLIDER (TAKSH) ================= */
.video-slider1 {
    position: relative;
    max-width: 700px;
    margin: 20px auto;
}

.event-video1 {
    width: 100%;
    display: none;
    border-radius: 10px;
}

.event-video.active1 {
    display: block;
}

/* ================= SLIDER NAV BUTTONS ================= */
.nav1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 30px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev1 {
    left: 10px;
}

.next1 {
    right: 10px;
}

/* ================= RESPONSIVE ================= */
@media1 (max-width: 900px) {
    .container1 {
        flex-direction: column;
    }

    .sidebar1 {
        width: 100%;
    }
}

/* ================= SPORTS COMMITTEE SECTION ================= */
/* --------------------------
   SPORTS COMMITTEE SECTION
---------------------------*/
.committee-section1 {
    margin-top: 50px;
    padding: 40px;
    background: #f5f7fa;
    border-radius: 12px;
}

.committee-section1 h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.committee-messages1 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.member-card1 {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.member-card:hover1 {
    transform: translateY(-7px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-card1 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0077b6;
}

.member-card1 h3 {
    margin-top: 15px;
    font-size: 22px;
}

.member-card1 .designation {
    color: #0077b6;
    font-weight: bold;
    margin: 5px 0;
    font-size: 16px;
}

.member-card1 .message {
    margin-top: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}


/* SPORTS HIGHLIGHTS SECTION */
.sports-highlights1 {
    margin-top: 50px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.highlight-card1 {
    width: 250px;
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.highlight-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.highlight-card1 i {
    font-size: 40px;
    color: #003b95;
    margin-bottom: 15px;
}

.highlight-card1 h3 {
    color: #003b95;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.highlight-card1 p {
    font-size: 15px;
    color: #444;
}