.advisor-section {
    width: 100%;
    padding: 90px 0;
    background: #f7faf9;
    direction: rtl;
}

.advisor-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

.advisor-heading {
    text-align: center;
    margin-block: 50px;

}

.advisor-heading span {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.advisor-heading h1 {
    margin: 0;
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
}

.advisor-line {
    width: 65px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--secondary);
    border-radius: 10px;
}

.advisor-profile {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 65px;
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(0,82,96,.08);
    border: 1px solid #edf3f1;
}

.advisor-image-wrapper {
    width: 300px;
    min-width: 300px;
    height: 300px;
    padding: 9px;
    border-radius: 50%;
    background: #e8f5f1;
    box-shadow: 0 10px 30px rgba(0,82,96,.08);
}

.advisor-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.advisor-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f1f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 85px;
}

.advisor-content {
    flex: 1;
    min-width: 0;
}

.advisor-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.advisor-content h2 {
    margin: 0 0 30px;
    color: #123b38;
    font-size: 31px;
    font-weight: 800;
}

.advisor-details {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.advisor-detail {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    background: #f8fbfa;
    border: 1px solid #edf3f1;
    border-radius: 14px;
    transition: .3s ease;
}

.advisor-detail:hover {
    transform: translateY(-4px);
    border-color: rgba(52,182,158,.35);
    box-shadow: 0 10px 25px rgba(0,82,96,.08);
}

.advisor-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5f4ef;
    color: var(--primary);
    border-radius: 12px;
    transition: .3s ease;
}

.advisor-detail:hover .advisor-icon {
    background: var(--secondary);
    color: #fff;
}

.advisor-detail span {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 4px;
}

.advisor-detail strong {
    display: block;
    color: #234a46;
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

@media (max-width: 992px) {

    .advisor-profile {
        gap: 40px;
        padding: 40px;
    }

    .advisor-image-wrapper {
        width: 250px;
        min-width: 250px;
        height: 250px;
    }

}

@media (max-width: 768px) {

    .advisor-section {
        padding: 70px 0;
    }

    .advisor-profile {
        flex-direction: column;
        gap: 30px;
        padding: 35px 25px;
        text-align: center;
    }

    .advisor-image-wrapper {
        width: 220px;
        min-width: 220px;
        height: 220px;
    }

    .advisor-content {
        width: 100%;
    }

    .advisor-details {
        grid-template-columns: 1fr;
        text-align: right;
    }

}

@media (max-width: 576px) {

    .advisor-section {
        padding: 55px 0;
    }

    .advisor-container {
        width: 92%;
    }

    .advisor-profile {
        padding: 30px 18px;
    }

    .advisor-image-wrapper {
        width: 180px;
        min-width: 180px;
        height: 180px;
    }

    .advisor-heading h1 {
        font-size: 27px;
    }

    .advisor-content h2 {
        font-size: 22px;
    }

}