@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,400;1,600&display=swap');

:root {
    --main: #d30000;
    --sec: white;
}

* {
    font-family: 'Poppins', sans-serif;
    transition: ease-in-out all 350ms;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

section {
    padding: 60px 0;
}

.banner {
    padding: 0;

}

p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

.subheading {
    text-transform: capitalize;
    font-size: 2.3rem;
    /* background-image: repeating-radial-gradient(circle closest-corner at 100px 100px, #444, var(--main) 10%, var(--main) 5%);
    ; */
    font-weight: 600;
    background-image: linear-gradient(-65deg, #333, var(--main));
    position: relative;
    text-shadow: 2px 2px 4px rgba(179, 147, 211, 0.1),
        3px 4px 4px rgba(179, 147, 211, 0.15),
        4px 6px 4px rgba(179, 147, 211, 0.2),
        5px 8px 4px rgab(179, 147, 211, 0.25);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: animated-gradient 11s infinite alternate-reverse;
    background-size: 200%;
    background-position: -200%;
}

@keyframes animated-gradient {
    to {
        background-position: 200%;
    }
}
/* style product carousal */

/* style product update */

  .product {
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            background: #fff;
         
        }
        .product:hover{
            border: 1px solid #e0e0e0;
            box-shadow: 0 0 10px #dfdfdf;
        }
        .pimg {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3; /* Fixed aspect ratio for thumbnails */
            overflow: hidden;
        }
        .pimg img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Crop to fit without distortion */
            object-position: center;
            transition: transform 0.3s ease;
        }
        .pimg img:hover {
            transform: scale(1.1); /* Slight zoom on hover */
        }
        .pdesc {
            padding: 10px 15px;
            flex-grow: 1;
            display: flex;
            background: #f9f9fb;
            flex-direction: column;
            /* justify-content: space-between; */
        }
        .pdesc h6 {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 10px;
        }
        .pdesc a {
            font-size: 1rem;
            text-transform: capitalize;
            font-weight: 500;
            color: var(--main);
            text-decoration: none;
        }
        .pdesc a:hover {
            text-decoration: underline;
        }
/* end */
.productContent p,.productContent  b,.productContent strong,.productContent span{
    color: #333 !important;
}


/* product carousal next  */
.carousel-control-next-icon,.carousel-control-prev{
    filter: invert(1);
    /* background:url('../img/right-arrow.png'); */
}
/* .product {
    
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #dfdfdf;
}

.product:hover {
  box-shadow: 0 0 10px #dfdfdf;
}
.productDesc h6 {
    text-transform: capitalize;
    font-size: #444;
    margin-bottom: 10px;
}

.productDesc h2 {
    font-weight: 600;
}

.pdesc {
    padding: 10px;
    background: #f2f2f2;
    
}

.pdesc >a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--main);
    line-height: unset !important;
    
}

.pdesc h6{
    font-size: 12px;
} */
.banner img {
    width: 100%;
}

header {
    box-shadow: 0 0 10px;
    

    z-index: 999;
    background: #fff;
}

.catItems {
    width: 120px;
    border-radius: 50%;
    height: 120px;
    overflow: hidden;
    box-shadow: 0 0 10px #dfdfdf;
    display: grid;
    place-content: center;
}

.catItems:hover .scaleimg {
    transform: scale(1.4);
}

.flexCat {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.topselling {
    /* background: #efefef; */
}

.media img {
    width: 25px;
}

.media {
    justify-content: center;
    display: flex;
    gap: 20px;
}

.btn_custom {
    background: white;
    border-radius: 5px;
    color: var(--main);
    font-weight: 400;
    padding: 10px 20px;
    text-transform: capitalize;
}

.serviceSection {
    background: #efefef;
}

.service {
   display: flex;
   align-items: center; 
    gap: 15px;
}

.service:hover {
    cursor: pointer;
    box-shadow: none;
    
    color: var(--main);
}

.service:hover img {
    transform: rotateY(360deg);
}

.service h3 {
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 600;
}



.btncart {
    padding: 5px 10px;
    border: 1px solid var(--main);
    display: inline-block;
    color: var(--main);
    border-radius: 20px;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
}

.btncart:hover {
    background-color: var(--main);
    text-decoration: none;
    color: white;
}

.offer {
    

    background-color: var(--main);
}

.offertxt {

    /* padding:  20px; */
}
.offertxt p{
    color: rgba(255, 255, 255, 0.9);
}
small {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.892);
}

.offertxt h2 {
    color: var(--sec);
    font-size: 3rem;
    font-weight: 600;
    text-transform: capitalize;
}

.pimg {
    
    width: 100%;
    margin: 0 auto;
    
    overflow: hidden;
}



footer {
    background: #333;
    padding: 20px 0;
}

footer p {
    color: rgba(255, 255, 255, .7);
}

.footbox h5 {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--sec);
}

.footbox ul {
    list-style-type: none;
}

.footbox ul li a {
    text-transform: capitalize;
    padding: 10px 0;
    color: rgba(255, 255, 255, .7);
    display: inline-block;
    text-decoration: none;
}

.flex-hover>a>img:hover {
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
    transform: scale(1.1);
}

.footbox ul li a:hover {
    color: var(--main);
}


.size {
    list-style-type: none;
}

.size li {
    float: left;
    padding: 5px 10px;
    font-weight: 600;
    background: #efefef;
    margin: 0 5px;
}

.grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100%;
    align-items: center;
    gap: 20px;
}

.popup {
    padding: 20px 40px;
    border-radius: none !important;
}

label {
    font-size: 12px;
    margin: 0;
    text-transform: capitalize;
}

.txtbox,
textarea {
    padding: 5px;
    border: 1px solid #dfdfdf;
    margin-bottom: 15px;
    width: 100%;
}

.wordlimit {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;

}

.search-container {
    padding: 10px 0;
    position: relative;
}

#search {
    width: 100%;
    padding: 10px;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
}

#search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#search-results li {
    padding: 10px;
    cursor: pointer;
}

#search-results li:hover {
    background-color: #f2f2f2;
}

.bg-grey {
    padding: 20px 10px;
    background: #f9f9f9;
}



.tabs {
    height: 60px;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    display: flex;
    border: 1px solid #dfdfdf;
    gap: 10px;
    padding: 15px 10px;
    border-radius: 5px;

}


.tabs h6 {
    margin: 0;
}

.imgbox {
    width: 80px;

}

.contactBanner {
    height: 40vh;
    background: url(../img/login.jpg) no-repeat left;
    background-size: 300%;
    animation: wave 10s infinite alternate;
}

.formbox {
    
    
}

.formboxHead {

    background: var(--main);
    padding: 10px;
    color: white;
}

.formboxBody {
    padding: 20px 0;
}

.testiImg{  
     background: red;
    width: 80px;
 
    overflow: hidden;
   
   margin: 0 auto;
}
.testiBox{
 text-align: center;  
}

.testitxt p{
    
    font-size:14px ;
letter-spacing: 1.1px;
line-height: 1.7;
}


@keyframes wave {
    0% {
        background-position: top;
    }

    100% {
        background-position: left;
    }
}

.subheader {
    text-align: center;
    background: url(../img/subheader.png) no-repeat center center;
    background-size: cover;
}

.subheader>.container>h1::before {
    content: unset !important;
}
.contactForm{

}


@media (min-width:320px) {
    .logo {
        text-align: unset;
    }

    .navbtnflex {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .search {
        display: none;
    }

    .searchbtn {
        display: block;
    }

   

    .grid {
        grid-template-columns: auto auto;

        justify-content: space-between;
    }
}

@media (min-width:992px) {

    .logo {
        text-align: center;
    }

    .searchbtn {
        display: none;
    }

    .search {
        display: block;
    }

    

    .actionbtn {
        text-align: center;
    }

    .grid {
        grid-template-columns: 20% auto 20%;


        justify-content: unset;
    }
}