html,
body {
    overflow-x: hidden;
}

section img,
section picture {
    max-width: 100%;
}

/* Start of hero section css */
section#hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

section#hero>#hero-images {
    order: -1;
    overflow: hidden;
    position: relative;
}

#image-list {
    position: relative;
    min-width: 100vw;
    min-height: auto;
}

#image-list img {
    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    filter: blur(4px);
    /* Motion blur effect */
    transform: scale(1.1);
    /* Ken Burns Effect (zoom out) */
    transition: opacity 1.5s ease-in-out, filter 1.5s ease-in-out, transform 5s ease-in-out;
    will-change: opacity, transform, filter;
}

#image-list img.active {
    opacity: 1;
    filter: blur(0);
    /* Removes motion blur */
    transform: scale(1);
    /* Zooms in slightly */
}

section#hero h1 {
    color: var(--logo-color-2);
    padding: 16px;
    /* line-height: 33.6px; */
    letter-spacing: -0.211px;
}

section#hero h1>em {
    color: var(--logo-color);
    font-style: normal;
}

section#hero p {
    padding: 16px;
    font-style: normal;
    font-weight: 500;
}

section#hero a {
    padding: 16px;
    margin-inline: auto;
    align-items: center;
    width: 92%;
    background: var(--logo-color);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    margin-block-start: 36px;
    margin-block-end: 16px;
}

section#products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: rgba(102, 102, 102, 0.1); */
    /* overflow-x: hidden; */

}


section#products h2 {
    padding-block-start: 40px;
    color: var(--logo-color);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-inline: auto;
    /* background-color: transparent; */
    /* background: rgba(102, 102, 102, 0.1); */
    position: relative;
    /* z-index: 1; */
}

section#products h2::before {
    content: '';
    top: 0;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    background: rgba(102, 102, 102, 0.1);
    position: absolute;
}

section#products picture {
    background: rgba(102, 102, 102, 0.1);
}

section#products p {
    text-align: center;
    font-size: 14px;
    background: #fff;
}

section#products ul {
    background: #fff;
    display: flex;
    padding: 24px 16px;
    align-items: flex-start;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
}

section#products ul::-webkit-scrollbar {
    display: none;
}

section#products ul::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

section#products ul li {
    font-family: "Plus Jakarta Sans", sans-serif;
    list-style: none;
    border-radius: 20px;
    padding: 8px 16px;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
    border: 1px solid rgba(102, 102, 102, 0.40);
    background: #fff;
    color: var(--Color-Grey, #666);
}

section#products ul li a {
    text-decoration: none;
    color: #666
}

section#products ul li button {
    color: #666;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.18px;
}


section#products ul li#active-product-link {
    border-radius: 20px;
    border: 1px solid var(--logo-color);
    background: rgba(229, 9, 127, 0.80);
    transition: background 0.3s ease-in-out;
}

section#products ul li#active-product-link a {
    color: #fff;
}

section#products ul li#active-product-link button {
    color: #fff;
}

section#products>section {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* padding: 24px; */
    gap: 10px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

section#products section.product-showcase {
    flex: 0 0 47%;
    /* margin: 12px; */
    position: relative;
    transform: initial;
    overflow: hidden;
    cursor: pointer;
    /* opacity: 0; */
    transform: translateY(10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

section#products section.product-showcase.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

section#products section>section:hover>img {
    transition: transform 0.3s ease;
}

section#products section>section:hover>img {
    transform: translateX(30%);
}

section#products section>section:hover>p {
    transform: translate(0%, 20%);
    font-weight: bold;
    width: 60%;
}

section#products section>section>p {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0);
    transition: transform 0.3s ease, font-weight 0.3s ease;
}

#home-product-lists>article {
    flex: 1 0 47%;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 80px; */
    /* border-top: 1px solid #808080; */
    border: 1px solid #808080;
    background: #FFF;
}

#home-product-lists>article>h3 {
    color: var(--logo-color-2);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
}

#home-product-lists>article>a {
    padding: 12px;
    margin-inline: auto;
    align-items: center;
    width: 92%;
    background: var(--logo-color);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;

}

.btn {
    margin-inline: auto;
    padding: 16px 32px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-orange {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    background-color: var(--logo-color);
    border: 1px solid var(--logo-color);
}

section#why-choose-us {
    display: flex;
    padding: 32px 16px 0px 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

section#why-choose-us>h2 {
    color: var(--logo-color);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

section#why-choose-us>h4 {
    color: var(--logo-color-2);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
}

section#why-choose-us>h4>em {
    color: var(--logo-color);
    font-style: normal;
}

section#why-choose-us>p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

section#why-choose-us>section {
    position: relative;
}

section#why-choose-us>section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 200vw;
    transform: translateX(-50vw);
    border-top: 1px solid #808080;
}

section#why-choose-us>section::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 200vw;
    transform: translateX(-50vw);
    border-top: 1px solid #808080;
}

section#why-choose-us>section>section {
    display: flex;
    padding: 40px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

section#why-choose-us>section>section>article {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}


section#why-choose-us>section>section>article>h3 {
    color: var(--logo-color-2);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02px;
}

section#why-choose-us>section>section>article>p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.016px;
}

section#why-choose-us>section>img {
    display: none;
}

section#gallery {
    padding-block-start: 40px;
    display: grid;
    grid-template-areas: "text text"
        "img1 img1"
        "img2 img3"
        "custom custom";
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    background: #F6F7FB;
}

section#gallery img,
section#gallery video {
    cursor: pointer;
}

section#gallery>h2 {
    grid-area: text;
    color: var(--logo-color);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}

section#gallery>#gallery-img-1 {
    grid-area: img2;
}

section#gallery>#gallery-img-2 {
    grid-area: img3;
    height: 100%;
}

section#gallery>#gallery-img-3 {
    grid-area: img1;
    width: 100%;
}

section#gallery>#gallery-img-4 {
    display: none;
}

video {
    display: inline-block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

section#gallery>#gallery-img-5 {
    display: none;
}

section#gallery>article {
    grid-area: custom;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
    background: #FFF;
}

section#gallery>article>h3 {
    color: var(--logo-color-2);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
}

section#gallery>article>a {
    padding: 16px;
    margin-inline: auto;
    align-items: center;
    width: 92%;
    background: var(--logo-color);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;

}


section#gallery>h2>span {
    display: none;
}

section#testimonials {
    padding-block: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F7FB;
}

section#testimonials h2 {
    color: var(--logo-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

section#testimonials h3 {
    color: var(--logo-color-2);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

section#testimonials>article {
    margin-inline: auto;
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: center;
    background: #FFF;
    box-shadow: 0px 60px 17px 0px rgba(92, 92, 92, 0.00), 0px 39px 15px 0px rgba(92, 92, 92, 0.01), 0px 22px 13px 0px rgba(92, 92, 92, 0.05), 0px 10px 10px 0px rgba(92, 92, 92, 0.09), 0px 2px 5px 0px rgba(92, 92, 92, 0.10);
}

section#testimonials>article p {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-block-end: 32px;
}

section#testimonials>article img {
    margin-block-end: 8px;
}

section#testimonials>article h4 {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

section#testimonials>article .designation {
    color: #808080;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

section#clients {
    position: relative;
    display: flex;
    background: #EEEFF3;
    padding: 40px 0px 21px 0px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

section#clients>h2 {
    color: var(--logo-color);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

section#clients>h3 {
    color: var(--logo-color-2);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

section#clients>h3>em {
    font-style: normal;
    color: var(--logo-color);
}

section#clients>p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

section#clients>article {
    display: flex;
    align-items: center;
    overflow-x: auto;
    max-width: 100%;
    gap: 10px;
}

section#clients>article img {
    /* max-width: 50%; */
    max-height: 120px;
    aspect-ratio: 1;
    object-fit: contain;
    cursor: pointer;
}

.size-110 {
    height: 110px;
    width: 110px;
    padding-inline: 20px;
}

.size-105 {
    height: 105px;
    width: 105px;
    padding-inline: 20px;
}

.size-100 {
    height: 100px;
    width: 100px;
    padding-inline: 20px;
}

.size-95 {
    height: 95px;
    width: 95px;
    padding-inline: 20px;
}

.size-90 {
    height: 90px;
    width: 90px;
    padding-inline: 20px;
}

.size-85 {
    height: 85px;
    width: 85px;
    padding-inline: 20px;
}

.size-80 {
    height: 80px;
    width: 80px;
    padding-inline: 20px;
}

.hand-pointer {
    position: absolute;
    left: 15px;
    top: 91%;
    font-size: 2rem;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.5s;
    opacity: 1;
    pointer-events: none;
}

@keyframes handWave {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) rotate(-15deg);
    }

    100% {
        transform: translateY(-50%) rotate(0deg);
    }
}

.hand-pointer.waving {
    animation: handWave 1.5s infinite;
}

.play-pause {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ddd;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}

.play-pause:hover {
    background: #eee;
    transform: scale(1.1);
}

section#clients>article::-webkit-scrollbar {
    display: none;
}

section#clients>article::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.indicators {
    position: relative;
    bottom: 15px;
    left: 50%;
    transform: translateX(-10%);
    display: flex;
    gap: 10px;
}

.indicators span {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicators .active {
    background-color: #fff;
}

/* .product-showcase {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.product-showcase img {
    max-width: 100%;
}

.product-showcase.show {
    opacity: 1;
    transform: translateY(0);
} */

@media (min-width:768px) {}

@media (min-width:1024px) {
    .hand-pointer {
        top: 95%;
    }

    /* section#hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 100px 1fr;
        padding-left: 64px;
        align-items: center;
        column-gap: 20px;
        grid-template-areas: "h1 img"
            "p img"
            "a img";
    } */

    section#hero>h1 {
        padding: 0;
        grid-area: h1;
        font-size: 48px;
        font-weight: 700;
        line-height: 57.6px;
        align-self: flex-end;
        position: absolute;
        top: 400px;
        right: 320px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }

    section#hero>p {
        grid-area: p;
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
        align-self: flex-start;
        position: absolute;
        top: 450px;
        right: 520px;
    }

    section#hero>a {
        grid-area: a;
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
        margin-block: 0;
        margin-inline-end: auto;
        margin-inline-start: 16px;
        width: auto;
        align-self: flex-start;
        position: absolute;
        top: 530px;
        right: 690px;
    }

    section#hero>#hero-images {
        grid-area: img;
        /* width: 52vw; */
        height: 84vh;
        min-width: 100vw;
    }

    #image-list img {
        /* width: 52vw; */
        height: 84vh;
        object-fit: cover;
        min-width: 100vw;
    }

    .indicators {
        transform: translateX(0%);
    }

    section#products h2 {
        font-size: 80px;
        font-weight: 700;
        line-height: 120px;
        margin-block-end: -50px;
    }

    section#products h2::before {
        height: 33vw;
    }

    section#products>picture {
        width: 80%;
        position: relative;
        background-color: transparent;
    }


    section#products>p {
        text-align: center;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        padding: 40px;
        width: 70%;
    }

    section#products>section {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        padding-inline-start: 20px;

    }

    section#products>section>section {
        flex: 1 0 23%;
        max-width: 23%;
        margin: 0;
        background-color: rgba(102, 102, 102, 0.1);
    }

    /* section#products>section {
        display: block;
    } */

    section#products>section>section p {
        z-index: 6;
        top: 10px;
        left: 10px;
    }

    section#products>section>section>img {
        top: 0;
        right: 0;
        width: 100%;
        background-color: rgba(102, 102, 102, 0.1);
    }

    section#products section>section>p {
        font-size: 20px;
    }

    section#products>section>butt {
        border: none;
        cursor: pointer;
    }

    #home-product-lists>article {
        border: 1px solid #808080;
        flex: 1 0 23%;
        /* max-width: 23%; */
        height: 22vw;
        gap: 0px;
        justify-content: space-between;
    }

    #home-product-lists>article>h3 {
        font-size: 28px;
        line-height: 50px;
    }

    #home-product-lists>article>a {
        margin-inline-end: 0;
        width: 75%;

    }

    section#why-choose-us {
        padding-block-start: 80px;
        gap: 32px;
    }

    section#why-choose-us>h2 {
        font-size: 16px;
        line-height: 24px;
    }

    section#why-choose-us>h4 {
        font-size: 36px;
        line-height: 50px;
        width: 75%;
    }

    section#why-choose-us>p {
        font-size: 16px;
        line-height: 24px;
    }

    section#why-choose-us>section {
        display: flex;
        margin-inline-start: -16px;
    }

    section#why-choose-us>section>img {
        display: block;
        width: 50vw;
        gap: 20px;
        object-fit: cover;
        aspect-ratio: 1;
    }

    section#why-choose-us>section>section {
        flex-direction: row;
        justify-content: center;
        padding: 20px 24px 20px 20px;
        align-items: center;
        align-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    section#why-choose-us>section>section>article {
        flex: 0 0 40%;
        gap: 0px
    }

    section#why-choose-us>section>section>article>h3 {
        padding-block-start: 24px;
    }

    section#why-choose-us>section>section>article>p {
        padding-block-start: 8px;
    }

    section#why-choose-us>section>section>article>img {
        width: 100px;
        height: 100px;
    }

    section#gallery {
        padding-block-start: 40px;
        /* display: grid;
        grid-template-areas: "text text text"
            "img1 img2 img3"
            "img4 img5 custom"; */
        /* gap: 8px; */
        /* grid-template-columns: auto auto auto; */
        display: flex;
        flex-wrap: wrap;
        padding-inline: 24px;
    }

    section#gallery>h2 {
        /* grid-area: text; */
        flex: 1 1 100%;
        font-size: 70px;
        font-weight: 700;
        line-height: 120px;
    }

    section#gallery>h2>span {
        display: inline;
    }

    section#gallery>img {
        max-width: 100%;
    }

    section#gallery>#gallery-img-1 {
        /* grid-area: img1; */
        flex: 0 0 25vw;
        /* height: 470px;
        width: 331px; */
        max-width: 23vw;
        height: 33vw;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    section#gallery>#gallery-img-2 {
        /* grid-area: img2; */
        flex: 0 0 25vw;
        /* height: 470px;
        width: 331px; */
        max-width: 23vw;
        height: 33vw;
        aspect-ratio: 16/9;
        object-fit: cover;

    }

    section#gallery>#gallery-img-3 {
        /* grid-area: img3; */
        flex: 0 0 46vw;
        /* height: 470px;
        width: 682px; */
        max-width: 46vw;
        aspect-ratio: 1;
        object-fit: cover;
        height: 33vw;
    }

    section#gallery>#gallery-img-4 {
        display: block;
        /* grid-area: img4; */
        flex: 0 0 30vw;
        /* height: 448px;
        width: 309px; */
        max-width: 30vw;
        height: 22vw;
    }

    section#gallery>#gallery-img-5 {
        display: block;
        /* grid-area: img5; */
        flex: 0 0 30vw;
        /* height: 447px;
        width: 308px; */
        max-width: 30vw;
        height: 22vw;
    }

    section#gallery>article {
        border: 1px solid #808080;
        flex: 0 0 31.8vw;
        max-width: 31.8vw;
        height: 22vw;
        gap: 0px;
        justify-content: space-between;
    }

    section#gallery>article>h3 {
        font-size: 28px;
        line-height: 50px;
    }

    section#gallery>article>a {
        margin-inline-end: 0;
        width: auto;

    }

    section#testimonials {
        margin-inline: auto;
        padding-block: 80px;
    }

    section#testimonials h3 {
        font-size: 36px;
        line-height: 50px;
    }

    section#testimonials>article {
        width: 50vw;
    }

    section#testimonials>article p {
        font-size: 16px;
        line-height: 24px;
    }

    section#testimonials>article img {
        margin-block-end: 8px;
    }

    section#testimonials>article h4 {
        font-size: 16px;
        line-height: 24px;
    }

    section#testimonials>article .designation {
        font-size: 14px;
        line-height: 20px;
    }

    section#clients>h3 {
        font-size: 36px;
        line-height: 50px;
    }

    section#clients>p {
        font-size: 16px;
        line-height: 24px;
        margin-inline: auto;
        width: 55vw;
    }

    section#clients>article {
        gap: 56px;
    }

    section#clients>article img {
        max-width: 50%;
    }
}