/* ===== Construction Page Styles ===== */
.construction-services {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.construction-services h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.construction-services p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Service Cards Container */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.service-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    max-width: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.service-card .cta-button {
    background-color: #FF6A00;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-card .cta-button:hover {
    background-color: #e55b00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-services h1 {
        font-size: 2.2rem;
    }

    .construction-services p {
        font-size: 1rem;
    }

    .services-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

