/* Executive Card Styling */
.executive-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Executive Image Styling */
.executive-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease;
}

.executive-card:hover .executive-image-wrapper {
    transform: scale(1.05);
}

.executive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.image-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(160, 120, 90, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.executive-card:hover .image-border {
    border-color: rgba(160, 120, 90, 0.6);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Position Badge */
.position-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(160, 120, 90, 0.1);
    color: #A0785A;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Divider */
.executive-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, rgba(160, 120, 90, 0.3), rgba(160, 120, 90, 0.6));
    margin: 0 auto;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(160, 120, 90, 0.1);
    color: #A0785A;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #A0785A;
    color: white;
    transform: translateY(-3px);
}

/* Section Subtitle */
.section-subtitle {
    color: #6c757d;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: rgba(160, 120, 90, 0.6);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .executive-image-wrapper {
        width: 120px;
        height: 120px;
    }
}