/* Variables Import */
@import "./variables.css";

.main {
    overflow: hidden;
}

/* contact modal */
.contact-modal {
    .modal-lg {
        max-width: 1000px;
    }
}

/* contact modal end */

/* header */
.header-style-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
    /* transition: 0.5s all ease; */
    /* border-bottom: 1px solid var(--gray); */
    opacity: 0;
    transform: translateY(-100%);
    background-color: var(--primary) !important;

    .navbar-nav {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        padding-block: 10px;
        z-index: 2;

        .link,
        .button-collapse-wrapper {

            a,
            button {
                font-size: 16px;
                color: var(--light);
                font-weight: 400;
                text-transform: uppercase;
                background: transparent;
                border: none;
                box-shadow: none;
            }
        }

        .brand {
            width: 190px;
            position: relative;

            .link a {
                display: flex;
                gap: 10px;
                align-items: center;
                position: relative;
                letter-spacing: 5px;
            }

            .floating-logo {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
            }
        }

        .navbar-list {
            display: flex;
            align-items: center;

            .list {
                max-height: 24px;
                overflow: hidden;

                &:hover {
                    .menu-link {
                        transform: translateY(-100%);
                    }
                }
            }

            .menu-link {
                display: block;
                padding-inline: 20px;
                font-size: 16px;
                color: var(--secondary) !important;
                text-transform: uppercase;
                transition: color 0.5s ease, transform 0.5s ease;

                /* &:last-child {
                    color: var(--primary) !important;
                } */
            }
        }

        .button-collapse-wrapper {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center;
            display: none;

            .button-icon {
                display: flex;
                flex-direction: column;
                height: 40px;
                overflow: hidden;

                button {
                    line-height: 40px;
                    transition: 0.5s transform ease;
                }
            }
        }
    }

    &.open {
        .button-collapse-wrapper {
            .button-icon {
                button {
                    transform: translateY(-100%);
                    color: var(--secondary) !important;
                }
            }

            .plus-icon {
                transform: rotate(45deg);

                span {
                    background: var(--secondary) !important;
                }
            }
        }

        .navbar-items-wrapper {
            .row {
                opacity: 1;
            }
        }
    }

    .main-button-wrapper {
        .button {
            padding: 7px 26px;
            font-size: 15px !important;
            box-shadow: 1px 3px 10px 0px #000000b5;
        }
    }
}

/* header */

/* home page */
/* home hero */
.hero.home-banner {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: visible;
    z-index: 3;

    .hero-bg-carousel {
        transform: scale(1.3);

        .media-box {
            min-height: 700px;
            height: 100vh;
            width: 100%;
            z-index: 1;

            .video-desktop {
                display: block;
            }

            .video-mobile {
                display: none;
            }

            img,
            video {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(12deg, #0000 40%, #000 110.00000000000001%);
        z-index: 1;
    }

    .floating-banner-text {
        position: absolute;
        top: 50%;
        left: 1.69%;
        max-width: calc(1320px + 1.69%);
        transform: translateY(-50%);
        z-index: 2;
        width: 50%;

        .heading {
            color: var(--secondary);
            font-size: 80px;
            opacity: 0;
        }

        .main-button-wrapper {
            opacity: 0;
            transform: translateY(100px);
        }
    }

    .floating-enquiry-form {
        border-radius: 14px;
        position: absolute;
        bottom: 0%;
        right: 1.69%;
        width: 20%;
        z-index: 2;
        background: rgb(0 0 0 / 25%);
        backdrop-filter: blur(40px);
        padding: 10px 13px;
        border: 3px solid #32b3e3;
        opacity: 0;
        box-shadow: 0px 0px 10px 1px #b4e6ff83;
        transform: translateY(10%);
        max-width: 330px;

        .form-heading {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 8px;
            width: fit-content;
            background: #2ad7e1;
            background: #35b5e2;
            padding-inline: 20px;
            padding-block: 6px;
            border-radius: 5px;
            transform: translate(-15%, 0%);
            height: max-content;
        }

        .main-button-wrapper {
            .button {
                padding: 8px 30px;
                font-size: 14px !important;
            }
        }

        &::after,
        before {
            /* content: ""; */
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 100%;
            background: var(--secondary);
        }
    }
}

/* home hero end */

/* about section */
.about-section {
    padding-top: 185px;

    .text-container {
        padding-right: 15%;
    }

    .image-container {
        position: relative;

        .about-img {
            /* height: 450px; */
            object-fit: cover;
        }

        .floating-container {
            width: 50%;
            height: 100%;
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            padding: 15px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: #121212b3;

            .sub-heading {
                letter-spacing: 1.5px;
            }

            .logo {
                width: 150px;
            }
        }
    }
}

/* about section end */

/* discover viva section */
.discover-viva {
    .background-image {
        padding-inline: 1.69%;
        overflow: hidden;
        z-index: 1;

        img {
            border-radius: 50px;
        }

        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: calc(100% - 1.69% - 1.69%);
            height: 100%;
            background: linear-gradient(97deg, rgb(46 157 200) 0%, rgb(45 147 186 / 90%) 45%, rgb(76 185 223 / 55%) 70%, rgb(39 175 229 / 73%) 100%);
            opacity: 1;
            padding: 0;
            margin-inline: 1.69%;
            border-radius: 50px;
        }
    }

    .video-text-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-inline: 3.69%;

        .text-box {
            width: 50%;
            position: relative;

            .heading,
            p {
                color: var(--secondary);
            }
        }

        .video-box {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;

            .play-button {
                width: 150px;
                height: 150px;
                background: var(--secondary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #24dae0;
                font-size: 20px;
                border: none;
            }
        }
    }
}

/* discover viva section end */

/* product range section */
.product-range-section {
    .brief-text {
        width: 50%;
        margin: 0 auto;
    }

    .grid-expand {
        .expand-box {
            .floating-box {
                .inner-title {
                    font-size: 20px;
                    color: var(--secondary);
                    text-wrap: nowrap;
                }
            }
        }
    }
}

.grid-expand {
    display: flex;
    gap: 10px;
    overflow: hidden;

    .expand-box {
        position: relative;
        flex: 1;
        text-align: center;
        overflow: hidden;
        transition: 0.5s all ease;

        .image-box {
            height: 400px !important;

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

        .floating-box {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px 25px;
            opacity: 0;
            z-index: 2;
            background: linear-gradient(1deg, rgb(0 86 89 / 94%) 0%, rgb(0 86 89 / 44%) 45%, rgb(0 0 0 / 0%) 70%, rgb(0 0 0 / 0%) 100%);
            display: flex;
            justify-content: flex-end;
            flex-direction: column;
            transform: translateY(100%);
            pointer-events: auto;
            transition: 0.5s all ease;
        }

        &:hover {
            .floating-box {
                transform: translateY(0%);
                opacity: 1;
            }
        }
    }

    &.grid-expand-style-1 {
        .expand-box {
            &:hover {
                flex: 4;
            }
        }
    }
}

/* product range section end */

/* application section */
.our-application {
    .heading-container {
        display: flex;
        align-items: flex-end;
        gap: 100px;

        .heading {
            width: 60%;
        }

        .brief {
            width: 35%;
        }
    }

    .application-wrapper {
        .expand-box {
            &.active {
                flex: 2 !important;

                .image-box {
                    opacity: 1;
                }
            }
        }

        &.grid-expand-style-1 {
            .expand-box {
                &:hover {
                    flex: 1;
                }
            }
        }

        .image-box {
            height: 600px !important;
            opacity: 0.1;
            transition: 0.5s all ease;

            img {
                border-radius: 20px;
            }
        }

        .application-container {
            .floating-box {
                opacity: 1;
                transform: translateY(0);
                text-align: start;
                border-radius: 20px;
                background: linear-gradient(1deg, rgb(0 86 89 / 94%) 0%, rgb(0 86 89 / 44%) 45%, rgb(0 0 0 / 0%) 70%, rgb(93 182 184) 100%);

                .inner-title {
                    font-size: 20px;
                }
            }
        }
    }
}

/* application section end */

/* featured project section */
.featured-projects-section {
    .brief-text {
        width: 85%;
        margin: 0 auto;
    }

    .featured-project-container {
        .featured-project-swiper {
            .swiper-slide {
                opacity: 0.3;
                transition: 0.5s all ease;

                &.swiper-slide-active {
                    opacity: 1;
                }

                .image-box {
                    img {
                        height: 400px;
                        object-fit: cover;
                        width: 100%;
                    }
                }

                .brief-box {
                    .inner-text {
                        font-size: 24px;
                        color: transparent;
                        background: var(--primary-gradient);
                        background-clip: text;
                    }
                }
            }

            .swiper-button {
                svg {
                    color: var(--primary);
                    transition: 0.5s all ease;
                }

                &:hover {
                    svg {
                        color: var(--secondary);
                    }
                }
            }
        }
    }
}

/* featured project section end */

/* our featured product */
.featured-product-section {
    .heading-brief {
        display: flex;
        align-items: center;

        .heading {
            flex: 1;
        }

        .brief-button-container {
            flex: 1;
            margin: 0 auto;
        }
    }

    .swiper-text-wrapper {
        .swiper-container {
            position: relative;

            .featured-product-swiper {
                padding-block: 0;
                border-radius: 50px;
            }

            .swiper-slide {
                border-radius: 10px;
                overflow: hidden;

                .image-box {
                    position: relative;
                    perspective: 2000px;
                    overflow: hidden;
                    transition: all 0.5s ease-in-out;

                    img {
                        border-radius: 50px;
                        height: 350px;
                        width: 100%;
                        object-fit: cover;
                    }

                    &::after {
                        display: block;
                        content: "";
                        position: absolute;
                        z-index: 100;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 120%;
                        background: linear-gradient(226deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 60%);
                        transform: translateY(-20%);
                        will-change: transform;
                        transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
                    }

                    &:hover {
                        transform: rotateX(7deg) translateY(-6px);

                        &::after {
                            transform: translateY(0);
                        }
                    }
                }
            }
        }

        .text-box {
            padding-inline: 15px;
            color: var(--primary);
            text-align: center;
            transition: 0.5s all ease;

            .inner-text {
                color: var(--primary);
            }
        }

        &:hover {
            .floating-box {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }
}

/* our featured product end */

/* product and application section */
.products-applications-section {
    .products-applications-wrapper {
        .heading {
            font-size: 28px;
            font-weight: 400;
            background: var(--primary);
            padding: 15px 30px;

            &.right {
                text-align: end;
            }
        }

        .text-box {
            padding-right: 12%;

            &.padded-left {
                padding-left: 12%;
                padding-right: 0%;
            }
        }

        .product-application-swiper {
            padding: 0;

            .swiper-slide {
                .image-box {
                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                        max-height: 350px;

                        &.fit-contain {
                            object-fit: contain;
                        }
                    }
                }
            }
        }
    }
}

/* product and application section end */

/* why us section */
.why-us-section {
    .image-box {
        padding-right: 10%;
        height: 100%;

        img {
            height: 100%;
            object-fit: cover;
            border-radius: 50px;
        }
    }

    .why-us-swiper-container {
        height: 100%;

        .why-us-swiper {
            border-radius: 50px;
            height: 100%;
            padding-block: 0;
        }
    }

    .featured-box-wrapper {
        .featured-list {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 2rem;

            .list {
                grid-column: span 6;
                background: var(--gray);
                border-radius: 25px;
                padding: 15px 20px;
                box-shadow: 0px 0px 10px 0px #203e4c14;
                transition: 0.5s all ease;

                &:hover {
                    transform: translateY(-2px) scale(1.01);
                    box-shadow: 0px 0px 10px 0px #203e4c38;
                }

                .icon-box {
                    img {
                        width: 95px;
                        filter: grayscale(0);
                    }
                }

                .inner-title {
                    font-size: 20px;
                    font-weight: 500;
                    color: transparent;
                    background: var(--primary-gradient);
                    background-clip: text;
                }

                p {
                    font-size: 16px;
                    color: var(--ternary);
                }

                &.gradient-bg {
                    .inner-title {
                        color: var(--secondary) !important;
                    }

                    p {
                        color: var(--gray) !important;
                    }
                }
            }
        }
    }
}

/* why us section end */

/* brands section */
/* marquee section */
/* marquee box */

.marque-style-1 {
    .marque-container {
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;

        .marque-list {
            position: relative;
            white-space: nowrap;

            .list {
                display: inline-block;
                padding: 20px 35px !important;
                width: 13%;
                margin-right: 40px;
                border: 1px solid #e7e7e7;
                border-radius: 5px;
            }
        }
    }
}

/* marquee section end */
/* brands section end */

/* client testimonials section */
.client-testimonials {
    padding-bottom: 65px;

    .client-testimonial-container {
        padding-inline: 6%;

        .client-testimonial-swiper {
            padding-block: 35px;

            .testimonial-card {
                .testimonial-text {
                    padding-top: 35px;
                }

                .floating-box {
                    position: absolute;
                    top: -25px;
                    right: 35px;
                    width: 70px;
                }

                .client-box {
                    display: flex;
                    align-items: center;
                    gap: 20px;

                    .image-box {
                        img {
                            width: 60px;
                            height: 60px;
                            border-radius: 50%;
                            object-fit: cover;
                        }
                    }

                    .text-box {
                        width: calc(100% - 80px);
                    }
                }
            }
        }

        .swiper-button-style-1 {
            width: 100%;
            z-index: 1;
        }
    }
}

/* client testimonials section end*/

/* faq section */
.faq-section {
    .faq-wrapper {
        background: #01597d;
        border-radius: 35px;
        padding: 50px 35px;
        position: relative;

        .background-image {
            opacity: 0.015;
            pointer-events: none;
        }

        .heading {
            color: var(--secondary) !important;
        }

        .faq-accordion {
            .accordion-style-1 {
                .accordion-button {
                    font-size: 24px;
                    letter-spacing: 1.01px;
                    font-weight: 300;
                    padding: 0;
                    padding-block: 18px;
                    opacity: 0.9;
                    color: var(--secondary);
                    opacity: 1;
                    transition: 0.5s all ease;

                    &:not(.collapsed) {
                        color: transparent;
                        background: var(--primary-gradient);
                        background-clip: text;
                    }

                    &::after {
                        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(226deg) brightness(111%) contrast(101%);
                        background-size: 20px;
                        width: 20px;
                        height: 20px;
                    }
                }

                .accordion-body {
                    padding: 0;
                    padding-block: 18px;
                    color: var(--gray) !important;
                    font-size: 16px;

                    p,
                    .list {
                        color: var(--gray) !important;
                        opacity: 0.8;
                        font-weight: 300;
                        font-size: 16px;
                    }

                    .list {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

/* faq section end */

/* footer section */
.footer {
    background: #000e13;

    p {
        color: var(--secondary) !important;
    }

    .logo-box {
        img {
            width: 120px;
        }
    }

    .footer-list {
        &.middle {
            width: fit-content;
            margin: 0 auto;
        }

        .list {
            width: fit-content;

            .link {
                color: var(--secondary);
                font-size: 16px;
            }
        }

        &.contact-list {
            gap: 10px;

            .list {
                display: flex;
                gap: 10px;

                .icon-box {
                    color: var(--ternary);
                    width: 35px;
                    height: 35px;
                    background: var(--secondary);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    font-size: 16px;
                }

                .link-box {
                    width: calc(100% - 45px);
                }
            }
        }
    }

    .social-list {
        display: flex;
        gap: 10px;

        .list {
            .link {
                width: 35px;
                height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--secondary);
                border-radius: 50%;
                color: var(--ternary);
                font-size: 16px;
            }
        }
    }
}

/* footer section end */

/* home page end */

/* responsive */
@media screen and (max-width: 1440px) {
    .featured-product-section {
        .swiper-custom-button {
            top: -10px;
            justify-content: flex-end;
            width: 100%;
            gap: 10px;
        }
    }
}

@media screen and (max-width: 1340px) {
    .hero.home-banner {
        .floating-enquiry-form {
            width: 50%;
        }
    }
}

@media screen and (max-width: 996px) {
    .heading {
        &.xl {
            font-size: 64px !important;
        }
    }

    .header-style-2 {
        .navbar-nav {
            .navbar-list {
                .menu-link {
                    padding-inline: 10px;
                }
            }
        }
    }

    .featured-product-section {
        .heading-brief {
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
        }
    }

    .why-us-section {
        .image-box {
            height: 100%;
            padding-right: 0;

            img {
                height: 450px;
            }
        }

        .featured-box-wrapper {
            .featured-list {
                .list {
                    grid-column: span 12;

                    &.gradient-bg {
                        background: var(--gray) !important;

                        .inner-title {
                            color: transparent !important;
                            background: var(--primary-gradient) !important;
                            background-clip: text !important;
                        }

                        p {
                            color: var(--ternary) !important;
                        }
                    }

                    &:nth-child(odd) {
                        background: var(--primary-gradient) !important;

                        .inner-title {
                            color: var(--secondary) !important;
                        }

                        p {
                            color: var(--secondary) !important;
                        }
                    }
                }
            }
        }
    }

    .footer {
        & .footer-list {
            &.middle {
                margin: 0;
            }
        }
    }
}

@media screen and (max-width: 767px) {

    body,
    html {
        font-size: 8px;

    }


    .heading {
        &.xl {
            font-size: 40px !important;
        }

        &.l {
            font-size: 44px;
        }
    }

    .header-style-2 {
        .navbar-nav {
            .nav-brand {
                z-index: 111;
            }

            .navbar-list {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                transform: translateX(100%);
                justify-content: center;
                z-index: 11;

                .list {
                    max-height: 60px;
                }

                .menu-link {
                    font-size: 40px;
                    color: var(--secondary) !important;
                }
            }

            .main-button-wrapper {
                display: none;
            }

            .button-collapse-wrapper {
                display: flex;
                z-index: 111;

                button {
                    font-size: 24px;
                }
            }
        }
    }

    .hero.home-banner {
        .floating-enquiry-form {
            display: none;
            bottom: -35%;
            width: 60%;
        }

        .floating-banner-text {
            width: 90%;
        }

        .hero-bg-carousel {
            .media-box {
                .video-desktop {
                    display: none;
                }

                .video-mobile {
                    display: block;
                }
            }
        }
    }

    .about-section {
        padding-top: 100px;

        .text-container {
            padding-right: 0%;
        }

        .image-container {
            margin-top: 40px;
        }
    }

    .featured-projects-section {
        .container-fluid.px-0 {
            padding-inline: 1.69% !important;
        }

        .mt-6 {
            margin-top: 4rem !important;
        }

        .text-center {
            text-align: start !important;
            width: 100% !important;
        }
    }

    .discover-viva {
        .video-text-container {
            flex-direction: column;
            gap: 50px;

            .text-box {
                width: 100%;
            }

            .video-box {
                width: 100%;
                display: flex;
                align-items: start;
                justify-content: end;

                .play-button {
                    width: 80px;
                    height: 80px;
                }
            }
        }
    }

    .products-applications-section {
        .products-applications-wrapper {
            .text-box {
                padding-right: 0%;

                &.padded-left {
                    padding-left: 0%;
                    padding-right: 0%;
                }
            }
        }
    }

    .our-application {
        .heading-container {
            align-items: flex-start;
            flex-direction: column;
            gap: 35px;

            .heading {
                width: 100%;
            }

            .brief {
                width: 100%;
            }
        }

        .grid-expand {
            flex-direction: column;
        }

        .application-wrapper {
            .image-box {
                height: 450px !important;
            }
        }
    }

    .brands-section {
        .heading {
            text-align: start !important;
            padding-inline: 1.69%;
        }
    }

    .faq-section {
        .faq-wrapper {
            padding: 35px 20px;
        }
    }

    .products-applications-section {
        .products-applications-wrapper {
            .heading {
                font-size: 22px;
                padding: 10px 12px;
            }
        }
    }

    .faq-section {
        .faq-wrapper {
            .faq-accordion {
                .accordion-style-1 {
                    .accordion-button {
                        font-size: 22px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 546px) {
    .hero.home-banner {
        .floating-enquiry-form {
            bottom: -35%;
            width: 97%;
        }
    }

    .faq-section {
        .faq-wrapper {
            .heading {
                font-size: 56px !important;
            }
        }
    }
}

@media screen and (max-width: 510px) {
    .faq-section {
        .faq-wrapper {
            .heading {
                font-size: 46px !important;
            }
        }
    }
}

/* responsive end */