/* Head Teacher Profile Styles */
.head-teacher-profile {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.head-teacher-profile:hover {
    transform: translateY(-5px);
}

.head-teacher-image {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #f8f9fa;
    transition: all 0.3s ease;
}

.head-teacher-profile:hover .head-teacher-image {
    border-color: #1b3058;
}

.head-teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.head-teacher-profile:hover .head-teacher-image img {
    transform: scale(1.05);
}

.head-teacher-info {
    flex: 1;
}

.head-teacher-name {
    color: #1b3058;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.head-teacher-title {
    color: #f0c808;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.head-teacher-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.head-teacher-quote {
    font-style: italic;
    color: #1b3058;
    font-size: 1.1rem;
    padding: 1rem;
    border-left: 4px solid #f0c808;
    background: #f8f9fa;
    margin-top: 1rem;
}

.head-teacher-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #a9b5f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #1b3058;
    color: #fff;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b3058;
    margin-bottom: 0.5rem;
}

.stat-item:hover .stat-number {
    color: #f0c808;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.stat-item:hover .stat-label {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .head-teacher-profile {
        flex-direction: column;
        text-align: center;
    }

    .head-teacher-image {
        flex: 0 0 auto;
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }

    .head-teacher-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .head-teacher-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
    }
}
