* {
    margin: 0;
    padding: 0;
}

@media screen and (max-width:576px) {
    .section-6-card-title {
        font-size: 13px !important;
    }

    .section-6-card-text {
        font-size: 10px !important;
    }
}

@media screen and (max-width:1000px) {
    .section-1-row {
        background-color: var(--primary-bg);
        display: flex;
        align-items: center;
        padding: 40px !important;
    }

    .highlight-list {
        min-width: 100% !important;
    }

    .section-3 .row {
        margin-top: 40px;
    }

    .section-5 {
        padding: 20px !important;
    }

    .footer-wrap {
        flex-wrap: wrap;
        justify-content: space-between !important;
        gap: 20px !important;
    }
}

@media screen and (max-width:1350px) and (min-width:1000px) {
    .footer-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        /* Two equal columns */
        grid-template-columns: 50% 50%;
        /* Two 50% columns */
        grid-template-columns: 200px auto;
        gap: 16px;
    }
}

@media screen and (min-width:900px) {
    .section-6-card-img>img {
        min-height: 494px;

    }
}

@media screen and (max-width:1200px) {
    /* .footer-wrap {
        flex-wrap: wrap;
        justify-content: space-between !important;
        gap: 20px !important;
    } */

    .section-6-card-img {
        width: 40%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .section-6-card-img>img {
        width: 100%;
        min-height: 100%;

    }
}

@media screen and (min-width:1800px) {
    .section-6-header>h6 {
        white-space: nowrap !important;
    }
}

.bg {
    background-color: var(--background-color);
}

.header-wrap {
    max-width: 1450px;
    margin: auto;
}

.head-logo {
    max-width: 154px;
    height: 56px;
    object-fit: contain;
}

.header-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn:focus {
    box-shadow: none !important;
}

.head-content-desktop>ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.header-plan-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
}

.header-plan-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menuBar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #343a40;
    color: white;
    transform: translateX(250px);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}

#menuBar.show {
    transform: translateX(0);
}

#mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;

}

#mask.show {
    display: block;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
}

.section-1-row {
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    padding: 0 120px;
}

.row {
    margin: 0;
    padding: 0;
}

.footer {
    background-color: var(--background-color);
}

.btn-color {
    background-color: var(--button-color);
    color: white;

}

.btn-color:hover {
    background-color: var(--button-hover);
    color: white;
}

.footer-btn {
    padding: 2.5px 56px;
    border-radius: 70px;
}

.social-wrap {
    border: 1px solid var(--primary-text);
    padding: 8.75px 13.75px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 10px;

}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


.footer-wrap {
    display: flex;
    align-items: start;
    gap: 80px;
    justify-content: space-evenly;


}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.scroll-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.scroll-track img {
    height: 60px;
    margin: 0 40px;
    vertical-align: middle;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.highlight-list {
    max-width: 441px;
    /* overflow-y: scroll;
    direction: rtl; */
    height: 419px;
    padding-left: 20px;
}

/* .highlight-list>* {
    direction: ltr;
    padding-left: 30px;
} */

.section-5 {
    padding: 5rem 0;
    position: relative;
}

.section-5-header {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.section-5-card {
    background-color: #e6f0fa;
    border: none;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
    position: relative;
}

.section-5-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20%;
    height: 60%;
    width: 10px;
    background-color: var(--card-bg);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.section-5-card-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.section-5-card-icon i {
    font-size: 24px;
    color: #007bff;
}

.section-5-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.section-5-card-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #555;
}

.section-5-card-list li {
    margin-bottom: 0.5rem;
}

.section-5-card-list li::before {
    content: "• ";
    color: #007bff;
}

.section-6 {
    padding: 3rem 0;
}

.section-6-header>h6 {

    text-transform: uppercase;

}

.section-6-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.section-6-header-icon {
    font-size: 45px;
    color: #000000;
}

.section-6-header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-6-card {
    border: none;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    color: #333;
}

.section-6-card-retail {
    background-color: #ffe5cc;
}

.section-6-card-self-service {
    background-color: #fff7cc;
}

.section-6-card-extensible {
    background-color: #e6f0fa;
}

.section-6-card-healthcare {
    background-color: #e6fae6;
}

.section-6-card-row {
    display: flex;
    height: 100%;
    /* align-items: start; */
    gap: 20px;
}


.section-6-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-6-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-6-card-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.section-6-card-text strong {
    font-weight: 600;
    display: block;
    margin-top: 1rem;
}

.section-6-card-text ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.section-6-card-text ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {

    .section-6-card-img {
        width: 40%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .section-6-card-img>img {
        width: 100%;
        min-height: 100%;

    }
}

.video-wrapper {
    position: relative;

    margin: auto;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 32px;
    cursor: pointer;
}

.play-btn:focus {
    outline: none;
}

.links-footer {
    white-space: nowrap;
}

/* .kiosk-talk {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #0787F0, #f3f3f3);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    transition: all 2s ease-in-out;
}

.kiosk-talk:hover {
    background: linear-gradient(to right, #f3f3f3 , #056fc7);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
} */

.kiosk-talk {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #0787F0, #f3f3f3);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease-in-out;
    background-size: 200% auto;
    background-position: left center;
}
 
.kiosk-talk:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    color: #000;
}
 