.about-us6-section {
    padding: 50px 0;
    background-color: #000000;
    color: #ffffff;
}

.about-us6-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-us6-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-us6-section .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.25;
}

.about-us6-section .title .text-secondary {
    color: #54b248;
    /* 'Guided' in Green */
}

.about-us6-section .desc.centered {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #eeeeee;
}

/* 3-Column Grid matching screenshot */
.values-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: none; /* Removed static border to match IndustriesSection */
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Right Line Effect */
.value-item-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: #54b248;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 5;
}

/* Bottom Line Effect - Right to Left */
.value-item-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 6px;
    background-color: #54b248;
    transition: width 0.4s ease;
    z-index: 5;
}

.value-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.value-item-card:hover::before {
    opacity: 1;
}

.value-item-card:hover::after {
    width: 100%;
}


.small-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.small-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.value-item-card:hover .small-icon img {
    transform: scale(1.1);
}


.value-item-card .subtitle {
    font-size: 26px;
    /* BestArchitectureSection standard */
    color: #54b248;
    font-weight: 600;
    /* BestArchitectureSection standard */
    margin-bottom: 5px;
}

.value-item-card .desc {
    font-size: 18px;
    /* BestArchitectureSection standard */
    line-height: 1.4;
    /* BestArchitectureSection standard */
    color: #333333;
    /* Reserving dark gray for card on white */
    font-weight: 500;
    /* BestArchitectureSection standard */
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .values-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-us6-header .desc.centered {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .about-us6-section .title {
        font-size: 32px;
    }

    .values-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item-card {
        padding: 25px 20px;
        text-align: center;
        align-items: center; /* Center icons and text on mobile */
    }
}