.HomeBanner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;

    @media (max-width: 767px) {
        align-items: flex-end;
        padding-bottom: 50px;
        height: 80vh;
    }

    .BannerVideo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: -2;

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            @media (max-width: 767px) {
                object-position: bottom;
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35); 
        z-index: -1;
    }

    .Container {
        position: relative;
        z-index: 2;
    }

    .Cnt {
        max-width: 790px;
        margin: 0 auto;
        text-align: center;

        h1 {
            font-size: 75px;
            font-weight: 700;
            line-height: 78px;
            color: var(--white-color);

            @media (max-width: 1333px) {
                font-size: 47px;
            }

            @media (max-width: 1024px) {
                font-size: 45px;
            }

            @media (max-width: 575px) {
                font-size: 40px;
                line-height: 42px;
            }
        }

        p {
            margin: 24px 0;
            color: var(--white-color);
        }
        
        .Btn-primary {
            margin: 0 auto;
        }
    }
}

/* HOME CATEGORY */
.HomeCategory {
    margin: 100px 0;

    @media (max-width: 991px) {
        margin: 50px 0;
    }

    .Header {
        text-align: center;
    }

    ul {
        margin-top: 50px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;

        @media (max-width: 991px) {
            gap: 24px;
            justify-content: center;
        }

        li {
            overflow: hidden;
            aspect-ratio: 519/588;
            border-radius: 20px;
            width: calc(33.33% - 16px);
            position: relative;

            @media (max-width: 991px) {
                width: calc(50% - 12px);
            }

            @media (max-width: 600px) {
                width: 100%;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: 0.4s ease;
            }

            .Content {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 30px;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                background: linear-gradient(to top,
                        rgba(199, 153, 58, 0.7) 0%,
                        rgba(199, 153, 58, 0) 100%);
                transition: cubic-bezier(0.075, 0.82, 0.165, 1)0.5s;

                @media (max-width: 1333px) {
                    padding: 15px;
                }

                h3 {
                    font-size: 22px;
                    font-weight: 600;
                    color: var(--white-color);

                    @media (max-width: 1024px) {
                        font-size: 20px;
                    }

                }

                p {
                    margin: 4px 0;
                    font-size: 16px;
                    color: var(--white-color);
                    opacity: 0.9;

                    @media (max-width: 1333px) {
                        font-size: 14px;
                    }

                }

                a {
                    color: var(--white-color);
                    text-decoration: underline;
                    font-weight: 400;
                    font-size: 14px;
                    letter-spacing: 1.5px;


                }
            }

            &:hover {
                img {
                    transform: scale(1.05);
                }

                .Content {
                    height: 100%;
                    background: linear-gradient(to top,
                            rgba(199, 153, 58, 0.9) 0%,
                            rgba(199, 153, 58, 0.0) 100%);

                    h3,
                    p {
                        transform: translateY(0);
                    }
                }
            }
        }
    }
}

/* HOME ABOUT */
.HomeAbout {
    padding: 100px 0;
    background: linear-gradient(to top,
            rgba(238, 217, 157, 0.2) 0%,
            rgba(238, 217, 157, 0) 100%);

    @media (max-width: 991px) {
        padding: 50px 0;
    }

    .AboutCnt {
        display: flex;
        align-items: center;
        gap: 24px;

        @media (max-width: 991px) {
            flex-flow: row wrap;
        }

        .Image {
            width: calc(50% - 12px);

            @media (max-width: 991px) {
                width: 100%;
            }

            img {
                border-radius: 20px;
                width: 100%;
            }
        }

        .AboutContent {
            width: calc(50% - 12px);
            max-width: 600px;
            margin: 0 auto;

            @media (max-width: 991px) {
                width: 100%;
                margin: 0;
            }

            p {
                margin: 20px 0;
            }
        }
    }

    .Whychooses {
        margin-top: 100px;

        .Header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;

            h2 {
                margin-bottom: 15px;
            }
        }

        .WhychooseWrapper {
            display: flex;
            justify-content: space-between;
            gap: 100px;
            margin: 50px auto 0;
            max-width: 70%;
            position: relative;

            @media (max-width: 991px) {
                flex-direction: column;
                gap: 50px;
            }


            @media (max-width: 1333px) {
                max-width: 90%;
            }

            @media (max-width: 1024px) {
                max-width: 100%;
            }

            .Line {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 2px;
                height: 70%;
                background: var(--primary-color);

                @media (max-width: 991px) {
                    display: none;
                }
            }


            .Left {
                margin-top: 106px;
                text-align: right;

                @media (max-width: 991px) {
                    margin-top: 0;
                    padding-right: 50px;
                    position: relative;

                    &::before {
                        content: "";
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        right: 0;
                        width: 2px;
                        height: 65%;
                        background: var(--primary-color);
                    }

                }

                li {
                    position: relative;

                    &::after {
                        width: 20px;
                        height: 20px;
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: -60px;
                        transform: translateY(-50%);
                        background: linear-gradient(to bottom,
                                #DAAC6A 0%,
                                #EAC58A 100%);
                        border-radius: 50%;
                    }
                }
            }

            .Right {
                position: relative;

                @media (max-width: 991px) {
                    padding-left: 50px;

                    &::before {
                        content: "";
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        left: 0;
                        width: 2px;
                        height: 65%;
                        background: var(--primary-color);
                    }
                }

                li {
                    position: relative;

                    &::after {
                        width: 20px;
                        height: 20px;
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: -60px;
                        transform: translateY(-50%);
                        background: linear-gradient(to bottom,
                                #DAAC6A 0%,
                                #EAC58A 100%);
                        border-radius: 50%;
                    }
                }
            }

            .Left,
            .Right {
                display: flex;
                flex-direction: column;
                gap: 100px;
                width: calc(50% - 50px);

                @media (max-width: 991px) {
                    width: 100%;
                    gap: 50px;
                }
            }

            li {
                display: flex;
                align-items: center;
                gap: 18px;
                background-color: var(--white-color);
                padding: 20px;
                border-radius: 20px;

                i {
                    background: linear-gradient(to bottom,
                            #DAAC6A 0%,
                            #EAC58A 100%);
                    width: 70px;
                    height: 70px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 6px;
                    font-size: 28px;
                    color: var(--white-color);
                }

                .cnt {
                    width: calc(100% - 70px);

                    h3 {
                        font-size: 22px;
                        font-weight: 500;
                        margin-bottom: 3px;
                    }

                    p {
                        font-size: 17px;
                    }
                }
            }
        }
    }
}

/* HOME NEW ARRIVAL */
.NewArivals {
    margin: 100px 0;

    .HeaderFlex {
        display: flex;
        align-items: end;
        justify-content: space-between;

        @media (max-width: 761px) {
            flex-direction: column;
            gap: 20px;
            align-items: start;
        }
    }

    .ArrivalSlider {
        margin-top: 50px;

        li {
            margin: 0 10px;

            .Image {
                width: 100%;
                aspect-ratio: 385/476;
                overflow: hidden;
                border-radius: 12px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            h3 {
                font-weight: 400;
                font-size: 20px;
                margin-top: 12px;
            }
        }

        .prev-btn,
        .next-btn {
            width: 35px;
            height: 35px;
            border-radius: 50px;
            background-color: var(--primary-color);
            color: var(--white-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 99;
            transition: cubic-bezier(0.075, 0.82, 0.165, 1)1s;

            &:hover {
                background-color: var(--secondary-color);
            }
        }

        .next-btn {
            right: -8px;
        }

        .prev-btn {
            left: -8px;
        }

    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;

    &.show {
        display: flex;
    }

    .modal-content {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        max-width: 500px;
        width: 90%;
        position: relative;
        text-align: center;

        img {
            width: 100%;
        }

        .Cnt {
            padding: 20px;
            position: absolute;
            bottom: 19px;
            left: 0;
            right: 0;

            h3 {
                color: var(--primary-color);
            }

            h2 {
                color: var(--white-color);
                font-size: 35px;

                br {
                    display: contents;
                }
            }

            p {
                margin: 13px 0;
                color: var(--white-color);
                opacity: 0.8;
                font-size: 16px;
            }

            .BtnFlex {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-top: 23px;
                justify-content: center;

                .Whatsapp {
                    background-color: #25D366;
                    transition: cubic-bezier(0.075, 0.82, 0.165, 1)1s;

                    &:hover {
                        background-color: var(--white-color);
                        color: #25D366;
                        ;
                    }

                }

                .Showroom {
                    background-color: var(--white-color);
                    color: var(--black-color);
                    transition: cubic-bezier(0.075, 0.82, 0.165, 1)1s;

                    &:Hover {
                        background-color: var(--primary-color);
                        color: var(--white-color);
                    }
                }
            }
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            border: none;
            background: none;
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
            background-color: var(--white-color);
            color: var(--black-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: #000;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s ease;

            &:hover {
                opacity: 0.9;
            }
        }
    }
}