.executive-section {
    width: 100%;
    padding: 100px 0;
    background: #f7faf9;
    direction: rtl;
    overflow: hidden;
}

.executive-container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.executive-heading {
    text-align: center;
    margin-bottom: 60px;
}

.executive-heading span {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.executive-heading span::before,
.executive-heading span::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 2px;
    background: var(--secondary);
    vertical-align: middle;
    margin: 0 12px;
    opacity: .6;
}

.executive-heading h1 {
    margin: 0;
    color: var(--primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
}

.executive-line {
    width: 70px;
    height: 4px;
    margin: 18px auto 0;
    background: var(--secondary);
    border-radius: 20px;
}

.executive-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 75px;
    background: #fff;
    border-radius: 30px;
    padding: 55px;
    box-shadow: 0 15px 45px rgba(0,82,96,.07);
    border: 1px solid #edf3f1;
    transition: .4s ease;
    overflow: hidden;
}

.executive-profile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary);
}

.executive-profile::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(52,182,158,.07);
    pointer-events: none;
}

.executive-profile:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(0,82,96,.12);
}

.executive-image-wrapper {
    position: relative;
    width: 330px;
    min-width: 330px;
    height: 330px;
    padding: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34b69e, #005260);
    transition: .5s ease;
    z-index: 1;
}

.executive-profile:hover .executive-image-wrapper {
    transform: scale(1.04) rotate(2deg);
}

.executive-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(52,182,158,.25);
    border-radius: 50%;
    z-index: -1;
    transition: .5s ease;
}

.executive-profile:hover .executive-image-wrapper::before {
    inset: -16px;
    border-color: rgba(52,182,158,.5);
}

.executive-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f7f5;
    border: 5px solid #fff;
}

.executive-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f1f7f5;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 100px;
}

.executive-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.executive-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 20px;
    background: #e8f5f1;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.executive-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
}

.executive-content h2 {
    margin: 0 0 35px;
    color: #123b38;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
}

.executive-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.executive-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    background: #f8fbfa;
    border-radius: 15px;
    border: 1px solid #edf3f1;
    transition: .3s ease;
}

.executive-detail:hover {
    background: #fff;
    border-color: rgba(52,182,158,.35);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,82,96,.07);
}

.executive-icon {
    width: 47px;
    min-width: 47px;
    height: 47px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5f4ef;
    color: var(--primary);
    font-size: 17px;
    transition: .3s ease;
}

.executive-detail:hover .executive-icon {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.08);
}

.executive-detail-content {
    min-width: 0;
}

.executive-detail span {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 4px;
}

.executive-detail strong {
    display: block;
    color: #234a46;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
    word-break: break-word;
}

@media (max-width: 1100px) {
    .executive-profile {
        gap: 50px;
        padding: 45px;
    }

    .executive-image-wrapper {
        width: 290px;
        min-width: 290px;
        height: 290px;
    }
}

@media (max-width: 992px) {
    .executive-section {
        padding: 80px 0;
    }

    .executive-profile {
        gap: 40px;
        padding: 40px;
    }

    .executive-image-wrapper {
        width: 250px;
        min-width: 250px;
        height: 250px;
    }

    .executive-content h2 {
        font-size: 27px;
        margin-bottom: 25px;
    }

    .executive-details {
        gap: 12px;
    }

    .executive-detail {
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .executive-section {
        padding: 70px 0;
    }

    .executive-container {
        width: 92%;
    }

    .executive-heading {
        margin-bottom: 45px;
    }

    .executive-heading span::before,
    .executive-heading span::after {
        width: 20px;
        margin: 0 7px;
    }

    .executive-heading h1 {
        font-size: 30px;
    }

    .executive-profile {
        flex-direction: column;
        padding: 40px 22px;
        gap: 35px;
        text-align: center;
    }

    .executive-profile::before {
        width: 100%;
        height: 5px;
        right: 0;
        top: 0;
        bottom: auto;
    }

    .executive-image-wrapper {
        width: 220px;
        min-width: 220px;
        height: 220px;
    }

    .executive-content {
        width: 100%;
    }

    .executive-label {
        margin-bottom: 12px;
    }

    .executive-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .executive-details {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: right;
    }
}

@media (max-width: 576px) {
    .executive-section {
        padding: 55px 0;
    }

    .executive-heading h1 {
        font-size: 26px;
    }

    .executive-heading span {
        font-size: 12px;
    }

    .executive-profile {
        padding: 35px 17px;
        border-radius: 22px;
    }

    .executive-image-wrapper {
        width: 180px;
        min-width: 180px;
        height: 180px;
    }

    .executive-image-placeholder {
        font-size: 65px;
    }

    .executive-content h2 {
        font-size: 21px;
    }

    .executive-detail {
        padding: 13px;
    }

    .executive-icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
    }
}