/* ====== hader ========== */
.improtant-updates{
    padding: 5px;
    font-size: 14px;
    background-color: #000;
    color: #f1f1f1;

    marquee{
display: block;
    font-size: 14px;
    }
}

header {
    .top-header {
        padding: 10px 0px;
        background-color: #e5677d;

        .main-top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .shop-details {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;

            i {
                margin-right: 10px;
            }
        }

        .header-social-icons {
            display: flex;
            gap: 20px;
            align-items: center;
            font-size: 18px;
        }

        a {
            color: #ffffff;
        }
    }

    .bottom-header {
        padding: 15px 0;
        transition: all .5s ease;

        .menu-icon {
            /* width: 0; */
            display: none;
          }

          
        .main-bottom-header {
            display: flex;
            align-items: center;
            justify-content: space-between;

            .logo {
                img {
                    max-width: 200px;
                    filter: drop-shadow(4px 2px 2px #3878a5);
                }
            }
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;

            nav {
                ul {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                a {
                    color: #000;
                    font-size: 18px;
                    padding: 10px 10px;
                }
                .active-menu{
                    color: #3878a5;
                }
            }
        }
    }
}

/* ======== banner ======== */

.hero-section {
    padding: 250px 0px;

    background-position: center;
    background-size: cover;
    object-fit: cover;

    background-size: cover;
    animation: change 15s infinite ease-in-out;
    transition: all .3s ease-in-out;

    .banner-content {
        text-align: center;
        width: 70%;
        margin: 0 auto;
        color: #fff;
    }

    h1 {
        color: #fff;
        letter-spacing: 5px;
    }
}

@keyframes change {

    0% {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../upload/banner.webp);
        ;
        background-size: cover;
        background-position: center;
    }

    100% {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../upload/banner2.webp);
        background-size: cover;
        background-position: center;
    }
}

/* ====== services section ========== */

.makeup{
    background: url(../upload/testimonial.webp);
background-position: center;
background-size: cover;
text-align: center;

.main-makeup{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
    margin-top: 40px;
}

.primary-btn{
    margin-top: 30px;
}

}

.services {
    .main-services {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-top: 40px;
    }

    .section-heading {
        text-align: center;
    }

    h6 {
        margin-top: 15px;
    }

    .services-item {
        border: 1px solid #ccc;
        /* background: #d5d1d1; */
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
    }

    .item-icon {
        margin-top: -40px;

        span {
            display: block;
            width: 80px;
            background-color: pink;
            border-radius: 50px;
            height: 80px;
            margin: 0px auto;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        img {
            width: 62px;
        }
    }

    .item-img {
        display: flex;
        height: 250px;
        overflow: hidden;

        img {
            z-index: -1;
            width: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: all .2s linear;
        }
    }

    .item-content {
        text-align: center;
        padding: 0px 10px 15px;

        h5 {
            margin-top: 20px;
        }

        p {
            font-size: 14px;
        }
    }

    .primary-btn {
        text-align: center;
        margin-top: 40px;
    }

    .services-item:hover .item-img img {
        transform: scale(1);
    }
}


.section-heading {
    .wdt-content-image {
        position: relative;
        display: inline-flex;
    }

    .wdt-content-image::before {
        content: '';
        position: relative;
        width: 45px;
        height: 4px;
        background-color: #000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        margin: auto;
    }

    .wdt-content-image::after {
        content: '';
        position: relative;
        width: 45px;
        height: 4px;
        background-color: #000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        margin: auto;
    }

    .wdt-content-image a {
        margin: 0 10px;
        display: inline-flex;
    }
}

/* ======== about us ============ */

.about-us {
    background: #fdf5f7;

    .main-about-us {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .about-img {
        width: 50%;

        img{
            border-radius: 10px;
            width: 500px;
        }
    }

    .about-content {
        width: 50%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* =========== video =========== */

.quality-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/cta-banner.webp);
    padding: 200px 0px;
    color: #fff;
    text-align: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    h6 {
        color: #fff;
        letter-spacing: 4px;
        font-size: 28px;
    }

    .quality-content {
        width: 100%;
        max-width: 60%;
        margin: 0px auto;
    }

    h3 {
        font-size: 60px;
    }
}

.quality-items {
    margin-top: -150px;

    .main-quality-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-top: 40px;
    }

    .item {
        background-color: #faf5f3;
        padding: 20px 20px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;


        img {
            width: 100px;
        }
    }
}


/* ========== testimonial ========== */

.testimonial {
    .section-heading {
        text-align: center;
    }
    .primary-btn {
        margin-top: 30px;
        text-align: center;
    }

    .main-testimonial {
        margin-top: 50px;

        .item {
            background: url(../upload/testimonial.webp);
            padding: 30px;
            border-radius: 20px;
            background-size: cover;
            background-position: center;

            img {
                width: 160px;
            }

            .author-name {
                display: inline-block;
                margin-top: 15px;
                font-size: 20px;
                font-weight: 600;
            }
        }
    }
}

footer {
    background-color: #1d1d1d;

    .top-footer {
        padding: 50px 0px;
    }

    .main-top-footer {
        display: flex;
        justify-content: space-between;
        color: #fff;

        a {
            color: #fff;
            font-size: 14px;
        }

        h5 {
            color: #fff;
            margin-bottom: 20px;
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        i {
            margin-right: 10px;
        }

        .footer-social {
            margin-top: 20px;
            font-size: 24px;

            a i {
                transition: all .2s linear;
            }

            a:hover i {
                margin-top: -5px;
            }
        }
    }
.bottom-footer{
    background-color: #2c2c2c;
    padding: 10px 0px;
}
    .main-bottom-footer{
        text-align: center;
        color: #fff;
        font-size: 14px;
        a{
            color: #fff;
        }
    }
}




/* ============ inner page ============ */

#about-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/about-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }

    .main-about-more{
        display: flex;
        gap: 40px;
    }
    .about-more-img{
        width: 40%;
        overflow: hidden;
        border-radius: 10px;

        img{
border-radius: 10px;
        }
    }
    .about-more-content{
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .main-benefit{
        display: flex;
        gap: 40px;
        .box{
            width: 50%;
            background: #e9e9e9;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 1px 1px 12px #cccccc94;
        }
        ul{
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            li{
                list-style: disc;
                list-style-position: inside;
            }
        }
    }
    .why-choose{
        text-align: center;
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;

        p{
            margin-top: 30px;
        }
    }

    .threading{
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../upload/cta-banner.webp);
        background-attachment: fixed;
        color: #fff;
        h5{
            color: #fff;
        }
    }
    .main-why-choose{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-top: 40px;

        .item{
            padding: 10px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0px 1px 11px #cccccc52;
            img{
                max-width: 70px;
            }
            p{
                margin: 0px;
                font-size: 14px;
            }
        }
    }

}

/* ============ Services page ============= */


#service-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/service-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }

    .main-services{
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;
        .container{
            display: flex;
            gap: 40px;
        }
        .service-name{
            width: 30%;
            position: relative;
        }
        .service-content{
            width: 70%;
        }
    }

    /* Style the tab */
.tab {
    background-color: #ffc0cb;
    position: sticky;
    top: 100px;
    scroll-margin-top: 100px;

    a{
        display: block;
    }
  }

  
  .tabcontent{
    p{
        margin: 10px 0px;
    }
    img{
        margin-top: 20px;
        width: 50%;
        border-radius: 10px;
    }
    .primary-btn{
        margin-top: 30px;
    }
    .after-img{
        display: flex;
        gap: 20px;
        .img{
            width: 50%;

            img{
                width: 100%;
            }
        }
    }
  }
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 12px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #000000;
    color: #fff;
    /* border-top: 1px solid #ccc; */
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active {
    background-color: #000;
    color: #fff;
  }
  
  /* Style the tab content */
  .tabcontent {
    /* float: left; */
    padding: 0px 12px;
    /* border: 1px solid #ccc; */
    /* width: 70%; */
    border-left: none;
    /* height: 300px; */
    scroll-margin-top: 150px;
  }
}

.center-img{
    text-align: center;
}
/* ============ Gallery page ============= */

#gallery-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/gallery-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }

    .gallerys{
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;

    }
    .main-gallerys{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-top: 40px;

        .item{
            overflow: hidden;
            display: flex;
            border-radius: 10px;

            figure{
                width: 100%;
                display: flex;
            }
            img{
                transform: scale(1);
                transition: all .2s linear;
            }
        }

        .item:hover img{
            transform: scale(1.1);
        }
    }

}


/* ============ Blog page ============= */

#hiring-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/hiring-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }
    .main-hiring{
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;
    }

    .main-hiring-form{
        display: flex;
        background-color: #f1f1f1;
        width: 80%;
        margin: 0px auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 0px 20px #cccccc82;
    }

    form{
        background: none;
        box-shadow: none;
    }
    .hiring-form{
        width: 60%;
    }
    .hiring-form-img{
        width: 40%;
    
        img{
            height: 100%;
        object-fit: cover;
        }
    }
}

/* ============ contact page ============= */

#contact-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/contact-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }

    /* .contact-us{
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;
    } */

    .main-form{
        display: flex;
        gap: 40px;
    }
    .form-col{
        width: 50%;
    }
    .shop-detail{
        width: 50%;

        ul{
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        ul li {
            display: flex;
            align-items: center;
            gap: 15px;
            i{
                font-size: 20px;
            }
            a{
                color: #000;
            }
        }
    }
}

form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0px 1px 13px #cccccc9e;
    input{
        display: block;
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    textarea{
        display: block;
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    select{
        display: block;
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .box-2{
        display: flex;
        gap: 20px;
        
        div{
            width: 50%;
        }
    }
    label{
        margin-bottom: 10px;
        display: block;
    }
    .star-color{
        color: red;
    }

    input[type="submit"]{
        width: 170px;
        background-color: #000;
        color: #fff;
        padding: 15px;
        font-size: 16px;
        
    }
}

/* ============ contact page ============= */

#book-page{

    .inner-banner{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/about-banner.webp);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    }

    .book-seat{
        background: url(../upload/testimonial.webp);
        background-position: center;
        background-size: cover;
    }

.main-book{
    display: flex;
    background-color: #f1f1f1;
    width: 80%;
    margin: 0px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px #cccccc82;
}
form{
    background: none;
    box-shadow: none;
}
.book-form{
    width: 60%;
}
.book-form-img{
    width: 40%;

    img{
        height: 100%;
    object-fit: cover;
    }
}
}


/* ========== location ========== */

.location{
    background: url(../upload/testimonial.webp);
    .section-heading{
        text-align: center;
    }

    .main-loacation{
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        .item{
            padding: 20px;
            width: 30%;
            background-color: #fff;
            border-radius: 10px;
            a{
                display: block;
            }
        }

        .location-name{
display: block;
font-weight: 600;
font-size: 16px;
text-align: center;
color: #000;
margin: 7px 0px;
        }
        p{
            text-align: center;
            color: #000;
            font-size: 14px;
        }
        .map{
            overflow: hidden;
        }
        iframe{
            width: 100%;
            border-radius: 5px;
            transform: scale(1);
            transition: all .2s linear;
        }
        .item:hover iframe{
            transform: scale(1.1);
        }
    }
}

/* ================= expert-page ============ */

#expert-page{
    
    .inner-banner{
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/expert-banner.webp);
        background-position: center;
        background-size: cover;
        object-fit: cover;
        background-repeat: no-repeat;
        }

        .main-experts{
            background: url(../upload/testimonial.webp);
            background-position: center;
            background-size: cover;
        }
        .experts-items{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            grid-gap: 20px;
            align-items: stretch;
            margin-top: 40px;
       

            .item{
                display: flex;
                background: #f3f3f3;
                box-shadow: 1px 1px 10px #cccccc7d;
                border-radius: 10px;
                overflow: hidden;
            }
            .item-img{
                width: 40%;
                display: flex;
                figure{
                    display: flex;
                }
                img{
                    object-fit: cover;
                }
            }
            .item-content{
                width: 60%;
                padding: 20px;

                .name{
                    text-transform: capitalize;
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 10px;
                    display: block;
                }
                p{
                    font-size: 14px;
                }
            }
        }
}


.seo-title{
    display: none;
}


.suspend-sec {
  position: fixed;
  top: 175px;
  z-index: 999;
  background: #fff;
  width: 100%;
  padding: 20px 30px;
  text-align:center;
}

.content-sec-suspend h2{ color:red; font-size:25px;}
.content-sec-suspend p{ color:#000;}
/*.logo-sec img{ width:16%;}*/



