/* General Styles */
.container {
    padding: 10px;
}

.service-card-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.service-cards-section-para {
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Card Styles */
.clean-card-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clean-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image Container */
.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.9s ease;
}

.clean-card-box:hover .card-image {
    transform: scale(1.09);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clean-card-box:hover .image-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 20px;
    text-align: center;
}

.clean-icon {
    font-size: 2rem;
    color: #0078d4;
    margin-bottom: 10px;
}

.clean-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.clean-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Book Now Button */
.book-now-btn {
     display: inline-block;
    background: #0078d4;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
      background: linear-gradient(135deg, #2a83f7ff, #5f84ffff);
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

.book-now-btn:hover {
   background: linear-gradient(135deg, #5f84ffff, #2a83f7ff);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(4, 92, 255, 0.3);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .service-card-heading {
        font-size: 1.5rem;
    }

    .clean-title {
        font-size: 1rem;
    }

    .clean-desc {
        font-size: 0.9rem;
    }
}
