/* Directors Section Styling */
.directors-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.directors-title {
    color: #698EE9;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.director-card {
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.director-card .card-body {
    padding: 2rem;
    text-align: center;
}

.director-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #698EE9;
    box-shadow: 0 4px 15px rgba(105, 142, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.director-name {
    color: #698EE9;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.director-positions {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
}

.director-position {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.director-position:first-child {
    font-weight: 700;
    font-size: 1.15rem;
}

.director-position:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Directors Section */
@media (max-width: 1200px) {
    .directors-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .director-card .card-body {
        padding: 1.5rem;
    }
    
    .director-image {
        width: 130px;
        height: 130px;
    }
    
    .director-name {
        font-size: 1.3rem;
    }
    
    .director-positions {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .directors-section {
        padding: 50px 0;
    }
    
    .directors-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .director-card {
        max-width: 280px;
    }
    
    .director-card .card-body {
        padding: 1.25rem;
    }
    
    .director-image {
        width: 110px;
        height: 110px;
        margin-bottom: 1rem;
    }
    
    .director-name {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .director-positions {
        font-size: 1rem;
    }
    
    .director-position:first-child {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .directors-section {
        padding: 40px 0;
    }
    
    .directors-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .director-card {
        max-width: 250px;
    }
    
    .director-card .card-body {
        padding: 1rem;
    }
    
    .director-image {
        width: 90px;
        height: 90px;
        margin-bottom: 0.75rem;
        border-width: 3px;
    }
    
    .director-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .director-positions {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .director-position {
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 576px) {
    .directors-section {
        padding: 30px 0;
    }
    
    .directors-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .director-card {
        max-width: 220px;
    }
    
    .director-card .card-body {
        padding: 0.75rem;
    }
    
    .director-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
        border-width: 2px;
    }
    
    .director-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .director-positions {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}