body {
    padding: 0;
    margin: 0;
    background: linear-gradient(45deg, #5b8c2a, #7cb940);
}


.head {
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, #faf8f0, #fff5cb);
    display: flex; /* Use flexbox to arrange elements */
    align-items: center; /* Vertically center the elements */
 /* Padding on the sides */
    font-family: "Poppins", serif;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 220px; /* Keep the logo size fixed */
    margin-left: 50px;
}

nav {
    flex-grow: 1; /* Allow the navigation to take remaining space */
    display: flex;
    justify-content: center; /* Center the navigation links */
    margin-top: 10px;
    padding-right: 200px;
}

.menu {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Horizontal layout for menu items */
}

.menu li {
    margin-right: 30px;
    margin-left: 40px; /* Space between the links */
}

.menu li:hover {
    margin-right: 35px;
}

.menu li a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Link color */
    font-size: 20px; /* Font size */
    font-weight: bold;
    transition: 0.2s;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}

.menu li a:hover {
    color: #5b8c2a; /* Color on hover */
    font-size: 23px;
    text-decoration: underline;
}

@keyframes moveText {
    0% {
        transform: translateX(200%); /* Start offscreen to the left */
    }
    100% {
        transform: translateX(-100%); /* Move offscreen to the right */
    }
}

.discountDiv {
    width: 100%;
    height: 40px;
    background: linear-gradient(45deg, #7cb940, #5b8c2a);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: hidden; /* Prevents text from appearing outside */
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff5cb;
    font-size: 25px;
    position: relative;
}

.discountDiv b {
    white-space: nowrap; /* Prevents text from breaking into multiple lines */
    animation: moveText 10s linear infinite; /* Runs the animation infinitely */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


.top {
    width: 100%;
    height: 700px;
    background-image: url('../images/top-div.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.topInside {
    width: 900px;
    height: 200px;
    text-align: left;
    margin-right: 34%;
    font-family: "Montserrat", serif;
    font-weight: 500;
    margin-top: 100px;
    opacity: 0;
    transition: 3s;
    letter-spacing: 20px;
}

.topInside h2 {
    font-size: 55px;
}

.topButton {
    width: 500px;
    height: 60px;
    border: 2px solid white;
    background:transparent ;
    color: white;
    border-radius: 25px;
    font-size: 20px;
    transition: 0.2s;
    font-family: "Poppins", serif;
}
.topButton:hover {
    background-color:white ;
    color: black;
    font-weight: bold;
    font-size: 25px;
    cursor: pointer;
}

.middleDiv {
    width: 100%;
    height: 800px;
    font-family: 'Poppins', serif;
    background: linear-gradient(45deg, #faf8f0, #fff5cb);
    color: #5b8c2a;
    margin-top: -10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    opacity: 0;
    transition: 1s;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.middleDiv h1 {
    text-align: left;
    margin-left: 60px;
    margin-top: 10px;
}


.products {
    display: flex;
    justify-content: space-between; 
    width: 95%;
    transition: 1s;
    opacity: 0;
}

.products a {
    text-decoration: none;
    color: #faf8f0;
}


.product {
    width: 320px;
    height: 550px;
    border-radius: 10px; /* Optional styling */
    background: linear-gradient(45deg, #5b8c2a, #7cb940);
    color: #faf8f0;
}

.product i {
    margin-top: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.product h3 {
    margin-top: 5px;
    font-size: 20px;
    margin-left: 10px;
}

.product h5 {
    margin-top: -10px;
    font-size: 15px;
}

.productPic {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden; /* Prevents overflow when scaling */
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.productPic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease-in-out;
}

.productPic:hover::before {
    transform: scale(1.2); /* Scales only the background */
    cursor: pointer;
}

/* Set specific background images for each product */
.product1 .productPic::before {
    background-image: url('../images/products/product1/first.jpg');
}

.product2 .productPic::before {
    background-image: url('../images/products/product2/first.jpg');
}

.product3 .productPic::before {
    background-image: url('../images/products/product3/first.jpg');
}

.product4 .productPic::before {
    background-image: url('../images/products/product13/c9_pd_category_256_X_256_1672836277957.jpg');
}

.shopBtn {
    width: 500px;
    height: 50px;
    background-color: transparent;
    color: #7cb940;
    border: 1.5px solid #5b8c2a;
    border-radius: 5px;
    margin-top: -20px;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    transition: 0.2s;
    cursor: pointer;
}

.shopBtn:hover {
    font-weight: bold;
    font-size: 27px;
    background-color: #5b8c2a;
    border: 1.5px solid black;
    color: #faf8f0;
}

.buyBtn {
    width: 200px;
    height: 40px;
    background-color: transparent;
    color: #faf8f0;
    border: 1px solid #faf8f0;
    border-radius: 10px;
    margin-top: -20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: 0.2s;
    cursor: pointer;
}

.buyBtn:hover {
    font-weight: bold;
    font-size: 17px;
    background-color: #faf8f0;
    border: 1.5px solid black;
    color: #5b8c2a;
}

.about {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #D4A373, #C9A227);
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about h1 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 3);
    font-size: 40px;
    margin-top: -5px;
}

.about h3 {
    text-align: left;
    margin-left: 60px;
    margin-top: 10px;
}

.about div {
    text-align: left;
    margin-left: 60px;
    padding-right: 70px;
}

.about a {
    transition: 0.3s;
    color: #5b8c2a;
    text-shadow: 2px 2px 5px rgba(255,255,255, 0.3);
}

.about a:hover {
    font-size: larger;
}

.bottom {
    width: 100%;
    height: 500px;
    background-color: #5b8c2a;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.bottom h2 {
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
}

.bottomHeadlines {
    display: flex;
}

.bottomLists {
    display: flex;
    width: 1000px;
}

.bottomLists div {
    width: 200px;
    height: auto;
    text-align: left;
    padding-left: 13px;
    margin-top: -10px;
}

.bottomPoliciesList {
    margin-left: -50px;
}

.bottomLists ul {
    list-style-type: none;
}

.bottomLists ul li a {
    text-decoration: none;
    color: white;
}

.bottomContactList li {
    margin-left: 15px;
    width: 500px
}

.bottomSubForm p {
    width: 500px;
    margin-left: 265px;
    font-size: 13px;
    margin-top: -5px;
}

.bottomSubForm form {
    margin-left: 265px;
}

.bottomSubForm form button {
    width: 300px;
    height: 35px;
    color: #5b8c2a;
    background-color: #faf8f0;
    border: 0.5px solid white;
    border-radius: 5px;
    font-family: "Poppins", serif;
    transition: 0.3s;
}

.bottomSubForm form button:hover {
    cursor: pointer;
    border: 1.5px solid white;
    font-size: 15px;
    background-color: transparent;
    color: #faf8f0;
}

.bottomSubForm form input[type="email"] {
    width: 500px;
    height: 40px;
    background-color: transparent;
    border: 1px solid white;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    color: white;
    padding-left: 20px;
    transition: 0.3s;
    outline: none;
}

.bottomSubForm form input[type="email"]:hover {
    outline: 2px solid white;
}

.bottomSubForm form input[type="email"]::placeholder {
    color: white;
}

.bottomHeadlines :last-child {
    padding-left: 200px;
}

.bottom2 {
    display: flex;
    text-align: right;
}

.bottom2 p {
    margin-top: 170px;
    margin-left: 55%;
}

.bottom img {
    margin-top: 150px;
    margin-left: 30px;
}

.bottomSubForm form label {
    font-size: 15px;
    display: inline-block;
    width: 500px;
    margin-top: 10px;
}

.bottomSubForm form input[type="checkbox"] {
    transform: scale(1.5);
}

/* Contact Page */

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');   

.contactDiv {
    width: 100%;
    height: 700px;
    background-color: #faf8f0;
    border: 0px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    font-family: "Montserrat", serif;
}

.contactDiv .left {
    width: 50%;
    height: 100%;
    background-image: url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    color: white;
}

.contactDiv .left h2 {
    margin-left: 50px;
    margin-top: 200px;
    font-size: 50px;
}

.contactDiv .left p {
    margin-left: 50px;
    padding-right: 100px;
}

.contactForm {
    width: 95%;
    height: 100%;
    margin-left: 70px;
    margin-top: 100px;
}

.contactForm input, textarea {
    width: 500px;
    height: 50px;
    border: 5px;
    background-color: white;
    border: 0.5px solid #5b8c2a;
    border-radius: 3px;
    font-family: "Montserrat", serif;
    padding-left: 20px;
    transition: 0.3s;
}

.contactForm textarea {
    height: 100px;
    padding-top: 15px;
    resize: none;
}

.contactForm textarea::placeholder {
    transition: 0.3s;
}

.contactForm input::placeholder {
    font-family: "Montserrat", serif;
    transition: 0.3s;
}

.contactForm input:hover, textarea:hover {
    border: 1px solid #5b8c2a;
}

.contactForm input:hover::placeholder, textarea:hover::placeholder {
    font-size: 15px;
}

.contactBtn {
    background-color: #5b8c2a;
    color: #faf8f0;
    font-family: "Montserrat", serif;
    border-radius: 3px;
    border: none;
    height: 55px;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.contactBtn:hover {
    font-size: 20px;
}

.submitBtn {
    width: 370px;
}

.resetBtn {
    width: 150px;
}

.contactForm form label {
    font-size: 15px;
    display: inline-block;
    width: 500px;
    margin-right: 48px;
    text-align: left;
}

.contactForm form input[type="checkbox"] {
    transform: scale(0.5);
    width: 40px;
    height: 40px;
}

@media (max-width: 480px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
      }
      
    .head nav {
        display: none;
    }
    .head img {
        width: 100px;
        margin-left: 20px;
    }
    .head i {
        margin-left: 210px;
    }
    .mobileMenu {
        display: none ;
    }
    .bottom {
        display: none;
    }
    .mobileMenuList {
        list-style: none;
        margin-top: -5px;
    }
    .list {
        text-align: left;
    }
    .mobileMenuList li a {
        text-decoration: none;
        color: white;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
    }
    .discountDiv b {
        font-size: 15px;
    }
    @keyframes moveText {
        0% {
            transform: translateX(50%); /* Start offscreen to the left */
        }
        100% {
            transform: translateX(-200%); /* Move offscreen to the right */
        }
    }

    .top {
        height: 300px;
    }
    .topInside {
        margin-left: 20px ;
    }

    .topInside h2 {
        font-size: 28px;
        margin-top: -50px;
    }
    .topInside button {
        width: 200px;
        height: 35px;
        font-size: 13px;
    }

    .topInside button:hover {
        font-size: 14px;
    }

    .middleDiv {
        height: 1000px;
        opacity: 1;
    }

    .products {
        opacity: 1;
    }

    .middleDiv h1 {
        font-size: 25px;
        margin-left: 20px;
        margin-bottom: -10px;
        margin-top: -10px;
    }

    .products {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns */
        grid-row-gap: 30px;
    }

    .products a {
        text-decoration: none;
        color: #faf8f0;
    }
    
    
    .product {
        width: 160px;
        height: 400px;
        border-radius: 10px; /* Optional styling */
        background: linear-gradient(45deg, #5b8c2a, #7cb940);
        color: #faf8f0;
    }
    
    .product i {
        margin-top: 10px;
        font-size: 10px;
        margin-left: 5px;
    }
    
    .product h3 {
        margin-top: 5px;
        font-size: 13px;
        margin-left: 10px;
    }
    
    .product h5 {
        margin-top: -10px;
        font-size: 10px;
    }
    
    .productPic {
        position: relative;
        width: 100%;
        height: 65%;
        overflow: hidden; /* Prevents overflow when scaling */
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    
    .productPic::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.2s ease-in-out;
    }
    
    .productPic:hover::before {
        transform: scale(1.2); /* Scales only the background */
        cursor: pointer;
    }
    .buyBtn {
        width: 140px;
        height: 25px;
        background-color: transparent;
        color: #faf8f0;
        border: 1px solid #faf8f0;
        border-radius: 20px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        transition: 0.2s;
        cursor: pointer;
        padding-bottom: 30px;
    }
    
    .buyBtn:hover {
        font-weight: bold;
        font-size: 14px;
        background-color: #faf8f0;
        border: 1.5px solid black;
        color: #5b8c2a;
    }

    .shopBtn {
        width: 250px;
        height: 40px;
        background-color: transparent;
        color: #7cb940;
        border: 1.5px solid #5b8c2a;
        border-radius: 5px;
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        transition: 0.2s;
        cursor: pointer;
    }
    
    .shopBtn:hover {
        font-weight: bold;
        font-size: 17px;
        background-color: #5b8c2a;
        border: 1.5px solid black;
        color: #faf8f0;
    }

    .about {
        width: 100%;
        height: 550px;
        background: linear-gradient(90deg, #D4A373, #C9A227);
        color: white;
        font-family: 'Poppins', sans-serif;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }
    
    .about h1 {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 3);
        font-size: 40px;
        margin-top: -5px;
    }
    
    .about h3 {
        text-align: left;
        margin-left: 40px;
        margin-top: 10px;
    }
    
    .about div {
        text-align: left;
        margin-left: 40px;
        padding-right: 70px;
    }
    
    .about a {
        transition: 0.3s;
        color: #5b8c2a;
        text-shadow: 2px 2px 5px rgba(255,255,255, 0.3);
    }
    
    .about a:hover {
        font-size: larger;
    }

    .tableDiv {
        padding-left: 20px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-family: 'Poppins', sans-serif;
      }

    table a {
        text-decoration: none;
        color: white;
    }
    
    th, td {
        color: white;
     }
    
      th {
        font-size: 17px;
        font-weight: bold;
      }
    
      tr td {
        padding-left: 20px;
        font-size: 10px;
      }

      tr td:first-child {
        padding-left: 5px;
      }

      .subFormMobile {
        padding-left: 20px;
        font-family: 'Poppins', sans-serif;
        color: white;
      }
      .subFormMobile h2 {
        font-size: 20px;
      }
      .subFormMobile p {
        font-size: 10px;
        margin-top: -5px;
        color: white;
      }

      .subFormMobile form input[type="email"] {
        width: 300px;
        height: 30px;
        background-color: transparent;
        border: 1px solid white;
        font-family: "Poppins", sans-serif;
        border-radius: 10px;
        color: white;
        padding-left: 20px;
        transition: 0.3s;
        outline: none;
    }
    
    .subFormMobile form input[type="email"]:hover {
        outline: 2px solid white;
    }
    
    .subFormMobile form input[type="email"]::placeholder {
        color: white;
    }

    .subFormMobile form button {
        width: 200px;
        height: 25px;
        color: #5b8c2a;
        background-color: #faf8f0;
        border: 0.5px solid white;
        border-radius: 5px;
        font-family: "Poppins", serif;
        transition: 0.3s;
        margin-top: 10px;
    }
    
    .subFormMobile form button:hover {
        cursor: pointer;
        border: 1.5px solid white;
        font-size: 15px;
        background-color: transparent;
        color: #faf8f0;
    }

    .subFormMobile label {
        font-size: 10px;
        display: inline-block;
        padding-right: 20px;
        margin-top: 10px;
    }

    .bottom2Mobile {
        display: flex;
    }

    .bottom2Mobile p {
        margin-top: 15px;
        font-size: 8px;
        color: white;
        font-family: 'Poppins', sans-serif;
        top: 5px;
    }

    .contactDiv {
        display: none;
    }

    .contactDivTop {
        font-family: 'Poppins', sans-serif;
        width: 100%;
        height: 250px;
        background-image: url('../images/contact.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: left;
        color: white;
    }

    .contactDivMobile .contactDivTop h2 {
        margin-left: 10px;
        margin-top: 20px;
        font-size: 20px;
    }
    
    .contactDivMobile .contactDivTop p {
        margin-left: 10px;
        padding-right: 50px;
    }

    .contactDivBottom {
        background-color: #faf8f0;
    }

    .contactFormMobile input, textarea {
        width: 300px;
        height: 30px;
        border: 5px;
        background-color: white;
        border: 0.5px solid #5b8c2a;
        border-radius: 3px;
        font-family: "Montserrat", serif;
        padding-left: 20px;
        transition: 0.3s;
    }
    
    .contactFormMobile textarea {
        height: 50px;
        padding-top: 15px;
        resize: none;
    }
    
    .contactFormMobile textarea::placeholder {
        transition: 0.3s;
    }
    
    .contactFormMobile input::placeholder {
        font-family: "Montserrat", serif;
        transition: 0.3s;
    }
    
    .contactFormMobile input:hover, textarea:hover {
        border: 1px solid #5b8c2a;
    }
    
    .contactFormMobile input:hover::placeholder, textarea:hover::placeholder {
        font-size: 15px;
    }
    
    .contactDivBottom .contactBtn {
        background-color: #5b8c2a;
        color: #faf8f0;
        font-family: "Montserrat", serif;
        border-radius: 3px;
        border: none;
        height: 40px;
        font-size: 13px;
        transition: 0.3s;
        cursor: pointer;
    }
    
    .contactDivBottom .contactBtn:hover {
        font-size: 17px;
    }
    
    .contactDivBottom .submitBtn {
        width: 320px;
    }
    
    .contactDivBottom .resetBtn {
        width: 320px;
        margin-bottom: 20px;
    }
    
    .contactFormMobile form label {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        display: inline-block;
        width: 350px;
        margin-left: 5px;
        text-align: left;
    }

    
    .contactFormMobile form input[type="checkbox"] {
        transform: scale(0.5);
        width: 30px;
        height: 30px;
    }

}

@media (min-width:481px)
{
    .head i {
        display: none;
    }
    .mobileMenu {
        display: none;
    }
    .bottomMobile {
        display: none;
    }
    .about {
        height: 450px;
    }
    .productsMobile {
        display: none;
    }

    .contactDivMobile {
        display: none;
    }
}