* {
    margin: 0;
    padding: 0;
    border: 0;
}


:root {
    --navbg:black;
    --btncolors: springgreen;
    --btnfont: 15px;
}

header {
    min-height: 70px;
    max-width: 100%;
    background: var(--navbg);
    /* flex  */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 30px;
}

.nav-link{
    color: yellow !important;
}
ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.navbar {
    display: flex;
}


a {
    margin: 5px;
    background: #000;
    color: wheat;
    text-decoration: none;
    padding: 5px 10px;
    /* border: 2px solid white;
    box-shadow: 1px 2px 3px 4px blueviolet; */
    border-radius: 10px;
}


li {
    list-style: none;
}


img {
    height: 110px;
    width: 110px;
}


@media(max-width:768px) {
    ul {
        display: none;
    }
}


.product-page {
    min-height: 100vh;
    max-width: 100%;
    /*background: rgb(255, 255, 255);*/
    background-image: url(https://scholarlykitchen.sspnet.org/wp-content/uploads/2018/07/iStock-506432952.jpg);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    /* flex-direction: column; */
}


.product-card {
    min-height: 200px;
    max-width: 200px;
    background: rgb(255, 255, 255);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    gap: 10px;
    transition: 1s;
}


.product-image img {
    height: 200px;
    border-radius: 10px;
    width: 200px;
    transition: .5s;
}


.product-name h5 {
    background: white;
    font-size: var(--btnfont);
    text-align: center;
}


.product-price h5 {
    background: white;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}


.product-button button {
    background: white;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #000;
    color: white;
    transition: .9s;
}


.product-ratting i {
    background: white;
    color: orangered;
}




/*   tag-name :hover{ }    */


.product-image img:hover {
    transform: skewY(6deg);
}


.product-card:hover {
    box-shadow: 2px 3px 3px 2px rgb(101, 9, 144);
    transform: translateY(-10px);
}


.product-button button:hover {
    color: black;
    background: springgreen;
    cursor: pointer;
}


.product-button:hover {
    background: red;
}




/* #last {
    grid-column-start: 2;
    grid-column-end: 1;
    grid-row-end: 1;
}


@media(max-width:750px) {
    .product-page {
        grid-template-columns: repeat(1, 300px);
    }
} */
.book {
    background-color: black;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.discount-card h3 {
    color: wheat;
    font-size: 30px;
    /*animation: offer .5s infinite;*/
}


@keyframes offer {
    0% {
        transform: scale(1.1);
        color: aqua;
    }
    50% {
        transform: scale(1.2);
        color: violet;
    }
    100% {
        transform: scale(1.3);
        color: pink;
    }
}


/* .logo img {
    animation: imageanimation 1s infinite;
} 


@keyframes imageanimation {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1.5);
    }
}


.product-card {
   animation: card .5s infinite;
}*/



/*
@keyframes card {
    from {
        transform: skew(30deg);
        transform: skewX(30deg);
        transform: skewY(30deg);
        transform: translateX(10px);
        transform: translateY(10px);
    }
    to {
        transform: skew(10deg);
        transform: skewX(20deg);
        transform: skewY(60deg);
        transform: translateX(-100px);
        transform: translateY(-100px);
    }
} */


/* .product-price {
   animation: price .5s infinite;
} */


@keyframes price {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.9);
    }
}


.testimonials {
    min-height: 100vh;
    max-width: 100%;
    background: violet;
    display: grid;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    position: relative;
}


.testimonials-customer-container {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
}


.customer-card {
    display: flex;
    max-width: 300px;
    min-height: 120px;
    background-color: aliceblue;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
}


.customer-photo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.customer-photo img {
    border-radius: 50%;
}




/*
.section-title {
    position: absolute;
    top: 30px;
    float: right;
    right: 30px;
} */


@media(max-width:300px) {
    body,
    html {
        overflow-x: hidden;
    }
    .discount-card h3 {
        font-size: 20px;
    }
    .product-page {
        background: yellowgreen;
    }
    .testimonials {
        background: navy;
    }
}


@media(max-width:768px) {
    body,
    html {
        overflow-x: hidden;
    }
    .discount-card h3 {
        font-size: 20px;
    }
    .product-page {
        background: rgb(255, 7, 7);
    }
    .testimonials {
        background: rgb(84, 3, 84);
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .testimonials-customer-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}




/* faq section design */


.faq {
    min-height: 50vh;
    max-width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    align-items: center;
    padding: 20px;
}


.faq-card {
    min-height: 50px;
    max-width: 200px;
    background: rgb(67, 3, 85);
    padding: 10px;
    border-radius: 10px;
    position: relative;
    left: 100px;
    box-shadow: 1px 1px 3px 5px rgb(6, 14, 6);
}


@media(max-width:1000px) {
    .faq {
        padding: 10px;
        grid-template-columns: repeat(1, 1fr);
    }
    .faq-card {
        position: relative;
        left: 80px;
    }
}


.question {
    background-color: transparent;
    color: rgb(219, 34, 222);
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
}


.answer {
    /* background-color: rgb(156, 45, 31); */
    color: whitesmoke;
}


.faq-title h1 {
    text-align: center;
    text-shadow: 2px 2px 1px black;
}


.faq-container {
    padding: 30px;
}
.nav-link.active {
    color: green; /* White text color */
    background-color: green; /* Blue background color */
}

/* Change the color of the links in the dropdown */
.nav-item .dropdown-item {
    color: green; /* Blue text color */
}

/* Change the color of the dropdown items when hovered */
.nav-item .dropdown-item:hover {
    background-color: black; /* Light background color on hover */
    color: red; /* Darker blue text color on hover */
}

/* Change the color of the icons in the cart and other links */
.nav-link i {
    color: yellow; /* Blue color for icons */
}

/* Change the color of the cart link when hovered */
.nav-link:hover {
    color: green !important; /* Darker blue color for the text when hovered */
}

/* Change the color of the dropdown toggle when hovered */
.nav-item.dropdown .nav-link:hover {
    color: green; /* Darker blue for the dropdown link when hovered */
}

/* Customize the divider inside the dropdown */
.dropdown-divider {
    border-color: green; /* Blue color for the divider */
}

/* Change the color for the non-active links */
.nav-link {
    color:   black;
}

/* Optionally, change the background color of the navbar */
.nav-pills {
    background-color: black !important; /* Light gray background for the navbar */
}
.footer{
    background-color: black;
    color: white;
    text-align: center;
    margin-top: 15PX;
    padding: 5px;
}
.me-3{
    border: 4px solid black !important;
    margin-bottom: 10px;
}
.send{
    background-color: black;
    color: white;
}
.HI{
    margin-left: 550px;
    color: red;
}