.expert-highlight-section {
    background: #f3f4f8;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.expert-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.fancy-bg::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.expert-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.expert-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.expert-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #f5c600;
    color: #002f4b;
    font-weight: bold;
    padding: 10px 20px;
    border-bottom-left-radius: 12px;
    font-size: 14px;
    z-index: 2;
}

.expert-img {
    position: relative;
    flex-shrink: 0;
}

.expert-img img {
    width: 300px;
    height: auto;
    border-radius: 16px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.expert-wrapper:hover .expert-img img {
    filter: grayscale(0%);
}

.expert-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #002f4b;
    color: #fff;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expert-details {
    flex: 1;
    z-index: 1;
}

.expert-name {
    font-size: 32px;
    font-weight: 700;
    color: #002f4b;
}

.expert-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
}

.expert-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
    border-left: 4px solid #f5c600;
    padding-left: 12px;
}

.expert-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}


.empowerment-section {
    padding: 80px 20px;
    /*background: linear-gradient(120deg, #fff 50%, #f9f9f9 50%);*/
    font-family: 'Poppins', sans-serif;
}

.empowerment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.empowerment-image {
    flex: 1;
    position: relative;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.empowerment-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #002F4B;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-top-right-radius: 12px;
}

.empowerment-content {
    flex: 1;
    max-width: 600px;
}

.empowerment-heading {
    font-size: 32px;
    color: #002F4B;
    margin-bottom: 10px;
}

.empowerment-subtitle {
    font-size: 20px;
    color: #f5c600;
    font-weight: 500;
    margin-bottom: 20px;
}

.empowerment-abstract {
    background: #000000;
    padding: 25px;
    border-left: 4px solid #012f4b;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.empowerment-abstract p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-top: 8px;
}



/* Responsive */
@media (max-width: 768px) {
    .expert-wrapper {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .expert-img img {
        width: 100%;
        max-width: 280px;
        margin: auto;
    }

    .expert-label {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .empowerment-container {
        flex-direction: column;
        text-align: center;
    }

    .empowerment-content {
        max-width: 100%;
    }

    .empowerment-image {
        max-width: 100%;
    }

    .image-label {
        font-size: 12px;
        padding: 8px 16px;
    }
}
