@import url('https://fonts.googleapis.com/css2?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=Bakbak+One&display=swap');


:root {
    --primary-color: #01662F;
    --primary-color-hover: #094928;
    --secondary-color: #FFC21F;
    --secondary-color-hover: #d2a21d;
    --bg-color: #cdcdcd;
    --btn-color: #f54;
    --btn-color2: #076aab;
    --btn-color2-hover: #0f4b72;
    --text-light: #fff;
    --text-dark: #000;
    ---bg-opacity: rgba(0, 0, 0, 0.6);
    ---bg-opacity2: rgba(0, 0, 0, 0.3);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'poppins', Arial, sans-serif;
    background-color: var(--text-light);
    position: relative;
    max-width: 100vw;


}

a {
    text-decoration: none;
    transition: 0.3s;
    display: block;
    width: fit-content;
}

.line {
    border: 3px solid var(--text-dark);
}

.vl {
    border-left: 5px solid var(--text-dark);
    height: 5rem;
}

.hl {
    border-bottom: 5px solid var(--text-dark);
    width: 5rem;
    margin: 1rem;
}

/* NAVBAR SECTION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-light);
    padding: 10px 20px;
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 20;



    .logo {
        font-size: 1.5em;
        font-weight: bold;

        a {
            text-decoration: none;

            img {
                width: 360px;
                height: 70px;
                margin-left: 0.5rem;
            }
        }


    }

    .call-button {
        a {
            color: var(--text-light);
            text-decoration: none;
            background-color: var(--btn-color);
            padding: 15px 20px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            cursor: pointer;
        }

        a:hover {
            background-color: var(--primary-color);
        }
    }

    .floating-logo {
        position: absolute;
        top: 50vh;
        right: 0.1rem;
        gap: 1rem;
        /* bottom: 1rem; */
        display: flex;
        flex-direction: column;

        img {
            width: 40px;
            background: var(--text-light);
            border-radius: 0.5rem 0 0 0.5rem;
            box-shadow: 10px 5px 15px var(--text-dark);
        }

        .call-btn {
            display: none;
        }
    }

}


/* HOME SECTION */

.home {
    /* background: url('Assets/vd.mp4') no-repeat center center/cover; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    color: var(--text-light);
    position: relative;

    video {
        object-fit: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;
        background: var(---bg-opacity);
    }

    .home-content {

        z-index: 1;

        h1 {
            font-family: 'Bakbak One';
            font-size: 4rem;
            margin: 0;
            padding: 0 1rem;
            font-weight: 400;

            span {
                color: var(--secondary-color);
            }
        }

        h5 {
            font-size: 1.5rem;
            margin-top: 1rem;

        }
    }

    .form {
        z-index: 1;
        background-color: var(--text-light);
        border-radius: 0.5rem;
        padding: 0.6rem;


        h3 {
            z-index: 2;
            font-weight: 500;
            font-size: 1rem;
            color: var(--text-dark);
        }

        form {
            display: flex;
            flex-direction: column;
            margin: 0.5rem 0.2rem;
            align-items: center;
            width: 95%;



            input {
                border: 1px solid var(--primary-color);
                margin: 0.5rem;
                border-radius: 0.5rem;
                padding: 0.5rem;
                background-color: var(--text-light);
            }

            input::-webkit-outer-spin-button,
            input::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            input[type=number] {
                -moz-appearance: textfield;
            }

            .check {
                display: flex;
                flex-direction: row;
                align-items: center;
                width: 100%;

                input {
                    margin: 0;
                    justify-self: flex-start;
                    width: 2rem;
                }


                label {
                    margin-left: 0;
                    text-align: left;
                    font-size: 0.7rem;
                    color: var(--text-dark);
                }
            }

            #dropdown {
                display: flex;
                justify-content: flex-start;
                flex-direction: column;
                width: 95%;
                gap: 1rem;
                margin: 0.5rem;

                .dropdown-list {
                    /* appearance: none; */
                    border: 1px solid var(--primary-color);
                    padding: 0.5rem;
                    font-size: 0.7rem;
                    border-radius: 0.5rem;
                    background-color: white;
                    color: var(---bg-opacity2);
                    cursor: pointer;
                    transition: border-color 0.3s;
                }

                .dropdown-list:hover,
                .dropdown-list:focus {
                    border-color: var(--primary-color);
                    outline: none;
                    color: var(--text-dark);
                }

                .dropdown-list::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 10px;
                    width: 0;
                    height: 0;
                    border-left: 2px solid var(--primary-color);
                    border-right: 2px solid var(--primary-color);
                    border-top: 2px solid var(--primary-color);
                    transform: translateY(-50%);
                    pointer-events: none;
                }
            }


            .submit-btn {
                border-radius: 0.5rem;
                padding: 0.5rem;
                background-color: var(--btn-color2);
                font-size: 1rem;

                width: fit-content;
                color: var(--text-light);
                font-weight: bold;
                margin-top: 0.5rem;
                cursor: pointer;
            }

            .submit-btn:hover {
                background-color: var(--btn-color2-hover);
            }
        }


    }

    ::placeholder {
        color: var(--text-dark);
        opacity: 0.3;
        font-size: 0.7rem;
    }

    input,
    select,
    textarea {
        color: var(--text-dark);
        font-size: 1rem;
        /* font-weight: bold; */
    }
}

/* ABOUT US SECTION */

.about-us {
    margin: 2rem 4rem 1rem 4rem;
    position: relative;

    h1 {
        margin-top: 1rem;
        margin-bottom: 0;
        font-weight: 400;
        font-size: 2rem;
    }

    .text-content {
        display: flex;
        justify-content: center;
        align-items: center;



        h2 {
            margin: 0 0 5rem 0;
            font-weight: 700;
            font-size: 2rem;
        }

        p {
            margin: 0 2rem 1.5rem 5rem;
            font-size: 1.2rem;

            .abt-btn {
                display: flex;
                margin: 1.5rem;
                padding: 0.5rem;
                color: var(--text-light);
                justify-content: center;
                align-items: center;
                background: var(--primary-color);
                font-size: 1rem;
                outline: none;
                border-radius: 30px;
                cursor: pointer;

                img {
                    margin: 0.5rem;
                }
            }

            .abt-btn:hover {
                background: var(--primary-color-hover);
            }
        }
    }
}


/* POPUP FORM */
#popup-container {
    position: fixed;
    top: 2rem;
    z-index: 2;
    left: 0;
    padding-top: 3%;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    display: none;
}


#popup-form {
    margin: auto;
    position: relative;
    width: fit-content;
    border-radius: 1rem;
    padding: 0 0.5rem 0 0.5rem;
    text-align: center;
    background-color: #ffffff;
    border: 5px solid var(--primary-color);

    h3 {
        color: var(--secondary-color);
    }

    form {
        display: flex;
        flex-direction: column;
        margin: 0.5rem 0.2rem;
        align-items: center;
        width: 95%;



        input {
            border: 1px solid var(--primary-color);
            margin: 0.5rem;
            border-radius: 0.5rem;
            padding: 0.5rem;
            width: 95%;
            background-color: var(--text-light);
        }

        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
        }

        .check {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;

            input {
                margin: 0;
                justify-self: flex-start;
                width: 2rem;
            }

            label {
                margin-left: 0;
                text-align: left;
                font-size: 0.7rem;
                color: var(--text-dark);
            }
        }

        #dropdown {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            width: 100%;
            gap: 1rem;
            margin: 0.5rem;

            .dropdown-list {
                /* appearance: none; */
                border: 1px solid var(--primary-color);
                padding: 0.5rem;
                font-size: 0.7rem;
                border-radius: 0.5rem;
                background-color: white;
                color: var(---bg-opacity2);
                cursor: pointer;
                transition: border-color 0.3s;



            }

            .dropdown-list:hover,
            .dropdown-list:focus {
                border-color: var(--primary-color);
                outline: none;
                color: var(--text-dark);
            }

            .dropdown-list::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 10px;
                width: 0;
                height: 0;
                border-left: 2px solid var(--primary-color);
                border-right: 2px solid var(--primary-color);
                border-top: 2px solid var(--primary-color);
                transform: translateY(-50%);
                pointer-events: none;
            }
        }


        .submit-btn {
            border-radius: 0.5rem;
            padding: 0.5rem;
            background-color: var(--btn-color2);
            font-size: 1rem;

            width: fit-content;
            color: var(--text-light);
            font-weight: bold;
            margin-top: 0.5rem;
            cursor: pointer;
        }

        .submit-btn:hover {
            background-color: var(--btn-color2-hover);
        }
    }

    ::placeholder {
        color: var(--text-dark);
        opacity: 0.3;
        font-size: 0.7rem;
    }

    input,
    select,
    textarea {
        color: var(--text-dark);
        font-size: 1rem;
        /* font-weight: bold; */
    }
}

.close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

/* SLIDER SECTION */

.swiper {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;

    .swiper-slide {
        object-fit: cover;
        background-position: center;
        background-size: cover;
        width: 500px;
        height: 275px;
        transition: 0.5s;

        img {
            display: block;
            width: 100%;
            -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0002, #0004);
        }

        img:hover {
            scale: 1.2;
            transition: 0.5s;
        }
    }

    .swiper-button-next,
    .swiper-button-prev {
        /* background-color: var(--primary-color); */
        color: var(--secondary-color);
        padding: 0.5rem;
        /* border: 2px solid var(--secondary-color); */
    }
}

/* WALL OF FAME SECTION */

.fame-wall {

    padding: 1rem;
    margin: 0 3rem 0 3rem;
    background: rgb(243, 243, 243);

    h2 {
        text-align: center;
        margin: 1rem 0;
        font-size: 3rem;
        font-weight: 600;
        color: var(--primary-color);
        padding-top: 1.5rem;
    }

    h4 {
        text-align: center;
        font-size: 1.3rem;
        margin-top: 1rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    p {
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        color: var(--primary-color);
    }

    img {
        border-radius: 1rem;
        width: 100%;
    }
}


/* CUSTOMER SATISFACTION SECTION */

.customer {
    h2 {
        text-align: center;
        margin-top: 2rem;
        font-size: 2rem;
        padding-top: 2rem;
        margin-bottom: 5rem;
    }

    .steps {
        display: flex;
        justify-content: space-evenly;
        align-items: center;

        .img-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-weight: 600;

            img {
                background-color: var(--primary-color);
                border-radius: 30%;
                padding: 0.2rem;
                text-align: center;
                margin-bottom: 1rem;
            }
        }
    }

}


/* LOGO SLIDER */

.logo-slider {
    overflow: hidden;

    .container {
        padding-top: 0.5rem;

        h2 {
            margin-top: 2rem;
            font-size: 2rem;
            margin-bottom: 5rem;
        }

        .slider-container {
            width: 100%;
            /* overflow: hidden;
            background: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            border-radius: 8px;
            padding: 20px;
        }

        .slider-wrapper {
            display: flex;
            animation: scroll 20s linear infinite;
        }

        .logo {
            flex: 0 0 auto;
            margin: 0 10px;
            width: 150px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .logo img {
            max-width: 100%;
            max-height: 100%;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .logo {
                width: 100px;
                height: 70px;
            }
        }



    }

    .slick-slide {
        margin: 0 20px;

        img {
            width: 100%;
        }

        .slick-slider {
            position: relative;
            display: block;
            box-sizing: border-box;
        }
    }

    .slick-list {
        position: relative;
        display: block;
        /* overflow: hidden; */
        margin: 0;
        padding: 0;
    }

    .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block
    }

    .slick-slide {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    .slick-slide img {
        display: block;
    }

    .slick-initialized .slick-slide {
        display: block;
    }

    .copy {
        padding-top: 250px;
    }
}

/* VIDEO SECTION */

.video-column {
    margin-top: 5rem;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding: 2rem;
    background: url(Assets/3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1rem;
    /* margin: 2rem; */

    .left-column {
        flex: 0 0 40%;
        padding: 1rem;
        box-sizing: border-box;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 2rem;
            /* margin-top: 2.5rem; */
            color: var(--text-light);
            font-weight: 700;
        }

        p {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.2rem;

        }

        .video-btn {
            display: flex;
            margin: 1.5rem;
            padding: 1rem;
            gap: 10px;
            z-index: 1;
            color: var(--text-dark);
            justify-content: center;
            align-items: center;
            background: var(--secondary-color);
            font-size: 1rem;
            outline: none;
            border-radius: 30px;
            cursor: pointer;
        }

        .video-btn:hover {
            color: var(--text-light);
            background: var(--secondary-color-hover);
        }
    }

    .right-column {
        flex: 0 0 60%;
        padding: 1rem;
        box-sizing: border-box;
        z-index: 1;

        video {
            width: 100%;
            text-align: center;
            border-radius: 2rem;
        }
    }



}

.video-column::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(---bg-opacity);

}

/* POPUP FORM */
#popup-container1 {
    position: fixed;
    top: 4rem;
    left: 0;
    z-index: 2;
    width: 100%;
    padding-top: 5%;
    height: 100%;
    backdrop-filter: blur(10px);
    display: none;
}

/* Style the form inside the popup */
#popup-form1 {
    margin: auto;
    position: relative;
    width: fit-content;
    border-radius: 1rem;
    padding: 0 0.5rem 0 0.5rem;
    text-align: center;
    background-color: #ffffff;
    border: 5px solid var(--primary-color);

    h3 {
        color: var(--secondary-color);
    }

    form {
        display: flex;
        flex-direction: column;
        margin: 0.5rem 0.2rem;
        align-items: center;
        width: 95%;



        input {
            border: 1px solid var(--primary-color);
            margin: 0.5rem;
            border-radius: 0.5rem;
            padding: 0.5rem;
            width: 95%;
            background-color: var(--text-light);
        }

        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
        }

        .check {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;

            input {
                margin: 0;
                justify-self: flex-start;
                width: 2rem;
            }

            label {
                margin-left: 0;
                text-align: left;
                font-size: 0.7rem;
                color: var(--text-dark);
            }
        }

        #dropdown {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            width: 100%;
            gap: 1rem;
            margin: 0.5rem;

            .dropdown-list {
                /* appearance: none; */
                border: 1px solid var(--primary-color);
                padding: 0.5rem;
                font-size: 0.7rem;
                border-radius: 0.5rem;
                background-color: white;
                color: var(---bg-opacity2);
                cursor: pointer;
                transition: border-color 0.3s;



            }

            .dropdown-list:hover,
            .dropdown-list:focus {
                border-color: var(--primary-color);
                outline: none;
                color: var(--text-dark);
            }

            .dropdown-list::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 10px;
                width: 0;
                height: 0;
                border-left: 2px solid var(--primary-color);
                border-right: 2px solid var(--primary-color);
                border-top: 2px solid var(--primary-color);
                transform: translateY(-50%);
                pointer-events: none;
            }
        }


        .submit-btn {
            border-radius: 0.5rem;
            padding: 0.5rem;
            background-color: var(--btn-color2);
            font-size: 1rem;

            width: fit-content;
            color: var(--text-light);
            font-weight: bold;
            margin-top: 0.5rem;
            cursor: pointer;
        }

        .submit-btn:hover {
            background-color: var(--btn-color2-hover);
        }
    }

    ::placeholder {
        color: var(--text-dark);
        opacity: 0.3;
        font-size: 0.7rem;
    }

    input,
    select,
    textarea {
        color: var(--text-dark);
        font-size: 1rem;
        /* font-weight: bold; */
    }
}


/* NUMBER SECTION */

/* .numbers {
    background-color: var(--primary-color);
    padding: 0.5rem 0 2rem 0;

    h2 {
        color: var(--text-light);
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
    }

    .data {
        display: flex;
        align-items: center;
        justify-content: space-evenly;

        .counter {
            display: flex;
            flex-direction: column;
            align-items: center;

            h1 {
                display: flex;
                line-height: 2rem;
                font-size: 2rem;
                color: var(--secondary-color);
                font-weight: 600;
                margin: 0;
            }

            p {
                margin: 0;
                font-weight: 600;
                color: var(--secondary-color);
                font-size: 1.5rem;
                line-height: 2rem;
            }
        }

    }
} */

/* EVERYSTYLE */

.everystyle {
    margin: 1rem;
    padding: 1rem;

    h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
    }

    p {
        font-size: 2rem;
        margin: 0;
    }

    .grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        margin: auto;
    }

    .grid-item {
        color: white;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        position: relative;

        img {
            object-fit: cover;
            border-radius: 20px;
            width: 100%;
            height: 40vh;
            border: 2px solid var(--secondary-color);
            box-shadow: 10px 20px 20px rgba(78, 75, 75, 0.721);
        }

        .btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            background-color: var(--btn-color2);
            color: var(--text-light);
            font-size: 1rem;
            padding: 0.8rem 1.3rem;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        .btn:hover {
            background-color: var(--btn-color2-hover);
        }
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 3rem;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: var(---bg-opacity);
        justify-content: center;
        align-items: center;

        .close {
            position: absolute;
            top: 5rem;
            right: 3rem;
            color: var(--btn-color);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .related-images {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 1rem 2rem;

            img {
                width: 30vw;
                height: 40vh;
                object-fit: cover;
            }

        }
    }
}

/* DESIGN */

.design {
    margin: 3rem 3rem 0 3rem;

    img {
        width: 100%;
        object-fit: cover;
    }

    form {
        display: flex;
        justify-content: start;
        align-items: self-start;
        flex-direction: column;
        position: relative;

        input {
            margin: 1rem;
            padding: 2rem;
            width: 50vw;
            border-radius: 2rem;
            z-index: 3;
        }

        img {
            position: absolute;
            right: 0;
            top: -3rem;
            z-index: 1;
        }
    }



    ::placeholder {
        color: var(--text-dark);
        opacity: 0.7;
        font-size: 1rem;
        font-weight: bold;

    }

    input,
    select,
    textarea {
        color: var(--text-dark);
        font-size: 1rem;
        font-weight: bold;
    }

    p {
        font-size: 1.2rem;
    }

    .checkbox {
        width: 40px;
        height: 20px;
        accent-color: var(--primary-color);
    }

    button {
        border-radius: 1rem;
        padding: 0.5rem 2rem;
        background-color: var(--btn-color2);
        font-size: 1rem;
        color: var(--text-light);
        font-weight: bold;
        margin-bottom: 0.5rem;
        cursor: pointer;
    }
}



/* TESTIMONIAL */

.testimonials {
    padding: 2rem;
    background-color: #79926B;
    text-align: center;
    margin: 1rem 3rem;
    position: relative;

    h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
        background: transparent;
        color: var(--text-light);
    }

    .testimonial-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* position: relative; */
        gap: 2rem;

        .testimonial-card {
            background-color: #f9f9f9;
            padding: 0.5rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            .content {
                text-align: left;
                font-style: italic;
                font-size: 1rem;
            }

            .client-info {
                margin-top: 1rem;

                h3 {
                    font-size: 1.5rem;
                }
            }
        }
    }


}

.testimonials::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(Assets/Testimonial_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* NUMBER SECTION */

.numbers2 {
    background-color: var(--text-light);

    .hl {
        display: none;
    }

    .data {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 2rem;

        .count-heading {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 3rem;
            line-height: 2rem;
            text-align: center;

            div {
                margin-top: 0.2rem;
                font-size: 1.5rem;
                font-weight: 400;

            }
        }
    }
}

.Rakhi {
    margin: 2rem 3rem 0 3rem;
    background: url('Assets/Rakhi_Poster.jpg') no-repeat center center/cover;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;

    .Rakhi-content {
        position: relative;
        z-index: 1;
        align-items: center;
        justify-content: center;}
        }
        
        
/* CONSULTATION */

.consult {
    margin: 2rem 3rem 0 3rem;
    background: url('Assets/7.jpg') no-repeat center center/cover;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;

    .consult-content {
        position: relative;
        z-index: 1;
        align-items: center;
        justify-content: center;

        h1 {
            font-family: 'Bakbak One';
            font-size: 4rem;
            margin: 0;
            padding: 0 1rem;
            font-weight: 400;

            span {
                color: var(--secondary-color);
            }
        }

        h5 {
            font-size: 1.5rem;
            margin: 1rem 0;

        }


        a {
            margin: auto;

            button {
                display: flex;
                margin-inline: auto;
                padding: 1rem;
                z-index: 2;
                color: var(--text-dark);
                justify-content: center;
                align-items: center;
                background: var(--secondary-color);
                font-size: 1.5rem;
                outline: none;
                border-radius: 30px;
                cursor: pointer;
            }

            button:hover {
                color: var(--text-light);
                background: var(--secondary-color-hover);
            }
        }
    }
}

.consult::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(---bg-opacity);

}

/* WHY US */

.why-us {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    margin: 0 3rem 0 3rem;
    background-color: var(--primary-color);

    .column {
        margin: 1.5rem;
    }


    p {
        font-size: 1.3rem;

        span {
            color: var(--secondary-color);
        }
    }

    ul {
        margin-left: 1rem;
    }

    .left-column,
    .center-column,
    .right-column {
        box-sizing: border-box;
    }

    .left-column {
        flex: 0 0 45%;
        color: var(--text-light);

    }

    .center-column {
        flex: 0 0 32%;
        color: var(--text-light);

    }

    .right-column {
        flex: 0 0 45%;
        color: var(--text-light);

    }

}

/* FOOTER */

.footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #333;
    color: #fff;
    padding: 2rem;
    margin: 0 3rem 0 3rem;

    .footer-column1 {
        flex: 1 1 35%;

        padding: 1rem;
        box-sizing: border-box;

        p {
            font-size: 1.3rem;

            span {
                color: var(--secondary-color);
            }
        }
    }

    .footer-column2 {
        flex: 1 1 15%;

        padding: 1rem;
        box-sizing: border-box;

        ul {
            list-style: none;
            padding: 0;

            li {
                margin-bottom: 0.5rem;

                a {
                    color: #fff;
                    text-decoration: none;
                    font-size: 1.3rem;
                }

                a:hover {
                    text-decoration: underline;
                }
            }
        }
    }

    .footer-column3 {
        flex: 1 1 20%;

        padding: 1rem;
        box-sizing: border-box;

        ul {
            list-style: none;
            padding: 0;

            li {
                margin-bottom: 0.5rem;

                a {
                    color: #fff;
                    text-decoration: none;
                    font-size: 1.3rem;
                }

                a:hover {
                    text-decoration: underline;
                }
            }

            .social {
                display: flex;
                gap: 1rem;
            }
        }

        .right-column {
            color: var(--text-light);
            margin-top: 1.3rem;

            p {
                font-size: 1.3rem;

                span {
                    color: var(--secondary-color);
                }
            }
        }
    }

    .footer-column4 {
        flex: 1 1 25%;

        padding: 1rem;
        box-sizing: border-box;
        border-radius: 1rem;
        padding: 0 0.5rem 0 0.5rem;
        text-align: center;

        h3 {
            color: var(--secondary-color);
        }

        form {
            display: flex;
            flex-direction: column;
            margin: 0.5rem 0.2rem;
            align-items: center;
            width: 100%;



            input {
                border: 1px solid var(--primary-color);
                margin: 0.5rem;
                border-radius: 0.5rem;
                padding: 0.5rem;
                width: 100%;
                background-color: var(--text-light);
            }

            input::-webkit-outer-spin-button,
            input::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            input[type=number] {
                -moz-appearance: textfield;
            }

            .check {
                display: flex;
                flex-direction: row;
                align-items: center;
                width: 100%;

                input {
                    width: 2rem;

                    label {
                        margin-left: 0;
                        text-align: left;
                    }
                }
            }

            #dropdown {
                display: flex;
                justify-content: flex-start;
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                margin: 0.5rem;

                .dropdown-list {
                    /* appearance: none; */
                    border: 1px solid var(--primary-color);
                    padding: 0.5rem;
                    font-size: 0.7rem;
                    border-radius: 0.5rem;
                    background-color: white;
                    color: var(---bg-opacity2);
                    width: 100%;
                    cursor: pointer;
                    transition: border-color 0.3s;



                }

                .dropdown-list:hover,
                .dropdown-list:focus {
                    border-color: var(--primary-color);
                    outline: none;
                    color: var(--text-dark);
                }

                .dropdown-list::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 10px;
                    width: 0;
                    height: 0;
                    border-left: 2px solid var(--primary-color);
                    border-right: 2px solid var(--primary-color);
                    border-top: 2px solid var(--primary-color);
                    transform: translateY(-50%);
                    pointer-events: none;
                }
            }


            .submit-btn {
                border-radius: 0.5rem;
                padding: 0.5rem;
                background-color: var(--btn-color2);
                font-size: 1rem;

                width: fit-content;
                color: var(--text-light);
                font-weight: bold;
                margin-top: 0.5rem;
                cursor: pointer;
            }

            .submit-btn:hover {
                background-color: var(--btn-color2-hover);
            }
        }

        ::placeholder {
            color: var(--text-dark);
            opacity: 0.3;
            font-size: 0.7rem;
        }

        input,
        select,
        textarea {
            color: var(--text-dark);
            font-size: 1rem;
            /* font-weight: bold; */
        }

        button {
            border-radius: 1rem;
            padding: 0.5rem 2rem;
            background-color: var(--btn-color2);
            font-size: 1rem;
            color: var(--text-light);
            font-weight: bold;
            margin-bottom: 0.5rem;
            cursor: pointer;
        }
    }

    /* ::placeholder {
        color: var(--text-dark);
        opacity: 0.7;
        font-size: 1rem;
        font-weight: bold;

    }

    input,
    select,
    textarea {
        color: var(--text-dark);
        font-size: 1rem;
        font-weight: bold;
    } */

}




/* RESPONSIVENESS SECTION */

@media (max-width: 768px) {


    /* NAVBAR */
    .navbar {
        flex-direction: column;


        .logo,
        .call-button {
            margin: 8px 0;
        }

        .call-button {
            display: none;
        }

        .floating-logo {
            .call-btn {
                display: block;
            }
        }
    }

    /* HOME */
    .home {
        flex-direction: column;
        justify-content: space-evenly;

        .home-content {
            h1 {
                font-size: 2.5rem;
            }

            h5 {
                font-size: 1rem;
            }
        }
    }

    /* ABOUT US */
    .about-us {
        .text-content {
            flex-direction: column;

            p {
                margin: 0;
            }
        }
    }

    #popup-container,
    #popup-container1 {
        top: 10rem;
    }

    .swiper {

        .swiper-button-next,
        .swiper-button-prev {
            visibility: hidden;
        }
    }

    /* VIDEO */

    .video-column {
        flex-direction: column;
    }

    /* NUMBER */
    .numbers {
        .data {
            flex-direction: column;

            .counter {
                margin-top: 1rem;
            }
        }
    }

    /* EVERYSTYLE */
    .everystyle {
        .grid-container {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
        }
    }

    /* DESIGN */
    .design {
        margin: 0;

        form img {
            display: none;
        }
    }

    /* CUSTOMER SATISFACTION */
    .customer {
        h2 {
            margin-top: 5rem;
        }

        .steps {
            flex-direction: column;

            .img-text {
                margin-bottom: 6rem;

                scale: 1.5;
            }
        }
    }

    .left-column,
    .right-column {
        flex-basis: 100%;
    }

    /* TESTIMONIAL  */
    .testimonials {
        margin: 1rem 1rem;

        .testimonial-container {
            flex-direction: column;
            align-items: center;
        }

        .testimonial-card {
            max-width: 80%;
        }
    }


    /* NUMBER */
    .numbers2 {
        .data {
            flex-direction: column;

            .vl {
                display: none;
            }

            .hl {
                visibility: visible;
                display: block;
            }
        }

    }


    .consult,
    .fame-wall {
        margin: 0 2rem;

    }

    /* WHY US */
    .why-us {
        margin: 0 2rem;

        .left-column {
            flex: 0 0 100%;
        }

        .center-column {
            flex: 0 0 100%;
        }

        .right-column {
            flex: 0 0 100%;
        }
    }

    /* FOOTER SECTION */
    .footer {
        margin: 0 2rem 0 2rem;

        .footer-column {
            flex: 1 1 50%;
        }
    }

}





@media (max-width: 480px) {


    .navbar {


        .logo {
            a {
                img {
                    width: 180px;
                    height: 30px;
                }
            }
        }

        .call-button {
            a {
                padding: 10px 15px;
            }

        }
    }

    .home h1 {
        font-size: 1.5rem;
    }

    /* EVERYSTYLE */
    .everystyle {
        .grid-container {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(6, 1fr);
        }
    }

    .about-us,
    .consult,
    .why-us,
    .fame-wall {
        margin: 0 1rem 0 1rem;
    }

    #popup-container,
    #popup-container1 {
        top: 2rem;
    }

    /* NUMBER SECTION */

    .numbers2 {
        .data {
            .count-heading {
                font-size: 2rem;

                div {
                    font-size: 1rem;
                }
            }
        }
    }


    /* CUSTOMER SATISFACTION */
    .customer {
        h2 {
            margin-top: 5rem;
            font-size: 1.5rem;
        }

        .steps {
            flex-direction: column;

            .img-text {
                margin-bottom: 3rem;
                scale: 1;
            }
        }
    }

    /* WHY US */
    .why-us {
        .left-column {
            flex: 0 0 100%;
        }

        .center-column {
            flex: 0 0 100%;
        }

        .right-column {
            flex: 0 0 100%;
        }
    }

    .footer {
        margin: 0 1rem 0 1rem;

        .footer-column {
            flex: 1 1 100%;
        }
    }


}

/* SCROLBAR SECTION */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar:hover {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
}


.testimonial-container {
    width: 100%;
    position: relative;
    overflow: hidden;

}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    height: fit-content;
    flex: 0 0 33%;
    box-sizing: border-box;
    padding: 1.5rem;
    text-align: center;
}

.testimonial img {

    width: 95vw;
    height: 90%;
    object-fit: cover;
}

.buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.button {
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* color: white; */
    border: none;
    padding: 10px;
    cursor: pointer;
    visibility: hidden;
}

@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 100%;
    }

    .logo-slider {
        .slick-slider {
            transform: scale(5);
            margin-bottom: 10rem;
        }
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 0.5rem;
    }
}