/* Technical Officials Page Specific Styles - Premium Redesign */

:root {
    --tech-purple: #311b92;
    --tech-silver: #e0e0e0;
    --tech-accent: #00e5ff;
    --card-shadow: 0 15px 45px rgba(0, 0, 0, 0.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(rgba(49, 27, 146, 0.45), rgba(49, 27, 146, 0.85)), url('../images/contact_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.role-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.role-card:hover {
    transform: translateY(-10px);
    background: var(--tech-purple);
    color: var(--white);
}

.role-icon {
    font-size: 40px;
    color: var(--tech-purple);
    margin-bottom: 20px;
    transition: 0.3s;
}

.role-card:hover .role-icon {
    color: var(--tech-accent);
}

/* Official Panel Grid */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.panel-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 20px;
}

.panel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f5f5;
}

.panel-info h5 {
    margin-top: 15px;
    font-weight: 700;
    color: var(--tech-purple);
}

.panel-info span {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ethics Section */
.ethics-box {
    background: #f3f0ff;
    padding: 60px;
    border-radius: 40px;
    border-left: 10px solid var(--tech-purple);
}

.ethics-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 16px;
}

.ethics-list i {
    color: var(--tech-purple);
    font-size: 20px;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .panel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .roles-grid, .panel-grid { grid-template-columns: 1fr; }
    .banner-title { font-size: 38px; }
    .ethics-box { padding: 30px; }
}
