﻿body {
    overflow-x: clip;
}

.header-section {
    overflow: hidden;
}

.stats-wrapper {
    right: 32px;
    z-index: 2;
}


.card.flip {
    width: 13rem;
    height: 10rem;
    padding: 0;
    background: transparent;
    perspective: 1000px;
    box-sizing: border-box;
}

    .card.flip .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .card.flip:hover .card-inner {
        transform: rotateY(180deg);
    }


    .card.flip .card-front,
    .card.flip .card-back {
        position: absolute;
        inset: 0; 
        border-radius: 12px;
        backface-visibility: hidden;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 12px; 
    }

  
    .card.flip .card-front {
        background: #2C3E50;
        color: #fff;
    }

        .card.flip .card-front .icon-placeholder {
            width: 40px;
            height: 40px; 
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .card.flip .card-front p {
            margin: 0;
            align-self: flex-end; 
            text-align: right;
            font-family: 'Montserrat';
            font-size: 20px;
            font-weight: 500;
            line-height: 1.3;
        }

    .card.flip .card-back {
        background: #B8F2E6;
        color: #3b3b3b;
        transform: rotateY(180deg);
        border-radius: 12px;
        display: flex;
        flex-direction: column; 
        justify-content: space-between; 
        padding: 12px;
        font-family: 'Montserrat';
    }

        .card.flip .card-back .back-top {
            font-size: 22px;
            font-weight: 500;
            align-self: flex-start;
            
        }

        .card.flip .card-back .back-bottom {
            font-size: 15px;
            font-weight: 500;
            align-self: flex-end;
            text-align: right;
            font-family: 'Montserrat';
        }

    .card.flip:focus-within .card-inner,
    .card.flip .card-inner:focus {
        transform: rotateY(180deg);
    }

:root {
    --bg: #3B3B3B;
    --card-bg: rgba(255,255,255,0.06);
    --card-border: rgba(255,255,255,0.12);
    --muted: #ddd;
    --accent: #2EA7FF;
}

body {
    margin: 0;
    font-family: 'Lato',system-ui,Arial;
    background: #fff;
}

.header-section {
    position: relative;
    background-image: url('../../../images/index/landing page header image.jpg');
    border-radius: 16px;
    margin: 80px auto;
    padding: 62px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    margin-top: 5.9rem;
    margin-left: 0.7rem;

}

.demo-hover:hover {
    background: #fff !important;
    color: #000 !important;
}



.header-content {
    max-width: 50%;
    margin-top: 140px;
}

    .header-content h1 {
        font-size: 49px;
        margin: 0 0 12px;
        line-height: 1.05;
        font-weight: 700;
        font-family: 'Lato',system-ui,Arial;
    }

    .header-content p {
        color: var(--muted);
        margin: 0 0 18px;
        font-size: 19px;
        font-family: 'Lato',system-ui,Arial;
    }

    .header-content button {
        background: transparent;
        border: 1px solid #fff;
        color: #fff;
        padding: 10px 18px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top:1rem !important;
    }

        .header-content button:hover {
            background: #fff;
            color: #3b3b3b;
        }

.stats-wrapper {
    position: absolute;
    top: 56px;
    display: grid;
    grid-template-columns: 180px 180px;
    grid-auto-rows: 150px;
    row-gap: 35px;
    column-gap: 35px;
    align-items: stretch;
    pointer-events: auto;
    right: 32px;
    z-index: 2;
}


.card-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card-top-right {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.card-bottom-right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}


.stat-card {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    padding: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.stat-number {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #e6e6e6;
    margin-top: 6px;
}

.chart {
    width: 100%;
    height: 68px;
    display: block;
}

.mini-btn {
    margin-top: 8px;
    background: #2EA7FF;
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 13px;
    text-align:center;
   
}

.small-note {
    font-size: 12px;
    color: #dfeffb;
    margin-top: 6px;
}

/* responsive - collapse into single column on small screens */
@media (max-width:900px) {
    .header-section {
        padding: 40px;
        min-height: 360px;
        width: 95%;
    }

    .header-content {
        margin-top: 24px;
        max-width: 100%;
    }

    .stats-wrapper {
        position: static;
        display: flex;
        gap: 12px;
        margin-top: 18px;
    }

    .stat-card {
        width: 170px;
        height: auto;
    }
}


@media (max-width: 1024px) {
    .header-section {
        padding: 40px;
        min-height: 42rem;
        width: 97%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10rem;
        margin-left: 15px;
    }

    .header-content {
        margin-top: 15rem;
        max-width: 100%;
    }

        .header-content h1 {
            font-size: 4rem;
            line-height: 1.1;
        }

        .header-content p {
             font-size: 2rem;
        font-family: 'Montserrat';
        color: #fefefe;
        line-height: 3rem;
        margin-top:1rem;
        }

        .header-content a.button {
            padding: 8px 16px;
            font-size: 1.9rem;
        }

    .stats-wrapper {
        position: static;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 20px;
    }

    .stat-card {
        width: calc(50% - 8px); 
        height: auto;
        padding: 12px;
    }
    .card-left{
        display:none;
    }
    .card-top-right {
        display: none;
    }
    .card-bottom-right{
        display:none;
    }
    .card.flip .card-back .back-bottom {
        font-size: 38px;
        font-weight: 500;
        align-self: flex-end;
        text-align: right;
        font-family: 'Montserrat';
        line-height: 1.6;
    }  
}

@media (max-width: 768px) {
    .header-section {
        padding: 24px;
        min-height: auto;
    }

    .header-content h1 {
        font-size: 3px;
        line-height: 1.2;
    }

    .header-content p {   
        font-size: 1.8rem;
        font-family: 'Montserrat';
        color: #fefefe;
        line-height: 3rem;
    }

    .header-content a.button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .stat-card {
        width: 100%;
    }
}







.second-section {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 80px auto;
    width: 100%;
    position: relative;
    margin-left: 4rem;
}

.image-box {
    position: relative;
    width: 475px;
    height: 500px;
    background: #ddd;
    border-radius: 12px;
    margin-left: 50px;
}

.images img {
    height: 38rem;
    width: 39rem;
    max-width: 42rem;
}


.stat-overlay {
    position: absolute;
    right: 55.5rem;
    bottom: 1.4rem;
    background: linear-gradient( 90deg, #2C3E50 1%, #2F4256 18%, #32475B 36%, #4B6A88 68%, #648DB6 100% );
    color: #fff;
    padding: 1.1rem;
    border-radius: 12px;
    width: 14rem;
    height: 12rem;
    font-size: 1.25rem;
    font-weight: 600;
}


    .stat-overlay span {
        font-size: 64px;
        font-weight: 700;
        display: block;
        margin-bottom: 11px;
        margin-top: 25px;
        font-family: 'Montserrat';
    }

    .stat-overlay p {
        font-size: 18px;
        font-weight: 500;
        display: block;
        margin-bottom: 11px;
        margin-top: 25px;
        font-family: 'Montserrat';
    }

.text-box {
    flex: 1;
}

    .text-box h2 {

        margin-right: 10rem;
        font-size: 2.2rem;
        margin-left: 3rem;
        white-space: nowrap;
        font-weight: 900;
        line-height: 3rem;
        font-family: unset;
        color: #3B3B3B;
    }

    .text-box p {

        font-size: 18px;
        line-height: 1.8;
        margin: 0 0 16px;
        color: #3b3b3b;
        margin-left: 50px;
        text-align: justify;
        font-family: unset;
        width: 72%;
    }

/* ---- RESPONSIVE ----- */


@media (max-width: 1200px) {
    .second-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .images {
        margin-left: 0;
    }

        .images img {
            width: 90%;
            height: auto;
        }

    .stat-overlay {
        position: absolute;
        bottom: 16px;
        right: 10%;
        width: 180px;
        height: 150px;
        font-size: 14px;
    }

        .stat-overlay span {
            font-size: 48px;
            margin-top: 15px;
        }

        .stat-overlay p {
            font-size: 16px;
            margin-top: 10px;
        }

    .text-box h2 {
        margin-left: 0;
        text-align: center;
        font-size: 2rem;
        line-height: 2.5rem;
        white-space: normal;
    }

    .text-box p {
        margin-left: 0;
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stat-overlay {
        width: 160px;
        height: 130px;
        font-size: 13px;
        bottom: 10px;
        right: 5%;
    }

        .stat-overlay span {
            font-size: 36px;
            margin-top: 10px;
        }

        .stat-overlay p {
            font-size: 14px;
            margin-top: 5px;
        }

    .text-box h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .text-box p {
        font-size: 15px;
        width: 95%;
    }
}


/* responsive */
@media (max-width:900px) {
    .header-section {
        padding: 40px;
        min-height: 360px;
        width: 95%;
        flex-direction: column;
        
    }

    .header-content {
        margin-top: 24px;
        max-width: 100%;
    }

    .stats-wrapper {
        position: static;
        display: flex;
        gap: 12px;
        margin-top: 18px;
    }

    .stat-card {
        width: 170px;
        height: auto;
    }

    .second-section {
        flex-direction: column;
    }

    .text-box {
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .second-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin: 40px auto;
        width: 100%;
    }

    .images {
        position: relative;
        margin: 0;
    }

        .images img {
            width: 60rem;
            height: 55rem;
            max-width: 60rem;
        }

    .stat-overlay {
        position: absolute;
        bottom: 16px;
        right: 48px;
        width: 269px;
        height: 208px;
        margin-right: 0 !important;
        padding: 12px;
        font-size: 17px;
        display: none;
    }

        .stat-overlay span {
            font-size: 2.5rem;
            margin-top: 15px;
            margin-bottom: 8px;
        }

        .stat-overlay p {
            margin-top: 12px;
            font-size: 21px !important;
            margin-top: 2rem;
        }

    .text-box {
        text-align: center;
        margin: 0 14px;
    }

        .text-box h2 {
            font-size: 3.5rem !important;
            margin-left: 3rem !important;
            margin-right: 0 !important;
            line-height: 4.5rem;
            margin-top: 3rem;
            font-weight: 700;
            text-align: left;
            font-family: 'Lato';
        }

        .text-box p {
            /*font-size: 30px;*/
            font-size: 32px;
            margin-left: 41px !important;
            margin-right: 0 !important;
            text-align: justify;
        }
}

@media (max-width: 768px) {
    .images img {
        width: 56rem;
        height: 46rem;
    }

    .stat-overlay {
        width: 170px;
        height: 140px;
        font-size: 13px;
        bottom: 12px;
        right: 12px;
    }

        .stat-overlay span {
            font-size: 2rem;
            margin-top: 10px;
        }

        .stat-overlay p {
           
            margin-top: 12px;
            font-size: 21px !important;
            margin-top: 2rem;
        }

    .text-box h2 {
        font-size: 2.5rem !important;
        margin-left: -24rem !important;
        margin-right: 0 !important;
        line-height: 2.8rem;
        margin-top: 3rem;
        font-weight: 800;
    }

    .text-box p {
        font-size: 1.8rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: justify;
    }
}

@media (max-width: 1280px) {
    .stat-overlay {
        right: 42rem;
        bottom: 1.2rem;
    }
}
@media (max-width: 1366px) {
    .stat-overlay {
        right: 48rem;
        bottom: 1.3rem;
    }
}
@media (max-width: 1440px) {
    .stat-overlay {
        right: 55.5rem;
    }
}

@media (min-width: 1920px) {
    .stat-overlay {
        right: 60rem;
        bottom: 1.6rem;
    }
}



/* Third Section */
.third-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    background: #fff;
    gap: 60px;
}

.third-card {
 
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-left: -4.5rem;
    margin-top: -24px;
    height: 37rem;
    width: 43rem;
    max-width: 43rem;
}

.third-left h2 {

    font-size: 2.2rem;
    font-weight: 900;
    color: #3b3b3b;
    font-family: unset;
    width: 59%;
    margin-left: 7rem;
}




.third-left .description {
  
    font-size: 18px;
    color: #3b3b3b;
    margin-bottom: 16px;
    line-height: 1.6;
    margin-top: -7px;
    font-family: unset;
}

.datasheet-btn {
    background: linear-gradient(90deg, #2C3E50, #648DB6);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -26px;
    width: 250px;
    margin-bottom: 1rem;
}

.feature-boxes {
    display: flex;
    gap: 20px;
    margin-top: 17px;
    text-align: left;
}

.feature-box {
    flex: 1;
    background: #fAfAfA;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    font-size: 19px;
    color: #3b3b3b;
    line-height: 1.8;
    font-family: 'Lato', system-ui, Arial;
    font-weight: 500;
    height: 15.5rem;
    margin-top: 1rem;
    font-family: unset;
}


    .feature-box .icon {
        font-size: 24px;
        margin-bottom: 10px;
       
        margin-right: 127px;
        height: 30px;
        width: 30px;
        margin-right: 127px
    }

.third-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-placeholder {
    height: 527px;
    width: 513px;
    margin-top: -3rem;
}
  

.third-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 59px 9%;
    background: #fff;
    gap: 68px;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.down-icon {
    width: 25px; 
    height: auto;
}



/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .third-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
        align-items: center;
        min-height: 100vh;
        width: 91%;
        margin-left: 0.9rem;
    }

    .third-card {
        /*        max-width: 120%;
        width: 106%;
        padding: 32px;
        text-align: center;
        height: 52rem;
        margin-left: 39px;*/


        max-width: 110%;
        width: 110%;
        padding: 32px;
        text-align: center;
        height: 57rem;
        margin-left: 50px;
    }
    .third-left h2 {
        font-size: 3.5rem;
        font-weight: 700;
        color: #3b3b3b;
        font-family: lato;
        width: 68%;
    }
    .third-left h {
        font-size: 4rem;
        color: #3b3b3b;
    }
    .feature-box {
        height: 27rem;
    }
        .feature-box .icon {
            height: 70px;
            width: 60px;
        }
        .feature-box p {
            font-size: 35px;
            color: #3b3b3b;
        }
    .third-right .image-placeholder img {
        width: 61rem !important;
        height: auto !important;
        margin-top: 2rem;
        max-width: 62rem !important;
        margin-left: -2rem;
    }
    .third-left .subtitle,
    .third-left .description {
        font-size: 35px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .image-placeholder {
        max-width: 120%;
        width: 106%;
        padding: 32px;
        text-align: center;
        height: 52rem;
        margin-left: 39px;
    }
    .datasheet-btn {
        background: linear-gradient(90deg, #2C3E50, #648DB6);
        color: #fff;
        border: none;
        padding: 16px 24px;
        border-radius: 30px;
        font-size: 25px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: -26px;
        width: 300px;
        margin-bottom: 1rem;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .third-section {
        padding: 40px 4%;
        gap: 30px;
        min-height: 120vh;
    }

    .third-card {
        width: 100%;
        padding: 20px;
    }

    .third-left h {
       
        font-size: 4rem;
        color: #3b3b3b;
    }

    .third-left .subtitle,
    .third-left .description {
        font-size: 2rem;
        color: #3b3b3b;
    }

    .datasheet-btn {
        width: 160px !important;
        font-size: 15px;
    }

    .feature-box {
        gap: 16px;
        height: 27rem;
    }
        .feature-box .icon {
            height: 70px;
            width: 60px;
        }
        .feature-box p {
            font-size: 34px;
            color: #3b3b3b;
            font-size: 5rem;
            text-align: center !important;
        }

    .third-right .image-placeholder img {
        width: 100% !important;
        height: auto !important;
        margin-top: 6rem;
    }
}



    /* Fourth Section */

.fourth-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 90%;
    margin: 80px auto;
}

.product-box {
    position: relative;
    width: 43rem;
    max-width: 45rem;
    height: 32rem;
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #B8F2E6;
    background-image: url('/images/Index/Group 244.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-image 0.4s ease-in-out; 
}

.product-box {
    background-repeat: no-repeat;
    background-size: auto 92%;
    background-position: center 50%;
}


.dropdown {
    position: relative;
    z-index: 2; 
}

.dropbtn {
    background: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 5px;
    min-width: 290px;
}
 .dropdown-content a {
        display: block;
        padding: 10px 14px;
        text-decoration: none;
        color: #3b3b3b;
        font-size: 17px;
    }

 .dropdown-content a:hover {
            background: #f2f2f2;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.product-text {
    max-width: 500px;
}

    .product-text h2 {
        font-size: 2.2rem;
        line-height: 3rem;
        font-weight: 900;
        color: #3b3b3b;
        white-space: nowrap;
        font-family: unset;
    }

.subtext {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3b3b3b;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: unset;
    color: #3b3b3b;
}

    .features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 18px;
    }

.closing {
    font-size: 18px;
    font-family: unset;
    color: #3b3b3b;
}
.features img {
    width: 18px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .fourth-section {
        flex-direction: column;
        text-align: center;
    }

    .product-box {
        width: 100%;
        height: 26rem;
    }

    .product-text {
        max-width: 100%;
    }
}




@media (max-width: 1024px) {
    .fourth-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin: 40px auto;
        width: 97%;
    }
    .features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        color: #3b3b3b;
        font-family: 'Montserrat';
        margin-left: -4rem !important;
    }
    .product-box {
        width: 60rem;
        padding: 16px;
        margin-left: 2px !important;
        height: 50rem;
        margin-top: 14rem;
        border-radius: 2rem;
        max-width: 60rem;
    }

    .dropdown .dropbtn {
        width: 27%;
        font-size: 30px;
    }

    .product-text {
        margin-left: 13rem !important;
        /* max-width: 93%; */
        margin-top: 2rem;
    }

        .product-text h2 {
            font-size: 3.5rem !important;
            line-height: 5rem !important;
            margin-right: 0px !important;
            margin-left: -14rem;
            font-weight: 600;
            margin-bottom: 3rem;
        }

        .product-text .subtext {
            font-size: 35px;
            margin-left: -11rem;
        }

    .features li {
        font-size: 35px;
        padding-left: 0px;
        line-height: 3rem;
        white-space: nowrap;
        line-height: 5rem;
        margin-left: -2rem;
        font-family: 'Lato';
    }

        .features li img {
            width: 5%;
            margin-right: 4%;
        }

    .product-text .closing {
        font-size: 35px;
        line-height: 2;
        margin-left: -14rem;
    }

    .down-icon {
        width: 60px;
        height: auto;
    }

    .dropdown-content a {
        display: block;
        padding: 16px 26px;
        text-decoration: none;
        color: #3b3b3b;
        font-size: 22px;
    }

}
@media (max-width: 768px) {
    .product-box {
        width: 100%;
        padding: 12px;
    }
    .features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        color: #3b3b3b;
        font-family: 'Montserrat';
        margin-left: -4rem !important;
    }
    .dropdown .dropbtn {
        font-size: 13px;
    }

    .product-text {
        max-width: 100%;
    }

        .product-text h2 {
            font-size: 1.6rem !important;
            line-height: 2.2rem !important;
        }

        .product-text .subtext {
            font-size: 0.9rem;
        }

    .features li {
        font-size: 0.85rem;
        padding-left: 16px;
    }

        .features li img {
            width: 6%;
            margin-right: 4%;
        }

    .product-text .closing {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}



/* Fifth Section */
.platform-section {
    background: #2C3E50;
    border-radius: 26px;
    padding: 60px 8%;
    color: #fff;
    margin: 80px auto;
    width: 92%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.platform-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    flex-shrink: 0;
    font-family: unset;
    color: #fbfbfb;
    white-space: nowrap;
    margin-left: 6rem;
}

    .platform-slider {
    flex: 1;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
    scrollbar-width: none;
}

.platform-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    min-height: calc(100vh - 160px); 
    scroll-snap-align: start; 
}


.platform-image {
    flex: 1;
    height: 325px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 18px;
    font-weight: 600;
}
    .platform-image img {
        max-width: 211%;
        height: 109%;
        margin-left: 10px
    }

.platform-text {
    flex: 1;
}

    .platform-text h3 {

        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 12px;
        line-height: 40px;
        font-family: unset;
    }

    .platform-text p {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.6;
        font-family: unset;
    }

    .platform-text ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        font-family: unset;
    }

        .platform-text ul li {
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.5;
            white-space: nowrap;
            font-family: unset !important;
        }
      
.ai-note {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-arrow {
    display: none;
}

@media (max-width: 1024px) {
    .platform-section {
        position: relative;
        padding: 40px 3%;
        width: 93%;
        overflow: hidden;
        height: 99rem;
        /* padding-top: 0rem; */
        padding-bottom: 0rem;
    }

    .scroll-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        font-size: 2rem;
        padding: 10px 14px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 5;
        transition: 0.3s ease;
    }

        .scroll-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .scroll-arrow.left {
            left: 10px;
        }

        .scroll-arrow.right {
            right: 10px;
        }

    .platform-slider {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 20px;
        scrollbar-width: none;
    }

        .platform-slider::-webkit-scrollbar {
            display: none;
        }

    .platform-item {
        flex: 0 0 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
/*        background: rgba(255, 255, 255, 0.05);*/
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
    }

    .platform-image {
        width: 100%;
        height: 200px;
    }

        .platform-image img {
            width: 150%;
            height: 100%;
            object-fit: contain;
        }

    .platform-text {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
    .platform-title {
        color: #fbfbfb;
        font-size: 4rem;
        line-height: 6rem;
        margin-left: 0rem;
        white-space: pre-line;
    }
    .platform-text h3 {
        font-size: 2rem;
        color: #f1f1f1;
        line-height: 2.4rem;
        margin-top: 1rem;
    }

    .platform-text p,
    .platform-text ul li {
        font-size: 1.8rem;
        color: #fbfbfb;
        text-align: justify;
        margin-left: 5rem;
        line-height: 1.9;
    }
}




/* Sixth Section */
.industries-section {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 85%;
    margin: 100px auto;
    gap: 60px;
}

.industries-left {
    flex: 1;
    margin-top: 15px;
}

    .industries-left h2 {
        margin-right: 0rem;
        font-size: 2.2rem;
        line-height: 3rem;
        font-family: unset;
        color: #3b3b3b;
        font-weight: 900;
    }

    .industries-left p {
        font-size: 18px;
        line-height: 1.7;
        color: #3b3b3b;
        font-family: unset;
    }

.demo-btn {
    background: transparent;
    border: 1.5px solid #333;
    color: #333;
    padding: 9px 57px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .demo-btn:hover {
        background: #333;
        color: #fff;
    }

.industries-right {
    flex: 1;
}

    .industries-right h3 {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 20px;
        color: #3b3b3b;
        font-family: unset;
    }

    .industries-right ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .industries-right ul li {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 14px;
            color: #3b3b3b;
            padding-bottom: 12px;
            border-bottom: 1px solid #ddd;
            line-height: 15px;
            font-family: unset;
        }

            .industries-right ul li:last-child {
                border-bottom: none;
            }

/*Responsive code for media query*/
@media (max-width: 1024px) {
    .industries-section {
        flex-direction: column;
        width: 98%;
        margin: 60px auto;
        gap: 30px;
    }

    .industries-left, .industries-right {
        flex: 1;
        margin: 0 auto;
        text-align: center;
        width: 88%;
    }

        .industries-left h2 {
            font-size: 3.5rem;
            line-height: 5rem;
            margin-bottom: 16px;
            text-align: left;
            margin-left: -1rem;
            font-weight: 600;
        }

        .industries-left p {
            font-size: 35px;
            line-height: 1.6;
            text-align: justify;
            margin-left: -1rem;
            margin-top: 2rem;
        }

    .demo-btn {
        padding: 10px 20px;
        font-size: 13px;
        display:none;
    }

    .industries-right h3 {
        font-size: 3.5rem;
        font-family: 'Lato';
        text-align: justify;
    }

    .industries-right ul li {
        font-size: 35px;
        line-height: 3.5rem;
        padding-bottom: 10px;
        text-align: left;
        margin-top: 2rem;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .industries-section {
        flex-direction: column;
        width: 95%;
        margin: 40px auto;
        gap: 20px;
    }

    .industries-left h2 {   
        font-size: 4rem;
        line-height: 5rem;
        margin-bottom: 16px;
        text-align: justify;
        margin-left: 1rem;
        font-weight: 600;
    }

    .industries-left p {

        font-size: 34px;
        line-height: 1.6;
        text-align: justify;
        margin-left: 1rem;
    }

    .demo-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .industries-right h3 {
        font-size: 51px;
        margin-left: -18rem;
    }

    .industries-right ul li {
        font-size: 14px;
        line-height: 1.4;
        padding-bottom: 8px;
    }
}
/* Seventh Section */
.video-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 95px;
    margin: 100px auto;
    margin-top: -4rem;
}

.video-box {
    flex: 1;
    height: 550px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 18px;
    font-weight: 600;
}

.custom-video {
    width: 500px;
    height: 500px;
}

    .video-text {
        flex: 1;
    }

    .video-text h3 {

        font-size: 2.2rem;
        font-weight: 900;
        font-family: unset;
        line-height: 3rem;
        color: #3b3b3b;
    }

    .video-text p {
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 1.5;
        color: #3b3b3b;
        font-family: unset;
    }

    .video-text ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        color: #3b3b3b;
    }

        .video-text ul li {
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.5;
            color: #3b3b3b;
            font-family: unset;
        }


/*   Mobile or tab responsive */
@media (max-width: 1024px) {
    .video-section {
        flex-direction: column; 
        width: 90%;
        margin: 60px auto;
        gap: 30px;
    }

    .video-box, .video-text {
        flex: 1;
        width: 100%;
    }

    .video-box {
        height: 400px;
    }

    .video-text h3 {
        font-size: 3.5rem;
        line-height: 5rem;
        font-weight: 600;
        margin-left: 2rem;
    }

    .video-text p {
        font-size: 35px;
        line-height: 1.5;
        text-align: justify;
        font-weight: 600;
        margin-left: 2rem;
    }

    .video-text ul li {
        font-size: 35px;
        line-height: 2.5;
        text-align: left;
        margin-bottom: 12px;
        margin-left: 2rem;
        white-space: nowrap;
    }
    .video-text ul li img{
        display:none;
    }
    .custom-video {
            width: 800px;
            height: 800px;
     }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .video-section {
        flex-direction: column;
        width: 95%;
        margin: 40px auto;
        gap: 20px;
    }

    .video-box {
        height: 300px;
    }

    .video-text h3 {
        font-size: 3rem;
        line-height: 6rem;
        text-align: justify;
        font-weight: 800;
        margin-left: 3rem;
    }

    .video-text p {
        font-size: 23px;
        line-height: 1.5;
        text-align: justify;
        font-weight: 600;
        margin-left: 3rem;
    }

    .video-text ul li {
        font-size: 20px;
        line-height: 2.4;
        text-align: justify;
        margin-bottom: 12px;
        margin-left: 3rem;
    }
}

/* Eighth Section */
.seventh-section {
    padding: 68px 4.5%;
    margin-top: -8rem;
}

.seventh-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    color: #3b3b3b;
    gap: 40px;
}

.seventh-left {
    flex: 1;
}

    .seventh-left h2 {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 16px;
        line-height: 3rem;
        font-family: unset;
    }

    .seventh-left p {
       margin-bottom: 14px;
        line-height: 1.6;
        color: #3b3b3b;
        font-size: 18px;
        font-family: unset;
    }

.seventh-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
    column-gap: 30px;
    padding-top: 30px;
    font-size: 18px;
    font-family: unset;
    color: #3b3b3b;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-icon {
    max-width: 122%;
    height: 58%;
    margin-top: 5% !important;
}
.icon-box img {
    max-width: 122%;
    height: 58%;
    margin-top: 5%;
}
.icon-box {
    width: 45px;
    height: 43px;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
    background: #B8F2E6 !IMPORTANT;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .seventh-section {
        padding: 68px 5.5%;
        margin-top: -1rem;
    }

    .seventh-card {
        flex-direction: column; 
        padding: 30px;
        gap: 30px;
    }

    .seventh-left {
        text-align: center;
    }

        .seventh-left h2 {
            font-size: 3.5rem;
            line-height: 5rem;
            text-align: justify;
            font-weight: 600;
        }

        .seventh-left p {
            font-size: 35px;
            line-height: 4.5rem;
            text-align: left;
        }

    .seventh-right {
        grid-template-columns: 1fr; 
        row-gap: 29px;
        column-gap: 0;
        padding-top: 20px;
       
    }

    .feature p {
        text-align: left;
        font-size: 35px;
        line-height: 4rem;
        white-space: nowrap;
    }
    .icon-box img {
        max-width: 128%;
        height: 70%;
        margin-top: 5%;
    }
    .icon-box {
        width: 70px;
        height: 60px;
        flex-shrink: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -1rem;
        background: #B8F2E6 !IMPORTANT;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .seventh-card {
        padding: 20px;
        gap: 20px;
    }

    .seventh-left h2 {
        font-size: 3.7rem;
        line-height: 5rem;
        text-align: justify;
        font-weight: 700;
    }

    .seventh-left p {
        font-size: 29px;
        line-height: 3.5rem;
        text-align: justify;
        font-weight: 500;
    }

    .seventh-right {
        grid-template-columns: 1fr; 
        row-gap: 20px;
        column-gap: 0;
        padding-top: 20px;
    }

    .feature p {
       
        font-size: 29px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
    }
}

/* RESULT section*/
.results-section {
    padding: 60px 8%
}

.results-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 250px;
}

.results-text {
    flex: 1;
    color: #3b3b3b;
    margin-top: 15px;
    margin-left: 20px;

}

    .results-text h2 {
        font-size: 2.2rem;
        margin-right: 3rem;
        font-weight: 900;
        line-height: 3rem;
        font-family: unset;
    }

    .results-text h4 {
        margin-bottom: 10px;
        font-size: 18px;
        color: #3b3b3b;
        font-family: unset;
        font-weight: 500;
    }

    .results-text ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        font-size: 18px;
        white-space: nowrap;
        font-family: unset;
        color: #3b3b3b;
    }

        .results-text ul li {
            margin-bottom: 8px;
            font-size:18px;
        }
    .results-text p {
        font-size: 18px;
        text-align: justify;
        font-family: unset;
        font-weight: 500;
    }

    .results-cards {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
        column-gap: 0px;
        margin-right: 4rem;
    }

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 30px;
    justify-content;
    center;
}

.card {
    background: #2C3E50;
    color: #fff;
    border-radius: 12px;
    height: 100px;
    width: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  push content apart 
    align-items: flex-start;  align items to the left 
    padding: 12px;
    position: relative;
}

 Icon stays top-left 
.icon-placeholder {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 6px;
}

Text moves bottom-right
.card p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    align-self: flex-end;
    text-align: right;
    line-height: 1.3;
    font-family: 'Montserrat';
}

.card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    text-align: right;
}

.icon-placeholder {
    width: 40px;
    height: 40px;
/*background: #ffffff;*/
    border-radius: 6px;
    margin-bottom: 8px;
}
    .icon-placeholder img {
        max-width: 130%;
        height: 86%;
        margin-left: 10%
    }


/*RESPONSIVE*/
    @media (max-width: 1024px) {
        .results-container {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 20px;
    }

    .results-text {
        text-align: center;
        margin: 0;
    }
        .results-text h2 {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 5rem;
            text-align: left;
        }
        .results-text h4 {
            font-size: 35px;
            font-weight: 800;
            text-align: left;
        }

        .results-text ul {
            text-align: justify;
            line-height: 6rem;
            margin-left: 3rem;
        }
            .results-text ul li {
                font-size: 35px;
                color: #3b3b3b;
                white-space: normal;
                margin-left: -2.7rem;
            }

                .results-text ul li img{
                    display:none;
                }

                .results-text p {
                    font-size: 32px;
                    line-height: 3rem;
                    text-align: justify;
                    margin-left: 1rem;
                    font-family: 'Lato';
                }
    .results-cards {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
/*        gap: 27px;*/
        gap: 82px;
        margin-top: 3rem;
    }

    .card {
        width: 15%; 
        height: 110px;
    }
        .card.flip {
           
            width: 23rem;
            height: 19rem;
        }
            .card.flip .card-front p {
                font-size: 3.4rem;
            }
            
                .icon-placeholder img {
                    width: 5rem;
                    height: 4rem;
                    margin-top: 1rem;
                    margin-left: 1rem;
                }

}

/* Extra Small Mobile */
@media (max-width: 600px) {
    .card {
        width: 48%;
        height: 95px;
    }
}






/* ====== Desktop Default View ====== */
.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

/* Container */
.action-container {
    text-align: left;
    font-family: unset;
}

    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.4rem;
        white-space: nowrap;
        font-family: unset;
    }

    .action-container p {
        font-size: 21px;
        margin-top: -22px;
        color: #3b3b3b;
        font-family: unset;
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.action-card {
    background: #fff;
    display: flex;
    align-items: center; 
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem; 
}

    .action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

/* Icon box */
.icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
}

.card-content p {
    font-size: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
    font-family: unset;
}

/* ===  Mobile & Tablet View  === */
@media (max-width: 1024px) {
    .action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 94%;
    }

    .action-container h2 {
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 32px;
        color: #3b3b3b;
        /* margin-left: 3rem; */
        line-height: 3rem;
    }
    .action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .icon-boxs {
       
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .card-content {
        text-align: left;
    }

        .card-content h3 {
            font-size: 44px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 30px;
            margin-top: 5px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-weight: 500;
        }
}
