@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #212529;
    --nav-hover-color: #0092d8;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: white;
    max-width: 1900px;
    margin: 0 auto;
    box-sizing: border-box;;
}


/* header */
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);

    transition: all 0.5s;
    z-index: 997;

}

.header .header-container {
    background: var(--surface-color);
    max-width: 1900px;
    padding: 10px 100px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    max-width: 1900px;

}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);


}

.header .logo {
    line-height: 1;
    padding-left: 5px;
    margin: -15px;
}

.header .logo img {
    max-height: 70px;
    margin-right: 8px;
}

.header .logotwo {
    line-height: 1;
    padding-left: 5px;
    margin: -15px;
    padding-top: 10px;
}

.header .logotwo img {
    max-height: 120px;
    margin-right: 8px;
}

.navmenu a {
    text-decoration: none;
    background-color: #fff;

}

.btn-getstarted {
    background-color: var(--accent-color);
    color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    margin: 20px;


}

.btn-getstarted:hover {
    background-color: black;
    color: #fff;
}

.navmenu .dropdown ul {
    background-color: white;
    padding: 0;
    margin: 0;
    list-style: none;
}


.navmenu .dropdown ul li a {
    color: black;
    /* Set text color */
    padding: 10px 15px;
    /* Add padding for items */
    text-decoration: none;
    /* Remove underline */
    display: block;
    /* Make items block-level for better click area */
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
    background-color: var(--accent-color);
    /* Change background color on hover */
}


@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: 100%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        right: 100%;
        visibility: visible;
        width: 115%;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}




/* Hero section */
.hero {
    background-color: #effdff;
    padding: 100px 0;
    text-align: center;
    max-width: 1900px;
    margin: 0 auto;
}

.btn-custom {
    margin-top: 20px;
    background-color: #000000;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: scale(1.05);
}

.hero-heading {
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-box {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}


.hero-boxes .hero-box {
    flex: 1;
    max-width: 160px;
    height: 130px;
}


.hero-box i {
    font-size: 40px;

    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-box-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
    padding: 10px;
}

.hero-box-content p {
    font-size: 12px;
    margin-bottom: 5px;
}

.hero-box-content .btn-secondary {
    background-color: white;
    color: #000000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-box-content .btn-secondary:hover {
    background-color: #f8f9fa;

    color: #000000;
    transform: scale(1.05);
}


.hero-box:hover .hero-box-content {
    opacity: 1;
}

.hero img {
    margin-top: 90px;
    width: 100%;
    max-width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* Contribution Brand  loop */
.bran-carousel-item img {
    width: 100%;
    height: auto;

    object-fit: contain;
    margin: 0;
    max-width: 100px;
}


.bran-carousel-item .col {
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo-column {
    display: flex;
    flex-direction: column;

    gap: 100px;

}

.con-logo {
    border: 1px solid #e0e0e0;
    padding: 8px;
    border-radius: 8px;
    background-color: #f9f9f9;

}


.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}







/* Next-gen POS Sections - */
.next-gen-section {
    display: flex;
    align-items: center;
    max-width: 1900px;
    justify-content: center;

    padding: 40px;

    gap: 40px;

    background-color: #ffffff;

    margin: 0 auto;



}


.next-gen-section.reverse {
    flex-direction: row-reverse;
}


.custom-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center the image horizontally */
}

.custom-image img {
    max-width: 100%;
    /* Ensure responsiveness */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    /* Optional: Add rounded corners */
}


.custom-text {
    flex: 1;
    text-align: left;

    padding: 20px;

}

.custom-heading {
    font-size: 2rem;
    /* Larger heading */
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

.custom-text p {
    font-size: 1rem;
    /* Standard font size */
    line-height: 1.6;
    /* Improved readability */
    color: #000000;
    max-width: 500px;
    margin-bottom: 15px;
}

.explore-link {
    color: #007bff;
    /* Blue link color */
    text-decoration: none;
    /* Remove underline */
    font-weight: bold;
}

@media (max-width: 768px) {
    .next-gen-section {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center-align text */
        gap: 20px;
        /* Adjust gap for smaller screens */
    }

    .next-gen-section.reverse {
        flex-direction: column;
        /* Reverse stacked order */
    }

    .custom-image img {
        max-width: 80%;
        /* Smaller image width on mobile */
    }
}


/* Main Order Section */
.order-cont {
    max-width: 1900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 40px;
    /* background-image: url('pics/posbackk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  */
    background-color: #effdff;
    margin: 0 auto;

}


.order-cont.reverse {
    flex-direction: row-reverse;
}


.order-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center the image horizontally */
}

.order-image img {
    max-width: 100%;
    /* Ensure responsiveness */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    /* Optional: Add rounded corners */
}


.order-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.order-heading {
    font-size: 2rem;
    /* Larger heading */
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;



}

.order-text p {
    font-size: 1rem;
    /* Standard font size */
    line-height: 1.6;
    /* Improved readability */
    color: #6c757d;
    /* Gray color for text */
    margin-bottom: 15px;
}


.explore-link {
    color: #007bff;
    /* Blue link color */
    text-decoration: none;
    /* Remove underline */
    font-weight: bold;
}


@media (max-width: 768px) {
    .order-cont {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center-align text */
        gap: 20px;
        /* Adjust gap for smaller screens */
    }

    .order-cont.reverse {
        flex-direction: column;
        /* Reverse stacked order */
    }

    .order-image img {
        max-width: 80%;
        /* Smaller image width on mobile */
    }
}


/* Reward loyal customers */
.reward-loyal-customers {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff;
    margin: 0 auto;
    max-width: 1900px;
}

.content {
    flex: 1;
    max-width: 800px;
    /* Ensures content doesn't stretch too wide */
    text-align: center;
    /* Centers the text and content */
    padding-right: 20px;
}


.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;

    margin-bottom: 30px;
}


.icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.icon-item button {
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid #007bff;

    background-color: transparent;
    color: #007bff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.icon-item button:hover {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;

}

.icon-item i {
    font-size: 1.5rem;
}

.image-container {
    flex: 1;
    text-align: center;
    /* Centers the image */
    padding-left: 20px;
}

.image-container img {
 width: 700px;
 
    height: 700px;
    border-radius: 10px;

}


@media (max-width: 768px) {
    .reward-loyal-customers {
        flex-direction: column;
        /* Stack the content and image vertically on small screens */
        text-align: center;
        margin-left: 0;
        /* Remove left margin on mobile */
        margin-right: 0;
        /* Remove right margin on mobile */
    }

    .content {
        padding-right: 0;
        /* Remove right padding for mobile */
        margin-bottom: 30px;
    }

    .icons-container {
        justify-content: center;
        /* Center icons on mobile */
        gap: 15px;
    }

    .icon-item button {
        padding: 10px 18px;
    }
}


/* Quick Start Package */
.quickstart-container {
    background: #ffffff;
    color: #333;
    max-width: 1900px;
    margin: 0 auto;

}

.quickstart-header {
    font-size: 2.5rem;
    font-weight: bold;
}

.quickstart-subtext {
    font-size: 1.2rem;
    color: #000000;
    max-width: 700px;
    margin: auto;
    text-align: left;
}

.divider {
    width: 100px;
    height: 4px;
    background: #007bff;
    border-radius: 10px;
    margin-top: 10px;
}


.quickstart-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    height: 320px;
    width: 400px;
    margin-left: -0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.quickstart-item p {
    flex-grow: 1;
}


.quickstart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.quickstart-title a {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 25px;
    color: #222;
    text-align: left;
    text-decoration: none;
}

.quickstart-title a:hover {
    color: var(--accent-color);

}



.quickstart-icon-box img {
    width: 365px;
    height: 200px;
}


/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    margin: -50px;
    top: 55%;

    background: #dadada;
    color: rgb(1, 1, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-icon {
    font-size: 28px;
}

.carousel-control-icon {
    font-size: 28px;
}




/* General Container */
.get-started-container {
    /* background-image: url(pics/servces.png);
    background-repeat: no-repeat;
    background-size: cover;  */
    background-color: #effdff;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    max-width: 1900px;
}

.whole-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    justify-content: space-between;
    align-items: center;
}

.get-started-left {
    flex: 3;
    padding: 30px;

}

.get-started-left h1 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-started-left h4 {
    font-weight: bold;
}

.get-started-right {
    flex: 3;

}

.get-started-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;

}

.get-btn {
    padding: 7px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid #007bff;

    background-color: transparent;
    color: #007bff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.get-btn:hover {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;

}

/* FAQ Section Styling */
.faq-container {
    background-color: #f8f9fa;
    padding: 50px 0;
    border-radius: 12px;
}

/* FAQ Header */
.faq-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    /* Black text */
    margin-bottom: 20px;
}

/* Accordion Styling */
.accordion-button {
    background-color: #fff;
    color: #000 !important;
    /* Ensuring black text */
    font-weight: bold;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e3e3e3;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #fff;
    color: #000;
    /* Black text */
    font-size: 16px;
    line-height: 1.6;
}

/* Accordion Item */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

/* Opened Item Styling */
.accordion-collapse {
    border-top: 1px solid #ddd;
}



/* Footer */
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-image: url('pics/darkergreyfooter.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
}

.fot-btn {
    transition: background-color 0.3s ease;
    /* Smooth transition */
    background-color: var(--accent-color);
    color: #fdfdfd;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.fot-btn:hover {
    background-color: black !important;
    /* Change to black on hover */
    color: white;
    /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
    max-height: 160px;
    margin-right: 6px;
    width: 200px;

}

.footer-contact {
    margin-top: -40px;
}

.footer .footer-about p {
    font-size: 16px;
    padding-left: 10px;
    color: white;
}

.footer .social-links a {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-top: 60px;

}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footer .footer-links ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    color: white;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: rgb(255, 255, 255);
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

.footer-contact,
footer .footer-links ul li a:hover {
    color: var(--accent-color);
}

.contact-footer-links a {
    color: #ffffff;
    text-decoration: none;
}