/* Committee Section Styles */
.committee-section {
    position: relative;
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}
/*
.committee-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/blue-gb-big.webp');
    opacity: 0.05;
}
*/
.committee-section .section-title {
    margin-bottom: 50px;
}

.committee-section .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #005580;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.committee-section .section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #002941, #006798);
    transform: translateX(-50%);
}

.committee-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #005580;
    font-size: 22px;
    font-weight: 600;
}

/* Committee Tabs */
.committee-tabs {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(86, 11, 91, 0.08);
    overflow: hidden;
    margin-top: 30px;
}

.committee-tabs .nav-tabs {
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.committee-tabs .nav-tabs .nav-item {
    margin: 0 10px;
}

.committee-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.committee-tabs .nav-tabs .nav-link:hover {
    background-color: #f0f0f0;
    color: #560b5b;
}

.committee-tabs .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #002941, #006798);
    color: #fff;
    box-shadow: 0 5px 15px rgba(86, 11, 91, 0.3);
}

.committee-tabs .tab-content {
    padding: 40px 30px;
}

/* Committee Container */
.committee-container {
    position: relative;
}

/* Committee Members - New Modern Design */
.committee-members {
    position: relative;
}

.member-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.member-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.member-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #002941, #006798);
    opacity: 0;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 103, 152, 0.08);
}

.member-card:hover:before {
    opacity: 1;
}

.member-info {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.member-info:after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 103, 152, 0.15) 0%,rgba(0, 41, 65, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.member-card:hover .member-info:after {
    opacity: 1;
}

.member-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.member-card:hover .member-info h4 {
    color: #005580;
}

.member-info p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.member-info p i {
    margin-right: 8px;
    color: #006798;
    font-size: 14px;
}

.theme-btn.btn-style-one {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #002941, #006798);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(86, 11, 91, 0.2);
}

.theme-btn.btn-style-one:hover {
    background: linear-gradient(135deg, #006798, #002941);
    box-shadow: 0 8px 25px rgba(86, 11, 91, 0.3);
    transform: translateY(-2px);
}

.theme-btn.btn-style-one .btn-title {
    position: relative;
    z-index: 1;
}

.theme-btn.btn-style-one:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #006798, #002941);
    opacity: 0;
    transition: all 0.3s ease;
}

.theme-btn.btn-style-one:hover:before {
    opacity: 1;
}

/* View All Button */
.committee-members .text-center {
    margin-top: 40px;
}

/* Loading Animation */
@keyframes cardPulse {
    0% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 30px rgba(86, 11, 91, 0.2);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transform: scale(1);
    }
}

.member-card:nth-child(3n+1).animated {
    animation-delay: 0.1s;
}

.member-card:nth-child(3n+2).animated {
    animation-delay: 0.2s;
}

.member-card:nth-child(3n).animated {
    animation-delay: 0.3s;
}

/* Media Queries */
@media (max-width: 991px) {
    .committee-section {
        padding: 50px 0;
    }
    
    .committee-section .section-title h2 {
        font-size: 32px;
    }
    
    .committee-tabs .nav-tabs .nav-link {
        padding: 12px 25px;
    }
}

@media (max-width: 767px) {
    .committee-section {
        padding: 40px 0;
    }
    
    .committee-section .section-title h2 {
        font-size: 28px;
    }
    
    .committee-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .committee-tabs .nav-tabs .nav-item {
        margin: 0 5px;
        white-space: nowrap;
    }
    
    .committee-tabs .nav-tabs .nav-link {
        padding: 10px 20px;
    }
    
    .committee-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .committee-section {
        padding: 30px 0;
    }
    
    .committee-section .section-title h2 {
        font-size: 24px;
    }
    
    .member-info h4 {
        font-size: 16px;
    }
    
    .member-info p {
        font-size: 13px;
    }
    
    .theme-btn.btn-style-one {
        padding: 10px 25px;
        font-size: 14px;
    }
} 