.hero-section {
    background: #fff;
    color: #000;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    animation: fadeInUp 0.8s ease-in-out;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #333;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease-in-out;
}

.btn-hero {
    background-color: #fe5200;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #d94700;

    color: #fff;
    transform: translateY(-2px);
}

.hero-img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.4s ease;
    animation: fadeIn 1s ease-in-out;
}

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

/* Curved bottom wave svg */
.hero-section svg {
    display: block;
    z-index: -1;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .btn-hero {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Trusted Section */
.trusted-section {
    background: linear-gradient(90deg, #fff8f4, #fff0e8);
    position: relative;
    z-index: 1;
}

.trusted-text {
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
    animation: fadeIn 1s ease-in-out;
}

.highlight-number {
    color: #fe5200;
    font-weight: 800;
    font-size: 2rem;
}

.trusted-section svg {
    display: block;
    z-index: 0;
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-text {
        font-size: 1.25rem;
    }
    .highlight-number {
        font-size: 1.5rem;
    }
}

/* Client Logos Section */
.client-logos-section {
    background: #fff8f4;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fe5200;
}

.logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #fff4ef;
}

.client-logo {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-card:hover .client-logo {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile logo sizing */
@media (max-width: 576px) {
    .client-logo {
        max-height: 40px;
    }
}

/* Features Intro Section */
.features-intro-section {
    background: #fffaf6;
    padding-top: 4rem;
    padding-bottom: 4rem;
    transition: background-color 0.4s ease;
}

.features-small {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fe5200;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.features-big {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.features-medium {
    font-size: 1.25rem;
    color: #555;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    transition: all 0.3s ease;
}

/* Optional hover animation (for presentation) */
.features-intro-section:hover .features-big {
    color: #fe5200;
}

.features-intro-section:hover .features-small {
    color: #fd7e14;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-big {
        font-size: 2rem;
    }

    .features-medium {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-small {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-big {
        font-size: 1.7rem;
    }
}

/* POS INTRODUCTION */

.introduction-pos {
    background-color: #fffaf6;
    padding: 4rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px rgba(255, 111, 60, 0.1);
    font-family: "Poppins", sans-serif;
    max-width: 1140px;
    margin: 0 auto;
}

.cards-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-flow: row nowrap;
}

.pos-card {
    background-color: #fffaf6;
    border-radius: 1.2rem;
    box-shadow: 0 12px 30px rgba(247, 95, 0, 0.15);
    flex: 0 0 22%;
    flex-wrap: wrap;
    max-width: 22%;
    padding: 2rem 1.5rem 3rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.pos-card:hover {
    transform: translateY(-16px);
}

.pos-card-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.3rem;
    border-radius: 0.8rem;
}

.pos-card-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 0.7rem;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .cards-wrapper {
        flex-wrap: wrap;
        align-items: stretch;
    }
    .pos-card {
        flex: 1 1 45%;
        max-width: 45%;
        margin-bottom: 2rem;
        min-height: 420px;
    }
}
@media (max-width: 576px) {
    .cards-wrapper {
        flex-direction: column;
        gap: 1.8rem;
        align-items: stretch;
    }
    .pos-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 0; /* Let it auto on mobile if tight space */
    }
}

/*App section */
.app-marketplace-section {
    color: #fe5200; /* Brand orange */
    padding: 60px 20px;
    background-color: #fffbf7; /* Light pinkish background */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.btn-outline-brand {
    color: #fe5200;
    border-color: #fe5200;
    transition: 0.3s ease;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background-color: #fe5200;
    color: #fff;
    border-color: #fe5200;
}

.nav-link.active {
    background-color: #fe5200 !important;
    color: #fff !important;
    border-color: #fe5200 !important;
}

.nav-link.active h5,
.nav-link.active p {
    color: #fff !important;
}

.nav-link:hover {
    background-color: #fff0f5;
    color: #fe5200;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fe5200; /* Brand orange */
}

.section-header h6 {
    color: #fe5200; /* Brand orange */
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.section-header h2 {
    font-weight: bold;
    font-size: 28px;
}

.tab-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    position: relative;
}

.tab-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 200px;
}

.tab-title {
    cursor: pointer;
    padding: 10px 15px;
    border-left: 4px solid transparent;
    font-weight: 500;
    transition: 0.3s;
}
.tab-title:hover {
    background-color: #fff0f5;
}
.tab-title.active {
    color: #fe5200; /* Your brand orange */
}

.tab-menu .indicator {
    position: absolute;
    left: 0;
    width: 4px;
    height: 40px;
    color: #fe5200; /* Your brand orange */
    transition: top 0.3s ease;
    top: 0;
    border-radius: 2px;
}

.tab-content {
    flex: 1;
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
.tab-panel p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}
.tab-panel a {
    display: inline-block;
    margin-bottom: 20px;
    color: #e91e63;
    font-weight: 500;
    text-decoration: none;
}
.tab-panel img {
    max-width: 100%;
    border-radius: 8px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tab-wrapper {
        flex-direction: column;
    }
    .tab-menu {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }
    .tab-title {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    .tab-menu .indicator {
        height: 3px;
        width: 80px;
        top: auto;
        bottom: 0;
        transition: left 0.3s ease;
    }
}

/* INtergreation */
.integrations-section {
    background: #fffaf6;
    padding: 4rem 0;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px rgba(255, 111, 60, 0.1);
    transition: background-color 0.4s ease;
}

.integrations-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.integrations-title:hover {
    color: #ff6f3c;
}

.integrations-text {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    color: #444;
    line-height: 1.75;
    max-width: 90%;
    transition: color 0.3s ease;
    margin-bottom: 0.8rem;
}

.integrations-text:hover {
    color: #555;
}

.integrations-img {
    max-width: 100%;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.integrations-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

/* Responsive (add these if not already present) */
@media (max-width: 992px) {
    .integrations-title {
        font-size: 2rem;
    }
    .integrations-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .integrations-title {
        font-size: 1.7rem;
        text-align: center;
    }
    .integrations-text {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .btn-explore {
        display: block;
        width: fit-content;
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 480px) {
    .integrations-title {
        font-size: 1.5rem;
    }
    .integrations-text {
        font-size: 0.95rem;
    }
}

/* Outlet*/
.outlet-types-section {
    background-color: #fcfcfc; /* Dark charcoal background */
    padding: 4rem 1rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    text-align: center;
}

.outlet-types-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff8a00; /* Secondary orange-yellow */
    letter-spacing: 1.2px;
    margin-bottom: 0.6rem;
}

.outlet-types-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fe5200; /* Primary bright orange */
    line-height: 1.2;
}

.outlet-types-description {
    font-size: 1.1rem;
    color: #adb5bd; /* white-50 */
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Grid 5 columns */
.outlet-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: baseline;
    max-width: 1200px;
    margin: 0 auto;
}
.outlet-types-grid > .outlet-card:nth-child(n + 6) {
    transform: translateX(
        6.5rem
    ); /* adjust this value to control how far right */
}
/* Responsive */
@media (max-width: 1200px) {
    .outlet-types-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.8rem;
    }
}
@media (max-width: 992px) {
    .outlet-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .outlet-types-grid > .outlet-card:nth-child(n + 6) {
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .outlet-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}
@media (max-width: 480px) {
    .outlet-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Card styling */

.outlet-card {
    border-radius: 18px;
    padding: 1.5rem 1rem;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.outlet-card:hover {
    transform: translateY(-10px) scale(1.05);

    color: #161b1f; /* dark text for contrast */
}

.outlet-img {
    height: 200px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 2px rgba(254, 82, 0, 0.5)); /* subtle orange glow */
    transition: filter 0.3s ease;
}

.outlet-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7e7e7e; /* inherit text color from card */
    margin: 0;
    user-select: none;
    transition: color 0.35s ease;
}

/* Optional: text-primary for occasional blue icons */
.text-primary {
    color: #0d6efd; /* bootstrap blue or customize as needed */
}

/* Stats */
.stats-section {
    background-color: #ffffff;
}

.stat-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.stat-count {
    font-size: 2rem;
    font-weight: 700;
    color: #fe5200; /* your brand primary accent */
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

@media (max-width: 576px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .stat-content {
        margin-left: 0 !important;
        margin-top: 0.75rem;
    }
}

/* Service Section  */
.service-card {
    background-color: #fff4ee;
    border-radius: 7px;
    margin: 1.2rem 10px;
    height: auto;
    width: 100%;
    text-align: left;
    transition: all 0.5s;
}

.service-card:hover {
    transform: scale(1.1) translateY(10px);
    background-color: #ffffff;
}

.service-image {
    width: 100%;
    height: 13rem;
    object-fit: contain;
    object-position: center;
}

.service-card-details {
    padding: 1.5rem;
}

.service-title {
    color: #7e7e7e;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.service-definition {
    font-size: 16px;
    color: #929292;
}
