/* =========================================
   service.css - SOLUTIONS GRID
   ========================================= */

.solutions {
    padding: 60px 0 100px;
    text-align: center;
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
    color: var(--heading-blue);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    position: relative;
    height: 450px; 
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.card-overlay {
    background: rgba(0, 0, 0, 0.45); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8); 
    transition: 0.3s ease;
}

.solution-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.65); 
}

.card-overlay h3 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 400; 
    font-size: 30px; 
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.card-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px; 
    line-height: 1.5;
    color: var(--white);
}

/* Adjust Services Card text for mobile screens */
@media (max-width: 768px) {
    .card-overlay h3 { font-size: 26px; }
    .card-overlay p { font-size: 18px; }
}