/* ...existing code... */
.product-icons-section .product-icon-link {
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
    border: 1px solid #e3e9f6;
}
.product-icons-section .product-icon-link:hover {
    box-shadow: 0 4px 16px rgba(26,35,126,0.08);
    transform: translateY(-4px) scale(1.04);
    text-decoration: none;
    background: #f0f4ff;
}
.product-icons-section img {
    display: block;
    margin: 0 auto 8px;
}
.product-icons-section .fw-semibold {
    color: #1a237e;
    font-size: 1rem;
}
.product-hero {
    position: relative;
    min-height: 525px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-shadow {
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.product-icons-bar {
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.04);
}
.product-icons-bar-inner {
    gap: 0;
}
.product-bar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 28px 10px 28px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.product-bar-icon img {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.product-bar-icon.active,
.product-bar-icon:hover {
    color: #d32f2f;
}
.product-bar-icon.active img,
.product-bar-icon:hover img {
    filter: none;
}
.product-bar-icon span {
    margin-top: 2px;
    letter-spacing: 1px;
}
.bar-divider {
    width: 1px;
    height: 48px;
    background: #e3e9f6;
    margin: 0 8px;
}
@media (max-width: 991px) {
    .product-bar-icon {
        padding: 14px 12px 8px 12px;
        font-size: 0.98rem;
    }
    .bar-divider {
        height: 36px;
    }
}
@media (max-width: 767px) {
    .product-icons-bar-inner {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }
    .product-bar-icon {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 18px;
        padding: 14px 0 8px 0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(26,35,126,0.04);
        min-width: 0;
    }
    .product-bar-icon img {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
    }
    .product-bar-icon span {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    .bar-divider {
        display: none !important;
    }
}

/* products */
.product-showcase-section {
    background: #fff;
}
.product-showcase-card {
    background: #f3f3f3;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(26,35,126,0.06);
    overflow: hidden;
    min-height: 500px;
    max-width: 1440px;
}
.product-showcase-card .product-image-col {
    background: #f3f3f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 460px;
   
}
.product-showcase-card .product-details-col {
    min-width: 320px;
}
.product-showcase-card .badge {
    font-size: 0.95rem;
    border-radius: 18px;
    font-weight: 500;
}
.product-showcase-card .btn {
    border-radius: 24px;
    font-size: 1.6rem;
}
@media (max-width: 991px) {
    .product-showcase-card {
        flex-direction: column !important;
        display: block !important;
    }
    .product-showcase-card > .col-lg-5,
    .product-showcase-card > .col-lg-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}
.product-card {
    min-height: 380px;
    box-shadow: 0 2px 16px rgba(26,35,126,0.06);
    border-radius: 18px;
    overflow: hidden;
}
.product-image-col {
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    padding: 32px 0;
}
.product-content-col {
    min-width: 320px;
    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-content-col .badge {
    font-size: 0.95rem;
    border-radius: 18px;
    font-weight: 500;
}
.product-content-col .btn {
    border-radius: 24px;
    font-size: 1rem;

}
@media (max-width: 991px) {
    .product-card {
        flex-direction: column;
    }
    .product-image-col,
    .product-content-col {
        min-width: 100%;
        padding: 24px;
    }
}

/* Product Showcase Card Hover Effects */
.product-showcase-card:hover .badge {
    color: #e30613 !important;
    border-color: #e30613 !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-showcase-card:hover .btn-light {
    background: #e30613 !important;
    color: #fff !important;
    border-color: #e30613 !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-showcase-card:hover .btn-danger {
    background: #fff !important;
    color: #e30613 !important;
    border-color: #e30613 !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-showcase-card:hover .w-100.py-4 {
    background: #e30613 !important;
    transition: background 0.2s;
}
.product-btn-bar {
    background: #cdcdcd;
    border-radius: 0 0 10px 10px;
}
.product-btn-view {
    color: #fff !important;
    border: 2px solid #fff !important;
    background: transparent !important;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(227,6,19,0.08);
}
.product-btn-view:hover, .product-showcase-card:hover .product-btn-view {
    background: #fff !important;
    color: #e30613 !important;
    border: 2px solid #fff !important;
}
.product-btn-quote {
    background: #fff !important;
    color: #e30613 !important;
    border: 2px solid #fff !important;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(227,6,19,0.08);
}
.product-btn-quote:hover, .product-showcase-card:hover .product-btn-quote {
    background: #e30613 !important;
    color: #fff !important;
    border: 2px solid #ffffff !important;
}
.features-marquee-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 0;
}
.features-marquee-inner {
    display: flex;
    align-items: flex-end; /* Align all items to the bottom */
    gap: 32px;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 140px;
    padding: 0 16px;
    box-sizing: border-box;
}
.feature-item img {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 8px;
    /* Ensures all icons have the same height and baseline */
}
.feature-item .small {
    text-align: center;
    line-height: 1.3;
    min-height: 36px; /* Adjust so all text blocks are same height */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* --- Product Showcase Card: Mobile Improvements --- */
@media (max-width: 767px) {
  .product-showcase-card {
    flex-direction: column !important;
    display: block !important;
    min-height: unset !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(26,35,126,0.06);
    margin-bottom: 3rem !important;
  }
  .product-showcase-card > .col-lg-5,
  .product-showcase-card > .col-md-6 {
    max-width: 100% !important;
    min-height: unset !important;
    border-radius: 12px 12px 0 0 !important;
    justify-content: center !important;
    padding: 1.5rem 0 !important;
    background: #f3f3f3 !important;
  }
  .product-showcase-card img.img-fluid {
    max-width: 70vw !important;
    max-height: 180px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .product-showcase-card > .col-lg-7,
  .product-showcase-card > .col-md-6 {
    max-width: 100% !important;
    min-height: unset !important;
    border-radius: 0 0 12px 12px !important;
    /* background: #fff !important; */
    /* padding: 1.2rem 1rem !important; */
  }
  .product-showcase-card .p-4.pb-0 {
    padding: 1 !important;
  }
  .product-showcase-card .d-flex.justify-content-between.align-items-center.flex-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .product-showcase-card .badge {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
    padding: 6px 16px !important;
  }
  .product-showcase-card .mb-3 {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }
  .features-marquee-outer {
    margin-bottom: 0.5rem !important;
  }
  .product-btn-bar {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 1.2rem 0 !important;
    border-radius: 0 0 12px 12px !important;
  }
  .product-btn-bar .btn {
    width: 80% !important;
    max-width: 320px;
    margin: 0 auto !important;
    font-size: 1rem !important;
    padding: 0.7rem 0 !important;
  }
}