/* Office Bearers Page Specific Styles - Premium Redesign */

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 22, 91, 0.5), rgba(242, 98, 34, 0.4));
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Leadership Section */
.leadership-section {
    background: #f8f9fa;
}

.leader-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--card-shadow);
}

.leader-img-box {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.leader-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-img-box img {
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
}

.leader-info .designation {
    display: block;
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.leader-social a:hover {
    background: var(--orange);
    color: var(--white);
}

/* Executive Body Grid */
.executive-section {
    background: var(--white);
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.exec-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: var(--transition);
}

.exec-card:hover {
    border-color: var(--orange);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.exec-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(242, 98, 34, 0.15);
}

.exec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.exec-card:hover .exec-img img {
    transform: scale(1.08);
}

.exec-info {
    width: 100%;
}

.exec-info .exec-role {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.exec-info .exec-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.exec-info .exec-desc {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Message Section */
.message-section {
    background: var(--primary);
    color: var(--white);
}

.message-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.msg-image {
    position: relative;
}

.msg-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.msg-content h2 {
    font-size: 42px;
    font-family: var(--font-heading);
    color: var(--orange);
    margin-bottom: 30px;
}

.msg-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.msg-author h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.msg-author span {
    color: var(--orange);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .leader-main-grid { grid-template-columns: repeat(2, 1fr); }
    .exec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .message-grid { grid-template-columns: 1fr; text-align: center; }
    .banner-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .leader-main-grid { grid-template-columns: 1fr; }
    .exec-grid { grid-template-columns: 1fr; }
}
