*{
    margin: 0px;
    padding: 0px;
    list-style: none;
    box-sizing: border-box;
    font-family: 'spartan', sans-serif;
}

h1{
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2{
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4{
    font-size: 20px;
    color: #222;
}

h6{
    font-weight: 700;
    font-size: 12px;
}

p{
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1{
    padding: 40px 80px;
}
.section-m1{
    margin: 40px 0;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2;

}

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 80px;
    color: rgb(255, 255, 255);
    background-color: transparent;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: 0.2;

}

body{
    width: 100%;
}





/* header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 18px;
    background: #E3E6F3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo{
    width: 110px;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a{
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}
#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile{
    display: none;
    align-items: center;
}
#close{
    display: none;
}
.loginicon a{
    color: black;
}


/* home page */

#hero{
    background-image: url("../images/men1.png");
    height: 68vh;
    width: 100%;
    background-size: cover;
    background-position: top 20% right 0;
    background-color: #E3E6F3;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
#hero h4{
    padding-bottom: 15px;
    font-size: 20px;
}
#hero h1{
    color: #088178;
}
#hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}
#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}
#hero button{
    background-image: url("../images/button.png");
    /* background-color: transparent; */
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    #hero {
        padding: 0 40px;
        height: 60vh;
    }

    #hero h4 {
        font-size: 18px;
    }

    #hero h2 {
        font-size: 36px;
    }

    #hero h1 {
        font-size: 42px;
    }

    #hero p {
        font-size: 16px;
    }

    #hero button {
        padding: 12px 60px 12px 50px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 0 20px;
        height: 50vh;
        background-position: top 30% right 0;
    }

    #hero h4 {
        font-size: 16px;
    }

    #hero h2 {
        font-size: 28px;
    }

    #hero h1 {
        font-size: 32px;
    }

    #hero p {
        font-size: 14px;
    }

    #hero button {
        padding: 10px 40px 10px 35px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 0 15px;
        height: 40vh;
        background-position: top 40% right 0;
    }

    #hero h4 {
        font-size: 14px;
    }

    #hero h2 {
        font-size: 24px;
    }

    #hero h1 {
        font-size: 28px;
    }

    #hero p {
        font-size: 12px;
    }

    #hero button {
        padding: 8px 30px 8px 25px;
        font-size: 12px;
    }
}  



#feature .fe-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}
#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    
}
#feature .fe-box img{
    width: 100%;
    margin-bottom: 10px;
}
#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}
#feature .fe-box:nth-child(2) h6{
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6{
    background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6{
    background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6{
    background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h6{
    background-color: #fff2e5;
}

/* services */
#services{
    text-align: center;
    align-items: center;
    justify-content: space-between;
    
    
}
#services-box .fe-box{
    width: 200px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
    
    
    
}
#services-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    
    
    
    
}
#services-box .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#services-box .fe-box img{
    width: 100%;
    margin-bottom: 10px;
}
#services-box .fe-box h6{
    /* display: inline-block; */
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    color: #088178;
    background-color: #fddde4;
}
/* Men page */
#cloth-header{
    background-image: url(../images/benner_for_men.png);
    width: 100%;
    height: 80vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#cloth-header p{
    font-weight: 900;
    font-size: large;
}
/* women page */
#women-header{
    background-image: url(../images/women_banner.png);
    width: 100%;
    height: 80vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}




#product1{
    text-align: center;
}
#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
   
}
#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}
#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.10);
}

#product1 .pro img{
    width: 50%;
    height: 35vh;
    

}
#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}
#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}
#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}
#product1 .pro .des i{
    font-size: 12px;
    color: rgba(243, 181, 25);
}
#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}
#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../images/70_off.png");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
#banner h4{
    color: rgb(255, 255, 255);
    font-size: 16px;
}
#banner h2{
    color: rgb(255, 255, 255);
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: red;
}
#banner button:hover{
    background: #088178;
    color: #fff;
}



#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../images/2.png");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
#sm-banner .banner-box2{
    background-image: url("../images/shirts.jpg");
}
#sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
#sm-banner h2{
    color:#fff;
    font-size: 28px;
    font-weight: 800;
}
#sm-banner span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}
#sm-banner .banner-box:hover button{
    background: #088178;
    border: 1px solid #088178;
    transition: 0s ease;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 80px;
}
#banner3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../images/winter-seasonal.jpg");
    min-width: 30%;
    height: 38vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 .banner-box2{
    background-image: url("../images/shoe.jpg");
}
#banner3 .banner-box3{
    background-image: url("../images/t-shirt-trendy2.jpg");
}
#banner3 h2{
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3{
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

#newsletter{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("../images/");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}
#newsletter h4{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
#newsletter p{
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}
#newsletter p span{
    color: #ffbd27;
}
#newsletter .form{
    display: flex;
    width: 40%;
}
#newsletter input{
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#newsletter button{
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}
footer .install .payment{
    width: 100%;
    height: 150px;
    margin-top: -50px;
    
}
footer .install img{
    margin: 10px 0 15px 0;
}
.install img{
    width: 150px;
    cursor: pointer;
}
footer .follow i:hover,
footer a:hover{
    color: #088178;
}


/* shop page */
#page-header{
    background-image: url(../images/shopping-girl.png);
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
    color: #fff; /* Ensure text is visible on the background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to text for better readability */
}
#page-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

#page-header p {
    font-size: 24px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    #page-header {
        height: 60vh; /* Adjust height for tablets */
    }

    #page-header h2 {
        font-size: 36px;
    }

    #page-header p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #page-header {
        height: 50vh; /* Adjust height for smaller tablets */
    }

    #page-header h2 {
        font-size: 28px;
    }

    #page-header p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #page-header {
        height: 40vh; /* Adjust height for mobile devices */
    }

    #page-header h2 {
        font-size: 24px;
    }

    #page-header p {
        font-size: 16px;
    }
}




#pagination{
    text-align: center;
}
#pagination a{
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}
#pagination a i{
    font-size: 16px;
    font-weight: 600;
}


/* blog.php */
#page-header.blog-header{
    background-image: url("../images/blog_banner.png");
}

#blog{
    padding: 150px 150px 0 0150px;
}
#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
    
}

#blog .blog-img{
    width: 50%;
    margin-right: 40px;
    border-top: 1px solid gray;
    cursor: pointer;
}

#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;

}

#blog .blog-details{
    width: 50%;
}

#blog .blog-details a{
    text-decoration: none;
    color: red;
    font-size: 11px;
    font-weight: 700;
    
    position: relative;
    transition: 0.3s;
}
#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;

}
#blog .blog-details a:hover{
    color: #088178;
}
#blog .blog-details a:hover::after{
    background-color: #088178;
}
#blog .blog-box h3{
    position: absolute;
    top: -52px;
    left: 0px;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -9;
}







/* about.php */

.work{
    align-items: center;
    text-align: center;
    margin: auto;
}

#page-header.about-header{
    background-image: url("../images/about_banner.png");
}
#page-header.about-header p{
    color: black;
    font-weight: lighter;
    
}
#about-head {
    display: flex;
    align-items: center;
    background-color: #c9cbce;
    padding: 40px 20px;
}
#about-head img{
    width: 50%; /* Adjust image width for larger screens */
    height: auto; /* Maintain aspect ratio */
    max-width: 400px; /* Limit maximum width */
    /* mix-blend-mode: multiply; */
    /* border-radius: 10%; */
    /* filter: drop-shadow(1px 1px 20px rgb(0, 0, 0)); */

}
#about-head h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}
#about-head div{
    padding-left: 40px;
    flex: 1;
    
}

#about-head p{
    line-height: 30px;
    font-size: 18px;
    color: #555; 
}
#about-head abbr {
    font-style: italic;
    color: #088178; /* Accent color for emphasis */
}

#about-head marquee {
    background-color: #088178; /* Match the accent color */
    color: #fff;
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    #about-head {
        flex-direction: column; /* Stack image and text on smaller screens */
        text-align: center; /* Center-align text */
        padding: 20px;
    }

    #about-head img {
        width: 70%; /* Adjust image width for tablets */
        margin-bottom: 20px; /* Add space between image and text */
    }

    #about-head div {
        padding-left: 0; /* Remove left padding */
    }

    #about-head h2 {
        font-size: 28px;
    }

    #about-head p {
        font-size: 16px;
    }

    #about-head marquee {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #about-head img {
        width: 80%; /* Adjust image width for smaller tablets */
    }

    #about-head h2 {
        font-size: 24px;
    }

    #about-head p {
        font-size: 14px;
        line-height: 24px;
    }

    #about-head marquee {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #about-head img {
        width: 100%; /* Full width for mobile devices */
    }

    #about-head h2 {
        font-size: 20px;
    }

    #about-head p {
        font-size: 12px;
        line-height: 20px;
    }

    #about-head marquee {
        font-size: 10px;
    }
}

#about-app{
    text-align: center;
}

#about-app .video video{
    width: 30%;
    height: 50%;
    margin: 30px auto 0 auto;
    border-radius: 30px;
}




/* contact.php */

#page-header.contact-header{
    background-image: url("../images/contact_banner.png");
}
#contact_details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#contact_details .details{
    width: 40%;
}
#contact_details .details span,
#form_details form span{
    font-size: 12px;
}
#contact_details .details h2,
#form_details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}
#contact_details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}
#contact_details .details li{
    display: flex;
    padding: 10px 0;
}
#contact_details .details li i{
    font-size: 14px;
    padding-right: 22px;
}
#contact_details .details li p{
    margin: 0px;
    font-size: 14px;
}
#contact_details .map{
    width: 55%;
    height: 400px;
}
#contact_details.map iframe{
    width: 100%;
    height: 100%;

}
#form_details{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}
#form_details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#form_details form input,
#form_details form  textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}
#form_details form button{
    background-color: #088178;
    color: #fff;
}
#form_details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}
#form_details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}
#form_details .people div p{
    margin: 0px;
    font-size: 13px;
    line-height: 25px;
}
#form_details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}






/* single product (sproduct.php) */
#MainImg{
    width: 20vw;
    height: 70vh;
    cursor: pointer;
}
#prodetails{
    display: flex;
    margin-top: 20px;
}
#prodetails .single-pro-image{
    width: 40%;
    margin-right: 50px;
}
.small-img-group{
    display: flex;
    justify-content: space-between;
    
}

.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
}
#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2{
    font-size: 26px;
}
#prodetails .single-pro-details select{
    display: block;
    margin-bottom: 10px;
    padding: 5px 10px;
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
#prodetails .single-pro-details input:focus{
    outline: none;
}
#prodetails .single-pro-details span{
    line-height: 25px;
}
#prodetails .single-pro-details button{
    background-color: #088178;
    color: #fff;
}



/* Cart Page */
#cart{
    overflow-x: auto;
}
#page-header.cart-header{
    background-image: url("../images/cart_banner.png");
}
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 70px;
}
#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 200px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}
#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0px;
}
#cart table tbody tr td{
    padding-top: 16px;
}
#cart table tbody td{
    font-size: 13px;
}

#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#coupon{
    width: 50%;
    margin-bottom: 30px;
}
#coupon h3{
    padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e2;
}
#coupon button,
#subtotal button{
    background-color: #088178;
    color: #fff;
    padding: 12px 20px;
}

#subtotal h3{
    padding-bottom: 15px;
}
#subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}
#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td{
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}

/* user page */



.login-box {
    position: absolute;
    background-image: url(../images/about_banner.png);
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -50%);
    /* background: linear-gradient(#d3c7c7, #eef0ff); */
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px;
}

.login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}

.login-box .user-box {
    position: relative;
}
.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}
.login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}

.login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #03e9f4;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
}

.login-box a:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
    0 0 25px #03e9f4,
    0 0 50px #03e9f4,
    0 0 100px #03e9f4;
}

.login-box a span {
    position: absolute;
    display: block;
}

.login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: btn-anim1 1s linear infinite;
}
.btn{
    padding: 10px 20px;
    background: linear-gradient(#d3c7c7, #eef0ff);
    border: none;
    cursor: pointer;
}







/* start media query */
@media (max-width:1400px){
    
}



@media (max-width:799px){
    .section-p1 {
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active{
        right: 0px;
    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #close{
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
        display: initial;
    }
    #lg_bag{
        display: none;
    }
    
    #feature {
        justify-content: space-between;
        
    }
    #feature .fe-box {
        
        margin: 15px 15px;
    }
    #product1 .pro-container {
        justify-content: center;
    }
    #product1 .pro {
        margin: 15px;
    }
    #banner {
        height: 20vh;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
        
    }
    #banner3 {
        padding: 0px 40px;
    }
    #banner3 .banner-box {
       width: 28%;
    }
    #newsletter .form {
        width: 70%;
    }

    /* blog page query */

    #page-header.blog-header {
        background-image: url("../images/blog_banner.png");
        background-size: cover;
        height: 300px;

    }

    #blog .blog-img {
        width: 100%;
        margin-right: 40px;
        border-top: 1px solid gray;
        cursor: pointer;
    }

    #blog img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }



    /* contact page */
    #form_details {
       padding: 40px;
    }
    #form_details form {
        width: 50%;
    }
}



@media (max-width: 477px){
    .section-p1{
        padding: 20px;
    }
    #header{
        padding: 10px 30px;
    }
    h1{
        font-size: 34px;
    }
    h2{
        font-size: 28px;
    }
    #feature .fe-box {
        width: 155px;
        text-align: center;
        margin: 0 0 15px 0;
    }
    #feature{
        justify-content: space-between;
    }
    #product1 .pro {
        width: 100%;
    }
    #banner {
        height: 40vh;
    }
    #sm-banner .banner-box {
        
        height: 40vh;
    }
    #sm-banner .banner-box2{
        margin-top: 20px;
    }
    #banner3{
        padding: 0 20px;
    }
    #banner3 .banner-box {
        width: 100%;
    }
    #newsletter .form {
        width: 100%;
    }
    #newsletter {
        padding: 40px 20px;
    }


    /* single product */
    #prodetails{
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }
    #prodetails .single-pro-details {
        width: 100%;
    }


    /* blog page query */
    #blog{
        padding: 100px 20px 0px 20px;
    }

    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
    cursor: pointer;
    }
    #blog .blog-details{
        width: 100%;
    }

    /* about us media query */
    #about-head {
        flex-direction: column;
    }
    #about-head img {
        width: 100%;
        margin-bottom: 20px;
    }
    #about-head div {
        padding-left: 0px;
    }
    #about-app .video video {
        width: 60%;
        height: 80%;
       
    }
    /* contact page */
    #contact_details {
         flex-direction: column;
    }
    #contact_details .details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact_details .map{
        width: 100%;
    }
    #form_details {
        margin: 10px;
        padding: 30px 10px;
       flex-wrap: wrap;
    }
    #form_details form {
        width: 100%;
        margin-bottom: 30px;
    }
    #header {
        padding: 10px 30px;
    }

    /* cart page */
    #cart-add {
        flex-direction: column;
    }
    #coupon{
        width: 100%;
    }
    #subtotal{
        width: 100%;
        padding: 20px;
    }

    
}
.whatsaap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.whatsaap a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.whatsaap:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsaap {
        right: 10px;
        bottom: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .whatsaap {
        right: 5px;
        bottom: 5px;
        padding: 6px 12px;
        font-size: 12px;
    }
}























