.product-card {
    border: 1px solid #e3e3e3;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.quantity-input {
    width: 50px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 35px;
}

.service-block {
    position: relative;
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@media only screen and (max-width: 991px)
.services-section-three .service-block .inner-box {
    padding: 60px 25px 11px;
}
.services-section-three .service-block .inner-box {
    background-color: #ffffff;
    padding: 60px 35px 11px;
    border-radius: 25px;
    margin-bottom: 30px;
    cursor: pointer;
}

.service-block .inner-box {
    position: relative;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 40px;
}


.services-section-three .icon-box {
    position: relative;
    text-align: center;
}


.services-section-three .service-block .inner-box {
    background-color: #ffffff;
    padding: 60px 35px 11px;
    border-radius: 25px;
    margin-bottom: 30px;
    cursor: pointer;
}


.services-section-three .service-block .lower-content {
    padding: 6px 0 0 0;
}

.service-block .lower-content {
    position: relative;
    padding: 21px 20px 6px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


.services-section-three .service-block .lower-content h3 {
    margin-bottom: 3px;
    color: #ff9c00;
}


.service-block .lower-content h3 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #2154cf;
    font-weight: 700;
    margin-bottom: 8px;
}


.services-section-three .service-block .lower-content h3 a {
    color: #2154cf;
}


.service-block .lower-content h3 a {
    color: #2154cf;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none !important;
}


.service-block .lower-content .text {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 27px;
    color: #777777;
    font-weight: 400;
    margin-bottom: 27px;
}

p, .text {
    position: relative;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: #777777;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.product-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .product-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .product-info {
        padding: 15px;
        text-align: center;
    }
    .product-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
    .product-price {
        font-size: 16px;
        color: #666;
        margin-bottom: 15px;
    }
    .add-to-cart {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .quantity-input {
        width: 60px;
        margin-right: 10px;
        text-align: center;
        background-color: #10ca41f5
    }
    .btn-cart {
        background-color: #007bff;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .btn-cart:hover {
        background-color: #0056b3;
    }
    
 @media (max-width: 768px) {
      .content-wrapper h3 {
        font-size: 1.5rem;
      }
      .products-wrapper {
        margin-top: 20px;
      }
      .product-btn {
        font-size: 0.85rem;
        padding: 8px 10px;
      }
      .testimonial-card {
        margin-top: 20px;
        
      }
    }

    @media (max-width: 576px) {
      .content-wrapper h3 {
        font-size: 1.25rem;
      }
      .product-btn {
        font-size: 0.8rem;
        padding: 6px 8px;
      }
    }
    
.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }