/* Page Banner Customization */
.page-banner {
    background: linear-gradient(rgba(102, 53, 0, 0.9), rgba(167, 97, 0, 0.9)), url('../images/hero/partners-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.bg-light { background-color: #f9f9f9; }

/* Grid Layout for Solutions */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse class for alternating rows */
.solution-grid.reverse .solution-text { order: 2; }
.solution-grid.reverse .solution-image { order: 1; }

.icon-main {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.solution-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.solution-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.solution-text ul {
    list-style: none;
}

.solution-text ul li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.solution-text ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Image styling */
.solution-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values {
    background: #f4f4f4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr; /* Stack About image and text */
        text-align: center;
    }
    .values-grid{
        grid-template-columns: auto;
        gap: 5px;
    }
    

    /* Ensure image always goes above text in every row on mobile */
    .solution-grid.reverse .solution-text { order: 2; }
    .solution-grid.reverse .solution-image { order: 1; }
    .solution-grid .solution-image { order: 1; }
    .solution-grid .solution-text { order: 2; }
}