.call-action {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.call-action.overlay {
    position: relative;
}

.call-action.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(80, 43, 129, 0.8);
    /* #502b81 with 80% opacity */
}

.call-action .content {
    position: relative;
    z-index: 1;
}

.call-action h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
}

.my-breadcrumb {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.my-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.my-breadcrumb a:hover {
    color: #f1f1f1;
    text-decoration: underline;
}

.my-breadcrumb>a:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .call-action {
        padding: 80px 0;
    }

    .call-action h2 {
        font-size: 32px;
    }

    .my-breadcrumb {
        font-size: 14px;
    }
}


.container-board {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #444;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #888;
    font-size: 20px;
    margin-bottom: 50px;
}

/* Hierarchy Container */
.hierarchy-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Top Level - Chairman/CEO */
.hierarchy-top {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* Second Level - Directors */
.hierarchy-directors {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
}

/* Third Level - Managing Director */
.hierarchy-bottom {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

/* Profile Styling */
.board-profile {
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 16px;
    border-radius: 16px;

    transition: transform 0.3s ease;
}

.board-profile:hover {
    transform: translateY(-6px);
}

.board-profile img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    background: white;
}

.board-profile h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 12px 0 6px;
    color: #333;
}

.board-profile p {
    font-size: 18px;
    color: #666;
    font-weight: 700;
    font: bold;
}

/* Special styling for top position */
.hierarchy-top .board-profile img {
    border: 6px solid #006400;
}

.hierarchy-top .board-profile h3 {
    font-size: 24px;
    color: #006400;
}

.hierarchy-directors .board-profile img {
    border: 6px solid #006400;
}

.hierarchy-directors .board-profile h3 {
    font-size: 24px;
    color: #006400;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: #999;
}

.social-icons i:hover {
    color: #007bff;
    cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hierarchy-directors {
        gap: 60px;
    }

    .board-profile {
        max-width: 200px;
    }

    .board-profile img {
        width: 180px;
        height: 180px;
    }

    .hierarchy-top .board-profile img {
        width: 200px;
        height: 200px;
    }

    .hierarchy-bottom .board-profile img {
        width: 190px;
        height: 190px;
    }
}

@media screen and (max-width: 900px) {
    .hierarchy-directors {
        flex-wrap: wrap;
        gap: 60px;
        justify-content: center;
    }

    .hierarchy-top,
    .hierarchy-directors,
    .hierarchy-bottom {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hierarchy-directors {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .board-profile {
        max-width: 90%;
    }

    .board-profile img {
        width: 200px;
        height: 200px;
    }

    .hierarchy-top .board-profile img {
        width: 220px;
        height: 220px;
    }

    .hierarchy-bottom .board-profile img {
        width: 210px;
        height: 210px;
    }

    .board-profile h3 {
        font-size: 20px;
    }

    .board-profile p {
        font-size: 18px;
    }
}
