 .feature-section {
            max-width: 1350px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 80px;
            min-height: 600px;
        }

        .feature-content {
            flex: 1;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2d5a3d;
            margin-bottom: 60px;
            line-height: 1.1;
        }

        .illustration-container {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .hand-illustration {
            position: relative;
            z-index: 2;
        }

        .app-icon {
            width: 220px;
            height: 120px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            transform: rotate(-5deg);
            margin: 20px;
        }

        .decorative-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .crown {
            position: absolute;
            top: 10%;
            right: 20%;
            font-size: 2rem;
            transform: rotate(15deg);
            animation: float 3s ease-in-out infinite;
        }

        .key {
            position: absolute;
            bottom: 20%;
            left: 10%;
            font-size: 1.5rem;
            color: #fbbf24;
            transform: rotate(-20deg);
            animation: float 3s ease-in-out infinite 1s;
        }

        .sparkle {
            position: absolute;
            color: #fbbf24;
            animation: twinkle 2s ease-in-out infinite;
        }

        .sparkle-1 {
            top: 30%;
            left: 15%;
            font-size: 1.2rem;
            animation-delay: 0.5s;
        }

        .sparkle-2 {
            bottom: 30%;
            right: 15%;
            font-size: 0.8rem;
            animation-delay: 1.5s;
        }

        .sparkle-3 {
            top: 60%;
            left: 25%;
            font-size: 1rem;
            animation-delay: 2s;
        }

        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-icon.blue {
            background-color: #3b82f6;
            color: white;
        }

        .feature-icon.purple {
            background-color: #a855f7;
            color: white;
        }

        .feature-icon.yellow {
            background-color: #eab308;
            color: white;
        }

        .feature-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d5a3d;
            margin-bottom: 8px;
        }

        .feature-content p {
            
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(15deg); }
            50% { transform: translateY(-10px) rotate(15deg); }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        @media (max-width: 768px) {
            .feature-section {
                flex-direction: column;
                gap: 40px;
                text-align: center;
                padding: 40px 20px;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .illustration-container {
                min-height: 300px;
            }

            .app-icon {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }

            .features-list {
                gap: 30px;
            }

            .feature-item {
                text-align: left;
            }
        }


 .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .badge {
            display: inline-block;
            background: #f7fafc;
            color: #4a5568;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            border: 1px solid #e2e8f0;
        }

        .section-title {
            font-size: 48px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 20px;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin: 64px 0;
            padding: 48px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #31C159;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: #718096;
            font-weight: 500;
        }

        .regions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 64px 0;
        }

        .region-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 40px;
        }

        .region-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .region-flag {
            font-size: 24px;
            margin-right: 12px;
        }

        .region-name {
            font-size: 24px;
            font-weight: 600;
            color: #1a202c;
        }

        .region-description {
            color: #718096;
            line-height: 1.6;
            font-size: 16px;
        }

        .image-container {
            text-align: center;
            margin: 64px 0;
        }

        .main-image {
            max-width: 100%;
            height: auto;
        }

        .summary-section {
            background: #f7fafc;
            border-radius: 8px;
            padding: 48px;
            margin: 64px 0;
            border: 1px solid #e2e8f0;
        }

        .summary-title {
            font-size: 28px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 16px;
        }

        .summary-subtitle {
            font-size: 18px;
            color: #31C159;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .summary-text {
            font-size: 16px;
            color: #718096;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-description {
                font-size: 18px;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .regions-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .region-card {
                padding: 32px;
            }

            .summary-section {
                padding: 32px;
            }
        }

        @media (max-width: 480px) {
            .stats-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title {
                font-size: 28px;
            }
        }
.app-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-button {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .app-button:hover {
        transform: translateY(-2px);
    }

    .app-button img {
        height: 60px;
        width: auto;
        border-radius: 8px;
    }

    @media (max-width: 768px) {
        .app-buttons {
            flex-direction: column;
            align-items: center;
        }
    }




/* Hero Section */
.max-width {
    max-width: 1350px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.content {
    display: flex;
    flex-direction: column;
    gap: 0.850rem;
}

.headline {
    font-weight: bold;
    line-height: 1.1;
    text-wrap: balance;
}

@media (min-width: 1024px) {
    .headline {
        font-size: 3rem;
    }
}

.headline-dark {
    color: #161616;
}

.headline-green {
    color: #31c159;
}

.body-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #161616;
}

.quote {
    font-style: italic;
    font-weight: 500;
    font-size: 1.25rem;
    color: #31c159;
}

.image-container {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .image-container {
        justify-content: flex-end;
    }
}

.image-wrapper {
    position: relative;
}

.circular-image {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

@media (min-width: 1024px) {
    .circular-image {
        width: 24rem;
        height: 24rem;
    }
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hand-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 4rem;
    height: 5rem;
    background-color: #31c159;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
/* Morning Section */
.morning-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.morning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.morning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .morning-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 6rem;
    }
}

.morning-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    position: sticky;
    top: 10rem;
}

.morning-headline .highlight {
    color: #31C159;
    position: relative;
}

.morning-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    opacity: 0.3;
}

.morning-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.morning-content p {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.morning-content p:nth-child(1) { animation-delay: 0.1s; }
.morning-content p:nth-child(2) { animation-delay: 0.2s; }
.morning-content p:nth-child(3) { animation-delay: 0.3s; }
.morning-content p:nth-child(4) { animation-delay: 0.4s; }
.morning-content p:nth-child(5) { animation-delay: 0.5s; }
.morning-content p:nth-child(6) { animation-delay: 0.6s; }

.morning-content strong {
    font-style: italic;
    color: var(--primary-green);
    font-weight: 600;
}

.decorative-element {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

.flower-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow);
    animation: pulse 3s ease-in-out infinite;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .morning-section {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.main-container {
    max-width: 1350px;
    margin: 70px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -10vh;
    padding: 0 20px;
}

.content {
    padding-right: 40px;
}

.hero-title {
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.title-part1,
.title-part2 {
    color: #0f5132;
    display: block;
}

.highlight {
    color: #31C159;
}



.quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f5132;
    font-style: italic;
    line-height: 1.4;
    margin-top: -7px;
}

.visual-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Circle graphic responsive scaling */
.circle-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ====================== */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .content {
        padding-right: 0;
    }

    .circle-graphic {
        width: 320px;
        height: 320px;
    }

    .decorative-arrow {
        right: 10px;
        width: 70px;
        height: 70px;
    }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
    .main-container {
        margin: 40px auto;
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .description {
        font-size: 1rem;
    }

    .circle-graphic {
        width: 260px;
        height: 260px;
    }

    .decorative-arrow {
        top: -20px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px) {
    .main-container {
        margin: 30px auto;
        gap: 30px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .description {
        font-size: 0.95rem;
    }

    .quote {
        font-size: 1rem;
    }

    .circle-graphic {
        width: 200px;
        height: 200px;
    }

    .decorative-arrow {
        top: -15px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
}

        .maas-desc{
            padding: 0 20px;
        }

        .maas-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Updated grid layout */
            gap: 60px 80px; /* Updated gap */
        }

        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            max-width: 400px; /* Updated max-width */
            margin: 0 auto; /* Centering feature cards */
        }

        .maas-feature-icon {
            margin-bottom: 30px;
            display: flex;
            justify-content: center; /* Centering icon */
        }

        .feature-title {
            font-size: 1.8rem; /* Updated font size */
            font-weight: 500; /* Updated font weight */
            color: #2d2d2d;
            margin-bottom: 20px;
        }

        .feature-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.5; /* Updated line height */
            max-width: 300px;
            margin: 0 auto;
        }


.benefits-section {
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.left-content {
    width: fit-content;
}

.section-title {
    color: #31c159; /* Updated from blue to green */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.main-heading {
    color: #121E3C; /* Updated to dark navy */
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    width: fit-content;
}



.image-container {
    position: relative;
    width: fit-content;
}

.hexagon-frame {
    width: 300px;
    height: 260px;
    background: #31c159; /* Updated to solid green instead of gradient */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-content {
    width: fit-content;
    height: 200px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    width: fit-content;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f5f9;
    border: 2px solid #31c159; /* Updated border color to green */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: #31c159; /* Updated icon color to green */
    fill: none;
    stroke-width: 2;
}

.benefit-title {
    color: #121E3C; 
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.5;
    width: fit-content;
    text-align: left;
}

@media (max-width: 1024px) {
    .benefits-section {
        gap: 40px;
        padding: 50px 20px;
    }
    
    .main-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: center;
    }

    .left-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-heading {
        font-size: 28px;
        text-align: center;
    }

    .description {
        text-align: center;
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .hexagon-frame {
        width: 280px;
        height: 240px;
        margin: 0 auto;
    }

    .image-content {
        width: 220px;
        height: 190px;
    }
}

@media (max-width: 480px) {
.benefits-section {
    padding: 30px 15px;
    gap: 30px;
}

.main-heading {
    font-size: 24px;
    line-height: 1.3;
}

.section-title {
    font-size: 16px;
}

.description {
    font-size: 15px;
    padding: 0 10px;
}

.hexagon-frame {
    width: 240px;
    height: 200px;
}

.image-content {
    width: 180px;
    height: 150px;
}

.benefit-title {
    font-size: 18px;
}

.benefit-description {
    font-size: 13px;
    line-height: 1.4;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefits-grid {
    gap: 25px;
}
}

@media (max-width: 320px) {
.benefits-section {
    padding: 20px 10px;
}

.main-heading {
    font-size: 22px;
}

.hexagon-frame {
    width: 200px;
    height: 170px;
}

.image-content {
    width: 150px;
    height: 130px;
}
}

.afc-services-section {
    width: fit-content;
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: #31c159;
}

.section-title .dark {
    color: #121E3C;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;

}

.left-section {
    background: #f8f9fa;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.devices-mockup {
    position: relative;
    height: 200px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.laptop {
    width: fit-content;
    height: fit-content;
    left: 0;
    top: 20px;
}


.left-content h2 {
    color: #121E3C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.left-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.left-content .highlight-text {
    color: #31c159;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}



.right-section {
    background-image:url('https://www.aderaglobal.com/wp-content/uploads/2020/11/industry-banner-15.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
}

.right-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 30, 60, 0.85);
    z-index: 1;
}

.right-content {
    position: relative;
    z-index: 2;
}

.right-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #f0f0f0;
}

.right-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.logo-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    font-weight: 600;
    color: #333;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title h1 {
        font-size: 2rem;
    }

    .left-section,
    .right-section {
        padding: 40px 30px;
    }

    .devices-mockup {
        height: 150px;
        margin-bottom: 30px;
    }

    .laptop {
        width: 140px;
        height: 90px;
    }

    .tablet {
        width: 60px;
        height: 85px;
        right: 60px;
    }

    .phone {
        width: 45px;
        height: 75px;
        right: 15px;
    }
}

@media (max-width: 640px) {
    .atm-services-section {
        padding: 40px 15px;
    }

    .section-title h1 {
        font-size: 1.6rem;
    }

    .left-section,
    .right-section {
        padding: 30px 20px;
    }

    .left-content h2 {
        font-size: 1.5rem;
    }

    .right-content h2 {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .partners-logos {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-item {
        min-width: 70px;
        height: 40px;
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .devices-mockup {
        height: 120px;
    }

    .laptop {
        width: 100px;
        height: 65px;
    }

    .tablet {
        width: 45px;
        height: 65px;
        right: 45px;
    }

    .phone {
        width: 35px;
        height: 55px;
        right: 10px;
    }
}

/* payment getway  */
    .payment-gateway-main-container {
        width: 100%;
        min-height: 100vh;
    }

    .payment-gateway-hero-section {
        padding: 80px 20px 120px;
        text-align: center;
    }

    .payment-gateway-hero-wrapper {
        max-width: 900px;
        margin: 0 auto;
    }

    .payment-gateway-main-title {
        font-size: 3.2rem;
        font-weight: 300;
        color: #1e3a5f;
        margin-bottom: 2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .payment-gateway-subtitle {
        font-size: 1.8rem;
        font-weight: 400;
        color: #1e3a5f;
        margin-bottom: 3rem;
        line-height: 1.3;
    }

    .payment-gateway-hero-description {
        font-size: 1.1rem;
        color: #4a5568;
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
        font-weight: 400;
    }

    .payment-gateway-content-section {
        background: white;
        padding: 100px 20px;
        margin-top: -70px;
    }

    .payment-gateway-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .payment-gateway-image-container {
        position: relative;
    }

    .payment-gateway-feature-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .payment-gateway-text-content {
        padding-left: 40px;
    }

    .payment-gateway-section-title {
        font-size: 2.2rem;
        font-weight: 300;
        color: #1e3a5f;
        margin-bottom: 2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .payment-gateway-section-description {
        font-size: 1rem;
        color: #4a5568;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .payment-gateway-feature-text {
        font-size: 1rem;
        color: #718096;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .payment-gateway-highlight-text {
        color: #4a5568;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .payment-gateway-main-title {
            font-size: 2.2rem;
        }

        .payment-gateway-subtitle {
            font-size: 1.3rem;
        }

        .payment-gateway-content-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .payment-gateway-text-content {
            padding-left: 0;
        }

        .payment-gateway-section-title {
            font-size: 2.2rem;
        }

        .payment-gateway-feature-image {
            height: 350px;
        }
    }

    @media (max-width: 480px) {
        .payment-gateway-hero-section {
            padding: 60px 20px 80px;
        }

        .payment-gateway-main-title {
            font-size: 1.8rem;
        }

        .payment-gateway-subtitle {
            font-size: 1.1rem;
        }

        .payment-gateway-section-title {
            font-size: 1.8rem;
        }
    }

    .payment-getway-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: -90px;
    align-items: center;
    padding: 0 20px; /* Added for small screens */
}

.content {
    padding: 40px 0;
}

.payment-main-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.1;
    letter-spacing: -0.02em;
}



.features {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: #06b6d4;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.cta-link:hover {
    color: #0891b2;
    transform: translateX(5px);
}

.cta-link::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-link:hover::after {
    transform: translateX(3px);
}

.device-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.screen {
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid #4a5568;
}

.status-lights {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4a5568;
}

.status-light.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.nfc-area {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
}

.nfc-icon {
    width: 40px;
    height: 40px;
    color: #3b82f6;
}

.wave-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: wave 2s infinite;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.fingerprint-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #6b7280;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .payment-getway-container {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: -60px;
        text-align: center;
    }

    .device {
        width: 250px;
        height: 250px;
    }

    .screen {
        width: 160px;
        height: 160px;
    }

    .payment-main-heading {
        font-size: 2.2rem;
    }

    .description,
    .features {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .device {
        width: 200px;
        height: 200px;
    }

    .screen {
        width: 140px;
        height: 140px;
    }

    .payment-main-heading {
        font-size: 2rem;
    }

    .cta-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .device {
        width: 180px;
        height: 180px;
    }

    .screen {
        width: 120px;
        height: 120px;
    }

    .payment-main-heading {
        font-size: 1.8rem;
    }

    .description,
    .features {
        font-size: 0.95rem;
    }

    .cta-link {
        font-size: 0.95rem;
    }
}
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    gap: 60px;
}

.text-section {
    flex: 1;
    max-width: 750px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.text-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-section p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.visual-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.3s forwards;
}

.terminal-device {
    width: 300px;
    height: 500px;
    background: linear-gradient(145deg, #f0f2f5, #ffffff);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.terminal-device:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.display-panel {
    width: 260px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 15px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.panel-interface {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    width: 100%;
    height: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.feature-icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.hardware-base {
    width: 100%;
    height: 80px;
    background: #2c3e50;
    border-radius: 0 0 25px 25px;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-slot {
    width: 60px;
    height: 8px;
    background: #34495e;
    border-radius: 4px;
    position: relative;
}

.payment-slot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
    animation: cardInsert 2s ease-in-out infinite;
}

.option-menu {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.menu-option {
    padding: 12px 24px;
    background: rgba(44, 62, 80, 0.1);
    border: 2px solid rgba(44, 62, 80, 0.2);
    border-radius: 25px;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-option.selected {
    background: #31C159;
    color: white;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .text-section h1 {
        font-size: 2.5rem;
    }

    .terminal-device {
        width: 250px;
        height: 420px;
    }

    .display-panel {
        width: 220px;
        height: 340px;
    }

    .option-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

   

     .fleet-section {
      max-width: 1350px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .fleet-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 30px;
    }

    .fleet-text {
      flex: 1 1 60%;
    }

    .fleet-text h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .fleet-text p {
      font-size: 16px;
      color: #333;
    }

    .fleet-text a {
      color: #31c159;
      text-decoration: none;
    }

    .fleet-stat {
      flex: 1 1 30%;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
    }

    .fleet-stat img {
      width: 80px;
      margin-bottom: 10px;
    }

    .fleet-stat h3 {
      color: #121E3C;
      font-size: 24px;
      margin: 10px 0;
    }

    .fleet-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

   .benefit-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  max-width: 330px; /* Keeps same design but allows shrink */
  margin: 0 auto; /* Centers on smaller screens */
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-card img {
  width: 70px;
  max-width: 100%;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #121E3C;
}

.benefit-card p {
  font-size: 14px;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-card {
    max-width: 100%;
    padding: 20px 15px;
  }

  .benefit-card h4 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 15px 10px;
  }

  .benefit-card img {
    width: 50px;
  }

  .benefit-card h4 {
    font-size: 15px;
  }

  .benefit-card p {
    font-size: 12px;
  }
}

    


.transportation-fleet-management {
min-height: 100vh;
padding: 60px 40px;
max-width: 1400px;
margin: 0 auto;
}

.transportation-fleet-management h2 {
text-align: center;
color: #333333;
font-size: 2rem;
font-weight: 700;
margin-bottom: 80px;
line-height: 1.2;
}

.transportation-fleet-management .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
max-width: 1500px;
margin: 0 auto;
}

.transportation-fleet-management .card {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 20px;
padding: 40px 30px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
animation: fadeInUp 0.8s ease forwards;
}

.transportation-fleet-management .card:hover {
transform: translateY(-10px);
background: #fafafa;
border-color: #667eea;
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.transportation-fleet-management .header {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
gap: 20px;
}

.transportation-fleet-management .icon {
width: 60px;
height: 60px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
flex-shrink: 0;
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
transition: transform 0.3s ease;
}

.transportation-fleet-management h3 {
color: #333333;
font-size: 1.5rem;
font-weight: 600;
line-height: 1.3;
margin-top: 8px;
text-align: left;
}

.transportation-fleet-management p {
font-size: 1rem;
line-height: 1.7;
text-align: justify;
}


/* Responsive design */
@media (max-width: 768px) {
.transportation-fleet-management {
padding: 40px 20px;
}

.transportation-fleet-management h1 {
font-size: 2.5rem;
margin-bottom: 50px;
}

.transportation-fleet-management .grid {
grid-template-columns: 1fr;
gap: 30px;
}

.transportation-fleet-management .card {
padding: 30px 25px;
}

.transportation-fleet-management .header {
gap: 15px;
}

.transportation-fleet-management .icon {
width: 50px;
height: 50px;
font-size: 20px;
}

.transportation-fleet-management h3 {
font-size: 1.3rem;
}

.transportation-fleet-management p {
font-size: 0.95rem;
}
}

@media (max-width: 480px) {
.transportation-fleet-management h1 {
font-size: 2rem;
}

.transportation-fleet-management .card {
padding: 25px 20px;
}
}

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

.ocs-hero-section {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1350px;
margin: 0 auto;
margin-top: 80px;
gap: 60px;
}

.ocs-content {
flex: 1;
max-width: 500px;
}

.ocs-content h1 {
font-size: 2rem;
font-weight: 700;
color: #1a365d;
line-height: 1.1;
margin-bottom: 30px;
background: linear-gradient(135deg, #1a365d, #2d5aa0);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.ocs-content p {
font-size: 1.1rem;
line-height: 1.7;
color: #2d3748;
margin-bottom: 40px;
opacity: 0.9;
}

.ocs-explore-btn {
position: relative;
padding: 16px 32px;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
border: none;
border-radius: 50px;
cursor: pointer;
overflow: hidden;
transition: all 0.4s ease;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.ocs-explore-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #764ba2, #667eea);
transition: left 0.5s ease;
z-index: -1;
}

.ocs-visual-section {
flex: 1;
position: relative;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
}

.ocs-laptop-container {
position: relative;
width: 600px;
height: 400px;
perspective: 1000px;
}

.ocs-laptop {
position: relative;
width: 100%;
height: 100%;
}

.ocs-screen {
width: 100%;
height: 75%;
position: relative;
overflow: hidden;
}

.ocs-screen::before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 20px;
border-radius: 4px;
}


.ocs-dashboard {
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
top: 0;
left: 0;
transition: opacity 0.8s ease;
}

.ocs-dashboard.ocs-active {
opacity: 1;
}

.ocs-feature-tabs {
display: flex;
gap: 10px;
margin-bottom: 40px;
}

.ocs-tab {
padding: 12px 24px;
background: rgba(255, 255, 255, 0.8);
border: none;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
position: relative;
overflow: hidden;
}

.ocs-tab.ocs-active {
background: #31C159;
color: white;
transform: scale(1.05);
}

.ocs-tab:not(.ocs-active):hover {
background: rgba(255, 255, 255, 1);
transform: translateY(-2px);
}

/* Dashboard Styles */
.ocs-analytics-dashboard {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
height: 100%;
}

.ocs-chart-placeholder {
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
position: relative;
overflow: hidden;
}

.ocs-chart-placeholder::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
animation: shimmer 3s infinite;
}

.ocs-pos-interface {
background: linear-gradient(135deg, #48bb78, #38a169);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 8px;
font-size: 0.9rem;
}

.ocs-payment-gateway {
background: linear-gradient(135deg, #ed8936, #dd6b20);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 8px;
font-size: 0.9rem;
}

@media (max-width: 768px) {
.ocs-hero-section {
flex-direction: column;
text-align: center;
padding: 40px 20px;
}

.ocs-content h1 {
font-size: 2.5rem;
}

.ocs-laptop-container {
width: 400px;
height: 300px;
}
}
/* cmps */
.cmps-benefits-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 8%;
    background: #fafafa;
    text-align: center;
  }

  .cmps-benefits-section .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cmps-benefits-section .benefit-item img {
    width: 60px;
    height: auto;
  }

  .cmps-benefits-section .benefit-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #082B60;
    max-width: 280px;
  }

  @media (max-width: 1024px) {
    .cmps-benefits-section {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .cmps-benefits-section {
      grid-template-columns: 1fr;
    }
  }

.cmps-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    padding-top: 23vh;
    background: #fff;
}

.cmps-hero-section .hero-content {
    flex: 1;
    max-width: 550px;
}

.cmps-hero-section .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #082B60;
}

.cmps-hero-section .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2e3c54;
}

.cmps-hero-section .hero-buttons {
    display: flex;
    gap: 20px;
}

.cmps-hero-section .hero-buttons a {
    text-decoration: none;
    font-weight: 600;
}

.cmps-hero-section .btn-primary {
    background: linear-gradient(90deg, #00b4d8, #0096c7);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 150, 200, 0.3);
    transition: all 0.3s ease;
}

.cmps-hero-section .btn-primary:hover {
    background: linear-gradient(90deg, #0096c7, #0077b6);
}

.cmps-hero-section .btn-link {
    color: #0096c7;
    display: flex;
    align-items: center;
}

.cmps-hero-section .hero-image {
    flex: 1;
    text-align: right;
}

.cmps-hero-section .hero-image img {
    max-width: 90%;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .cmps-hero-section {
    flex-direction: column;
    text-align: center;
    }
    .cmps-hero-section .hero-image {
    margin-top: 40px;
    text-align: center;
    }
}

.cmps-support {
  padding: 80px 10%;
  background: #fff;
}

.cmps-support-container {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.cmps-support-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1a2f;
  margin-bottom: 20px;
}

.cmps-support-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.cmps-support-image img {
  width: 100%;
  border-radius: 10px;
}

.cmps-support-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-item img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .cmps-support-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cmps-support-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cmps-hero-section .hero-content h1{
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .cmps-support-features {
    grid-template-columns: 1fr;
  }
}


.cmps-solution {
    color: #121E3C;
    background: #fff;
}

.cmps-solution .solution-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}

.cmps-solution .solution-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.cmps-solution .solution-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cmps-solution .solution-content {
    padding: 40px 5%;
    text-align: left;
}

.cmps-solution .solution-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.cmps-solution .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.cmps-solution .solution-grid h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cmps-solution .solution-grid p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

/* 📱 Responsive adjustments */
@media (max-width: 992px) {
    .cmps-solution .solution-content {
        padding: 30px 5%;
    }

    .cmps-solution .solution-content h2 {
        font-size: 1.4rem;
    }

    .cmps-solution .solution-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cmps-solution .solution-content {
        padding: 25px 20px;
    }

    .cmps-solution .solution-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .cmps-solution .solution-grid h3 {
        font-size: 0.95rem;
    }

    .cmps-solution .solution-grid p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cmps-solution .solution-content {
        padding: 20px 15px;
    }

    .cmps-solution .solution-content h2 {
        font-size: 1.1rem;
    }

    .cmps-solution .solution-grid {
        gap: 20px;
    }
}
/* qr-e-wallet */
.payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Left - Card Image */
.payment-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c8e6c9;
    border-radius: 20px;
    padding: 40px;
}

.payment-card img {
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Right - Text */
.payment-text {
    flex: 1;
    padding: 20px 40px;
}

.payment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.payment-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.payment-text a {
    display: inline-block;
    background: #e8f0fe;
    color: #1967d2;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.payment-text a:hover {
    background: #d2e3fc;
}

/* QR Code */
.qr-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.8rem;
}

.qr-box img {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .payment-section {
    flex-direction: column;
    text-align: center;
    }
    .payment-card {
    margin-bottom: 30px;
    }
    .qr-box {
    position: static;
    margin-top: 20px;
    }
}
.travel-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
}

/* Left Text */
.travel-text {
    flex: 1;
    padding: 20px 40px;
}

.travel-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.travel-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.travel-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.point img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.point p {
    margin: 0;
    font-size: 1rem;
    color: #444;
}

/* Right Image */
.travel-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffe082;
    border-radius: 20px;
    padding: 40px;
}

.travel-card img {
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* QR Code */
.qr-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.8rem;
}

.qr-box img {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .travel-section {
    flex-direction: column;
    text-align: center;
    }
    .travel-card {
    margin-top: 30px;
    }
    .qr-box {
    position: static;
    margin-top: 20px;
    }
}


 .billet-qr-e-wallete {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Updated all class names to use billet-qr-e-wallete prefix */
.billet-qr-e-wallete-content {
    max-width: 500px;
}

.billet-qr-e-wallete-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 24px;
}

.billet-qr-e-wallete-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 32px;
}

.billet-qr-e-wallete-heading .billet-qr-e-wallete-highlight {
    color: #ef4444;
}

.billet-qr-e-wallete-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 480px;
}

.billet-qr-e-wallete-visual-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.billet-qr-e-wallete-background-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fecaca 0%, #f87171 100%);
    border-radius: 50%;
    z-index: 1;
}

.billet-qr-e-wallete-phone-mockup {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.billet-qr-e-wallete-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 24px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.billet-qr-e-wallete-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.billet-qr-e-wallete-close-btn {
    width: 24px;
    height: 24px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #9ca3af;
}

.billet-qr-e-wallete-menu-btn {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.billet-qr-e-wallete-menu-btn span {
    width: 100%;
    height: 2px;
    background: #9ca3af;
    border-radius: 1px;
}

.billet-qr-e-wallete-app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.billet-qr-e-wallete-app-icon {
    width: 32px;
    height: 32px;
    background: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.billet-qr-e-wallete-app-name {
    font-size: 14px;
    font-weight: 500;
}

.billet-qr-e-wallete-venue-name {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.billet-qr-e-wallete-event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.billet-qr-e-wallete-event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.billet-qr-e-wallete-detail-item {
    display: flex;
    flex-direction: column;
}

.billet-qr-e-wallete-detail-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.billet-qr-e-wallete-detail-value {
    font-size: 14px;
    font-weight: 600;
}

.billet-qr-e-wallete-qr-section {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.billet-qr-e-wallete-qr-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #000;
   
    line-height: 1;
    word-break: break-all;
    padding: 4px;
}

.billet-qr-e-wallete-download-qr {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.billet-qr-e-wallete-download-qr-code {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    color: #000;
    line-height: 1;
    word-break: break-all;
    padding: 4px;
}

.billet-qr-e-wallete-download-text {
    font-size: 12px;
    color: #3b82f6;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .billet-qr-e-wallete {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .billet-qr-e-wallete-heading {
        font-size: 36px;
    }

    .billet-qr-e-wallete-visual-section {
        height: 400px;
    }

    .billet-qr-e-wallete-background-circle {
        width: 300px;
        height: 300px;
    }

    .billet-qr-e-wallete-phone-mockup {
        width: 220px;
        height: 440px;
    }

    .billet-qr-e-wallete-download-qr {
        position: static;
        margin-top: 20px;
    }
}

 .qr-e-wallet-access {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.qr-e-wallet-access::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.access-container {
    display: flex;
    align-items: center;
    gap: 12rem;
    max-width: 1350px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    flex: 0 0 auto;
    position: relative;
}

.phone {
    width: 280px;
    height: 560px;
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    transform: rotate(-5deg);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.close-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

.menu-dots {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.lock-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    color: #4285f4;
    font-size: 24px;
}

.digital-key-card {
    background: linear-gradient(135deg, #4285f4 0%, #1976d2 100%);
    border-radius: 16px;
    padding: 20px;
    color: white;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.digital-key-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
}

.key-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.key-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.key-title {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.content {
    flex: 1;
    max-width: 600px;
}

.access-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 2rem;
}


.additional-info {
    font-size: 0.9rem;
    color: #7a8a9a;
    line-height: 1.5;
}

.additional-info a {
    color: #4285f4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .phone {
        width: 240px;
        height: 480px;
        transform: none;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .qr-e-wallet-access {
        padding: 1rem;
    }
}

.security-section.qr-e-wallet-security {
    max-width: 1350px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content.qr-e-wallet-security {
    max-width: 500px;
}

.section-label.qr-e-wallet-security {
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.main-heading.qr-e-wallet-security {
    font-size: 48px;
    font-weight: 400;
    color: #3c4043;
    line-height: 1.2;
    margin-bottom: 32px;
}

.description.qr-e-wallet-security {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 48px;
}

.features.qr-e-wallet-security {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature.qr-e-wallet-security {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon.qr-e-wallet-security {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon.qr-e-wallet-security svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.feature-text.qr-e-wallet-security {
    font-size: 16px;
    color: #3c4043;
    line-height: 1.5;
}

.phone-mockup.qr-e-wallet-security {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container.qr-e-wallet-security {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.phone-screen.qr-e-wallet-security {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.wallet-interface.qr-e-wallet-security {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 20px;
}

.wallet-header.qr-e-wallet-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn.qr-e-wallet-security, .menu-btn.qr-e-wallet-security {
    width: 24px;
    height: 24px;
    background: #f1f3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #5f6368;
}

.credit-card.qr-e-wallet-security {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 12px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    color: white;
}

.google-logo.qr-e-wallet-security {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #4285f4;
    font-weight: bold;
}

.card-number.qr-e-wallet-security {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.wallet-options.qr-e-wallet-security {
    font-size: 12px;
    color: #5f6368;
}

.option-item.qr-e-wallet-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.toggle.qr-e-wallet-security {
    width: 32px;
    height: 18px;
    background: #4285f4;
    border-radius: 9px;
    position: relative;
}

.toggle.qr-e-wallet-security::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

@media (max-width: 768px) {
    .security-section.qr-e-wallet-security {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .main-heading.qr-e-wallet-security {
        font-size: 36px;
    }

    .phone-container.qr-e-wallet-security {
        width: 250px;
        height: 500px;
    }

    .wallet-interface.qr-e-wallet-security {
        width: 180px;
        height: 280px;
    }
}
/* loyalty-platform */
.loyalty-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: auto;
  text-align: center;
}

.loyalty-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.4;
}

.loyalty-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.loyalty-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loyalty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.loyalty-card h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.loyalty-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.loyalty-logo {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 1024px) {
  .loyalty-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .loyalty-card h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .loyalty-title {
    font-size: 1.8rem;
  }

  .loyalty-cards {
    gap: 15px;
  }

  .loyalty-card {
    padding: 25px 18px;
  }

  .loyalty-card h2 {
    font-size: 1.4rem;
  }

  .loyalty-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .loyalty-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .loyalty-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px 15px;
  }

  .loyalty-card h2 {
    font-size: 1.2rem;
  }

  .loyalty-card p {
    font-size: 0.85rem;
  }

  .loyalty-logo {
    font-size: 0.9rem;
  }
}


.loyalty_platform {
    background: #f7f8fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.features-loyalty-platform {
    max-width: 1350px;
    margin: 0 auto;
    padding: 110px 40px;
}

.features-loyalty-platform__header {
    text-align: center;
    margin-bottom: 100px;
}

.features-loyalty-platform__title {
    font-size: 3.2rem;
    font-weight: 400;
    color: #2d3748;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.features-loyalty-platform__main {
    display: flex;
    align-items: center;
    gap: 80px;
    background: #fff; /* White background */
    border-radius: 12px; /* Optional: smooth corners */
    padding: 30px; /* Optional: spacing inside */
}

.features-loyalty-platform__content {
    flex: 1;
    max-width: 520px;
}

.features-loyalty-platform__tag {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 25px;
}

.features-loyalty-platform__tag::before {
    content: "•";
    margin-right: 8px;
    color: #6366f1;
    font-size: 1rem;
}

.features-loyalty-platform__subtitle {
    font-size: 2.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 50px;
    line-height: 1.25;
}

.features-loyalty-platform__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    margin-bottom: 50px;
}

.features-loyalty-platform__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.features-loyalty-platform__feature-icon {
    width: 44px;
    height: 44px;
    background: #f7f8fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.features-loyalty-platform__feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.features-loyalty-platform__feature-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
}

.features-loyalty-platform__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.features-loyalty-platform__cta:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.features-loyalty-platform__visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-loyalty-platform__image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.features-loyalty-platform__person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.features-loyalty-platform__person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
}

.features-loyalty-platform__overlay-card {
    position: absolute;
    top: 40px;
    right: -60px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    z-index: 2;
}

.features-loyalty-platform__roi-label {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 4px;
    font-weight: 500;
}

.features-loyalty-platform__roi-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38a169;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-loyalty-platform__trend-icon {
    width: 24px;
    height: 16px;
}

@media (max-width: 1024px) {
    .features-loyalty-platform {
        padding: 60px 20px;
    }

    .features-loyalty-platform__main {
        flex-direction: column;
        gap: 60px;
    }

    .features-loyalty-platform__title {
        font-size: 2.4rem;
    }

    .features-loyalty-platform__subtitle {
        font-size: 1.8rem;
    }

    .features-loyalty-platform__visual {
        height: 400px;
    }

    .features-loyalty-platform__image-container {
        width: 320px;
        height: 320px;
    }

    .features-loyalty-platform__features {
        flex-direction: column;
        gap: 30px;
    }

    .features-loyalty-platform__feature {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .features-loyalty-platform__feature-icon {
        margin-bottom: 0;
    }

    .features-loyalty-platform__roi-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-loyalty-platform__title {
        font-size: 2rem;
    }

    .features-loyalty-platform__subtitle {
        font-size: 1.5rem;
    }

    .features-loyalty-platform__image-container {
        width: 280px;
        height: 280px;
    }
}

#loyalty{
    margin-top: -130px;
}
  .platform {
    background-color: #ffffff;
    padding: 64px 16px;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Section */
.platform-header {
    text-align: center;
    margin-bottom: 64px;
}

.platform-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.platform-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

/* Images Section */
.platform-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .platform-images-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.platform-image-container {
    position: relative;
    height: 256px;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .platform-image-container {
        height: 320px;
    }
}

.platform-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breakout Section */
.platform-breakout {
    background-color: #f1f1f1;
    border-radius: 16px;
    padding: 32px;
}

.platform-breakout-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

@media (min-width: 1024px) {
    .platform-breakout-content {
        flex-direction: row;
        text-align: left;
    }
}

.platform-breakout-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.platform-breakout-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-breakout-text {
    flex: 1;
}

.platform-breakout-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.platform-breakout-text p {
    color: #6b7280;
    margin-bottom: 16px;
}

.platform-btn {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.platform-btn:hover {
    background-color: #1d4ed8;
}

/* Companies Section */
.platform-companies {
    margin-bottom: 64px;
}

.platform-companies h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 32px;
}

.platform-companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .platform-companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .platform-companies-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.platform-company-logo {
    height: 48px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.platform-company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.platform-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Achievements Section */
.platform-achievements {
    text-align: center;
}

.platform-achievements h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.platform-achievements-description {
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

.platform-achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .platform-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .platform-achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.platform-achievement-item {
    text-align: center;
}

.platform-achievement-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.platform-achievement-label {
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .platform {
        padding: 48px 16px;
    }

    .platform-header h2 {
        font-size: 1.875rem;
    }

    .platform-header {
        margin-bottom: 48px;
    }

    .platform-images-grid,
    .platform-breakout,
    .platform-companies {
        margin-bottom: 48px;
    }

    .platform-breakout {
        padding: 24px;
    }
}
/* card management */

.card-management-section {
padding: 8rem 0;
}

.card-management-section-badge-custom {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid var(--border);
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    background-color: var(--background);
}

.card-management-section-badge-outline {
    background-color: transparent;
    border: 1px solid var(--border);
}

.card-management-section-badge-muted {
    background-color: var(--background);
    border: 1px solid var(--border);
}

.card-management-section-nav-tabs-custom {
    border: none;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-management-section-nav-tabs-custom .nav-link {
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--muted-foreground);
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.card-management-section-nav-tabs-custom .nav-link:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.card-management-section-nav-tabs-custom .nav-link.active {
    color: var(--primary);
    background-color: var(--muted);
    border: none;
}

.card-management-section-tab-content-wrapper {
    background-color: rgba(241, 245, 249, 0.7);
    border-radius: 1rem;
    padding: 4rem;
    margin-top: 2rem;
}

.card-management-section-tab-pane {
    display: none;
}

.card-management-section-tab-pane.active {
    display: block;
}

.card-management-section-btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.card-management-section-btn-primary-custom:hover {
    background-color: rgba(15, 23, 42, 0.9);
    border-color: rgba(15, 23, 42, 0.9);
    color: var(--primary-foreground);
}

.card-management-section-content-image {
    border-radius: 0.75rem;
    max-width: 100%;
    height: auto;
}

.card-management-section-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .card-management-section {
        padding: 4rem 0;
    }
    
    .card-management-section-tab-content-wrapper {
        padding: 1.5rem;
    }
    
    .card-management-section-nav-tabs-custom {
        flex-direction: column;
        align-items: center;
    }
}
/* while label */
.while-label-hero-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero container */
.while-label-hero-container {
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  background-image: url("../images/pattern-light-1.png");
}

/* Hero content */
.while-label-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .while-label-hero-content {
    padding: 10rem 0;
  }
}

/* Launch button container */
.while-label-hero-launch-button-container {
  margin-bottom: 1rem;
}

/* Text content */
.while-label-hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
}

/* Hero title */
.while-label-hero-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 768px) {
  .while-label-hero-title {
    font-size: 4.5rem;
  }
}

.while-label-hero-title-static {
  color: #121E3C; /* spektr-cyan-50 equivalent */
}

/* Animated title container */
.while-label-hero-title-animated-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 1.2em;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .while-label-hero-title-animated-container {
    padding-bottom: 1rem;
    padding-top: 0.25rem;
  }
}

/* Animated words */
.while-label-hero-animated-word {
  position: absolute;
  font-weight: 600;
  opacity: 0;
  transform: translateY(150px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.while-label-hero-animated-word.while-label-hero-active {
  opacity: 1;
  transform: translateY(0);
}

.while-label-hero-animated-word.while-label-hero-exit-up {
  opacity: 0;
  transform: translateY(-150px);
}

/* Hero description */
.while-label-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #64748b;
  max-width: 42rem;
  text-align: center;
}

@media (min-width: 768px) {
  .while-label-hero-description {
    font-size: 1.25rem;
  }
}

/* Button group */
.while-label-hero-button-group {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button base styles */
.while-label-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 1rem;
}

.while-label-hero-button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.while-label-hero-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Button sizes */
.while-label-hero-button-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  gap: 1rem;
}

.while-label-hero-button-lg {
  height: 2.75rem;
  padding: 0 2rem;
}

/* Button variants */
.while-label-hero-button-default {
  background-color: #0f172a;
  color: #ffffff;
}

.while-label-hero-button-default:hover {
  background-color: rgba(15, 23, 42, 0.9);
}

.while-label-hero-button-outline {
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #0f172a;
}

.while-label-hero-button-outline:hover {
  background-color: #f8fafc;
  color: #0f172a;
}

.while-label-hero-button-secondary {
  background-color: #f1f5f9;
  color: #0f172a;
}

.while-label-hero-button-secondary:hover {
  background-color: rgba(241, 245, 249, 0.8);
}

/* Icon styles */
.while-label-hero-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .while-label-hero-title {
    font-size: 2.5rem;
  }

  .while-label-hero-description {
    font-size: 1rem;
  }

  .while-label-hero-button-group {
    flex-direction: column;
    width: 100%;
  }

  .while-label-hero-button-group .while-label-hero-button {
    width: 100%;
  }
}
.while-label-section {
  padding: 80px 20px;
  background: #fff;
  color: #121E3C;
}

.while-label-section-container {
  max-width: 1350px;
  margin: 0 auto;
}

.while-label-section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.while-label-section-image img {
  max-width: 550px;
  height: auto;
  display: block;
}

.while-label-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.while-label-section-description {
  color: #5f6f7b;
  line-height: 1.6;
  max-width: 600px;
}

.while-label-section-description .highlight {
  color: #31C159;
  font-weight: bold;
}

.while-label-section-subtitle {
  color: #9ca3af;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.while-label-section-feature .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.key-feature-while-label {
  padding: 60px 0;
  text-align: center;
  margin-top: -6vw;
}

.key-feature-while-label-container {
  max-width: 1350px;
  margin: 0 auto;
}

.key-feature-while-label-title {
  font-size: 16px;
  font-weight: 600;
  color: #9aa9b5;
  margin-bottom: 40px;
}

.key-feature-while-label-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.key-feature-while-label-card {
  background: #004953; /* Dark teal like in image */
  color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.key-feature-while-label-card:hover {
  transform: translateY(-5px);
}

.key-feature-while-label-icon {
  margin-bottom: 20px;
}

.key-feature-while-label-icon img {
  width: 60px;
  height: auto;
}

.key-feature-while-label-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: white;
}

.platform-white-label {
  background: #121E3C; /* Dark Blue background */
  color: #fff;
  padding: 80px 20px;
}

.platform-white-label-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.platform-white-label-image {
  flex: 1;
}

.platform-white-label-image img {
  width: 100%;
  max-width: 600px;
  display: block;
}

.platform-white-label-content {
  flex: 1;
}

.platform-white-label-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #ffffff;
}

.platform-white-label-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.platform-white-label-text .highlight {
  color: #31c159; /* Green highlight */
  font-weight: 600;
}
.card-white-label-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.card-white-label-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
.card-white-label-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #121E3C;
    margin-bottom: 16px;
    text-align: center;
}
.card-white-label-section-description {
    font-size: 1rem;
    color: rgba(18, 30, 60, 0.7);
    margin-bottom: 32px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.card-white-label-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .card-white-label-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .card-white-label-grid {
    grid-template-columns: repeat(4, 1fr);
    }
}
.card-white-label-feature {
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 1024px) {
    .card-white-label-feature:not(:first-child) {
    border-left: 1px solid rgba(18, 30, 60, 0.2);
    }
    .card-white-label-feature:nth-child(-n+4) {
    border-bottom: 1px solid rgba(18, 30, 60, 0.2);
    }
    .card-white-label-feature:nth-child(1),
    .card-white-label-feature:nth-child(5) {
    border-left: 1px solid rgba(18, 30, 60, 0.2);
    }
}
.card-white-label-feature:hover .card-white-label-gradient-top,
.card-white-label-feature:hover .card-white-label-gradient-bottom {
    opacity: 1;
}
.card-white-label-gradient-top {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(49, 193, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}
.card-white-label-gradient-bottom {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(49, 193, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}
.card-white-label-icon {
    font-size: 24px;
    color: #31C159;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}
.card-white-label-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 10;
    color: #121E3C;
    display: flex;
    align-items: center;
}
.card-white-label-title::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    height: 24px;
    width: 4px;
    background-color: rgba(18, 30, 60, 0.3);
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease-in-out;
}
.card-white-label-feature:hover .card-white-label-title::before {
    height: 32px;
    background-color: #31C159;
}
.card-white-label-feature:hover .card-white-label-title-text {
    transform: translateX(8px);
}
.card-white-label-title-text {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}
.card-white-label-description {
    font-size: 0.875rem;
    color: rgba(18, 30, 60, 0.7);
    max-width: 300px;
    position: relative;
    z-index: 10;
}
.card-white-label-icon-placeholder {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-color: #31C159;
    border-radius: 4px;
}

.while_label {
    margin: 0;
    padding: 40px 30px;
}

.while-label_section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1350px;
    margin: auto;
}

.while-label_section.title-block {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.while-label_section.title-block h1 {
    font-size: 32px;
    font-weight: 800;
    color: #121e3c;
    margin-bottom: 15px;
}

.while-label_section.title-block p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.while-label_section.card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 500px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease;
}

.while-label_section.card:hover {
    transform: translateY(-8px);
}

.while-label_section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #121e3c;
    margin-bottom: 15px;
}

.while-label_section p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.while-label_section img {
    width: 200px;
    max-width: 100%;
    border-radius: 15px;
    border: 3px solid #31c159;
}

@media (max-width: 900px) {
    .while-label_section.card {
    flex-direction: column;
    text-align: center;
    }
    .while-label_section img {
    margin-top: 15px;
    }
}

/* Container styles */
.tvm-solution-container {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Flex container for accordion and image */
.tvm-solution-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

/* Accordion container */
.tvm-solution-accordion-container {
    width: 100%;
}

@media (min-width: 768px) {
    .tvm-solution-accordion-container {
    width: 50%;
    }
}

/* Accordion styles */
.tvm-solution-accordion {
    width: 100%;
}

.tvm-solution-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.tvm-solution-accordion-header {
    display: flex;
}

.tvm-solution-accordion-trigger {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    transition: color 0.2s ease;
}

.tvm-solution-accordion-trigger:hover {
    text-decoration: underline;
}

.tvm-solution-accordion-trigger.active {
    color: #111827;
}

.tvm-solution-accordion-trigger svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.tvm-solution-accordion-trigger.active svg {
    transform: rotate(180deg);
}

.tvm-solution-accordion-content {
    overflow: hidden;
    font-size: 0.875rem;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.tvm-solution-accordion-content[data-state="open"] {
    max-height: 1000px; /* Adjust based on content size */
}

.tvm-solution-accordion-content > div {
    padding-bottom: 1rem;
}

.tvm-solution-accordion-content img {
    width: 100%;
    max-height: 20rem;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-top: 1rem;
}

/* Image container */
.tvm-solution-image-container {
    display: none;
    width: 50%;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: #f3f4f6;
}

@media (min-width: 768px) {
    .tvm-solution-image-container {
    display: block;
    }
}

.tvm-solution-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.375rem;
    padding-left: 1rem;
    width: 100%;
}

/* Animation keyframes */
@keyframes accordion-down {
    from { max-height: 0; }
    to { max-height: 1000px; }
}

@keyframes accordion-up {
    from { max-height: 1000px; }
    to { max-height: 0; }
}

.tvm-solution-accordion-content[data-state="open"] {
    animation: accordion-down 0.2s ease-out;
}

.tvm-solution-accordion-content[data-state="closed"] {
    animation: accordion-up 0.2s ease-out;
}

/* Hide mobile image on desktop */
@media (min-width: 768px) {
    .tvm-solution-mobile-image {
    display: none;
    }
}
/* APC */
/* Custom styles for the hero section */
.apc-hero-section { 
    color: #212529; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.apc-hero-section.bg-dark {
    background-color: #212529;
    color: #f8f9fa; 
}
.apc-hero-section .hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: 17vh;
    align-items: center;
    justify-content: center;
}
.apc-hero-section .hero-heading {
    font-size: 2.25rem; /* Bootstrap equivalent to text-3xl */
    font-weight: 500; /* medium */
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 576px) {
    .apc-hero-section .hero-heading {
        font-size: 2.5rem; /* sm:text-4xl */
    }
}
@media (min-width: 992px) {
    .apc-hero-section .hero-heading {
        font-size: 3.75rem; /* lg:text-5xl */
    }
}
.apc-hero-section .hero-tagline {
    margin-top: 0.75rem;
    color: #6c757d; /* Bootstrap secondary text */
    text-align: center;
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 800px;
}
.apc-hero-section.bg-dark .hero-tagline {
    color: #adb5bd; /* Bootstrap secondary text for dark mode */
}
@media (min-width: 576px) {
    .apc-hero-section .hero-tagline {
        font-size: 1.125rem;
    }
}
.apc-hero-section .hero-button {
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #6c757d; /* Bootstrap secondary border */
    background-color: transparent;
    color: #212529;
    transition: border-color 0.2s;
}
.apc-hero-section.bg-dark .hero-button {
    border-color: #6c757d;
    color: #f8f9fa;
}
.apc-hero-section .hero-button:hover {
    border-color: #495057; /* Darker border on hover */
}
.apc-hero-section.bg-dark .hero-button:hover {
    border-color: #ced4da; /* Lighter border on hover for dark mode */
}
.apc-hero-section .hero-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* Bootstrap focus ring */
}
.apc-hero-section .hero-media-container {
    margin-top: 3rem;
    width: 100%;
    max-width: 776px; 
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
}
@media (min-width: 992px) {
    .apc-hero-section .hero-media-container {
        margin-top: 4rem;
    }
}
@media (min-width: 576px) {
    .apc-hero-section .hero-media-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
.apc-hero-section .hero-media-border {
    background-color: #dee2e6; /* Bootstrap border */
    border-radius: 2rem;
    padding: 0.25rem;
}
.apc-hero-section.bg-dark .hero-media-border {
    background-color: #495057; /* Darker border for dark mode */
}
.apc-hero-section .hero-media {
    position: relative;
    height: 16rem;
    border-radius: 1.75rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.apc-hero-section.bg-dark .hero-media {
    background-color: #343a40; /* Bootstrap dark card */
}
@media (min-width: 576px) {
    .apc-hero-section .hero-media {
        height: 18rem;
    }
}
@media (min-width: 768px) {
    .apc-hero-section .hero-media {
        height: 20rem;
    }
}
@media (min-width: 992px) {
    .apc-hero-section .hero-media {
        height: 24rem;
    }
}
.apc-hero-section .hero-image, .apc-hero-section .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}
.apc-hero-section .hero-video.opacity-0 {
    opacity: 0;
    pointer-events: none;
}
.apc-hero-section .play-button {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 20;
    padding: 0.5rem;
    background-color: rgba(222, 226, 230, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #212529;
    transition: background-color 0.2s;
}
.apc-hero-section.bg-dark .play-button {
    background-color: rgba(73, 80, 87, 0.3);
    color: #f8f9fa;
}
@media (min-width: 576px) {
    .apc-hero-section .play-button {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem;
    }
}
.apc-hero-section .play-button:hover {
    background-color: rgba(222, 226, 230, 0.5);
}
.apc-hero-section.bg-dark .play-button:hover {
    background-color: rgba(73, 80, 87, 0.5);
}
.apc-hero-section .play-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.apc-hero-section .play-icon {
    width: 1rem;
    height: 1rem;
}
@media (min-width: 576px) {
    .apc-hero-section .play-icon {
        width: 1.25rem;
        height: 1.5rem;
    }
}
.apc-hero-section .spacer {
    height: 3rem;
}
@media (min-width: 576px) {
    .apc-hero-section .spacer {
        height: 4rem;
    }
}
@media (min-width: 768px) {
    .apc-hero-section .spacer {
        height: 6rem;
    }
}
.apc-main-start-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Line styling */
.apc-main-start-line {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
}

.apc-main-start-line svg {
    width: 100%;
    height: 100%;
    stroke: #111;
    fill: none;
    stroke-width: 2;
}

.apc-main-start-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.apc-main-start-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #444;
}

.apc-main-start-step {
    margin-bottom: 50px;
}

.apc-main-start-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.apc-main-start-step-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.apc-main-start-step-description {
    font-size: 15px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .apc-main-start-title {
    font-size: 26px;
    }
    .apc-main-start-step-title {
    font-size: 20px;
    }
}
.apc-sections {
    text-align: center;
    padding: 60px 20px;
}

.apc-sections img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.apc-sections h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.apc-sections p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.apc-sections .apc-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apc-sections .apc-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .apc-sections h2 {
        font-size: 1.8rem;
    }

    .apc-sections p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .apc-sections {
        padding: 50px 15px;
    }

    .apc-sections h2 {
        font-size: 1.6rem;
    }

    .apc-sections p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .apc-sections .apc-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .apc-sections {
        padding: 40px 10px;
    }

    .apc-sections h2 {
        font-size: 1.4rem;
    }

    .apc-sections p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .apc-sections .apc-button {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .apc-sections img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}
        .last-container {
            max-width: 1350px;
            margin: 0 auto;
        }

        .last-section-devices {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            
        }

        .icon-container {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gear-icon {
            width: 100px;
            height: 100px;
            border: 4px solid #FF6B35;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gear-icon::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border: 4px solid #FF6B35;
            border-radius: 20px;
            background: transparent;
            top: -14px;
            left: -14px;
            clip-path: polygon(
                20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 
                20% 100%, 0% 80%, 0% 20%
            );
        }

        .gear-icon::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #FF6B35;
            border-radius: 50%;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .card-icon {
            width: 100px;
            height: 60px;
            border: 4px solid #FF6B35;
            border-radius: 12px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-icon::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 15px;
            border: 3px solid #FF6B35;
            border-radius: 3px;
            left: 8px;
            top: 8px;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            right: 15px;
            top: 15px;
            width: 25px;
            height: 3px;
            background: repeating-linear-gradient(
                90deg,
                #FF6B35 0px,
                #FF6B35 3px,
                transparent 3px,
                transparent 6px
            );
        }

        .card-connection {
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 4px;
            background: #FF6B35;
            border-radius: 2px;
        }

        .card-connection::before,
        .card-connection::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #FF6B35;
            border-radius: 50%;
        }

        .card-connection::before {
            left: -6px;
            top: -2px;
        }

        .card-connection::after {
            right: -6px;
            top: -2px;
        }

        .content {
            flex: 1;
            max-width: fit-content ;
        }

        .content h2 {
            /* color: #FF6B35; */
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        


        @media (max-width: 768px) {
            .last-section-devices {
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 30px 20px;
            }

            .content h2 {
                font-size: 26px;
            }

            .content p {
                font-size: 15px;
            }
        }

        .pos-section-container {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.pos-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.pos-section-card {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pos-section-img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.pos-section-content {
  text-align: left;
}

.pos-section-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pos-section-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .pos-section-wrapper {
    grid-template-columns: 1fr;
  }
}


/* devices */
.our-devices-payment {
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 20px;
}

.our-devices-payment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.our-devices-payment-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
}

.our-devices-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.our-devices-payment-card {
    background: #fff;
    padding: 0;
}

.our-devices-payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.our-devices-payment-icon svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.our-devices-payment-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.our-devices-payment-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .our-devices-payment {
        padding: 40px 16px;
    }

    .our-devices-payment-title {
        font-size: 2rem;
    }

    .our-devices-payment-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


.section.section-industries-devices {
    padding: 60px 0;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.section.section-industries-devices > div {
    background: white;
    padding: auto;
    border-radius: 12px;
}

.section.section-industries-devices > div > div:first-child {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f4;
    border-radius: 8px;
}

.section.section-industries-devices svg {
    width: 24px;
    height: 24px;
    stroke: #374151;
    stroke-width: 1.5;
}

.section.section-industries-devices h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section.section-industries-devices p {
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section.section-industries-devices {
        padding: 40px 16px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section.section-industries-devices > div {
        padding: 24px 20px;
    }
}

.section-order-features-devices {
    min-height: 100vh;
    padding: 4rem 1rem;
}

.section-order-features-devices .container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-order-features-devices .header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-order-features-devices .badge {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-order-features-devices .main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin: 1rem 0 1.5rem;
}

.section-order-features-devices .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.section-order-features-devices .features-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 1;
}

.section-order-features-devices .feature-item {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.section-order-features-devices .feature-item.active {
    background: #fff;
    border-radius: 0.75rem;
}

.section-order-features-devices .feature-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    max-width: 32rem;
    transition: all 0.3s ease;
}

.section-order-features-devices .icon-container {
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: none;
}

.section-order-features-devices .icon-container.active {
    background: #0ea5e9;
    color: #fff;
}

.section-order-features-devices .icon-container.inactive {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.section-order-features-devices .feature-text {
    flex: 1;
}

.section-order-features-devices .feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.section-order-features-devices .feature-title.active {
    color: #111827;
}

.section-order-features-devices .feature-title.inactive {
    color: #374151;
}

.section-order-features-devices .feature-description {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.section-order-features-devices .feature-description.active {
    color: #4b5563;
}

.section-order-features-devices .feature-description.inactive {
    color: #6b7280;
}

.section-order-features-devices .progress-bar {
    margin-top: 1rem;
    background: #fff;
    border-radius: 0.125rem;
    height: 0.25rem;
    overflow: hidden;
}

.section-order-features-devices .progress-fill {
    height: 100%;
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    transition: width 0.1s linear;
    width: 0%;
}

.section-order-features-devices .image-container {
    position: relative;
    order: 1;
    max-width: 32rem;
    margin: 0 auto;
}

.section-order-features-devices .feature-image {
    border-radius: 1rem;
    border: 1px solid #f9fafb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-out;
}

.section-order-features-devices .feature-image.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .section-order-features-devices .main-title {
        font-size: 3rem;
    }

    .section-order-features-devices .features-container {
        flex-direction: row;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 1rem;
        scroll-behavior: smooth;
    }

    .section-order-features-devices .features-container::-webkit-scrollbar {
        display: none;
    }

    .section-order-features-devices .feature-content {
        flex-direction: column;
        max-width: 20rem;
    }

    .section-order-features-devices .icon-container {
        display: block;
    }

    .section-order-features-devices .feature-title {
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-order-features-devices .grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .section-order-features-devices .features-container {
        flex-direction: column;
        gap: 2rem;
        overflow: visible;
        order: 0;
    }

    .section-order-features-devices .feature-content {
        flex-direction: row;
        max-width: 32rem;
    }

    .section-order-features-devices .feature-title {
        margin-top: 0;
    }

    .section-order-features-devices .image-container {
        order: 2;
    }
}


.devices-payment-section-container {
    background-color: #eaf3ff;
    border-radius: 20px;
    padding: 40px;
    max-width: 1350px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.devices-payment-section-title {
    flex: 1;
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
}

.devices-payment-section-text {
    flex: 1.5;
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

@media (max-width: 992px) {
    .devices-payment-section-container {
    flex-direction: column;
    text-align: center;
    }
    .devices-payment-section-title {
    font-size: 2rem;
    }
    .devices-payment-section-text {
    font-size: 1rem;
    }
}

    .our-solution {
      box-sizing: border-box;
     
    }

    /* Section wrapper */
    .our-solution.section {
      padding: 4rem 1.5rem;
      background: #fff;
    }

    .our-solution.container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Heading */
    .our-solution.heading {
      text-align: center;
      margin-bottom: 3rem;
    }

    .our-solution.heading h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 1rem;
    }

    .our-solution.heading p {
      color: #4b5563;
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.6;
      font-size: 1rem;
    }

    /* Content area */
    .our-solution.content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 900px) {
      .our-solution.content {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Image */
    .our-solution.image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    /* Text side */
    .our-solution.text h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 1rem;
    }

    .our-solution.text p {
      color: #4b5563;
      font-size: 1rem;
      line-height: 1.7;
    }
.our-solution-section {
  color: #fff;
  background: #0c0c0c url('../images/pattern-light-1.png') repeat;
  background-size: 100px;
  padding: 20px 20px;
}

.our-solution-section.container {
  max-width: 1350px;
  margin: 0 auto;
}

.our-solution-section.title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
}

.our-solution-section.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our-solution-section.card {
  background: transparent;
  padding: 4px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid white;
}

.our-solution-section.card:hover {
  transform: translateY(-5px);
}

.our-solution-section.icon img {
  width: 62px;
  height: 62px;
  margin-bottom: 15px;
}

.our-solution-section.heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.our-solution-section.text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .our-solution-section.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .our-solution-section.title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  .our-solution-section.grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .our-solution-section.icon img {
    width: 30px;
    height: 30px;
  }
}
  .our_solution {
      max-width: 1350px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .our_solution h2 {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .our_solution p.subtitle {
      text-align: center;
      font-size: 16px;
      color: #555;
      max-width: 750px;
      margin: 0 auto 50px;
    }

    .our_solution .our_solution-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      align-items: flex-start;
    }

    .our_solution .our_solution-item {
      background: #fff;
    }

    .our_solution .our_solution-item img {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .our_solution .our_solution-item h3 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }
.our_solution .our_solution-item p {
  font-size: 1rem; /* base size (16px by default) */
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem; /* relative to font size */
}

/* Tablet */
@media (max-width: 991px) {
  .our_solution .our_solution-item p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .our_solution .our_solution-item p {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 0.875rem;
  }
}

    .our_solution .our_solution-item ul {
      list-style: none;
      padding: 0;
    }

    .our_solution .our_solution-item ul li {
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
      font-size: 15px;
      color: #333;
    }

    .our_solution .our_solution-item ul li::before {
      content: "■";
      position: absolute;
      left: 0;
      color: #00d084; /* green icon */
      font-size: 16px;
      top: 0;
    }
/* Main section container */
.services-dynamics {
  padding: 80px 20px;
  width:100%;
  max-width: 1350px;
  margin: 0 auto;
}

.services-dynamics__container {
  width: 100%;
}

/* Header styling */
.services-dynamics__header {
  margin-bottom: 60px;
  max-width: 800px;
}

.services-dynamics__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.services-dynamics__title-highlight {
  color: #31C159;
}

.services-dynamics__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b7280;
}

.central-payment-solution {
  padding: 80px 20px;
  background: #fff;
}

.central-payment-solution-container {
  max-width: 1350px;
  margin: 0 auto;
}

.central-payment-solution-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.central-payment-solution-item {
  flex: 1 1 30%;
}

.central-payment-solution-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a2540;
}

.central-payment-solution-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.central-payment-solution-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.central-payment-solution-image {
  max-width: 1000px;
}

.central-payment-solution-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.our-solutions-moduls {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
 
}

.our-solutions-moduls.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.our-solutions-moduls.subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}

.our-solutions-moduls.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.our-solutions-moduls.card {
  background: transparent;
  padding: 10px;
}

.our-solutions-moduls.icon {
  font-size: 28px;
  color: #0a9d42;
  margin-bottom: 10px;
}

.our-solutions-moduls.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.our-solutions-moduls.card-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.our-solutions-moduls.link {
  color: #0a9d42;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.our-solutions-moduls.link:hover {
  text-decoration: underline;
}
 .fleux {
    max-width: 1200px;
    margin: 40px auto;
    
    color: #111827;
    padding: 0 20px;
  }

  .fleux-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
  }

  .fleux-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .fleux-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #374151;
    max-width: 700px;
  }

  .fleux-options {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .fleux-option {
    flex: 1 1 220px;
    min-width: 220px;
  }

  .fleux-option-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .fleux-option-description {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #4b5563;
  }

  @media (max-width: 768px) {
    .fleux-options {
      flex-direction: column;
      gap: 20px;
    }
  }


       .unified-loyalty-section {
            max-width: 1350px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .unified-loyalty-tagline {
            color: #4CAF50;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .unified-loyalty-title {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .unified-loyalty-description {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            max-width: 1000px;
            margin: 0 auto 30px;
        }

        .unified-loyalty-details {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        .unified-loyalty-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .unified-loyalty-card {
            background: white;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: left;
        }

        .unified-loyalty-card:hover {
            transform: translateY(-5px);
        }

        .unified-loyalty-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .unified-loyalty-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .unified-loyalty-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .unified-loyalty-card-text {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .unified-loyalty-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .unified-loyalty-section {
                padding: 60px 15px;
            }
            
            .unified-loyalty-title {
                font-size: 36px;
            }
            
            .unified-loyalty-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .unified-loyalty-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .unified-loyalty-title {
                font-size: 28px;
            }
            
            .unified-loyalty-description,
            .unified-loyalty-details {
                font-size: 16px;
            }
        }



 .loyalty_Platform-section {
            max-width: 1350px;
            margin: 0 auto;
            padding: 80px 20px;
            
        }

        /* Updated container to handle 3 separate sections */
        .loyalty_Platform-section-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 120px;
        }

        .loyalty_Platform-section-row:last-child {
            margin-bottom: 0;
        }

        .loyalty_Platform-section-row.reverse {
            direction: rtl;
        }

        .loyalty_Platform-section-row.reverse > * {
            direction: ltr;
        }

        .loyalty_Platform-section-content {
            max-width: 500px;
        }

        .loyalty_Platform-section-tagline {
            color: #31C159;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .loyalty_Platform-section-heading {
            color: #121E3C;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .loyalty_Platform-section-description {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .loyalty_Platform-section-features {
            list-style: none;
        }

        .loyalty_Platform-section-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 12px;
        }

        .loyalty_Platform-section-checkmark {
            width: 20px;
            height: 20px;
            background-color: #31C159;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .loyalty_Platform-section-checkmark::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .loyalty_Platform-section-feature-text {
            color: #121E3C;
            font-size: 16px;
            line-height: 1.5;
	    text-align: left;
        }

        /* Updated image containers for proper positioning */
        .loyalty_Platform-section-image {
            width: 100%;
            height: 400px;
            
            border-radius: 12px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .loyalty_Platform-section-row {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 80px;
            }

            .loyalty_Platform-section-row.reverse {
                direction: ltr;
            }

            .loyalty_Platform-section-heading {
                font-size: 36px;
            }

            .loyalty_Platform-section-image {
                height: 250px;
            }
        }


 why-choose-loyalty-platform */
        .why-choose-loyalty-platform {
            background-color: #f8f9fa;
            padding: 0 50px;
            min-height: 100vh;
        }

        /* Updated container class name */
        .why-choose-loyalty-platform-container {
            max-width: 1350px;
            margin: 0 auto;
	   padding: 30px 20px;
        }

        /* Updated header class name */
        .why-choose-loyalty-platform-header {
            text-align: center;
            margin-bottom: 60px;
        }

        /* Updated subtitle class name */
        .why-choose-loyalty-platform-subtitle {
            color: #7cb342;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Updated title class name */
        .why-choose-loyalty-platform-title {
            color: #2c3e50;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Updated grid class name */
        .why-choose-loyalty-platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        /* Updated card class name */
        .why-choose-loyalty-platform-card {
            background: white;
            padding: 10px 30px;
            border-radius: 12px;
        }

        .why-choose-loyalty-platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        /* Updated icon class name */
        .why-choose-loyalty-platform-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-choose-loyalty-platform-icon svg {
            width: 32px;
            height: 32px;
            fill: #7cb342;
        }

        /* Updated feature title class name */
        .why-choose-loyalty-platform-feature-title {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Updated description class name */
        .why-choose-loyalty-platform-description {
            color: #5a6c7d;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Updated learn more link class name */
        .why-choose-loyalty-platform-learn-more {
            color: #7cb342;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .why-choose-loyalty-platform-learn-more:hover {
            color: #689f38;
        }

        .why-choose-loyalty-platform-learn-more::after {
            content: '→';
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .why-choose-loyalty-platform-learn-more:hover::after {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .why-choose-loyalty-platform-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .why-choose-loyalty-platform-title {
                font-size: 26px;
            }

            .why-choose-loyalty-platform-card {
                padding: 0 25px;
            }
        }

 .why-trust-loyalty-platform {
            display: flex;
            min-height: 500px;
        }

        .why-trust-loyalty-platform-left {
            flex: 1;
            background: url("https://www.modeshift.com/wp-content/uploads/2023/01/Public-Transit-Loyalty-Programs-Can-We-Use-Them-To-Bring-People-On-Board.jpg");
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .why-trust-loyalty-platform-badges {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .why-trust-loyalty-platform-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 16px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 14px;
            font-weight: 600;
        }

        .why-trust-loyalty-platform-v-logo {
            width: 24px;
            height: 24px;
            background: #059669;
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .why-trust-loyalty-platform-soc-badge {
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
            position: absolute;
            top: 20px;
            right: 40px;
        }

        .why-trust-loyalty-platform-phone-mockup {
            border-radius: 20px;
            padding: 20px;
            width: 280px;
            height: 180px;
            margin: 20px auto;
            position: relative;
        }

        .why-trust-loyalty-platform-profile-header {
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 15px;
            color: white;
        }

        .why-trust-loyalty-platform-profile-title {
            font-size: 12px;
            margin-bottom: 8px;
        }

        .why-trust-loyalty-platform-tier {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .why-trust-loyalty-platform-progress-bar {
            background: rgba(255,255,255,0.3);
            height: 4px;
            border-radius: 2px;
            margin-bottom: 12px;
        }

        .why-trust-loyalty-platform-progress-fill {
            background: white;
            height: 100%;
            width: 70%;
            border-radius: 2px;
        }

        .why-trust-loyalty-platform-activity {
            font-size: 10px;
            opacity: 0.9;
        }

        .why-trust-loyalty-platform-notification {
            background: white;
            border-radius: 8px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #374151;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .why-trust-loyalty-platform-receipt-icon {
            width: 24px;
            height: 24px;
            background: #3b82f6;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .why-trust-loyalty-platform-gdpr {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-top: 20px;
            width: fit-content;
        }

        .why-trust-loyalty-platform-eu-flag {
            width: 40px;
            height: 30px;
            background: #003399;
            border-radius: 4px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffcc00;
            font-size: 12px;
        }

        .why-trust-loyalty-platform-gdpr-text {
            font-weight: 600;
            color: #374151;
        }

        .why-trust-loyalty-platform-ccpa {
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 80px;
            height: 80px;
            border: 3px solid #059669;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: white;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .why-trust-loyalty-platform-checkmark {
            color: #059669;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .why-trust-loyalty-platform-ccpa-text {
            font-size: 12px;
            font-weight: 600;
            color: #374151;
        }

        .why-trust-loyalty-platform-right {
            flex: 1;
            background: #1e293b;
            padding: 60px 40px;
            color: white;
        }

        .why-trust-loyalty-platform-subtitle {
            color: #10b981;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .why-trust-loyalty-platform-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
	   color : white;
        }

        .why-trust-loyalty-platform-description {
            font-size: 16px;
            line-height: 1.6;
            color: #cbd5e1;
            margin-bottom: 32px;
        }

        .why-trust-loyalty-platform-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .why-trust-loyalty-platform-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.5;
            color: #cbd5e1;
        }

        .why-trust-loyalty-platform-bullet {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .why-trust-loyalty-platform-cta {
            background: #10b981;
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .why-trust-loyalty-platform-cta:hover {
            background: #059669;
        }

        @media (max-width: 768px) {
            .why-trust-loyalty-platform {
                flex-direction: column;
            }
            
            .why-trust-loyalty-platform-left,
            .why-trust-loyalty-platform-right {
                flex: none;
            }
            
            .why-trust-loyalty-platform-title {
                font-size: 28px;
            }
        }


