.card-img, .card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
    height: 250px;
    object-fit: cover;
}

/* Banner Image */
.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Section */
.container.w-90 {
    max-width: 90%;
    margin: auto;
}

.content-section {
    padding: 40px 20px;
    text-align: center;
    margin-top: 0px !important;
}

.section-title {
    margin-bottom: 20px;
    margin-left: 10px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--primary-color) !important;
    border-radius: 2%;
    width: 250px;
    background: var(--light-beige);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(78, 52, 46, 0.3);
    background: linear-gradient(45deg, var(--primary-color), var(--olive-green));
}

.process-step img {
    width: 80px;
    margin-bottom: 20px;
}

.process-step h4,
.process-step li {
    transition: color 0.3s ease;
    color: var(--primary-color) !important;
}

.process-step:hover h4,
.process-step:hover li {
    color: var(--light-beige);
}

/* Product Showcase */
.product-showcase {
    text-align: center;
    margin-top: 40px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    width: 300px;
}

.card {
    border: 2px solid var(--primary-color) !important;
    border-radius: 5px;
    overflow: hidden;
    background: var(--light-beige);
    text-align: center;
}

.card img {
    width: 85%;
    height: 200px;
    object-fit: cover;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}
.product-card:hover {
    transform: translateY(-3px);
}
/* Floating WhatsApp Button
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
} */

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color) !important;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    color: var(--primary-color) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .product-section img {
        width: 300px;
    }
    /* .whatsapp-float {
        bottom: 10px;
        right: 10px;
    } */
    .testimonial-text {
        text-align: center;
    }
    .row, .side-by-side {
        flex-direction: column;
    }
}
