   

/* Custom Owl Carousel Navigation Icons Only */
body .container .owl-carousel .owl-nav button {
    background: unset !important;
    pointer-events: all;
    background-color: #0b3d6b !important;
    color: white !important;
    font-size: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin-top: 0 !important;
}

.owl-carousel .owl-nav button {
    pointer-events: all;
    width: 40px;
    height: 40px;
    background-color: #0b3d6b !important;
    color: white !important;
    border-radius: 50%;
    font-size: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.owl-carousel .owl-nav button:hover {
    background-color: #083052 !important;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -20px;
}

.owl-carousel .owl-nav button span {
    font-size: 28px;
    line-height: 1;
    font-weight: normal;
    display: block;
}

.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.owl-carousel .owl-nav button i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.category-section {
    padding: 40px 70px;
}

/* Mobile view adjustment */
@media (max-width: 768px) {
    .category-section {
        padding: 20px;
    }
}

.features__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-top: 10px;
}

.feature-item {
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #172154;
}

.feature-card__media img {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 6px; /* 🔹 reduced gap between image & heading */
}

.feature-item h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px; /* 🔹 tighter spacing */
}

.feature-item p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* ✅ Mobile: tighter padding & smaller gap */
@media (max-width: 768px) {
    .features {
        padding: 20px 10px !important;
    }
    .features__grid {
        gap: 20px;
    }

    .feature-card__media img {
        width: 80px;
        margin-bottom: 2px; /* 🔹 minimal gap between image and heading */
    }

    .feature-item h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .feature-card__media {
        height: auto !important; /* 🔹 allow natural image height */
        margin-bottom: 4px; /* 🔹 small controlled gap to h3 */
    }

    .feature-item h3 {
        padding: 0 !important; /* 🔹 ensure no extra space */
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
    .features__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        justify-items: center !important;
        gap: 15px !important;
    }
    .features__grid article img {
        width: 150px !important;
    }
    .features__grid h3 {
        font-size: 14px !important;
        margin-top: 5px !important;
    }
}

/* Mobile view: 1 item per row for ScanCafe Promise */
@media (max-width: 480px) {
    .scan-features__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .scan-features__grid .feature-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

/* Mobile view: remove padding and stack items */
@media (max-width: 480px) {
    .scan-features__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .scan-features__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .scan-features__grid .feature-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .container.text-center {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .container.text-center {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .mobile-break {
        display: block;
    }
}