/* Services Section */
.services-section {
    padding: 50px 0;
    background-color: #fff;
}

.services-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-item {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 20px;
    width: 22%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: fit-content;

}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 24px;
    color: #333;
    margin: 15px 0;
}

.service-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-item .btn {
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.service-item .btn:hover {
    background-color: #e65c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-items {
        flex-direction: row; /* Stack items vertically */
        gap: 15px; /* Adjust gap */
    }

    .service-time {
        
        margin: 0 auto; /* Center align cards */
       
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        padding: 20px;
        width: 45%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
        
    }
}
@media (max-width: 576px) {
    .service-item {
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        padding: 20px;
        width: 45%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

    .service-time h3 {
        font-size: 1.3rem; /* Adjust heading size */
    }

    .service-time p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }

    .service-time .btn-secondary {
        padding: 8px 15px; /* Adjust button size */
    }
}
@media (max-width: 425px) {
    .service-item {
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        padding: 20px;
        width: 45%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

    .service-time h3 {
        font-size: 1.3rem; /* Adjust heading size */
    }

    .service-time p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }

    .service-time .btn-secondary {
        padding: 8px 15px; /* Adjust button size */
    }
}

