*{
    margin: 0;
    padding: 0%;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
.zone{
    overflow: hidden;
}
.zone .hero-sec{
    background-color: black;
    color: white;
    padding: 50px 10px 30px 10px;
    overflow: hidden;
}
.hero-sec .hero-head{
    font-size: 60px;
}
.hero-head span{
    color: orange;
}
.hero-sec .hero-paragragh{
    font-size: 17px;
}
.hero-buttons{
    display: flex;
    width: 30%;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin: 15px 0;
    font-weight: 600;
    gap: 10px;
}
.hero-buttons .hero-btn-shop{
    background-color: orange;
    color: white;
    padding: 8px 15px;
    border-radius: 7px;
    cursor: pointer;
}
.hero-buttons .hero-btn-service{
    background-color: white;
    color: black;
    padding: 8px 15px;
    border-radius: 7px;
    cursor: pointer;
}
.hero-properties{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.hero-properties .hero-property{
    display: flex;
    align-items: center;
    gap: 5px;
}
.hero-property img{
    width: 50px;
}
.property-text .large-text{
    font-size: 18px;
}
.property-text .small-text{
    font-size: 15px;
}
/* FLASH SALE SECTION */
.flash-sale-sec{
    overflow: hidden;
    margin: 20px 0;
}
.flash-sale-sec .flash-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flash-head .flash-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 35%;
    margin: 10px;
}
.flash-heading h1{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
}
.flash-heading h1 img{
    width: 22px;
}
.flash-heading .flash-time span{
    background-color: red;
    color: white;
    padding: 1.5px;
    margin: 2px;
    border-radius: 2px;
}
.flash-sales{
    font-size: 19px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.flash-sales img{
    width: 15px;
}
.flash-sale-sec .flash-cards{
    overflow: hidden;
}
.flash-cards{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3,1fr);
    overflow: hidden;
    gap: 20px;
}
.flash-cards .sale-card{
    overflow: hidden;
    width: 250px;
    border: 2px solid #eee;
    border-radius: 12px;
}
.sale-card img{
    width: 100%;
}
.sale-card .card-detail{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 0 10px;
}
.card-detail .card-price{
    font-size: 22px;
    color: red;
    font-weight: 700;
}
.card-detail .card-percant{
    background-color: red;
    color: white;
    padding: 3px 5px;
    font-weight: 550;
}
/* PRODUCTS SEC */
.products-sec{
    overflow: hidden;
}
.products-sec .products-heading{
    text-align: center;
    background-color: orange;
    color: white;
    font-size: 30px;
    padding: 5px 0;
    font-weight: 800;
}
.products-sec .products{
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    justify-items: center;
    gap: 20px;
    overflow: hidden;
}
.products .product{
    width: 300px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 2px solid #e21515;
    padding-bottom: 10px;
    border-radius: 10px;
}
.product .product-image{
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.product .product-image img{
    width: 100%;
}
.product .product-image h5{
    position: absolute;
    top: 2%;
    left: 2%;
    background-color: #e21515;
    color: white;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 3px;
    display: none;
}
.product .event-product{
    position: absolute;
    background-color: orange;
    color: white;
    padding: 3px 8px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    bottom: 2%;
    left: 2%;
    display: none;
}
.product .free-delivery-product{
    position: absolute;
    bottom: 2%;
    right: 2%;
    color: white;
    font-weight: 600;
    background-color: green;
    font-size: 16px;
    padding: 3px 8px;
    border-radius: 5px;
    display: none;
}
.products .product-name{
    font-size: 18px;
    margin: 0 10px;
}
.product .product-prices{
    display: flex;
    margin: 0 10px;
}
.product-prices .product-price{
    font-weight: 600;
    color: red;
    margin-right: 5px;
    font-size: 18px;
}
.product .product-prices .product-discount{
    color: red;
    background-color: #eee;
    font-size: 16px;
    padding: 3px 5px;
    border-radius: 3px;
    text-shadow: 0 0 6px yellow,0 0 10px rgb(194, 39, 39), 0 0 10px rgb(119, 12, 12);
    display: none;
}
.product .product-rating-sold{
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    font-size: 14px;
}
.product-rating-sold .rating-img{
    width: 20px;
    margin: 0 5px;
    overflow: hidden;
}
.product-rating-sold .rating-img img{
    width: 100%;
}
.product-rating-sold .rating-reviews{
    display: flex;
}
/* CUSTOMER FEEDBACK SEC */
.customer-feedback-sec{
    width: 100%;
    height: 320px;
    text-align: center;
    padding: 20px 0;
    background-color: orange;
}
.customer-feedback-sec .feedback-heading{
    font-size: 20px;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 20px;
}
.customer-feedback-sec .feedbacks{
    display: flex;
    width: 60%;
    height: 240px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.customer-feedback-sec .feedbacks .customer{
    color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    background-color: orange;
}
.customer .customer-details{
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.customer .customer-details .cus-img{
    border: 1px solid white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-position: center;
    object-fit: cover;
}
.customer .customer-details .cus-img img{
    width: 100%;
}
.customer .cus-ratings{
    display: flex;
    gap: 5px;
    justify-content: center;
}
.customer .cus-ratings img{
    width: 20px;
    margin: 15px 0;
}
.feedbacks .noor{
    animation-name: noor;
}
.feedbacks .rehan{
    animation: rehan;
}
.feedbacks .zarish{
    animation-name: zarish;
}
/* WORK DETAILS SEC */
.work-detail-sec{
    overflow: hidden;
    background-color: black;
    color: white;
    padding: 50px 0;
}
.work-detail-sec h3{
    color: orange;
    text-align: center;
}
.work-detail-sec h2{
    text-align: center;
    margin-bottom: 10px;
}
.work-detail-sec .work-details{
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.work-details .work-det{
    display: grid;
    gap: 15px;
}
.work-det .det-point{
    display: grid;
    gap: 5px;
}
.det-point .point-name{
     display: flex;
     gap: 3px;
}
.point-name img{
    width: 20px;
}
/* ACTIVITY SEC */
.activity-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin: 20px 0;
    box-sizing: border-box;
}
.activity-sec .activity{
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
}
.activity .activity-img{
    width: 50px;
}
.activity-img img{
    width: 100%;
}
/* SERVICE SEC */
.service-sec{
    background-color: black;
    color: white;
    padding: 20px 0;
}
.service-sec h3 , h4{
    text-align: center;
}
.service-sec h3{
    color: orange;
}
.service-sec .services{
    margin: 20px 0;
    display: grid;
    place-items: center;
}
.services .service{
    width: 660px;
    overflow: hidden;
}
.service .service-img{
    text-align: center;
    width: 100%;
}
.service-img img{
    width: 100%;
}
.service h5{
    font-size: 17px;
    margin: 10px 0;
}
.service .service-contact{
    display: flex;
    margin: 10px 0;
    justify-content: space-between;
}
.service-contact button{
    padding: 5px 10px;
    background-color: orange;
    color: white;
    border-radius: 8px;
}
.service-contact button a{
    color: white;
    text-decoration: none;
}
.service-contact p{
    color: orange;
    cursor: pointer;
}
@keyframes noor{
    0%{
        opacity: 1;
    }
    33.33%{
        opacity: 1;
    }
    33.34%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
@keyframes zarish{
    0%{
        opacity: 0;
    }
    33.33%{
        opacity: 0;
    }
    33.34%{
        opacity: 1;
    }
    66.66%{
        opacity: 1;
    }
    66.67%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
@keyframes rehan{
    0%{
        opacity: 0;
    }
    66.66%{
        opacity: 0;
    }
    66.67%{
        opacity: 1;
    }
    99.98%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@media screen and (max-width:1000px) {
    .hero-sec .hero-head{
        font-size: 50px;
    }
    .hero-buttons{
        width: 40%;
    }
    /* PRODUCTS QUERY */
    .products-sec .products{
        grid-template-columns: repeat(3,1fr);
    }
    /* CUSTOMER FEEDBACK SEC */
    .customer-feedback-sec .feedbacks{
        width: 100%;
    }
}
@media screen and (max-width:825px) {
    .hero-buttons{
        width: 45%;
    }
    .hero-btn-shop{
        font-size: 15px;
    }
    .hero-btn-service{
        font-size: 15px;
    }
    .hero-property img{
        width: 35px;
    }
    .hero-property .large-text{
        font-size: 15px;
        font-weight: 600;
    }
    .hero-property .small-text{
        font-size: 12px;
    }
    /* FLASH SALE QUERY */
    .flash-heading h1{
        font-size: 25px;
    }
    .flash-heading h1 img{
    width: 22px;
    }
    .flash-heading .flash-time span{
    padding: 1px;
    }
    .flash-sale-sec{
    margin: 10px 0;
    }
    .flash-head .flash-heading{
    width: 40%;
    margin-top: 0px;
    }
    .flash-cards .sale-card{
    width: 190px;
    }
    .flash-cards{
        gap: 10px;
    }
    /* WORK DETAILS SEC */
    .work-det .det-point .point-name h4{
        font-size: 15px;
    }
    .work-det .det-point .point-des{
        font-size: 15px;
    }
    /* ACTIVITY SEC */
    .activity-sec .activity{
        gap: 5px;
    }
    .activity .activity-text h4{
        font-size: 15px;
    }
    .activity .activity-text p{
        font-size: 15px;
    }
}
@media screen and (max-width:680px) {
    .hero-sec .hero-head{
        font-size: 40px;
    }
    .hero-properties{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }
    .hero-buttons{
        width: 80%;
    }
    .hero-property .large-text{
        font-size: 15px;
        font-weight: 600;
    }
    .hero-property .small-text{
        font-size: 14px;
    }
    /* CUSTOMER FEED BACK SEC */
    .customer-feedback-sec .feedbacks .customer .cus-ratings img{
        margin: 4px 0;
    }
     /* WORK DETAILS SEC */
    .work-det .det-point .point-name h4{
        font-size: 14px;
    }
    .work-det .det-point .point-des{
        font-size: 14px;
    }
    /* ACTIVITY SEC */
    .activity-sec .activity{
        gap: 3px;
    }
    .activity .activity-text h4{
        font-size: 15px;
    }
    .activity .activity-text p{
        font-size: 13px;
    }
    .activity .activity-img{
        width: 40px;
    }
    /* SERVICES SEC */
    .service-sec .services .service{
        width: 100%;
    }
}
@media screen and (max-width:450px) {
    .hero-sec .hero-head{
        font-size: 35px;
    }
    .hero-sec .hero-paragragh{
        font-size: 11px;
    }
    .hero-btn-shop{
        font-size: 12px;
    }
    .hero-btn-service{
        font-size: 12px;
    }
    /* FLASH SALE QUERRY */
    .flash-sale-sec .flash-cards .sale-card{
    width: 125px;
    }
    .flash-sale-sec .flash-head .flash-heading{
    width: 55%;
    }
    .sale-card .card-detail .card-price{
    font-size: 14px;
    font-weight: 700;
    }
    .sale-card .card-detail .card-percant{
    padding: 1px 1px;
    font-weight: 400;
    }
    /* PRODUCTS QUERY */
    .products-sec .products-heading{
        font-size: 20px;
    }
    .products-sec .products{
        margin: 10px 0;
    }
    .products-sec .products .product{
        width: 190px;
    }
    .products .product .product-image{
        height: 190px;
    }
    .products .product .product-rating-sold{
        width: 75%;
    }
     /* WORK DETAILS SEC */
    .work-det .det-point .point-name h4{
        font-size: 12px;
    }
    .work-det .det-point .point-des{
        font-size: 12px;
    }
    /* ACTIVITY SEC */
    .activity-sec .activity{
        gap: 3px;
    }
    .activity .activity-text h4{
        font-size: 14px;
    }
    .activity .activity-text p{
        font-size: 12px;
    }
    .activity .activity-img{
        width: 35px;
    }
}
@media screen and (max-width:400px) {
    .hero-sec .hero-head{
        font-size: 30px;
    }
    .hero-sec .hero-paragragh{
        font-size: 11px;
    }
    .hero-properties{
        gap: 8px;
    }
    .hero-property img{
        width: 25px;
    }
    .hero-property .large-text{
        font-size: 13px;
        font-weight: 600;
    }
    .hero-property .small-text{
        font-size: 12px;
    }
        /* FLASH SALE QUERRY */
    .flash-sale-sec .flash-cards{
        gap: 5px;
    }
    .flash-sale-sec .flash-cards .sale-card{
    width: 105px;
    }
    .flash-sale-sec .flash-head .flash-heading{
    width: 60%;
    }
    .sale-card .card-detail .card-price{
    font-size: 12px;
    font-weight: 700;
    }
    .sale-card .card-detail .card-percant{
    padding: 1px 1px;
    font-size: 12px;
    font-weight: 400;
    }
    .flash-sale-sec .flash-heading h1{
        font-size: 18px;
    }
    .flash-head .flash-heading .flash-time{
        font-size: 16px;
    }
    .flash-head .flash-sales{
        font-size: 15px;
    }
    /* PRODUCTS QUERY */
    .products-sec .products .product{
        width: 160px;
    }
    .products .product .product-image{
        height: 160px;
    }
    .products-sec .products .product .product-image h5{
        font-size: 14px;
    }
    .products-sec .products .product .event-product{
        font-size: 12px;
    }
    .products-sec .products .product .free-delivery-product{
        font-size: 12px;
    }
    .product .product-name{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .products .product .product-rating-sold{
        width: 90%;
    }
    /* CUSTOMER FEEDBACK SEC */
    .customer-feedback-sec{
        height: 350px;
    }
    .customer-feedback-sec .feedbacks{
        height: 270px;
    }
     /* WORK DETAILS SEC */
     .work-detail-sec{
        padding: 30px 0;
     }
    .work-det .det-point .point-name h4{
        font-size: 11px;
    }
    .work-det .det-point .point-des{
        font-size: 11px;
    }
    /* ACTIVITY SEC */
    .activity-sec .activity{
        gap: 1px;
    }
    .activity .activity-text h4{
        font-size: 11px;
    }
    .activity .activity-text p{
        font-size: 9px;
    }
    .activity .activity-img{
        width: 37px;
    }
}    
@media screen and (max-width:330px) {
    .zone .hero-sec{
        padding: 30px 8px 20px 8px;
    }
    .hero-sec .hero-buttons{
        width: 100%;
    }
    .hero-sec .hero-head{
        font-size: 24px;
    }
    .hero-sec .hero-paragragh{
        font-size: 9px;
    }
    .hero-properties{
        gap: 8px;
    }
    .hero-property img{
        width: 20px;
    }
    .hero-property .large-text{
        font-size: 10px;
        font-weight: 600;
    }
    .hero-property .small-text{
        font-size: 9px;
    }
    /* FLASH SALE QUERRY */
    .flash-sale-sec .flash-cards{
        gap: 5px;
    }
    .flash-sale-sec .flash-cards .sale-card{
    width: 80px;
    }
    .flash-sale-sec .flash-head .flash-heading{
    width: 60%;
    }
    .sale-card .card-detail .card-price{
    font-size: 8px;
    font-weight: 700;
    }
    .sale-card .card-detail .card-percant{
    padding: 0px 0px;
    font-size: 8px;
    font-weight: 400;
    }
    .flash-sale-sec .flash-heading h1{
        font-size: 13px;
    }
    .flash-head .flash-heading .flash-time{
        font-size: 14px;
    }
    .flash-head .flash-sales{
        font-size: 12px;
        text-align: center;
    }
    .flash-head .flash-sales img{
        width: 11px;
    }
    /* PRODUCTS SEC */
    .zone .products-sec .products{
        gap: 5px;
    }
    .products-sec .products .product{
        width: 120px;
    }
    .products-sec .product .product-image{
        height: 120px;
    }
    .product .product-name{
        font-size: 13px;
    }
    .products .product .product-rating-sold{
        width: 87%;
        font-size: 11px;
    }
    .product-rating-sold .rating-img{
        width: 10px;
    }
    .products .product .free-delivery-product{
        font-size: 7px;
        padding: 2px;
        bottom: 5%;
    }
    .products .product .event-product{
        padding: 2px;
        bottom: 5%;
    }
    /* CUSTOMER FEEDBACK SEC */
    .customer-feedback-sec{
        height: 400px;
    }
    .customer-feedback-sec .feedbacks{
        height: 320px;
    }
    /* ACTIVITY SEC */
    .activity-sec{
        margin: 10px 0;
    }
    .activity-sec .activity{
        gap: 1px;
    }
    .activity .activity-text h4{
        font-size: 9px;
    }
    .activity .activity-text p{
        font-size: 7px;
    }
    .activity .activity-img{
        width: 30px;
    }
}     
/* FLASH SALE QUERY */
@media screen and (max-width:600px) {
    .flash-cards .sale-card{
    width: 140px;
    }
    .flash-head .flash-heading{
    width: 50%;
    }
    .card-detail .card-price{
    font-size: 16px;
    font-weight: 700;
    }
    .card-detail .card-percant{
    padding: 1px 2px;
    font-weight: 550;
    }
    .flash-heading h1{
        font-size: 22px;
    }
}
/* PRODUCTS MEDIA QUERY */
@media screen and (max-width:1270px) {
    .products-sec .products{
         gap: 10px;
    }
    .products .product{
    width: 240px;
    }
    .product .product-image{
        height: 240px;
    }
    .product .product-rating-sold{
    width: 60%;
    font-size: 14px;
    }
    .products .product .free-delivery-product{
        font-size: 14px;
    }
    .products .product .event-product{
        font-size: 14px;
    }
}
@media screen and (max-width:750px) {
    .products-sec .products{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:500px) {
    .products .product{
        width: 215px;
    }
    .product .product-image{
        height: 215px;
    }
    .products .product .free-delivery-product{
        font-size: 15px;
    }
    .products .product.event-product{
        font-size: 15px;
    }
    .product .product-rating-sold{
        width: 65%;
    }
    /* CUSTOIMER FEDBACK */
    .customer-feedback-sec .feedback-heading{
        margin: 0;
    }
    .customer-feedback-sec .customer-details{
        margin: 10px;
    }
}
/* SALE PRODUCTS CSS ONLY SALE PRODUCTS */
.sale-product .product-image h5{
    position: absolute;
    top: 2%;
    left: 2%;
    background-color: #e21515;
    color: white;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 3px;
    display: block;
}
.sale-product .event-product{
    position: absolute;
    background-color: orange;
    color: white;
    padding: 3px 8px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    bottom: 2%;
    left: 2%;
    display: block;
}
.sale-product .product-prices .product-discount{
    color: red;
    background-color: #eee;
    font-size: 16px;
    padding: 3px 5px;
    border-radius: 3px;
    text-shadow: 0 0 6px yellow,0 0 10px rgb(194, 39, 39), 0 0 10px rgb(119, 12, 12);
    display: block;
}
/* FREE DELIVERY PRODECTS */
.free-delivery .free-delivery-product{
    position: absolute;
    bottom: 2%;
    right: 2%;
    color: white;
    font-weight: 600;
    background-color: green;
    font-size: 16px;
    padding: 3px 8px;
    border-radius: 5px;
    display: block;
}