/* Products Styles */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-price {
    font-weight: bold;
    color: #0d6efd;
}

/* Service Cards */
.service-card {
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0d6efd;
}

.service-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #6c757d;
}

/* Enquiry Form */
.contact-form label {
    font-weight: 500;
}

.contact-form .form-control {
    padding: 12px;
    border-radius: 5px;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Case Studies */
.case-study-card {
    overflow: hidden;
    border-radius: 5px;
}

.case-study-card img {
    transition: transform 0.5s ease;
}

.case-study-card:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .product-card .card-img-top {
        height: 180px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}