@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    font-family: "Lato", sans-serif;
    color: var(--theme-color-4);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: none;
}
:focus
{
    outline: none;
    border: none;
}
:root
{
    --theme-color-1: #ffffff;
    --theme-color-2: #fd8d00;
    --theme-color-3: #14213b;
    --theme-color-4: #000000;
    --content-width: 1440px;
    --hero-section-height: calc(100vh - 114px);
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color-2);
}

/* Section Reset - Remove default margins and spacing */
.section {
    margin: 0;
    padding: 0;
}

/* Specific section spacing control */
.section + .section {
    margin-top: 0;
}

@media screen and (min-width: 1440px)
{
    .container
    {
        padding: 0px 16px;
        margin: 0px calc((100vw - var(--content-width)) / 2);
    }
    .container-mgl
    {
        padding-left: 16px;
        margin-left: calc((100vw - var(--content-width)) / 2);
    }
    .container-mgr
    {
        padding-right: 16px;
        margin-right: calc((100vw - var(--content-width)) / 2);
    }
}

@media screen and (max-width: 1440px)
{
    .container
    {
        margin: 0px 16px;
    }
    .container-mgl
    {
        margin-left: 16px;
    }
    .container-mgr
    {
        margin-right: 16px;
    }
}

/*#region Miscellaneous*/
h1, h2, h3, h4, h5, h6
{
    font-weight: 600;
}
.text-center
{
    text-align: center;
}
.text-right
{
    text-align: right;
}
.cursor-pointer
{
    cursor: pointer;
}
.hidden
{
    display: none;
}
/*#endregion*/

/*#region Colors*/
.bg-color-1
{
    background-color: var(--theme-color-1);
}
.bg-color-2
{
    background-color: var(--theme-color-2);
}
.bg-color-3
{
    background-color: var(--theme-color-3);
}
.bg-color-4
{
    background-color: var(--theme-color-4);
}
.color-1
{
    color: var(--theme-color-1);
}
.color-2
{
    color: var(--theme-color-2);
}
.color-3
{
    color: var(--theme-color-3);
}
.color-4
{
    color: var(--theme-color-4);
}
.color-grey
{
    color: rgb(96, 96, 96);
}
.color-white-80
{
    color: hsl(0, 0%, 80%);
}
/*#endregion*/

/*#region Position*/
.relative
{
    position: relative;
}
.absolute
{
    position: absolute;
}
.fixed
{
    position: fixed;
}
.sticky
{
    position: sticky;
}
/*#endregion*/

/*#region Width*/
.w100-percent
{
    width: 100%;
}
.w100-vw
{
    width: 100vw;
}
/*#endregion*/

/*#region Height*/
.h100-percent
{
    height: 100%;
}
.h100-vh
{
    height: 100vh;
}
/*#endregion*/

/*#region Flex*/
.flex
{
    display: flex;
}
.flex-column
{
    flex-direction: column;
}
.flex-row
{
    flex-direction: row;
}
.flex-wrap
{
    flex-wrap: wrap;
}
.justify-center
{
    justify-content: center;
}
.justify-between
{
    justify-content: space-between;
}
.justify-end
{
    justify-content: end;
}
.align-center
{
    align-items: center;
}
.align-start
{
    align-items: start;
}
.align-end
{
    align-items: end;
}
.gap-8
{
    gap: 8px;
}
.gap-16
{
    gap: 16px;
}
.gap-32
{
    gap: 32px;
}
.gap-64
{
    gap: 64px;
}
.gap-72
{
    gap: 72px;
}
.gap-128
{
    gap: 128px;
}
/*#endregion*/

/*#region Margins*/
.my-auto
{
    margin-top: auto;
    margin-bottom: auto;
}
.my-8
{
    margin-top: 8px;
    margin-bottom: 8px;
}
.my-16
{
    margin-top: 16px;
    margin-bottom: 16px;
}
.my-32
{
    margin-top: 32px;
    margin-bottom: 32px;
}
.my-64
{
    margin-top: 64px;
    margin-bottom: 64px;
}
.my-128
{
    margin-top: 128px;
    margin-bottom: 128px;
}
/*#endregion*/

/*#region Paddings*/
.px-8
{
    padding-left: 8px;
    padding-right: 8px;
}
.px-16
{
    padding-left: 16px;
    padding-right: 16px;
}
.px-32
{
    padding-left: 32px;
    padding-right: 32px;
}
.px-64
{
    padding-left: 64px;
    padding-right: 64px;
}
.px-72
{
    padding-left: 72px;
    padding-right: 72px;
}
.px-96
{
    padding-left: 96px;
    padding-right: 96px;
}

.py-8
{
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-16
{
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-32
{
    padding-top: 32px;
    padding-bottom: 32px;
}
.py-64
{
    padding-top: 64px;
    padding-bottom: 64px;
}
.py-72
{
    padding-top: 72px;
    padding-bottom: 72px;
}
.py-96
{
    padding-top: 96px;
    padding-bottom: 96px;
}
/*#endregion*/

/*#region Font Sizes*/
.font-8
{
    font-size: 8px;
}
.font-12
{
    font-size: 12px;
}
.font-14
{
    font-size: 14px;
}
.font-16
{
    font-size: 16px;
}
.font-18
{
    font-size: 18px;
}
.font-20
{
    font-size: 20px;
}
.font-22
{
    font-size: 22px;
}
.font-24
{
    font-size: 24px;
}
.font-28
{
    font-size: 28px;
}
.font-32
{
    font-size: 32px;
}
.font-36
{
    font-size: 36px;
}
.font-48
{
    font-size: 48px;
}
.font-64
{
    font-size: 64px;
}
.font-96
{
    font-size: 96px;
    line-height: 90px;
}
/*#endregion*/

/*#region Border Radius*/
.br-8
{
    border-radius: 8px;
}
.br-16
{
    border-radius: 16px;
}
.br-32
{
    border-radius: 32px;
}
/*#endregion*/

/*#region Buttons*/
.button-1
{
    height: min-content;
    padding: 10px 24px;
    color: var(--theme-color-2);
    background-color: var(--theme-color-1);
    border: 2px solid var(--theme-color-2);
    transition: all ease-in-out 200ms;
    cursor: pointer;
}
.button-1:hover
{
    color: var(--theme-color-1);
    background-color: var(--theme-color-2);
}

.button-2
{
    height: min-content;
    padding: 10px 24px;
    color: var(--theme-color-1);
    background-color: var(--theme-color-2);
    border: 2px solid var(--theme-color-2);
    transition: all ease-in-out 200ms;
    cursor: pointer;
}
.button-2:hover
{
    color: var(--theme-color-2);
    background-color: var(--theme-color-1);
}
.button-2:hover > svg > path
{
    fill: var(--theme-color-2);
}

.button-3
{
    height: min-content;
    padding: 10px 24px;
    color: var(--theme-color-3);
    border: 2px solid var(--theme-color-3);
    transition: all ease-in-out 200ms;
    cursor: pointer;
}
.button-3:hover
{
    color: var(--theme-color-1);
    background-color: var(--theme-color-3);
}
/*#endregion*/

/*#region Cards*/
.card-tag
{
    font-weight: 600;
    color: rgba(20, 33, 59, 0.75);
    background-color: #ffebd1;
    border: 1px solid var(--theme-color-2);
    padding: 2px 8px;
    border-radius: 8px;
    width: fit-content;
}

.card-1
{
    display: flex;
    align-items: start;
    gap: 16px;
    max-width: 342px;
    height: 154px;
    padding: 16px;
    img
    {
        min-height: 64px;
        align-self: center;
    }
    cursor: pointer;
}

:root
{
    --card-2-backgoround: #fdf2e4;
}
.card-2-container
{
    flex-wrap: wrap;
}
.card-2
{
    flex: 0.5;
    position: relative;
    min-height: 512px;
    padding: 64px 32px 32px 32px;
    cursor: pointer;
    background-color: white;
    border: 1px solid #e7e7e7;
    transition: flex ease-in-out 250ms, background-color ease-in-out 250ms;
}
.card-2 > div:nth-of-type(1) > div > p
{
    opacity: 0;
}
.card-2 > div:nth-of-type(1) > div > p::before
{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: width ease-in-out 1000ms,  background-color ease-in-out 250ms;
}
.card-2 > .random-color
{
    height: 16px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 0px 0px 8px 8px;
}
.card-2 > .card-index
{
    opacity: 0.35;
    font-family: "Outfit", sans-serif;
    color: rgb(253, 141, 0);
}
.card-2.card-2-active
{
    flex: 1;
    background-color: var(--card-2-backgoround);
}
.card-2.card-2-active > div:nth-of-type(1) > div > p
{
    opacity: 1;
}
.card-2.card-2-active > div:nth-of-type(1) > div > p::before
{
    width: 0px;
    background-color: var(--card-2-backgoround);
}
.card-2.card-2-active > .arrow-001 > img
{
    transform: rotate(45deg);
}
@media (max-width: 1024px)
{
    .card-2, .card-2.card-2-active
    {
        flex: 1 1 48%;
    }
}

.card-3-container
{
    overflow-x: visible;
    scroll-snap-type: x mandatory;
}
.card-3
{
    min-width: 100%;
}
.card-3 > img
{
    width: 456px;
    height: 356px;
    object-fit: cover;
    border-radius: 8px;
}
@media screen and (max-width: 1024px)
{
    .card-3 > img
    {
        width: 50%;
    }
}
@media screen and (max-width: 840px)
{
    .card-3
    {
        flex-direction: column;
        gap: 16px;
    }
    .card-3 > img
    {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
}
/*#endregion*/

/*#region Hero Section*/
.hero-section
{
    height: auto;
    min-height: calc(50vh);
    /* padding-top: 0;
    margin-top: 0; */
}
.hero-section-overlay
{
    inset: 0 0 0 0;
}
.hero-section-vector
{
    z-index: 3;
}
.hero-section-backdrop
{
    z-index: 2;
}
.hero-section-container
{
    min-height: calc(50vh);
    display: flex;
    flex-direction: column;
}
.hero-section-video
{
    height: 100%;
    width: 100%;
}
.hero-section-content
{
    inset: 0;
    /* margin-top: auto;
    height: min-content; */
    z-index: 4;
}

/* Products showcase styling */
.products-showcase-container {
    position: relative;
    background-image: url('../res/images/human_robot_hand.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(50vh);
    width: 100%;
    box-sizing: border-box;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
}

.products-showcase-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
    width: 100%;
    /* margin-bottom: 40px; */
}

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .products-showcase-container {
        min-height: 70vh;
        padding: 32px 16px !important; /* Override px-64 class */
        background-attachment: scroll;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
    }
    
    /* Fix for flex container inside products-showcase-container */
    .products-showcase-container .flex {
        flex-direction: column;
        padding: 32px 16px !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .products-showcase-container {
        min-height: 60vh;
        padding: 16px 8px !important; /* Override px-64 class */
        background-attachment: scroll;
        background-position: center top; /* Position from top on small screens */
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    /* Fix for flex container inside products-showcase-container */
    .products-showcase-container .flex {
        flex-direction: column;
        padding: 16px 8px !important;
    }
}
/*#endregion*/

#step-marker-wrapper
{
    z-index: 2;
}
#current-step,
#next-step
{
    width: 48px;
    height: 48px;
}
#step-progress-bar
{
    height: 360px;
    width: 8px;
    background-color: #a6a6a6;
}
#step-progress-bar > #step-progress
{
    height: 0;
    background-color: var(--theme-color-3);
}
.step-info-wrapper
{
    height: 100%;
    width: 100%;
    padding: 96px 0px;
    z-index: 1;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.5s, transform 0.5s;
}
.step-info-wrapper.next
{
    opacity: 0;
    transform: translateY(100px);
}
.step-info-wrapper.prev
{
    opacity: 0;
    transform: translateY(-100px);
}
.step-info-left,
.step-info-right
{
    height: 100%;
}
.step-info-left
{
    padding-right: 48px;
}
.step-info-right
{
    padding-left: 48px;
}
.input-box
{
    width: 100%;
    box-shadow: inset 0px 0px 0px 1px #ffebd1;
    border-radius: 8px;
    color: #5A5A5A;
    padding: 8px 16px;
    font-size: 16px;
    height: 48px;
}
.input-box:focus
{
    box-shadow: inset 0px 0px 0px 2px var(--theme-color-2);
}
.input-group-2
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.input-group-2 > label
{
    font-size: 16px;
}

/*#region Lists*/
ul.list-style-one
{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
ul.list-style-one > li
{
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 18px;
    color: rgb(96, 96, 96);
}
ul.list-style-one > li:not(:nth-of-type(1))
{
    margin-top: 8px;
}
ul.list-style-one > li::after
{
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 18px;
    width: 18px;
    background: url(../res/icons/check-001.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    transform: translateY(-50%);
}

ul.list-style-two
{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
ul.list-style-two > ul
{
    margin-top: 16px;
}
/* ul.list-style-two  > ul
{
    padding-left: 20px;
} */
ul.list-style-two > ul > li
{
    margin-top: 8px;
    color: rgb(96, 96, 96);
}
ul.list-style-two > ul > li > span
{
    color: #000000;
}
ul.list-style-three
{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
ul.list-style-three > li 
{
    margin-top: 16px;
}
/* ul.list-style-two  > ul
{
    padding-left: 20px;
} */
ul.list-style-three > li > ul > li
{
    margin-top: 8px;
    color: rgb(96, 96, 96);
}
ul.list-style-three > li > ul > li > span
{
    color: #000000;
}
/*#endregion*/


.arrow-001
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 54px;
    border-radius: 8px;
    background-color: var(--theme-color-3);
    transition: all ease-in-out 200ms;
}
.arrow-001 > img
{
    transition: all ease-in-out 200ms;
}

/* Section 4 - About & Statistics Responsive Fixes */
@media screen and (max-width: 1200px)
{
    .footer-container
    {
        flex-direction: column;
        gap: 64px;
    }
    .footer-container > div
    {
        width: 100% !important;
    }
    .footer-container > div:nth-of-type(2)
    {
        flex-wrap: wrap;
        gap: 32px 128px;
    }
    .section-03-image,
    .section-04-image
    {
        display: none;
    }
    
    /* Fix section 4 layout on tablet */
    .flex.align-center.justify-between {
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
    }
    
    .section-04-content {
        max-width: 100% !important;
        align-items: center !important;
    }
    
    .section-04-content .text-right {
        text-align: center !important;
    }
    
    .section-04-content .flex.justify-end {
        justify-content: center !important;
    }
}

@media screen and (max-width: 1200px)
{
    .section-03-image,
    .section-04-image
    {
        display: none;
    }
}

@media screen and (max-width: 1103px)
{
    .section-03-content,
    .section-04-content
    {
        margin-bottom: 64px;
    }
}

@media screen and (max-width: 768px)
{
    /* Mobile fixes for section 4 */
    .section-04-content .flex.justify-end.gap-32.flex-wrap {
        flex-direction: column;
        gap: 24px !important;
        align-items: center;
    }
    
    .section-04-content .flex.align-center.gap-16 {
        width: 100% !important;
        max-width: 300px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    /* Statistics section mobile fixes */
    .flex.align-center.justify-between.gap-32.flex-wrap {
        flex-direction: column;
        align-items: center;
        gap: 32px !important;
    }
    
    .flex.align-center.justify-between.gap-32.flex-wrap > div {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}

@media screen and (max-width: 624px)
{
    .section-03-content,
    .section-04-content
    {
        margin-bottom: 32px;
    }
    
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
    }
    
    .section-04-content {
        padding: 0 16px;
    }
}

@media screen and (max-width: 800px)
{
    .contact-container
    {
        flex-direction: column;
    }
    .contact-container > div
    {
        width: 100% !important;
    }
}


.details-container
{
    padding: 64px;
}
.details-row-1
{
    gap: 16px 72px;
    align-items: flex-start;
}
.details-row-1 h2
{
    flex: 0 0 20%;
    margin: 0;
}
.details-row-1 > div
{
    flex: 1;
    margin: 0;
}
.details-container p
{
    line-height: 1.6;
    margin-bottom: 16px;
}
.details-container p:last-child
{
    margin-bottom: 0;
}
@media screen and (max-width: 1024px)
{
    .details-container
    {
        padding: 48px 32px;
    }
    .details-row-1
    {
        flex-direction: column;
    }
}

.details-info-side
{
    min-width: fit-content;
    margin-left: 32px;
    padding: 16px 48px 16px 48px;
    border-left: 1px solid #cccccc;
}
.details-info-top
{
    display: none;
    border: 1px solid #cccccc;
}
@media screen and (max-width: 800px)
{
    .details-info-side
    {
        display: none;
    }
    .details-info-top
    {
        display: flex;
    }
}

.overlay
{
    display: none;
    position: fixed;
    inset: 0px 0px 0px 0px;
    padding: 20px;
    background-color: rgba(66, 66, 66, 0.75);
    z-index: 10;
    overflow-y: scroll;
    padding: 20px;
}

/* Section 2 - About Us & Product Logos */
.about-section-container {
    margin-left: 16px;
    margin-right: 16px;
}

@media screen and (min-width: 1440px) {
    .about-section-container {
        margin-left: calc((100vw - var(--content-width)) / 2 + 16px);
        margin-right: calc((100vw - var(--content-width)) / 2 + 16px);
    }
}

        .product-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(253, 141, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            backdrop-filter: blur(10px);
            min-height: 100px;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }
        
        .product-logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(253, 141, 0, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .product-logo-item:hover::before {
            left: 100%;
        }
        
        .product-logo-item:hover {
            background: rgba(253, 141, 0, 0.1);
            border-color: var(--theme-color-2);
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 35px rgba(253, 141, 0, 0.2);
        }
        
        .product-logo {
            width: 48px;
            height: 48px;
            transition: all 0.4s ease;
        }
        
        .product-logo-item:hover .product-logo {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1) rotate(5deg);
        }
        
        .product-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--theme-color-3);
            text-align: center;
            line-height: 1.3;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .product-logo-item:hover .product-name {
            color: var(--theme-color-2);
            opacity: 1;
            transform: translateY(-2px);
        }
        
        /* Floating Animation */
        .product-logo-item {
            animation: float 6s ease-in-out infinite;
        }
        
        .product-logo-item:nth-child(2n) {
            animation-delay: -2s;
        }
        
        .product-logo-item:nth-child(3n) {
            animation-delay: -4s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .product-logo-item:hover {
            animation-play-state: paused;
        }
        
        /* Section Title */
        .products-title {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .products-title h3 {
            font-size: 24px;
            color: var(--theme-color-3);
            margin-bottom: 8px;
        }
        
        .products-title p {
            font-size: 16px;
            color: rgba(20, 33, 59, 0.7);
        }
        
        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 16px;
            }
            
            .product-logo-item {
                padding: 16px 12px;
                min-height: 80px;
            }
            
            .product-logo {
                width: 36px;
                height: 36px;
            }
            
            .product-name {
                font-size: 12px;
            }
            
            .px-64 {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .product-logo-item {
                padding: 12px 8px;
                min-height: 70px;
            }
            
            .product-logo {
                width: 32px;
                height: 32px;
            }
            
            .px-64 {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

/* About Content Section */
.about-content-container {
    position: relative;
    width: 100%;
}


/* Responsive Design */
@media screen and (max-width: 1200px) {
    .about-section-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .products-carousel-container,
    .about-content-container {
        width: 100% !important;
    }
    
    .products-carousel {
        height: 180px;
    }
    
    .product-logo-track {
        flex-direction: row;
        animation: scrollHorizontal 18s linear infinite;
        width: max-content;
        gap: 16px;
    }
    
    @keyframes scrollHorizontal {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .product-logo-item {
        min-width: 130px;
        min-height: 80px;
        padding: 16px 12px;
    }
}

@media screen and (max-width: 768px) {
    .about-section-container {
        margin-top: 16px;
    }
    
    .font-48 {
        font-size: 36px;
    }
    
    .product-logo-item {
        min-width: 110px;
        padding: 12px 8px;
    }
    
    .products-carousel-wrapper {
        padding: 24px 12px !important;
    }
    
    .products-carousel {
        height: 140px;
    }
}

@media screen and (max-width: 480px) {
    .font-48 {
        font-size: 28px;
    }
    
    .typing-text {
        font-size: 16px;
    }
    
    .product-logo-item {
        min-width: 100px;
        min-height: 70px;
    }
    
    .product-logo {
        width: 32px;
        height: 32px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .responsive-content {
        padding: 16px 8px !important;
    }
    
    .responsive-icon {
        height: 24px !important;
    }
}

/* Image Collage Section */
.image-collage {
    width: 400px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: width 0.3s ease;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* Dynamic classes for different image counts */
.collage-grid.images-1 { grid-template-columns: 1fr; }
.collage-grid.images-2 { grid-template-columns: repeat(2, 1fr); }
.collage-grid.images-3 { grid-template-columns: repeat(2, 1fr); }
.collage-grid.images-4 { grid-template-columns: repeat(2, 1fr); }
.collage-grid.images-5 { grid-template-columns: repeat(2, 1fr); }
.collage-grid.images-6 { grid-template-columns: repeat(3, 1fr); }

/* For 7+ images, expand horizontally */
.collage-grid.images-7,
.collage-grid.images-8,
.collage-grid.images-9 { 
    grid-template-columns: repeat(3, 1fr); 
}

.collage-grid.images-10,
.collage-grid.images-11,
.collage-grid.images-12 { 
    grid-template-columns: repeat(4, 1fr); 
}

/* Expand container width for 7+ images */
.image-collage.expand-7 { width: 500px; }
.image-collage.expand-10 { width: 600px; }

.collage-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collage-grid img:hover {
    transform: scale(1.05);
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px;
}

.image-popup img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    object-fit: contain;
}

.close-popup {
    position: fixed;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-popup:hover {
    color: #bbb;
}

/* Responsive Design for Image Collage */
@media screen and (max-width: 1200px) {
    .flex.align-center.justify-between {
        gap: 32px;
    }
    
    .image-collage {
        width: 100%;
        max-width: 600px;
    }
    
    .image-collage:has(.collage-grid img:nth-child(7)) {
        max-width: 700px;
    }
    
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collage-grid img {
        height: 160px;
    }
}

@media screen and (max-width: 768px) {
    .image-collage {
        max-width: 100%;
    }
    
    .collage-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .collage-grid img {
        height: 140px;
    }
    
    .image-popup {
        padding: 20px;
    }
    
    .close-popup {
        top: 10px;
        right: 20px;
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .collage-grid {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }
    
    .collage-grid img {
        height: 200px;
    }
    
    .font-48 {
        font-size: 32px;
        text-align: center;
    }
    
    .image-popup img {
        max-width: 95%;
    }
    
    .close-popup {
        top: 5px;
        right: 15px;
        font-size: 28px;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .collage-grid img:hover {
        transform: none;
    }
    
    .image-popup {
        -webkit-overflow-scrolling: touch;
    }
}

/* Orientation Specific Styles */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .image-popup {
        padding: 10px;
    }
    
    .image-popup img {
        max-height: 80vh;
    }
}

/* Product Tabs Styling */
.product-tabs-container {
    margin-bottom: 32px;
}

.product-tabs {
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 0;
}

.product-tab {
    background: none;
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.product-tab span {
    color: var(--theme-color-grey);
    transition: color 0.3s ease;
}

.product-tab:hover span {
    color: var(--theme-color-2);
}

.product-tab.active {
    background-color: var(--theme-color-2);
}

.product-tab.active span {
    color: white;
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--theme-color-2);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Tabs */
@media screen and (max-width: 768px) {
    .product-tabs {
        flex-direction: column;
        gap: 8px;
        border-bottom: none;
    }
    
    .product-tab {
        padding: 12px 24px;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
    }
    
    .product-tab.active::after {
        display: none;
    }
}

/* Floating Call-to-Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--theme-color-2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    min-width: 180px;
    justify-content: center;
}

.floating-cta:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: black;
}

.floating-cta-icon {
    width: 20px;
    height: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media screen and (max-width: 480px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 13px;
        min-width: 140px;
    }
    
    .floating-cta-icon {
        width: 18px;
        height: 18px;
    }
}


/* Comparison Table Styles */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 32px 32px rgb(0, 0, 0);
    background: white;
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    display: table;
    background: white;
}

.comparison-table-header {
    display: table-row;
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.comparison-header-cell {
    display: table-cell;
    padding: 20px 24px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.comparison-header-cell:last-child {
    border-right: none;
}

.comparison-aspect {
    background: #FF8B5A !important;
    width: 120px;
}

.comparison-big-it {
    background: #4A90E2 !important;
    width: 200px;
}

.comparison-generic-ai {
    background: #50C878 !important;
    width: 200px;
}

.comparison-qj {
    background: linear-gradient(135deg, var(--theme-color-2) 0%, #E67E22 100%) !important;
    width: 250px;
    position: relative;
}

.comparison-qj::after {
    content: '★';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #FFD700;
}

.comparison-table-row {
    display: table-row;
    background: white;
    transition: all 0.3s ease;
}

.comparison-row-alt {
    background: #F8F9FA;
}

.comparison-table-row:hover {
    background: #F0F8FF !important;
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-cell {
    display: table-cell;
    padding: 18px 24px;
    vertical-align: top;
    border-right: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    font-size: 18px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-aspect-cell {
    background: #FFF5F0;
    font-weight: 600;
    color: #2C3E50;
    text-align: center;
    border-left: 4px solid #FF8B5A;
}

.comparison-highlight {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 100%);
    font-weight: 600;
    color: #2C3E50;
    position: relative;
    border-left: 4px solid var(--theme-color-2);
}

.comparison-highlight::before {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #27AE60;
    font-weight: bold;
    font-size: 16px;
}

/* Add subtle animation */
@keyframes tableGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 12px 40px rgba(255, 139, 90, 0.2); }
}

/* Process Flow Image Responsive Styling */
.process-flow-container {
    width: 100%;
    /* max-width: 100%; */
    margin: 0 auto;
    position: relative;
}

.process-flow-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--theme-color-2) #f1f1f1; /* Firefox */
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Custom scrollbar for Chrome, Edge, and Safari */
.process-flow-scroll::-webkit-scrollbar {
    height: 8px;
}

.process-flow-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.process-flow-scroll::-webkit-scrollbar-thumb {
    background: var(--theme-color-2);
    border-radius: 10px;
}

.process-flow-scroll::-webkit-scrollbar-thumb:hover {
    background: #db7400;
}

.process-flow-image {
    display: block;
    width: 100%;
    height: auto;
    /* max-height: 80vh; */ /* Keep the current height limit for larger screens */
    object-fit: contain;
    padding: 10px 30px 10px 30px;
}

.scroll-indicator {
    display: none; /* Hidden by default */
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
    margin-top: 5px;
}

/* Show scroll indicator only on mobile devices */
@media screen and (max-width: 768px) {
    .scroll-indicator {
        display: block;
        transition: opacity 0.5s ease;
    }
    
    .process-flow-image {
        min-width: 1000px; /* Ensures image is properly displayed on smaller screens */
    }
}

/* Fade effect on the right side to indicate more content */
/* .fade-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8));
    pointer-events: none; 
    z-index: 2;
    border-radius: 0 8px 8px 0;
} */

/* Swipe hint animation for mobile */
.swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    pointer-events: none;
    opacity: 0.7;
    animation: swipeAnim 1.5s ease-in-out infinite;
    z-index: 3;
    transition: opacity 0.5s ease;
}

.swipe-hint::after {
    content: '⇄';
    font-size: 30px;
}

@keyframes swipeAnim {
    0% { transform: translate(-50%, -50%) translateX(-10px); }
    50% { transform: translate(-50%, -50%) translateX(10px); }
    100% { transform: translate(-50%, -50%) translateX(-10px); }
}

.comparison-table-wrapper {
    animation: tableGlow 3s infinite;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .comparison-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-cell {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .comparison-header-cell {
        padding: 16px 12px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-cell {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .comparison-header-cell {
        padding: 14px 10px;
        font-size: 13px;
    }
    
    .comparison-aspect,
    .comparison-big-it,
    .comparison-generic-ai,
    .comparison-qj {
        width: auto;
        min-width: 140px;
    }
}