/* Our Values Page Specific Styles */
.value-item {
    padding: 30px;
    display: flex;
    align-items: center;
}

.value-item .uk-card-body {
    position: relative;
    padding-left: 100px;
}

.value-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-image .uk-card {
    height: 100%;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ESG Chart */
.esg-chart {
    width: 100%;
    margin: 30px 0;
}

.esg-bar {
    height: 40px;
    margin-bottom: 15px;
    background: #eee;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: width 1.5s ease;
}

.esg-bar span:first-child {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    z-index: 1;
}

.esg-bar span:last-child {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    z-index: 1;
}

.environmental {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.social {
    background: linear-gradient(to right, #2196F3, #03A9F4);
}

.governance {
    background: linear-gradient(to right, #9C27B0, #E91E63);
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .value-item {
        padding: 15px;
    }

    .value-item .uk-card-body {
        padding-left: 80px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 640px) {
    .value-image img {
        min-height: 200px;
    }
}