.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    min-width: 250px;
    max-width: 280px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* Title Styling */
.card h3 {
    font-size: 18px;
    margin: 15px 0;
    color: #333;
}

/* Button Styling */
.card a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #e6af5d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.card a:hover {
    background-color: #e6af5d;
}

/* Responsive Design */
@media (max-width: 767px) {
    .card {
        max-width: 100%;
    }
}

/* Benefits Section */
.benefits {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

/* Benefit Cards Container */
.benefit-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Benefit Card */
.benefit-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Heading Style */
.benefit-card h4 {
    font-size: 20px;
    color: #e6af5d;
    margin-bottom: 10px;
}

/* Text Style */
.benefit-card p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        width: 100%;
        max-width: 400px;
    }
}



.granite-price-list {
    position: relative;
    width: 100%;
}

.granite-price-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
}
.granite-price-list ul li {
    width: 100%;
    margin: 0px;
    display: flex;
}
.granite-price-list ul li:nth-child(1) {
    padding: 50px 38px;
    z-index: 9;
    position: relative;
}
.granite-price-list ul li form {
    margin-top: 30px;
}
.granite-price-list .form-submit .col-md-6 {
    padding-bottom: 30px;
}
.form-control-wrap {
    position: relative;
}
.granite-price-list ul li form input, .granite-price-list ul li form textarea {
    padding: 10px;
    border: none;
    background-color: #fff;
    border: 1px solid #dedede;
}
.granite-price-list ul li form input {
    border-radius: 0;
    height: 44px;
}
.granite-price-list ul li form textarea {
    border-radius: 0;
    height: 100px;
}
.form-submit input[type=text], input[type=email], input[type=tel], textarea {
    font-weight: 400;
    color: #000;
}
.granite-price-list ul li form input.form-control.submitb {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 2;
    font-size: 14px;
    padding: 7px 24px;
    position: relative;
    color: #fff;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s;
    background-color: #e6af5d;
    min-width: 150px;
    margin-bottom: 15px;
    width: auto;
    border-radius: 35px;
    margin-top: 15px;
}
.granite-price-list ul li form input.form-control.submitb:focus{outline: 0px; box-shadow: none;}
.granite-price-list ul li form input.form-control.submitb:hover {
    background-color: #fff;
    color: #30373f;
}
@media (max-width: 1199px) {
    .granite-price-list ul li:nth-child(1) {
        padding: 15px 20px;
    }
}

@media (max-width: 991px) {
    .granite-price-list ul li:nth-child(1) {
        background-color: #30373f;
        padding: 50px 30px;
    }
    .granite-price-list:after{ width: 100%;}
    .granite-price-list ul li {
        width: 100%;
    }
    
    .button.brxe-text-link{ padding: 15px 10px;}
}
@media (max-width: 767px) {
    .granite-price-list ul li:nth-child(1) {
        padding: 50px 0px;
    }
}
@media (max-width: 575px) {
    
}




.price-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* stronger shadow */
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .price-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* even stronger on hover */
  }

  .price-product-image {
    width: 100%;
    height: auto;
    border-radius: 12px 0 0 12px;
    object-fit: cover;
  }

  .price-product-content {
    padding: 1.5rem;
  }

  .price-product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .price-product-description .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


  .price-product-price {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-top: 1rem;
    line-height: 1;
}

  .price-product-price .per-unit {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}



  @media (max-width: 768px) {
    .price-product-card {
      flex-direction: column !important;
    }

    .price-product-image {
      border-radius: 12px 12px 0 0;
    }
  }


















