/*---------------------------------------------------------------------------------
Version: 2.0
-----------------------------------------------------------------------------------
CSS INDEX
===================
[1.0] Google Font
[2.0] Theme Default CSS
[3.0] Helper-Class
[4.0] Top Navigation Bar
[5.0] Home Page
    [5.1]   Header Section
    [5.2]   YouTube Video Section
    [5.3]   Brand Slider Section
    [5.4]   Testimonial Section
    [5.5]   Feature Cards Section
    [5.6]   Solution Tabs Section
    [5.7]   Custom Software Section
    [5.8]   Partners Carousel Section
    [5.9]   Learn More Category Sections
    [5.10]  Unlimited Support Section
    [5.11]  Map Section
    [5.12]  Book Free Demo Section
[6.0] Grocery Page
    [6.1]   Header Section
    [6.2]   Brand Slider Section
    [6.3]   Grocery Quote Section
    [6.4]   Grocery Fluid Cards Section
    [6.5]   Feature Points Section
    [6.6]   SD Large Footer Banner
[7.0] Retail Page
    [7.1]   Header Section
    [7.2]   Product Slider Section
    [7.3]   Retail Quote Section
    [7.4]   Retail Fluid Cards Section
    [7.5]   Feature Points Section
    [7.6]   Solution Tabs Section
    [7.7]   SD Large Footer Banner
[8.0] Restaurant Page
    [8.1]   Header Section
    [8.2]   Product Slider Section
    [8.3]   Restaurant Quote Section
    [8.4]   Restaurant Fluid Cards Section
    [8.5]   Feature Points Section
    [8.6]   Solution Tabs Section
    [8.7]   Get Started Banner
    [8.8]   Pricing Cards Section
    [8.9]   SD Large Footer Banner
[9.0] Pricing Page
    [9.1]   Header Section
    [9.2]   Pricing Cards Section
    [9.3]   Tableside Ordering Add-On Section
    [9.4]   Contact Sales Expert Div
    [9.5]   Complete Care Package Partial
    [9.6]   Book Demo General and Partial
[10.0] Book Demo Page
[11.0] Pricing Page
    [11.1]  Header Section
    [11.2]  50/50 Image and Paragraph
    [11.3]  Stats Counter Section
    [11.4]  Map Section
    [11.5]  Get Started Banner
[12.0] Privacy Page, Disclaimer Page, Terms of Use Page
[13.0] Footer Section
[14.0] Preloader and ScrollToTop (Previous Website Styles) 
-----------------------------------------------------------------------------------*/


/*************************/
/*-- [1.0] Google Font --*/
/*************************/

@import url('https://fonts.googleapis.com/css?family=Muli:400,600,700,800');


/*******************************/
/*-- [2.0] Theme Default CSS --*/
/*******************************/

:root {
    --sd-blue: #6F85BF;
    --sd-blue-darker: #2E3D66;
    --bg-gray: #F1F1F1;
    --text-gray: #A6A6A6;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #6858db;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    line-height: 1.4em;
}

h1 {
    margin-bottom: 3rem;
}

p {
    font-size: 1.05rem;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
}

.navbar {
    background-color: white;
}

.btn-primary {
    background-color: var(--sd-blue);
    border-color: var(--sd-blue);
    border-radius: 10px;
}

.btn-primary:hover, .btn-primary:active {
    background-color: var(--sd-blue-darker) !important;
    border-color: var(--sd-blue-darker) !important;
}

.btn-outline-primary {
    color: var(--sd-blue);
    border-color: var(--sd-blue);
    border-radius: 10px;
}

.btn-outline-primary:hover, .btn-outline-primary.active:hover {
    color: #fff;
    background-color: var(--sd-blue-darker) !important;
    border-color: var(--sd-blue-darker) !important;
}

.btn-outline-primary:active, .btn-outline-primary.active {
    color: #fff;
    background-color: var(--sd-blue);
    border-color: var(--sd-blue);
}

a.arrow-link {
    color: var(--sd-blue);
}

.btn-std-width {
    width: 240px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
    font-weight: 700;
}

.grid__list {
    list-style-type: none;
    margin-bottom: 0;
}

.grid__list li {
    position: relative;
}

.grid__list li:before{
    content: "";
    position: absolute;
    top: 5px;
    left: -35px;
    width: 20px;
    height: 20px;
    background-image: url(../img/Icons/checkmark.png);
    background-size: contain;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}


/**************************/
/*-- [3.0] Helper-Class --*/
/**************************/

.vcenter {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.text-blue {
    color: var(--sd-blue);
}

.text-error {
    color: #ff867a;
}

.section-padding {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-padding-small {
    padding-top: 75px;
    padding-bottom: 75px;
}

.section-padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-padding-top {
    padding-top: 120px;
}

.section-padding-top-small {
    padding-top: 75px;
}

.section-pd-top-2 {
    padding-top: 90px;
}

.list li {
    display: block;
    margin-bottom: 10px;
}

.page-title {
    font-weight: 700;
    font-size: 36px;
}

.request-demo-page-title {
    font-weight: 700;
    font-size: 32px;
}

/* Hidden classes */
@media only screen and (max-width: 1199.98px) {
    .hidden-under-lg {
        display: none;
    }
}
@media only screen and (max-width: 767.98px) {
    .hidden-under-sm {
        display: none;
    }
}

/********************************/
/*-- [4.0] Top Navigation Bar --*/
/********************************/

.navbar {
    border-bottom: none;
}

.navbar .navbar-brand > img {
    width: 15rem;
}

.navbar .navbar-nav > .nav-item {
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.navbar .nav-item > .nav-link {
    color: black;
}

.navbar .nav-item > a {
    font-size: 1rem;
    white-space: nowrap;
}

.navbar .nav-item > .free-demo {
    font-weight: bold;
    font-size: 0.70em;
}

.btn-green {
    background-color: #00bf63; /* normal green */
    border-color: #00bf63;    
}

.btn-green:hover {
    background-color: #1e7e34; /* darker green on hover */
    border-color: #1e7e34;
}

.btn.btn-green-outline {
    background-color: transparent !important; /* No fill */
    color: #00bf63 !important; /* Green text */
    border: 2px solid #00bf63 !important; /* Green outline */
    padding: 8px 16px; /* Optional: adjust padding */    
}

.btn.btn-green-outline:hover {
    background-color: #1e7e34 !important; /* Fill on hover */
    color: #fff !important; /* White text on hover */
}

/**********************************************************/
/*-- [5.0] Home Page --*/
/**********************************************************/

/*-- [5.1] Header Section --*/
/*==============================*/

header .button-group {
    margin-bottom: 5rem;
}

.home-header img {
    position: relative;
    left: -7%;
}

@media only screen and (min-width: 992px) {
    header.page-header {
        margin-top: 200px;
    }
}

@media only screen and (max-width: 767.98px) {
    header .button-group .btn {
        margin-bottom: 1rem;
    }
}

.nav-pills .nav-link.nav-home-link {
    color: #356bd0 !important; /* blue text */
    border: 2px solid #356bd0; /* blue border */
    border-radius: 50px; /* pill shape */
    padding: 1.2rem 1.5rem; /* spacing */
    font-weight: 800;
    font-size: clamp(0.6rem, 1vw + 0.5rem, 1.12rem);    
    display: inline-block;
    background-color: white; /* outline default */
    transition: all 0.3s ease;
    text-align: center;
    margin: 5px;
    max-width: 240px;
}

/* Hover + Active */
.nav-pills .nav-link.nav-home-link:hover,
.nav-pills .nav-link.nav-home-link.active {
    background-color: #356bd0; /* filled blue */
    color: #fff !important; /* white text */
}

.nav-pills .nav-link.nav-retail-link {
    color: white !important; /* white text by default */       
    padding: 0 0 0.8rem 0;
    font-weight: 800;
    font-size: 2rem;
    display: inline-block;
    background-color: black; /* solid blue background */
    transition: all 0.3s ease;
    text-align: left;
    margin: 5px 0 5px 0;
    text-decoration: none;    
}

/* Hover + Active */
.nav-pills .nav-link.nav-retail-link:hover,
.nav-pills .nav-link.nav-retail-link.active {
    background-color: black;
    color: #356bd0 !important;
    border-color: #356bd0;
}

.media-hover-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

    .media-hover-container img,
    .media-hover-container video {
        display: block;
        width: 100%;
        height: auto;
    }

.media-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* semi-transparent black */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    opacity: 0; /* hidden by default */
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.media-hover-container:hover .media-hover-overlay {
    opacity: 1; /* show on hover */
}

/*-- [5.2] YouTube Video Section --*/
/*=================================*/

.youtube-container {
    display: block;
    width: 100vw;
    margin: 0px auto;
}

.youtube-player {
    display: block;
    margin: 0px auto;
    padding-bottom: 36.25%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

img.youtube-thumbnail {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    cursor: pointer;
}

div.youtube-play-btn {
    height: 150px;
    width: 150px;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -75px;
    position: absolute;
    background: url("../img/home/video-play-btn.png") no-repeat center center;
    background-size: 150px 150px;
    cursor: pointer;
}

.youtube-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div.video-logo {
    height: 10vw;
    width: 25vw;
    right: 5%;
    top: 5%;
    position: absolute;
    background: url("../img/home/video-sd-logo.png") no-repeat center center;
    background-size: 25vw;
    cursor: pointer;
}

@media only screen and (max-width: 575.98px) {
    div.youtube-play-btn {
        height: 50px;
        width: 50px;
        margin-left: -25px;
        margin-top: -25px;
        background-size: 50px 50px;
    }
}

/*-- [5.3] Brand Slider Section --*/
/*================================*/
/*      Refer to component.css for logo-slider css    */
/*====================================================*/

/*-- [5.4] Testimonial Section --*/
/*===============================*/
.single-testimonial-section {
    background-color: var(--bg-gray);
    font-size: 1.4rem;
}
.single-testimonial-section .row > div {
    padding: 1rem 2rem;
}
.single-testimonial-section .row > div:nth-child(1) {
    display: flex;
    justify-content: end;
    align-items: center;
}
.single-testimonial-section .row > div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: start;
}
.single-testimonial-section img {
    max-height: 380px;
    object-fit: contain;
}
.single-testimonial-section p:nth-child(1) {
    font-size: 1.6rem;
    line-height: 1.4;
}
.single-testimonial-section p {
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
}
.single-testimonial-section p.fw-bold {
    margin: 0;
}
@media only screen and (min-width: 1500px) {
    .single-testimonial-section .container {
        max-width: 1400px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-testimonial-section {
        background-color: var(--bg-gray);
        font-size: 0.8rem;
    }
    .single-testimonial-section .row > div {
        padding: 20px;
    }
    .single-testimonial-section p:nth-child(1) {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .single-testimonial-section p {
        font-size: 0.9rem;
    }
}


/*-- [5.5] Feature Cards Section --*/
/*============================*/
.feature-cards-section {
    background-color: var(--sd-blue);
}
.feature-cards-section .card {
    border: none;
    border-radius: 10px;
    transition: all .4s ease;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}
.feature-cards-section .card:hover {
    -ms-transform: translateZ(0) scale(1.03); /* IE 9 */
	-webkit-transform: translateZ(0) scale(1.03); /* Chrome, Safari, Opera */
    transform: translateZ(0) scale(1.03);
    transition: all .3s ease; 
    backface-visibility: hidden;
}
.feature-cards-section .card-title {
    font-weight: 700;
}
.feature-cards-section .card > .card-body {
    padding: 3rem 2rem 3rem;
}
.feature-cards-section .card .icon {
    width: 3rem;
    height: auto;
}
@media only screen and (min-width: 1400px) {
    .feature-cards-section .contai
    ner {
        max-width: 1260px;
    }
}
@media only screen and (min-width: 1500px) {
    .feature-cards-section .container {
        max-width: 1450px;
    }
}

/*-- [5.6] Solution Tabs Section --*/
/*=================================*/
/*      Refer to component.css     */
/*=================================*/

/*-- [5.7] Custom Software Section --*/
/*================================*/
.custom-software-section {
    background-image: url(../img/home/custom-software-bg.png);
    background-size: cover;
    padding: 14rem 0rem;
}
.custom-software-section .card {
    padding: 2.5rem 3rem 3.5rem;
    border-radius: 12px;
    max-width: 850px;
}
.custom-software-section .solution-button {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 12px;
    box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 20%);
    cursor: pointer;
    transition: all .4s ease;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}
.custom-software-section .solution-button:hover {
    box-shadow: 2px 3px 4px 3px rgba(0, 0, 0, 0.3);
    color: #000;
    transform: translateZ(0) scale(1.02);
    transition: all .3s ease; 
    backface-visibility: hidden;

}
.custom-software-section .solution-button-content {
    display: flex;
    align-items: center;
    width: 200px;
}
.custom-software-section .solution-button-content img.btn-icon {
    height: 3rem;
    width: auto;
    margin-right: 1rem;
}
@media only screen and (max-width: 767.98px) {
    .custom-software-section .card {
        padding: 2rem 1rem;
    }
}

/*-- [5.8] Hardware Partners Slider Section --*/
/*============================================*/
/*      Refer to component.css                */
/*      .partners-carousel-section            */
/*============================================*/

/*-- [5.9] Learn More Category Sections --*/
/*=====================================*/
.learn-more .text-container {
    padding: 0 2rem;
    max-width: 500px;
}
.learn-more .subtitle {
    color: var(--text-gray);
}
.learn-more .title {
    font-size: calc(1rem + 1.5vw);
    font-weight: 300;
}
.learn-more .text-content {
    font-size: 1.1rem;
}
.learn-more img {
    max-width: 100%;
    object-fit: contain;
}
@media (min-width: 1200px) {
    .learn-more .title {
        font-size: 2.25rem;
    }
}

/*-- [5.10] Unlimited Support Section --*/
/*======================================*/
.unlimited-support-section .card {
    border: none;
    border-radius: 1.5rem;
    width: 100%;
}
.unlimited-support-section .card .card-body {
    padding: 2rem;
}
.unlimited-support-section .card .card-title {
    padding-top: 1rem;
}
.unlimited-support-section .card p {
    max-width: 100%;
    margin: 1.5rem auto;
}
.unlimited-support-section .location-marker {
    width: 40%;
    height: 15%;
    right: 4%;
    bottom: 3%;
    position: absolute;
    background: url("../img/home/unlimited-support-location.png") no-repeat center center;
    background-size: 100%;
    transition: all .2s ease;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}
.unlimited-support-section .location-marker:hover {
    width: 40%;
    height: 15%;
    right: 4%;
    bottom: 3%;
    position: absolute;
    background: url("../img/home/unlimited-support-location.png") no-repeat center center;
    background-size: 100%;
    transform: translateZ(0) scale(1.05);
    transition: all .3s ease; 
    backface-visibility: hidden;
}
@media (min-width: 992px) {
    .unlimited-support-section .card {
        width: 80%;
    }
    .unlimited-support-section .card p {
        max-width: 80%;
        margin: 1.5rem auto;
    }
}

/*-- [5.11] Map Section --*/
/*========================*/
.map-section {
    background-color: black;
}
.map-section .map-btn-wrapper {
    margin-bottom: 5rem;
}
.map-section .location-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: white;
}
.map-section h5 {
    font-weight: 700;
    text-transform: uppercase;
}
.map-section p {
    line-height: 2rem;
}
@media only screen and (min-width: 1200px) {
    .map-section .container {
        margin-right: 5rem;
    }
}
@media only screen and (max-width: 767.98px) {
    .map-section .location-wrapper {
        justify-content: center;
        color: white;
    }
    .map-btn-wrapper .btn {
        margin-bottom: 1rem;
    }
}

/*-- [5.12] Book Free Demo Section --*/
/*===================================*/
.book-demo-section .graphics-row {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    margin-left: 4rem;
    margin-right: 4rem;
    position: relative;   
}
.book-demo-section .office-img-md {
    max-width: 1100px;
    width: 100%;
    height: auto;
    flex-grow: 1;
    overflow: hidden;
}
.book-demo-section .stats-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.book-demo-section .stat-container {
    display: flex;
    text-align: center;
    width: 100%;
}
.book-demo-section .stat-icon-container {
    width: 80px;
    margin-right: 2rem;
}
.book-demo-section img.stat-icon {
    max-height: 60px;
}
.book-demo-section .stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 230px;
}
.book-demo-section p.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
}
.book-demo-section p:nth-child(2) {
    margin-bottom: 0px;
}
@media only screen and (min-width: 1400px) {
    .book-demo-section .container {
        max-width: 1350px;
    }
}
@media only screen and (min-width: 1500px) {
    .book-demo-section .container {
        max-width: 1450px;
    }
}
@media only screen and (max-width: 1199.98px) {
    .book-demo-section .img-arrow {
        display: none;
    }
    .book-demo-section .graphics-row {
        flex-direction: column-reverse;
        margin-top: 3rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .book-demo-section .stats-column {
        flex-direction: row;
        padding: 0;
    }
    .book-demo-section .stat-container {
        margin-right: 1rem;
        margin-bottom: 2rem;
    }
    .book-demo-section .stat-icon-container {
        display: none;
    }
    .book-demo-section p.stat-num {
        font-size: 2.5rem;
        font-weight: 700;
    }
}
@media only screen and (max-width: 767.98px) {
    .book-demo-section .stats-column {
        flex-direction: column;
    }
    .book-demo-section .stat-icon-container {
        display: block;
        margin: 0 1rem;
    }
    .book-demo-section .stat-info {
        margin-bottom: 1rem;
    }
}

/*-- [5.13] 202506 new SD website design --*/
/*======================================*/

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: auto;
    height: 100%;
    border-radius: 1.2rem;
}

.text-overlay {
    position: absolute;
    top: 90%; /* vertical center */
    left: 50%; /* horizontal center */
    transform: translate(-50%, -50%);
    color: black;
    font-size: 17px;
    font-weight: bold;
}

.image-container-sd {
    position: relative;
    display: inline-block; /* or block if you want it full width */
}

.image-container-sd img {
    display: inline-block;
    width: 100%; /* adjust as needed */
    height: auto;
}

.top-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%; /* shrink container on small screens */
    text-align: center; /* optional: center content */
}

.top-center-about-compamy {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);    
    max-width: 90%; /* shrink container on small screens */
    text-align: center; /* optional: center content */
}

.outer {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center; /* vertical */
    height: 300px; /* just for demo */
    border: 1px solid black;
}

.inner {
    background: lightblue;
    padding: 20px;
}

/**********************************************************/
/*-- [6.0] Grocery Page --*/
/**********************************************************/

/*-- [6.1] Header Section --*/
/*==========================*/
#grocery-page-gradient-bg {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

.img-overlay-video {
    position: relative;
}
.img-overlay-video img {
    position: absolute;
    z-index: 10;
    bottom: 7px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 76%;
}
.img-overlay-video video {
    padding-top: 1rem;
    cursor: default;
}

#grocery-page-gradient-bg .video-rounded {
    border-radius: 0.5rem; /* Bootstrap rounded-3 default (about 8px) */
    transition: border-radius 0.3s ease;
}

#grocery-page-gradient-bg .video-rounded:hover {
    border-radius: 1.5rem; /* larger rounding on hover */
}

/*-- [6.2] Brand Carousel Section --*/
/*==================================*/
/*         Refer to component.css   */
/*==================================*/

#pos-built-section {
    padding: 100px 0 100px 0;
    background-color: #dee3eb;
}

#pos-built-section .card:hover {
    transform: scale(1.05); /* zoom in 10% */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* subtle shadow */
}

/*-- [6.3] Grocery Quote Section --*/
/*=================================*/
/*         Refer to component.css  */
/*         for base styles         */
/*=================================*/
.grocery-quote.quote-card-section {
    background: linear-gradient(0deg, var(--bg-gray) 50%, var(--sd-blue) 50%);
}

/*-- [6.4] Grocery Fluid Cards Section --*/
/*=======================================*/

.grocery-page.fluid-cards-section .card.col-1-card-1 {
    background-color: #BBC6E3;
    flex-grow: 3;
}
.grocery-page.fluid-cards-section .card.col-1-card-2 {
    background-color: #F1F1F1;
    flex-grow: 3;
}
.grocery-page.fluid-cards-section .card.col-1-card-3 {
    background-color: #99CAFF;
    flex-grow: 0;
}
.grocery-page.fluid-cards-section .card.col-2-card-1 {
    background-color: #ACEDBC;
    flex-grow: 1;
}
.grocery-page.fluid-cards-section .card.col-2-card-1 img {
    width: 75px;
}
.grocery-page.fluid-cards-section .card.col-2-card-2 {
    background-color: #DFBAF2;
    flex-grow: 1;
}
.grocery-page.fluid-cards-section .card.col-3-card-1 {
    background-color: #D9EDF7;
    flex-grow: 2;
}
.grocery-page.fluid-cards-section .card.col-3-card-2 {
    background-color: #A0AED6;
    flex-grow: 2;
}
.grocery-page.fluid-cards-section .card.col-3-card-3 {
    background-color: #F3F5F9;
    flex-grow: 1;
}
.grocery-page.fluid-cards-section .card.col-4-card-1 {
    background-color: #CECEF7;
    flex-grow: 0.5;
}
.grocery-page.fluid-cards-section .card.col-4-card-1 img {
    width: 70px;
}
.grocery-page.fluid-cards-section .card.col-4-card-2 {
    background-color: #C0F1CC;
    flex-grow: 3;
}

/*-- [6.5] Feature Points Section --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*      .feature-point              */
/*==================================*/

/*-- [6.6] SD Large Footer Banner --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*      .sd-footer-banner           */
/*==================================*/


/**********************************************************/
/*-- [7.0] Retail Page --*/
/**********************************************************/

/*-- [7.1] Header Section --*/
/*===============================*/
@media only screen and (min-width: 992px) {
    .retail-header .button-group {
        margin-bottom: 0;
    }
}

/*-- [7.2] Product Slider Section --*/
/*==================================*/
.product-slider-section {
    background: linear-gradient(0deg, var(--sd-blue) 45%, #F3F5F9 45%);
    padding-top: 100px;
    padding-bottom: 225px;
}
.product-slider-section .title{
    margin-bottom: 5rem;
}

/*-- [7.3] Retail Quote Section --*/
/*================================*/
.retail-quote.quote-card-section {
    background: linear-gradient(0deg, var(--bg-gray) 50%, #DFE4F2 50%);
}

/*-- [7.3] Retail Every Retailer Section --*/
/*================================*/



/*-- [7.4] Retail Fluid Cards Section --*/
/*======================================*/
.retail-page.fluid-cards-section .card.col-1-card-1 {
    background-color: #BBC6E3;
    flex-grow: 1;
}
.retail-page.fluid-cards-section .card.col-1-card-2 {
    background-color: #99CAFF;
    flex-grow: 3;
}
.retail-page.fluid-cards-section .card.col-2-card-1 {
    background-color: #ACEDBC;
    flex-grow: 1;
}
.retail-page.fluid-cards-section .card.col-2-card-1 img {
    width: 75px;
}
.retail-page.fluid-cards-section .card.col-2-card-2 {
    background-color: #DFBAF2;
    flex-grow: 1;
}
.retail-page.fluid-cards-section .card.col-3-card-1 {
    background-color: #D9EDF7;
    flex-grow: 2;
}
.retail-page.fluid-cards-section .card.col-3-card-2 {
    background-color: #A0AED6;
    flex-grow: 2;
}
.retail-page.fluid-cards-section .card.col-3-card-3 {
    background-color: #F3F5F9;
    flex-grow: 1;
}
.retail-page.fluid-cards-section .card.col-4-card-1 {
    background-color: #CECEF7;
    flex-grow: 0.5;
}
.retail-page.fluid-cards-section .card.col-4-card-2 {
    background-color: #C0F1CC;
    flex-grow: 3;
}

/*-- [7.5] Feature Points Section --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*      .feature-point              */
/*==================================*/

/*-- [7.6] Solution Tabs Section --*/
/*=================================*/
/*      Refer to component.css     */
/*=================================*/

/*-- [7.7] SD Large Footer Banner --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*      .sd-footer-banner           */
/*==================================*/


/**********************************************************/
/*-- [8.0] Restaurant Page --*/
/**********************************************************/

/*-- [8.1] Header Section --*/
/*==========================*/
.restaurant-header {
    display: flex;
    width: 100vw;
    justify-content: end;
}
.restaurant-header .header-text {
    display: flex;
    align-items: center;
    width: 615px;
}
.restaurant-header .bg-image {
    display: flex;
    align-items: center;
    background: url(../img/restaurant/complete-bg.png) no-repeat bottom center;
    background-size: cover;
    background-position: bottom left;
    width: 55%;
    height: 1000px;
}
.restaurant-header .pos-img {
    display: none;
}
@media only screen and (min-width: 992px) {
    .restaurant-header.page-header {
        padding: 200px 0;
    }
}
@media only screen and (min-width: 1200px) {
    .restaurant-header .header-text {
        width: 475px;
    }
}
@media only screen and (min-width: 1400px) {
    .restaurant-header .header-text {
        width: 525px;
    }
}
@media only screen and (min-width: 1700px) {
    .restaurant-header .header-text {
        width: 615px;
    }
}
@media only screen and (max-width: 1199.98px) {
    .restaurant-header .header-text {
        padding-left: 100px;
        padding-right: 50px;
    }
    .restaurant-header .title {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 991.98px) {
    .restaurant-header .header-text {
        padding: 100px 10vw;
        width: 100%;
    }
    .restaurant-header .bg-image {
        display: none;
    }
    .restaurant-header .pos-img {
        display: block;
    }
}

/*-- [8.2] Product Slider Section --*/
/*====================================*/
/*         Refer to component.css     */
/*         for base styles            */
/*====================================*/
.restaurant-page.product-slider-section {
    background: linear-gradient(0deg, var(--sd-blue) 38%, #F3F5F9 38%);
    padding-bottom: 150px;
}

/*-- [8.3] Restaurant Quote Section --*/
/*====================================*/
/*         Refer to component.css     */
/*         for base styles            */
/*====================================*/
.restaurant-quote.quote-card-section {
    background: linear-gradient(0deg, var(--bg-gray) 50%, var(--sd-blue) 50%);
}
.restaurant-quote .card {
    padding: 7rem 10rem 8rem;
}
@media only screen and (max-width: 991.98px) {
    .restaurant-quote .card {
        padding: 4rem 5rem 5rem;
    }
}
@media screen and (max-width: 767.98px) {
    .restaurant-quote .card {
        padding: 2.5rem 2.5rem 3rem;
    }
}

/*-- [8.4] Restaurant Fluid Cards Section --*/
/*==========================================*/
/*         Refer to component.css           */
/*         for base styles                  */
/*==========================================*/
.restaurant-page.fluid-cards-section img {
    width: 65px;
}

.restaurant-page.fluid-cards-section .card.col-1-card-1 {
    background-color: #BBC6E3;
    background-color: #D9EDF7;
    flex-grow: 6;
}

.restaurant-page.fluid-cards-section .card.col-1-card-2 {
    background-color: #99CAFF;
    background-color: #BBC6E3;
    flex-grow: 1;
}

.restaurant-page.fluid-cards-section .card.col-2-card-1 {
    background-color: #ACEDBC;
    flex-grow: 1;
}

.restaurant-page.fluid-cards-section .card.col-2-card-1 img {
    width: 75px;
}

.restaurant-page.fluid-cards-section .card.col-2-card-2 {
    background-color: #DFBAF2;
    flex-grow: 1;
}

.restaurant-page.fluid-cards-section .card.col-3-card-1 {
    background-color: #D9EDF7;
    background-color: #99CAFF;
    flex-grow: 3;
}

.restaurant-page.fluid-cards-section .card.col-3-card-2 {
    background-color: #F3F5F9;
    flex-grow: 1;
}

.restaurant-page.fluid-cards-section .card.col-4-card-1 {
    background-color: #CECEF7;
    flex-grow: 1;
}

.restaurant-page.fluid-cards-section .card.col-4-card-2 {
    background-color: #C0F1CC;
    flex-grow: 5;
}

/*-- [8.5] Restaurant Feature Points Section --*/
/*=============================================*/
/*         Refer to component.css              */
/*         for base styles                     */
/*=============================================*/
.feature-point.tableside .android-logo {
    max-width: 200px;
    margin: 15px 0;
}

/*-- [8.6] Solution Tabs Section --*/
/*=================================*/
/*      Refer to component.css     */
/*=================================*/

/*-- [8.7] Get Started Banner --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*==================================*/

/*-- [8.8] Restaurant Pricing Cards Section --*/
/*============================================*/
/*         Refer to Pricing Page section      */
/*         for base styles                    */
/*============================================*/
.restaurant-page.pricing-section .card-row {
    margin-bottom: 5rem;
}
.restaurant-page.pricing-section .card-col {
    display: flex;
    flex-direction: column;
    width: 28%;
    min-width: 390px;
}
.restaurant-page.pricing-section .card {
    flex-grow: 1;
}
.restaurant-page.pricing-section .card-text {
    margin-bottom: 2rem;
}
.restaurant-page.pricing-section .learn-more-btn {
    display: flex;
    align-items: end;
    height: 100%;
}
.restaurant-page.pricing-section .green-card .card-title, .restaurant-page.pricing-section .green-card .monthly-price {
    color: #61c2a2;
}
.restaurant-page.pricing-section .green-card hr {
    border: 1px solid #61c2a2;
}
.restaurant-page.pricing-section .green-card .btn {
    background-color: #61c2a2;
    border-color: #61c2a2;
}
.restaurant-page.pricing-section .green-card .btn:hover {
    background-color: #4D9B81;
    border-color: #4D9B81;
}
.restaurant-page.pricing-section .orange-card .best-value-box {
    background-color: #ffbc8e;
}
.restaurant-page.pricing-section .orange-card .card-title, .restaurant-page.pricing-section .orange-card .monthly-price {
    color: #ffbc8e;
}
.restaurant-page.pricing-section .orange-card hr {
    border: 1px solid #ffbc8e;
}
.restaurant-page.pricing-section .orange-card .btn {
    background-color: #ffbc8e;
    border-color: #ffbc8e;
}
.restaurant-page.pricing-section .orange-card .btn:hover {
    background-color: #CC9671;
    border-color: #CC9671;
}

/*-- [8.9] SD Large Footer Banner --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*      .sd-footer-banner           */
/*==================================*/


/**********************************************************/
/*-- [9.0] Pricing Page --*/
/**********************************************************/

/*-- [9.1] Pricing Page Header --*/
/*===============================*/
.pricing-header {
    margin-bottom: 75px;
}
.pricing-header .subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}
.pricing-header .header-list {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}
.pricing-header .header-list li {
    display: flex;
}
.pricing-header .bullet-check {
    background: url(../img/Icons/checkmark-high-res.png) no-repeat;
    display: block;
    width: 25px;
    height: 25px;
    background-size: contain;
    margin: 0 10px;
}
@media only screen and (max-width: 991.98px) {
    .pricing-header .header-list {
        flex-direction: column;
        margin: 0 auto;
        width: 300px;
    }
    .pricing-header .header-list li {
        margin-bottom: 30px;
    }
}

/*-- [9.2] Pricing Cards Section --*/
/*=================================*/
.pricing-section {
    background-image: url(../img/home/pricing-section-bg.png);
    background-size: 2000px;
    background-position: 0% -40%;
    background-repeat: no-repeat;
}
.pricing-section .card-row {
    display: flex;
    justify-content: center;
}
.pricing-section .card-col {
    display: flex;
    flex-direction: column;
    width: 33%;
}
.pricing-section.pricing-hospitality .card-col {
    margin: 0 25px;
}
.pricing-section .zero-box {
    z-index: 3;
    width: 50%;
    margin: 0 25%;
    height: 3rem;
    text-align: center;
}
.pricing-section .best-value-box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: var(--sd-blue);
    width: 50%;
    height: 3rem;
    margin: 0 25%;
    border-radius: 1rem 1rem 0 0;
    z-index: 3;
    padding-top: 0.1rem;
}
.pricing-section .best-value-box > span {
    text-transform: uppercase;
}
.pricing-section .card {
    background-color: var(--bg-gray);
    border: none;
    border-radius: 1rem;
    width: 100%;
}
.pricing-section .card-body {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.pricing-section .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
}
hr.card-divider {
    border-top: 1px solid blue;
}
.pricing-section .monthly-price {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1.8rem;
}
.pricing-section .dollar-amount {
    font-size: 5rem;
    height: 5.5rem;
    text-align: right;
    line-height: normal;
    white-space: nowrap;
}
.pricing-section .price-per-text {
    position: relative;
    top: 40%;
    left: 10%;
}
.pricing-section .grid__list li {
    padding-bottom: 1rem;
}
.pricing-section a.collapse-list-link {
    color: var(--sd-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1399.98px) and (min-width: 1200px) {
    .pricing-section.pricing-hospitality .card-col {
        width: 40%;
    }
}
@media only screen and (max-width: 1199.98px) {
    .pricing-header .grid__list {
        flex-direction: column;
        align-items: center;
    }
    .pricing-header .grid__list li {
        width: 200px;
        margin-bottom: 10px;
    }
    .pricing-section .card-row {
        flex-direction: column;
        align-items: center;
    }
    .pricing-section .card-col {
        width: 50%;
    }
    .pricing-section .card {
        margin: 1rem auto;
    }
    .pricing-section .zero-box {
        display: none;
    }
    .pricing-section .best-value-box {
        display: none;
    }
}
@media only screen and (max-width: 991.98px) {
    .pricing-section .card-col {
        width: 70%;
    }
    .pricing-section .dollar-amount {
        font-size: 3.5rem;
        height: auto;
    }
    .pricing-section .price-per-text {
        top: 20%;
    }
}
@media only screen and (max-width: 767.98px) {
    .pricing-section .card-col {
        width: 100%;
    }
}

/*-- [9.3] Tableside Ordering Add-On Section --*/
/*=============================================*/
.tableside-ordering-section .card {
    background-color: var(--bg-gray);
    padding: 3.5rem 3rem 3.5rem;
}
.tableside-ordering-section h1 {
    margin-bottom: 1rem;
}
.tableside-ordering-section p {
    max-width: 800px;
    margin: 1.5rem auto;
}

/*-- [9.4] Contact Sales Expert Div --*/
/*====================================*/
.contact-sales-div {
    margin-top: 5rem;
}
.contact-sales-div.pricing-hospitality {
    margin-top: 3rem;
}
.compare-text {
    text-align: center;
    margin-bottom: 2rem;
}
.contact-sales-div .btn-outline-primary:not(:hover) {
    background-color: white;
}

/*-- [9.5] Complete Care Package Partial --*/
/*=========================================*/
.care-package-section .card {
    background-color: var(--bg-gray);
}
.care-package-section .icon {
    width: 150px;
}
.care-package-section .feature-text {
    font-weight: 400;
}

/*-- [9.6] Book Demo General and Partial --*/
/*=========================================*/
.book-demo .card {
    padding: 3rem;
    border: none;
    border-radius: 12px;
}
.book-demo .form-col {
    margin-bottom: 30px;
}
.book-demo .form-col h1 {
    margin-bottom: 1rem;
}
.book-demo .book-demo-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    margin: 10px 0;
}
.book-demo-partial .card {
    padding: 3rem 3rem 0rem;
    background-image: url(../img/pricing/lets-get-in-touch.png);
    background-size: 700px;
    background-repeat: no-repeat;
    background-position: bottom left;
    max-width: unset;
}
.book-demo-partial .form-style {
    width: 80% !important;
    margin: 13px 0;
}
@media only screen and (max-width: 1399.98px) {
    .book-demo-partial .card {
        background-size: 650px;
        background-position: bottom 0% left -20%;
    }
}
@media only screen and (max-width: 991.98px) {
    .book-demo-partial .card {
        background-image: none;
    }
}


/**********************************************************/
/*-- [10.0] Book Demo Page --*/
/**********************************************************/
.book-demo-page {    
    margin-top: 50px;
}
.book-demo-page .demo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.book-demo-page .demo-info > .title {
    margin: 3rem 0 2rem;
}
.book-demo-page .demo-info > .description {
    font-size: 1.2rem;
    line-height: 2rem;
}
.book-demo-page .form-col {
    display: flex;
    justify-content: end;
}
.book-demo-page .card {
    margin-left: 5vw;
    max-width: 550px;
}
.book-demo-page .form-style {
    width: 100% !important;
    margin-top: 25px;
    margin-bottom: 5px;
    border: 1px solid black;
}
.book-demo-page .g-recaptcha {
    margin-top: 25px;
}
@media only screen and (max-width: 991.98px) {
    .book-demo-page {
        margin-top: 0px;
    }
    .book-demo-page .demo-info {
        margin-bottom: 3rem;
    }
    .book-demo-page .form-col {
        justify-content: center;
    }
}


/**********************************************************/
/*-- [11.0] About Page --*/
/**********************************************************/

/*-- [11.1] Header Section --*/
/*===========================*/

/*-- [11.2] 50/50 Image and Paragraph --*/
/*======================================*/

.about-page.feature-point .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-page.feature-point .title {
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
.about-page.feature-point .text-content {
    font-size: 1.1rem;
}

/*-- [11.3] Stats Counter Section --*/
/*==================================*/
.about-page.stats-counter-section {
    display: flex;
    justify-content: space-between;
    background-color: #f1f1f1;
}
.about-page.stats-counter-section .stat-icon-container {
    display: flex;
    justify-content: center;
    height: 60%;
}
.about-page.stats-counter-section img.stat-icon {
    max-width: 100px;
    max-height: 100px;
    margin: 0;
    height: auto;
}
.about-page.stats-counter-section .stat-info {
    color: var(--sd-blue);
    text-align: center;
}
.about-page.stats-counter-section .stat-info-num {
    font-size: 5rem;
    font-weight: 700;
    margin: 20px 0 30px 0;
    min-width: 190px;
    color: #5994e1;
}
.about-page.stats-counter-section .stat-info-desc {
    font-size: 1.5rem;
    color: black;
}
@media only screen and (max-width: 767.98px) {
    .about-page.stats-counter-section .col-md-4 {
        margin-bottom: 75px;
    }
}

/*-- [11.4] Map Section       --*/
/*==============================*/
/*  Refer to [5.11] Map Section */
/*==============================*/

/*-- [11.5] Get Started Banner    --*/
/*==================================*/
/*--    Refer to component.css    --*/
/*==================================*/


/***************************************************************/
/*-- [12.0] Privacy Page. Disclaimer Page, Terms Of Use Page --*/
/***************************************************************/
@media only screen and (max-width: 991.98px) {
    header.page-header {
        margin-top: 100px;
    }
}
.privacy-page.container, .disclaimer-page.container, .termsofuse-page.container {
    margin-bottom: 150px;
}
.legal-content {
    margin-bottom: 3rem;
}
.legal-content p {
    margin-bottom: 1.5rem;
}


/**********************************************************/
/*-- [13.0] Footer Section --*/
/**********************************************************/
.footer-area {
    background-color: var(--bg-gray);
    padding-top: 5rem;
}

.footer-area > .container {
    margin-bottom: 2rem;
}

.footer-section.contact-section {
    padding-left: 2rem;
}

.footer-section .footer-headings {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section > ul > li > a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.footer-bottom-container .container {
    border-top: 2px solid black;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-bottom-container .logo-container > img {
    width: 15rem;
}

.footer-bottom-container .list-inline {
    display: flex;
    justify-content: end;
    align-items: end;
}

.footer-bottom-container .list-inline ul {
    padding-left: 0;
}

.footer-bottom-container .list-inline ul li {
    display: inline-block;
    font-size: 1rem;
}

.footer-bottom-container .list-inline ul li a {
    font-size: 12px;
}

.footer-bottom-container .logo-container div {
    font-size: 12px;
}

@media screen and (max-width: 767.98px) {
    .footer-area {
        padding-top: 2rem;
    }

    .footer-section {
        margin-top: 2rem;
    }

    .footer-section.contact-section {
        padding-left: 0rem;
    }
}

/**********************************************************/
/*-- [14.0] Products Page --*/
/**********************************************************/

/*-- [14.1] Hardware Catagory Section --*/
/*===========================+++++++====*/
.hardware-catagory-section {
    margin-top: 160px;
    font-size: 1.2rem;
    cursor: pointer;
}   

.hardware-catagory-section .col-4:hover {
    transform: scale(1.05); /* zoom in 10% */            
}

.hardware-catagory-section div { 
    font-size: clamp(4px, 1.8vw, 20px); 
}

.banner-section {
    background-color: #446AB3;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-section img {
    display: block;
    width: 100%; /* responsive */
    height: auto;
}

.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: black;
    width: 90%;
}

.banner-text-overlay h1 {
    font-size: clamp(6px, 3.4vw, 48px);
    line-height: 1.1;
}

.banner-text-overlay p {
    font-size: clamp(2px, 1.8vw, 22px);
    line-height: 1.4;
}

#product-patner-logo {
    background: #446AB3;
    margin-top: 0;
    padding-top: 0;
}

#why-ampm-section {
    background-color: black;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

#product-patner-logo img {
    max-width: 100%;
}

#home-brand-logo2 img {
    max-width: 100%;
}

.flexrow {
    display: flex;
    flex-flow: row wrap;
    align-items: center !important;
    margin: auto;
}

#versatile-hardware-section {
    margin-top: 0;
    margin-bottom: 80px;
    padding-top: 80px;    
}

#versatile-hardware-section .nav-tabs .nav-link {
    padding: 0rem;
    margin: 0.5px;
    border: none;
}

/* Owl wrappers background: transparent */
#imageTabs .owl-item {
    background: transparent !important;
    box-shadow: none !important;
}

#imageTabs .nav-tabs .nav-link img.tab-img {
    display: block;
    max-height: 300px; /* adjust as needed */
    margin: 0rem;
    padding: 0rem;
}

/* nav buttons */
#imageTabs .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* vertically center */
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 5rem;
    width: 40px; /* optional */
    height: 40px; /* optional */
    line-height: 40px; /* center the text */
    text-align: center;
    color: green;
    pointer-events: all; /* re-enable clicks */
    cursor: pointer;
}

/* Left button */
#imageTabs .owl-nav .owl-prev {
    left: -50px; /* adjust as needed */
}

/* Right button */
#imageTabs .owl-nav .owl-next {
    right: -50px; /* adjust as needed */
}

.tab-content .tab-pane {
    background: transparent;
}

/* hardware catagory text over image */
.hardware-catagory-img-container {
    position: relative; /* needed for absolute positioning of text */
    display: inline-block; /* shrink-wrap to image size */
}

.hardware-catagory-overlay-text {
    position: absolute;
    top: 85%; /* vertical center */
    left: 50%; /* horizontal center */
    transform: translate(-50%, -50%); /* center exactly */    
    font-size: 1.1rem; /* adjust */    
    text-align: center;    
}

/* Each tab has its own active image */
#tab1-tab.active img.tab1-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - All-In-One - Selected.png');
}

#tab2-tab.active img.tab2-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Customer Facing Display - Selected.png');
}

#tab3-tab.active img.tab3-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Printers - Selected.png');
}

#tab4-tab.active img.tab4-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - ESLs - Selected.png');
}

#tab5-tab.active img.tab5-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Scanners - Selected.png');
}

#tab6-tab.active img.tab6-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Mobile Inventory Computer - Selected.png');
}

#tab7-tab.active img.tab7-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Scanner Scales - Selected.png');
}

#tab8-tab.active img.tab8-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Deli Scales - Selected.png');
}

#tab9-tab.active img.tab9-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Cash Drawers - Selected.png');
}

#tab10-tab.active img.tab10-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - SCO - Selected.png');
}

#tab11-tab.active img.tab11-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Kiosks - Selected.png');
}

#tab12-tab.active img.tab12-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - Ai Surveillance - Selected.png');
}

#tab13-tab.active img.tab13-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - KDS - Selected.png');
}

#tab14-tab.active img.tab14-img {
    content: url('/img/Products/versatile-hardware/tab-images/Hardware Categories Slider - POS Accessories - Selected.png');
}

#hardware-support-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: lightgrey;
}

#cta-section {
    padding-top: 80px;    
    background-color: black;
    color: white;
    text-align: center;
}

/**********************************************************/
/*-- [15.0] Pricing Page --*/
/**********************************************************/
#pricing-section {
    position: relative;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 50px;
    /* Layered background: top black rectangle + bottom image */
    background-image: linear-gradient(#000 860px, transparent 0), /* black top rectangle */
    linear-gradient(#fff 860px, transparent 0); /* bottom image */

    background-size: auto, auto; /* first layer auto, second auto */
    background-repeat: no-repeat, repeat-y; /* gradient no-repeat, image repeat */
    background-position: top, top; /* first layer top, second layer center */
}

#pricing-section h1 {
    font-size: clamp(6px, 3.4vw, 56px);
}

#pricing-section p span {
    font-size: clamp(2px, 1.8vw, 26px);
    line-height: 1.5;
}

.switch-pill {
    display: flex;
    width: 260px;
    height: 50px;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 auto;
    background: transparent;
    position: relative;
    font-weight: bold;
}

.switch-option {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #00c853;
    color: #00c853;
    background-color: transparent;
    z-index: 1;
}

/* Make buttons overlap */
.switch-option.left {
    margin-right: -20px; /* overlap 10px to the right */
}

.switch-option.right {
    margin-left: -20px; /* overlap 10px to the left */
}

/* Active button styling */
.switch-pill.active-left .left,
.switch-pill.active-right .right {
    background-color: #00c853;
    color: #fff;
    border-color: #00c853;
    z-index: 2; /* active button on top */
}

#sd-plan-section {
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: #f1f1f1;
}

.sd-plan-div {
    width: auto;
    border-radius: 25px;
    padding: 25px;    
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.sd-plan-div:hover {
    transform: scale(1.05); /* zoom in 10% */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* subtle shadow */
}

.sd-plan-div p {
    font-size: 1.3rem;
}

/*-- [16.0] Preloader and ScrollToTop (Previous Website Styles) --*/
/*================================================================*/
/*-- 20. Preloader-Style --*/
.preloader {
background-color: #ffffff;
bottom: 0;
height: 100%;
position: fixed;
top: 0;
width: 100%;
z-index: 99999999;
}

.preloader span {
    /*background: #6858db;
/* For browsers that do not support gradients */
        /*background: -webkit-linear-gradient(left, #6858db, #9f96e9);*/
        /* For Safari 5.1 to 6.0 */
        /* For Opera 11.1 to 12.0 */
        /* For Firefox 3.6 to 15 */
        /*background: -webkit-gradient(linear, left top, right top, from(#6858db), to(#9f96e9));
background: -o-linear-gradient(left, #6858db, #9f96e9);
background: linear-gradient(to right, #6858db, #9f96e9);*/
        /*border-radius: 100%;*/
        bottom: 0;
        height: 180px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        width: 180px;
        /*-webkit-animation: mymove 1.5s infinite linear;
animation: mymove 1.5s infinite linear;*/
    }

@-webkit-keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
    }

    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }
}

@keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
    }

    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }
}

.preloader span i {
    bottom: -7px;
    color: #ffffff;
    font-size: 28px;
    height: 32px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px;
}

/*-- 21. ScrollToTop --*/

#scrollUp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    background-color: #2e3192;
    color: #ffffff;
    border-radius: 3px;
    line-height: 50px;
}