#logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
    opacity: 1;
    transition: opacity 1s ease-in-out; /* Transition for fade-out effect */
}


#logo {
    max-width: 500px;
    /* max-height: 90%; */
    /* animation: logoAnimation 2s ease-in-out; Apply the animation */
}

/* Keyframes for the logo animation */
@keyframes logoAnimation {
    0% {
        transform: scale(1); /* Initial size */
    }
    50% {
        transform: scale(1.1); /* Scale up slightly */
    }
    100% {
        transform: scale(1); /* Return to original size */
    }
}








/* ======= header ========= */

header {
    color: #fff;

    .main-top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-header {
        padding: 10px 0px;
        font-size: 14px;
        border-bottom: 1px solid #ccc;
        background-color: var(--secondary-color);
    }

    .shop-details {
        display: flex;
        gap: 20px;
        align-items: center;
        a{
            display: flex;
            gap: 10px;
            align-items: center;
        }
    }

    .shop-product-icon {
        display: flex;
        gap: 20px;
        font-size: 20px;
    }

    a {
        color: #fff;
    }

    .main-bottom-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo{
        img{
            width: 300px;
        }
    }
    .bottom-header{
        border-bottom: 2px solid #ccc;
        background: #f4f4f4;
        transition: all .3s linear;
    }
    .primary-menu {
        display: flex;
        align-items: center;
        gap: 20px;

        ul {
            display: flex;
            gap: 10px;

            a {
                padding: 8px 15px;
                color: #000;
            }
        }

    }

    .social-media {
        display: flex;
        align-items: center;
        gap: 20px;

        img {
            width: 26px;
        }
    }

    .bottom-header {
        padding: 15px 0px 15px;
    }

    .left {
        display: flex;
        gap: 40px;
    }

    .header-cart-info {
        display: flex;
        gap: 20px;
        font-size: 20px;
    }

    .header-cart {
        position: relative;
    }

    #cartCount {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--primary-color);
        border-radius: 50px;
        padding: 2px;
        width: 20px;
        height: 20px;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ========== banner ========= */

.hero-section {

    padding: 40px 0px;

    .main-hero-section {
        display: flex;
        gap: 40px;
    }

    .banner {
        width: 65%;
        /* height: 100%; */
    }
    /* .phone-banner{
        display: none;
    } */
     

        .phone-view{
            display: none !important;
        }

    .banner-item {
        height: 100%;
        position: relative;

        .item {
            height: 100%;
            overflow: hidden;

            a {
                display: block;
                height: 100%;
            }

            img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                transition: all .2s linear;
            }
        }

        .item:hover img {
            transform: scale(1.1);
        }

        .owl-dots {
            position: absolute;
            top: 0;
            background-color: #fff;
            margin-top: 0px !important;
            display: flex;
            flex-direction: column;
            padding: 10px;

            .owl-dot span {
                width: 28px;
                height: 5px;
                /* background-color: var(--primary-color); */
            }

            .owl-dot.active span {
                background-color: var(--primary-color);
            }
        }
        .owl-carousel .owl-stage-outer{
            height: 100%;
        }
        .owl-carousel .owl-stage{
            height: 100%;
        }
        .owl-carousel.owl-drag .owl-item{
            height: 100%;
        }
    }

    .popular-categories {
        width: 35%;

        .popular-items {
            display: grid;
            grid-template-rows: 1fr 1fr;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .item {
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;

            a {
                display: flex;
            }

            .item-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                position: absolute;
                padding: 20px;
                width: 100%;
                height: 100%;
                gap: 10px;

                /* background: #00000042; */
                a {
                    color: #ffffff;
                }

                h6 {
                    font-weight: 600;
                    font-size: 26px;
                    text-shadow: 0px 2px 10px #222;
                }

                .po-cate-btn {
                    background-color: var(--primary-color);
                    padding: 5px 10px;
                    color: #fff;
                    transition: all .2s linear;
                }

                .po-cate-btn:hover {
                    background-color: var(--secondary-color);
                }
            }

            img {
                transition: all .2s linear;
            }
        }

        .item:hover img {
            transform: scale(1.1);
        }
    }
}


/* ========== support_block =========== */

.main-support {
    display: flex;
    gap: 30px;

    .support-item {
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0px 20px;
        border-right: 1px solid #ccc;
    }

    .icon img {
        width: 54px;
    }

    .support-item:nth-last-child(1) {
        border: none;
    }

    .support-item-content {
        span {
            color: #848484;
            font-size: 14px;
        }
    }
}


/* ========== Categories ========= */

.home-shop-categories {
    padding: 80px 0px 0px;

    h2 {
        text-align: center;
    }

    .main-categories {
        margin-top: 40px;
    }

    .single-item-img {
        display: flex;
        img{
            transition: all .2s linear;
        }
    }
    .categorie-single-item{
        overflow: hidden;
    }

    .categories-items {
        display: flex;

        .item {
            position: relative;
        }

        .single-item-content {
            position: absolute;
            bottom: 50px;
            width: 100%;
            text-align: center;
        }
    }
    .categorie-single-item:hover img{
        transform: scale(1.1);
    }
}

.marquee-tagline {
    padding: 20px 0px;
    background: linear-gradient(100deg, #ff7000 0%, #ffbf00 100%);

    .main-marquee {
        display: flex;
        gap: 40px;
        font-size: 40px;
        color: #fff;
        align-items: center;
    }


}

.about-us {
    padding: 100px 0px;

    .main-about-us {
        display: flex;
        align-items: center;
        gap: 50px;

        .about-img {
            width: 50%;
            background: url(../upload/icon/element-1-2.png);
            background-position: center;
            background-size: contain;
            display: flex;
            align-items: center;
            gap: 30px;

            img {
                border-radius: 20px;
            }

            .single-img {
                width: 50%;
            }

            .group-img {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 30px;
            }
        }

        .about-content {
            width: 50%;
            display: flex;
            flex-direction: column;
            align-items: self-start;
            gap: 20px;
        }

    }
}


.our-products {
    padding: 100px 0px;

    .our-product-heading {
        width: 50%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .main-products {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }

    .item {
        padding: 20px;
        background: #e7e7e7;
        border-radius: 15px;

        .img-box {
            border-radius: 8px;
            overflow: hidden;
            display: flex;

            img {
                transition: all .4s linear;
            }
        }

        .product-content {
            padding: 20px 0px 0px;
            text-align: center;

            .product-title {
                font-size: 22px;
            }
        }
    }

    .item:hover img {
        transform: scale(1.1);
    }
}

.how-we-work {
    padding: 100px 0px;
    background: #f3e6c0;
    background-image: url(../upload/icon/element-1-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90% auto;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;

    .we-work-heading {
        width: 50%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .link-call {
        font-size: 14px;

        a {
            color: #000;
        }

        a:hover {
            color: #a65fc3;
        }
    }

    .main-how-we-work {
        display: flex;
        gap: 50px;
        margin-top: 80px;
    }

    .step {
        background: #fff;
        border-radius: 20px;
        padding: 0px 20px 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;


        h5 {
            font-size: 24px;
            color: #000;
            margin: 14px 0px;
        }

        p {
            font-size: 14px;
        }

        img{
            width: 80%;
        }
        .step-count {
            width: 60px;
            height: 60px;
            background: #a65fc3;
            color: #fff;
            border-radius: 50%;
            font-size: 24px;
            padding: 10px;
            display: block;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -20px;
        }
    }

    .step-1{
        .step-count{
            background-color: #ff7000;
        }
    }
    .step-3{
        .step-count{
            background-color: #10a19d;
        }
    }
}

.about-us.according{
    .about-img {
        width: 50%;
        background: url(../upload/icon/element-2-2.png);
        background-position: center;
        background-size: contain;
        display: flex;
        align-items: center;
        gap: 30px;
    }
}


footer{
    .main-top-footer{
        display: flex;
        gap: 40px;
        padding: 50px 0px;
    }
    .item-box{
        flex: 1;
        flex-shrink: 0;
        padding: 25px;
        border-radius: 10px;

        h5{
            font-size: 24px;
            margin-bottom: 15px;
        }
        ul{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
         a{
            color: #222;
        }
        
    }
    .box1{
        background-color: #ffdcc0;

        a{
            font-size: 18px;
        }
    }
    .box2{
        background-color: #2ba6a28a;
        .item-contact{
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .item-contact:nth-child(3){
            margin: 15px 0px;
        }
        .icon{
            width: 50px;
            height: 50px;
            background-color: #000;
            color: #fff;
            border-radius: 50%;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .content{
            display: flex;
            flex-direction: column;
            font-size: 18px;
            color: #000;
            a{
                font-size: 16px;
            }
        }
    }
    .box3{
        background: linear-gradient(180deg, #c5e9e7 0%, #f3e6c0 100%);

        ul{
            margin-top: 15px;
            font-size: 18px;
        }
    }

    .bottom-footer{
        background-color: #000;
        color: #fff;
        font-size: 14px;
        padding: 15px 0px;
        a{
            color: #fff;
        }
    }
    .main-bottom-footer{
        text-align: center;
        img{
            width: auto;
            margin-top: 10px;
        }
    }
}