.hero-section-product {
    /* background: rgba(0, 0, 0, 0.5); */
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.0) 100%);
    position: relative;
    overflow: hidden;
}

.retailgo-vertical-overlay {
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.8), transparent);
}

#hero-image-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content-product-wrapper {
    padding-top: 200px;
    padding-bottom: 200px;
}


/* Footer */
.gradient-background {
    background: rgb(235, 232, 232) !important;
}

/* landing features section */
.retail-landing-image {
    background-image: url("/images/overlay/rbs-overlay/retail-landing-hero.png");
    position: relative;
    background-position: left center;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 90px;
}

.header-text-hero {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -0.03em;
}

.sub-header-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .retail-landing-image {
        background-image: url("/images/overlay/rbs-overlay/rbs-landing-tab.png") !important;
    }
}

.scroll-track {
    display: flex;
    animation: scrollLeft 50s linear infinite;
    width: max-content;
}

.scroll-container {
    overflow: hidden;
    position: relative;
}

.card-box {
    width: 150px;
    height: 280px;
    background: none;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 8px;
}

.card-box:hover {
    border-color: #003a72;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.card-label {
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
}

.card-label:hover {
    color: #003a72;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(27, 27, 27, 0.5);
}

.card-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 8px;
    text-align: center;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.card-text:hover {
    color: #003a72;
}

.card-box:hover .card-img {
    transform: scale(1.05);
}

@keyframes scrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#autoScroll:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}


/* Apps section */
.learn-more-link {
    display: inline-block;
    margin-top: 10px;
    color: #003a72;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-link span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.learn-more-link:hover span {
    transform: translateX(5px);
}

.learn-more-link:hover {
    color: #0056b3;
}

.heading-label {
    display: inline-block;
    border: 1px solid #003a72;
    padding: 0.3rem 0.8rem;
    border-radius: 0.75rem;
    margin: 0 auto;
}


/* Feature Section 2 */
.bg-color-vertical {
    background-color: #003a72;
}

.feature-item {
    position: relative;
    padding-left: 16px;
    cursor: pointer;
    border: none;
    border-left: 4px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-item.selected {
    background-color: rgba(255, 255, 255, 0.15);
}

.learn-more-left {
    margin-top: 6px;
}

.learn-more-left a {
    color: #c6c9cf;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.learn-more-left a::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more-left a:hover {
    color: #f4f4f5;
}

.learn-more-left a:hover::after {
    transform: translateX(4px);
}


.feature-images {
    display: flex;
    height: 540px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.6s forwards;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.feature-images .left-images {
    flex: 35 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.feature-images .left-images img,
.feature-images .right-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.feature-images .left-images img {
    height: 50%;
}

.feature-images .right-image {
    flex: 65 0 0;
    display: flex;
}

.feature-images .right-image img {
    height: 100%;
}

.equal-height-row {
    display: flex;
    align-items: stretch;
}

.equal-height-row>[class^="col-"] {
    display: flex;
    flex-direction: column;
}

#leftMenu,
#featureContent {
    height: 100%;
}

.feature-images {
    height: 100%;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Count section */
.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-wrapper .info-item {
    flex: 1 1 20%;
    max-width: 20%;
    text-align: center;
    padding: 10px;
}


/* signup section */
.freeTrail {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/retailgo-free-trial.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailSuperShop {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/supershop-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailBookStore {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/bookstore-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailPetrolPump {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/petrolpump-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailPetShop {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/petshop-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailPharmacy {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/pharmacy-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailHardware {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/hardware-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailBakery {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/bakery-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailConvenienceStore {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/convenience-store-free-trail.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailDepartmentalStore {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/rbs/vertical/departmental-store-free.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailBox {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 0 30px;
    color: white;
}

.review-card {
    background: white;
    color: black;
    padding: .5rem 2rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


.review-display-box {
    height: 300px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.center-content {
    display: flex;
    flex-direction: column;
}

.review-list {
    display: flex;
    flex-direction: column;
}

.review-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.review-cards {
    display: flex;
    flex-direction: column;
}

@keyframes infiniteScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.platform-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 4px;
}

.custom-stars {
    color: #003a72;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

.bg-custom-primary {
    background-color: #003a72 !important;
    color: #fff !important;
}

/* Feature Section */
.equal-height {
    display: flex;
    align-items: stretch;
}

#stickyImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: none;
    opacity: 0;
    transform: translateX(0);
}

#scrollContent {
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 20px 15px 50px;
    height: 100%;
    max-height: 400px;
}

.content-section {
    padding: 30px 20px;
    border-top: 1px solid #dee2e6;
    min-height: 300px;
}

.content-section:first-child {
    border-top: none;
}

.slide-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Solutions Section */
.retailife-section {
    padding-left: 40px;
    padding-right: 40px;
}

.image-card {
    position: relative;
    width: 100%;
    overflow: visible;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.image-card img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 12px;
}

.col-md-4:nth-child(2) .image-card img {
    height: 100%;
    min-height: 625px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .col-md-4:nth-child(2) .image-card img {
        height: 300px;
        min-height: 300px;
    }
}

.image-header {
    position: absolute;
    background-color: #0068ce;
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    display: flex;

    flex-direction: row;
    align-items: center;
    transition: all 0.4s ease;
    white-space: normal;
    max-width: 90%;
    min-width: 110px;
    gap: 0;
}

.image-header>div {
    width: 100%;
    min-width: unset !important;
}


.image-card.expanded .image-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    white-space: normal;
    max-width: 260px;
    gap: 10px;
    z-index: 999;
}

.image-header p {
    display: none;
    margin: 0;
    white-space: normal;
}

.image-card.expanded .image-header p {
    display: block;
}

.pos-random-1 {
    top: 0;
    left: 0;
}

.pos-random-2 {
    top: 0;
    right: 0;
}

.pos-random-3 {
    top: 10%;
    left: 10%;
}

.pos-random-4 {
    top: 5%;
    right: 10%;
}

.pos-random-5 {
    top: 0;
    right: 0;
}

.pos-random-6 {
    top: 5%;
    left: 5%;
}


/* Price */
.selected-plan {
    border: 3px solid #003a72;
    position: relative;
}

.recommended-badge {
    background-color: #003a72;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Customer section */
.customer-brand-logo {
    max-width: 120px;
}

/* FAQ */
.faq-answer {
    display: none;
    transition: all 0.3s ease;
    max-width: 100%;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
}

.faq-question {
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.faq-question span {
    transition: transform 0.3s ease;
}

.faq-question.open span {
    transform: rotate(180deg);
}

.faq-item {
    border-bottom: 1px dashed #ccc;
    padding: 0.5rem 0;
}



/* For Vertical Business-type */
.custom-box-ul {
    list-style: none;
    padding-left: 0;
}

.custom-box-ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-title {
    font-weight: 500;
    font-size: 1.25rem;
    margin: 0;
    flex: 1 1 auto;
}

.custom-box-ul li p.mb-3 {
    flex-basis: 100%;
    margin-top: 0.3rem;
}

.row.align-items-center {
    align-items: stretch;
}

.col-md-7 {
    display: flex;
    justify-content: center;
    align-items: start;
}

.custom-dot {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.custom-dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #003a72;
    border-radius: 2px;
}


.slider-section-new {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    transition: background-image 0.1s ease-in-out;
}

.slider-section-new .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slider-section-new .z-index-2 {
    position: relative;
    z-index: 2;
}

.arrow-container .arrow {
    background-color: white;
    color: black;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.5s;
}

.arrow:hover {
    background: #ddd;
}

.see-all-link {
    font-weight: 500;
    text-decoration: none;
}


.arrow-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.arrow {
    background-color: white;
    color: black;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}


.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.arrow:hover {
    background: #ddd;
}

.transition-slide {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.slide-left {
    transform: translateX(-40px);
    opacity: 0;
}

.slide-right {
    transform: translateX(40px);
    opacity: 0;
}


/* Retailgo Outlets */
.outlet-hero-gradient {
    background: linear-gradient(to right, rgb(47, 101, 172), #788eaa, #619bd1);
}

.bg-light-blue {
    background-color: #eff6ff;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-100 {
    color: #dbeafe;
}

.text-blue-50 {
    color: #eff6ff;
}

.border-blue {
    border-color: #93c5fd !important;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
}

.badge-purple {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.badge-indigo {
    background-color: #e0e7ff;
    color: #4338ca;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-large {
    font-size: 3rem;
}

.icon-medium {
    font-size: 2.5rem;
}

.icon-small {
    font-size: 2rem;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 4rem 0;
}


/* Apps Section */
.rbs-business-portal-bg {
    position: relative;
    color: #f8f9fa;
    overflow: hidden;
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.rbs-business-portal-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, #cdcfd1, #7a93a8),
        url('/images/block/rom/business-portal-background.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: .5;
    z-index: -1;
}

.text-retail {
    color: #003a72 !important;
}

.bg-retailgo-primary {
    background-color: #003a72 !important;
}

.text-retailgo-primary {
    color: #1d5d99 !important;
}

.btn-retailgo-primary {
    background-color: #003a72;
    border-color: #003a72;
    color: #fff;
}

.btn-retailgo-primary:hover {
    background-color: #003a72;
    border-color: #003a72;
}

.pos-icon.feature-icon {
    font-size: 3rem;
    color: #003a72;
}

.icon-wrapper-bh {
    width: 70px;
    height: 70px;
    border-radius: 10%;
    background: rgb(221, 221, 221);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.icon-wrapper-bh i {
    font-size: 40px;
    line-height: 1;
    padding: 0;
    margin: 0;
    color: #003a72;
}

.icon-wrapper-bh-2 {
    width: 70px;
    height: 70px;
    border-radius: 10%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-wrapper-bh-2 i {
    font-size: 32px;
    color: #003a72;
}

.playstore-rating {
    font-size: 2.5rem;
    font-weight: bold;
}

.playstore-stars .fas {
    color: #FFC107;
}

.jumbotron {
    border-radius: 0;
    margin-bottom: 0;
}

.feature-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 20px;
    transition: transform 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 767.98px) {
    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .jumbotron p.lead {
        font-size: 1.1rem;
    }

    .pos-icon.feature-icon {
        font-size: 2.5rem;
    }

    .playstore-rating {
        font-size: 2rem;
    }
}

.retail-apps svg {
    height: auto;
    width: 20px;
    fill: #ffffff !important;
}

/* BackOffice App */
.bg-gradient-blue-light {
    background: linear-gradient(to bottom, #f0fdf4, #ffffff);
}

.bg-gradient-blue-dark {
    background: linear-gradient(to right, #2d445a, #1b62a5);
}

.text-blue-600 {
    color: #055596;
}

.bg-blue-100 {
    background-color: #dceefc;
}

.text-blue-800 {
    color: #163f65;
}

.bg-blue-500 {
    background-color: #2276c5;
}

.text-blue-200 {
    color: #bbdcf7;
}

.text-blue-100 {
    color: #dce7fc;
}

.text-yellow-400 {
    color: #facc15;
}

.rounded-3xl {
    border-radius: 1.3rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.badge-custom {
    padding: .5em .75em;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-feature {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.card-feature .text-green-200 {
    color: #bbf7d0;
}

.main-section svg.lucide-download,
.main-section svg.lucide-smartphone,
.bg-dark svg.lucide-download {
    color: inherit;
    stroke: currentColor;
    fill: white;
}

.bg-dark svg.lucide-star {
    color: inherit;
    stroke: currentColor;
    fill: yellow;
    width: 16px;
    height: 16px;
}

.card-feature svg.lucide {
    color: #86c0ef;
    stroke: currentColor;
    fill: none;
    width: 36px;
    height: 36px;
}

.real-time-insights .lucide,
.manage-multiple-stores .lucide,
.in-depth-sales-analytics .lucide,
.monitor-active-staff-sessions .lucide,
.product-catalog-updates .lucide,
.order-history-access .lucide,
.generate-export-reports .lucide,
.manage-promotions-offers .lucide,
.customize-your-brand .lucide {
    color: inherit;
    stroke: #003a72;
    fill: none;
    width: 36px;
    height: 36px;
}


/* POS page */
.bg-restrogreen-primary {
    background-color: #00897B !important;
}

:root {
    --primary-violet: #7C3AED;
    --primary-violet-dark: #5B21B6;
    --accent-emerald: #10B981;
    --neutral-slate: #64748B;
    --neutral-light: #F8FAFC;
    --text-dark: #1E293B;
}

.pos-feature-card {
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
}

.pos-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-emerald));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.btn-primary-custom {
    background: var(--primary-violet);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.pos-section-bg-light {
    background-color: var(--neutral-light);
}

.pos-feature-image {
    border-radius: 8px;
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1); */
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .pos-feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .pos-feature-image {
        height: 250px;
        margin-bottom: 30px;
    }

    .hero-content-product-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .pos-feature-card {
        padding: 25px 15px;
    }

    .hero-content-product-wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .info-wrapper .info-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .faq-answer {
        max-width: 100%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .info-wrapper .info-item {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .faq-answer {
        max-width: 700px;
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .faq-answer {
        max-width: 800px;
        font-size: 1.05rem;
    }
}



.playstore-rating {
    font-size: 2.5rem;
    font-weight: bold;
}

.playstore-stars .fas {
    color: #FFC107;
}

.jumbotron {
    border-radius: 0;
    margin-bottom: 0;
}

.feature-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 20px;
    transition: transform 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}


@media (max-width: 767.98px) {
    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .jumbotron p.lead {
        font-size: 1.1rem;
    }

    .pos-icon.feature-icon {
        font-size: 2.5rem;
    }

    .playstore-rating {
        font-size: 2rem;
    }
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


/* Solutions */
.icon-wrapper-sol {
    transform: rotate(180deg);
    display: inline-block;
}

.bp-hero-section-a {
    background: linear-gradient(to right, #0159ac, #42729e);
    color: #f8f9fa;
}

.bp-hero-section-b {
    background: linear-gradient(to right, #42729e, #0159ac);
    color: #f8f9fa;
}



.vendor-icon {
    margin: 0 auto;
    width: max-content;
    background-color: #7f8d99;
    padding: 8px;
    border-radius: 8px;
}

.vendor-icon-2 {
    margin: 0;
}

.vendor-icon img {
    height: 40px;
    width: 100%;
}

.vendor-card {
    background: #fff;
    border-top: 3px solid #007bff;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 767px) {
    .col-md-5 {
        margin-bottom: 2rem;
        text-align: center !important;
    }

    .row.gy-5 {
        row-gap: 1.5rem !important;
    }
}


.icon-wrapper-product,
.icon-wrapper-pricing,
.icon-wrapper-promotions,
.icon-wrapper-catalog,
.icon-wrapper-brand {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.icon-wrapper-product {
    background-color: #e3f2fd;
}

.icon-wrapper-pricing {
    background-color: #fff3e0;
}

.icon-wrapper-promotions {
    background-color: #e8f5e9;
}

.icon-wrapper-catalog {
    background-color: #f3e5f5;
}

.icon-wrapper-brand {
    background-color: #e0f7fa;
}


.bg-rbs-client{
    background-color: #104679;
}