/* ===== Product Page Hero Section ===== */

.product-hero {
    background: linear-gradient(to right, #ffffff 70%, #902943 100%);
    border-bottom: 1px solid #e0e0e0;
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 600px;
    height: 100%;
}
/* Search Form Styling */
.product-hero form {
    max-width: 100%;
}

.product-hero .input-group {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-hero .form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
}

.product-hero .form-control::placeholder {
    color: #999;
}

.product-hero .btn {
    background-color: #902943;
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
}

.product-hero .btn:hover {
    background-color: #6f1d34;
}

.product-hero .product-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    height: 100%;
}

.tagline {
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 17px;
    color: #902943;
}

.product-hero h1 {
    color: #111;
    font-weight: 700;
}

.highlight {
    color: #902943;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 28px;
    }

    .product-hero {
        padding: 40px 20px;
    }
}

/* Gradient Box Style */
.gradient-box {
    background: linear-gradient(to bottom right, #902943, #b74b69);
    color: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Feature Card Style */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    /*transition: transform 0.3s, box-shadow 0.3s;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* new*/
        /* Add a transparent border */
    border: 3px solid transparent; 
    /* Add border-color to the transition */
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s ease; 
}

/* Highlighted Card Style
  It defines the highlighted appearance.
*/
.service-card.highlighted-card {
    border-color: #902943; /* Your main theme color */
    border-width: 3.5px; /* Thicker border for emphasis */
    transform: translateY(-6px) scale(1.02); /* Make it pop a little */
    box-shadow: 0 8px 25px rgba(144, 41, 67, 0.3); /* A stronger, colored shadow */
    background-color: #ffeff3;
    .title {
        color: #000000;
    }
}

/* On Hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Style inside Card */
.service-card img {
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 5px;
    
}

/* Card Title */
.service-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #3c3c3c;
}

/* Card Description */
.service-card p {
    font-size: 14px;
    color: #666;
}

/* Button Container */
.service-card .d-flex {
    margin-top: auto;
}

/* Small Text Below Buttons */
.service-card p.small {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700; 
    color: #000000;
}
.service-card .d-flex p.small {
    margin-top: 0;
}

/* Button Styling (You can customize colors) */

.icon-btn {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border: none;
    background: none;
    padding: 0;
    margin: 0 20px;
    transition: transform 0.3s;
}

.icon-btn:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.icon-btn-btn {
    border: none;
    background: none;
    padding: 0;
}

