@font-face {
    font-family: 'Amnesty Trade Gothic';
    font-weight: normal;
    font-style: normal;
    }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1abc9c;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Amnesty Trade Gothic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
        }
        .header {
            background: linear-gradient(135deg, var(--primary-color), #1a365d);
            color: white;
            padding: 60px 0 40px;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .board-section {
            padding: 40px 0;
        }
        .board-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            height: 100%;
            transition: all 0.3s;
            margin-bottom: 25px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }
        .board-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        .board-card figure img {
            border-radius: 50%;
            width: 140px;
            height: 140px;
            object-fit: cover;
            margin: 0 auto 20px;
            display: block;
            border: 4px solid var(--secondary-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .board-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: black;
            font-weight: 600;
        }
        .board-card p {
            color: #6c757d;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .board-card .designation {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1.1rem;
            margin-bottom: 8px;
            
        }
        .contact-info {
            background: rgba(26, 188, 156, 0.08);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
            text-align: left;
        }
        .contact-info p {
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: black;
        }
        .controls-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        /*.year-selector {*/
        /*    display: flex;*/
        /*    flex-wrap: wrap;*/
        /*    gap: 12px;*/
        /*    justify-content: center;*/
        /*    margin-bottom: 25px;*/
        /*}*/
        /*.year-btn {*/
        /*    padding: 10px 20px;*/
        /*    background: white;*/
        /*    border: 2px solid #e0e6ed;*/
        /*    border-radius: 8px;*/
        /*    font-weight: 600;*/
        /*    color: #5a6a85;*/
        /*    transition: all 0.3s;*/
        /*}*/
        /*.year-btn:hover, .year-btn.active {*/
        /*    background: var(--secondary-color);*/
        /*    color: white;*/
        /*    border-color: var(--secondary-color);*/
        /*    transform: translateY(-2px);*/
        /*}*/
        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto 25px;
        }
        .search-box input {
            padding: 14px 20px 14px 50px;
            border-radius: 50px;
            border: 2px solid #e0e6ed;
            font-size: 1.05rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .search-box input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(26, 188, 156, 0.2);
        }
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 1.2rem;
        }
        .layout-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .layout-btn1 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 2px solid #e0e6ed;
            color: #5a6a85;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .layout-btn1:hover, .layout-btn1.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .term-display {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(26, 188, 156, 0.1);
            border-radius: 10px;
            display: inline-block;
            margin: 0 auto 30px;
        }
        .no-results {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .detail-toggle {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        .detail-panel {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            border-radius: 12px;
            padding: 20px;
            overflow-y: auto;
            display: none;
            z-index: 5;
        }
        @media (max-width: 768px) {
            .header {
                padding: 40px 0 30px;
            }
            .board-card figure img {
                width: 120px;
                height: 120px;
            }
            .year-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
        .alert {
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .year-selector {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}
.dropdown-container {
    position: relative;
    max-width: 300px;
    width: 100%;
}
.dropdown-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 10;
}
.year-selector select {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px 12px 50px;
    border-radius: 8px;
    border: 2px solid #e0e6ed;
    background: white;
    color: #5a6a85;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s;
}
.year-selector select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
    outline: none;
}
/* Custom dropdown arrow (optional) */
.year-selector select::-ms-expand {
    display: none;
}
.year-selector:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}
/* If you want to use Font Awesome arrow, add this to your HTML after the select */
.dropdown-container:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}

.committee-header {
    position: relative;
    padding: 15px 0;
    margin: 40px 0 20px;
    border-bottom: 3px solid var(--secondary-color);
}
.committee-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 10px;
    /*display: inline-block;*/
    text-align: center;
    /*border-bottom: 3px solid var(--secondary-color);*/
}
.committee-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

a {
  text-decoration: none;
  color: black;
}
/* Optional: Add hover effect */
a:hover {
  color: blue;
 
}
.committee-description {
    margin-top: 10px;
    color: black;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 100%;
}

.committee-header {
    padding: 0 15px;
    margin-bottom: 20px;
}