/* Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}


:root {
    --heading: #ffffff;
    --sub-heading: #000000;
    --Primary-para: #ffffff;
    --secondry-para: #6C6C6C;
    --box-heading: #ffffff;
    --box-para: #ffffff;
    --navbar-primay: #000000;
    --navbar-secondry: #ffffff;
    --box: #ffffff;
    --button: #ffffff;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Outfit", sans-serif;
    --tag: #5BB947;
    --primary-store-address: #6C6C6C;
    --secondry-store-address: #000000;
    --stars: #E2BD38;
    --placeholder: #ffffff;
    --font-awesome: #ffffff;
}

/* Navar Start Here */

.navbar {
    font-family: var(--font-primary);
}

@media (min-width: 1400px) {
    #navbar {
        max-width: 1440px !important;
    }
}

.navbar-brand img {
    width: 250px;
}


/* Hover state */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .nav-link {
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: #28a745;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Navebar End Here */

/* HeroBanner Start Here */

@media (min-width: 1400px) {
    #herobanner {
        max-width: 1440px;
    }
}

#hero-bg {
    background-image: url(../Images/Hero-Bg.png);
    width: 100%;
    height: auto;
    position: relative;
}

.content {
    padding-top: 200px;
}

/* #hero-bg::before{
    content: "";
    position: absolute;
    background-image: url(../Images/Hero-Leafs.png);
    width: 417px;
    height: 800px;
    left: 0;
    top: -1%;
} */

.upper {
    width: 300px;
    height: 50px;
    background-color: var(--box);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.upper img {
    width: 30px;
    height: 30px;
}

.upper h4 {
    color: var(--sub-heading);
    font-size: 20px;
    margin-left: 15px;
    margin-top: 5px;

}

.content h1 {
    color: var(--heading);
    font-size: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.daili {
    color: var(--heading);
    font-size: 45px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

@media (min-width: 992px) {
    #Contant {
        flex: 0 0 auto;
        width: 62%;
    }
}

.content p {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--Primary-para);
    cursor: pointer;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background: linear-gradient(90deg, rgba(3, 125, 88, 1) 0%, rgba(90, 184, 70, 1) 100%);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Shine Effect */
.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

/* Hover Effects */
.hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Shine Move */
.hero-btn:hover::before {
    left: 100%;
}

.hero-btn a {
    text-decoration: none;
    font-family: var(--font-secondary);
    color: var(--button) !important;
    display: inline-block;
}

@media (min-width: 992px) {
    #herobannner-image {
        flex: 0 0 auto;
        width: 38%;
    }
}

.hero-image {
    padding-top: 186px;
}

.hero-image img {
    width: 650px;
    margin-left: -100px;
}

/* HeroBanner End Here */


/* About Starts Here */

@media (min-width: 1400px) {
    #about-container {
        max-width: 1440px;
    }
}

#about {
    padding-top: 120px;
}

.four-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.box-one {
    width: 320px;
    height: 220px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.box-one img {
    width: 120px;
    margin-top: -55px;
}

.box-one h2 {
    font-family: var(--font-primary);
    font-size: 35px;
    color: var(--box-heading);
    margin-top: 20px;
    font-weight: 600;
}

.box-one p {
    font-family: var(--font-secondary);
    color: var(--box-para);
    font-size: 20px;
    font-size: 400;
    text-transform: uppercase;
    margin-top: -10px;
}

/* Box Two */

.box-two {
    width: 320px;
    height: 220px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.box-two img {
    width: 130px;
    margin-top: -55px;
}

.box-two h2 {
    font-family: var(--font-primary);
    font-size: 35px;
    color: var(--box-heading);
    margin-top: 15px;
    font-weight: 600;
}

.box-two p {
    font-family: var(--font-secondary);
    color: var(--box-para);
    font-size: 20px;
    font-size: 400;
    text-transform: uppercase;
    margin-top: -10px;
}

/* Box Three */

.box-three {
    width: 320px;
    height: 220px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.box-three img {
    width: 140px;
    margin-top: -55px;
}

.box-three h2 {
    font-family: var(--font-primary);
    font-size: 35px;
    color: var(--box-heading);
    margin-top: 20px;
    font-weight: 600;
}

.box-three p {
    font-family: var(--font-secondary);
    color: var(--box-para);
    font-size: 20px;
    font-size: 400;
    text-transform: uppercase;
    margin-top: -10px;
}


/* Box Four */


.box-four {
    width: 320px;
    height: 220px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.box-four img {
    width: 120px;
    margin-top: -55px;
}

.box-four h2 {
    font-family: var(--font-primary);
    font-size: 35px;
    color: var(--box-heading);
    margin-top: 30px;
    font-weight: 600;
}

.box-four p {
    font-family: var(--font-secondary);
    color: var(--box-para);
    font-size: 20px;
    font-size: 400;
    text-transform: uppercase;
    margin-top: -12px;
}


/* About Ends Here */

/* Farm Deliviry Starts Here */

@media (min-width: 1400px) {
    #farm-container {
        max-width: 1395px;
    }
}

.farm-delivery {
    padding-top: 80px;

}

.farm-content {
    margin-top: 135px;
    margin-left: 5px;
    cursor: pointer;
}

.farm-content h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.farm-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondry-para);
}



.farm-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background: linear-gradient(90deg, rgba(3, 125, 88, 1) 0%, rgba(90, 184, 70, 1) 100%);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Shine Effect */
.farm-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

/* Hover Effects */
.farm-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Shine Move */
.farm-btn:hover::before {
    left: 100%;
}

.farm-btn a {
    text-decoration: none;
    font-family: var(--font-secondary);
    color: var(--button) !important;
    display: inline-block;
}

.download-btn {
    margin-top: 20px;
}

.download-btn h2 {
    font-family: var(--font-secondary);
    font-size: 45px;
    font-weight: 600;
    color: var(--sub-heading);
}

.apple-play-btn a {
    text-decoration: none;
}

.apple-play-btn img {
    width: 200px;
}

/* Farm Deliviry Ends Here */

/* Free Delivery Starts Here */

@media (min-width: 1400px) {
    #free-container {
        max-width: 1415px;
    }
}

.free-delivery {
    padding-top: 80px;
}

#free-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(90deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
}

.free-delivery-content {
    padding-top: 50px;

}

.free-delivery-content h2 {
    font-family: var(--font-primary);
    font-size: 45px;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    cursor: pointer;
}

.free-delivery-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--Primary-para);
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    cursor: pointer;
}

.three-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Delhi */

.delhi {
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    cursor: pointer;
    background-image: url(../Images/Delhi.png);
    width: 450px;
    height: 350px;
    margin-top: 50px;
}


.delhi-content h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-family: var(--font-primary);
    color: var(--box-heading);
    font-weight: 600;
}

.delhi-content p {
    font-family: var(--font-secondary);
    font-size: 25px;
    color: var(--box-para);
    font-weight: 400;
    margin-top: -10px;
}

/* Noida */

.noida {
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    cursor: pointer;
    background-image: url(../Images/Noida.png);
    width: 450px;
    height: 350px;
    margin-top: 50px;
}


.noida-content h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-family: var(--font-primary);
    color: var(--box-heading);
    font-weight: 600;
    margin-top: -45px;
}

.noida-content p {
    font-family: var(--font-secondary);
    font-size: 25px;
    color: var(--box-para);
    font-weight: 400;
    margin-top: -10px;
}

/* Gurugram */

.gurugram {
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    cursor: pointer;
    background-image: url(../Images/GuruGram.png);
    width: 450px;
    height: 350px;
    margin-top: 50px;
}


.gurugram-content h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-family: var(--font-primary);
    color: var(--box-heading);
    font-weight: 600;
    margin-top: -125px;
}

.gurugram-content p {
    font-family: var(--font-secondary);
    font-size: 25px;
    color: var(--box-para);
    font-weight: 400;
    margin-top: -10px;
}

/* Free Delivery Ends Here */


/* Deals & Offer Starts Here */

@media (min-width: 1400px) {
    #offer-container {
        max-width: 1438px;
    }
}

.deals-offers {
    padding-top: 280px;
}

@media (min-width: 992px) {
    #offer-deals-all-boxes {
        flex: 0 0 auto;
        width: 46%;
    }
}

.two-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.weekly-discount {
    width: 300px;
    height: 350px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    text-align: center;
    cursor: pointer;
}

.weekly-discount h2 {
    font-size: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--box-heading);
    line-height: 130%;
}

.weekly-discount p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--box-para);
    width: 220px;
    margin-left: 10px;

}

.weekly-offers {
    width: 300px;
    height: 350px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    text-align: center;
    cursor: pointer;
}

.weekly-offers h2 {
    font-size: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--box-heading);
    line-height: 130%;
}

.weekly-offers p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--box-para);
    width: 250px;
    margin-top: 10px;
}

.combo-packs {
    width: 300px;
    height: 350px;
    background: linear-gradient(0deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    text-align: center;
    cursor: pointer;
}

.combo-packs h2 {
    font-size: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--box-heading);
}

.combo-packs p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--box-para);
    width: 220px;
    margin-top: 10px;
}

@media (min-width: 992px) {
    #deals-offers-all-content {
        flex: 0 0 auto;
        width: 53%;
    }
}

.deals-offers-content {
    margin-top: 33px;
    margin-left: 30px;
    position: relative;
}

.deals-offers-content h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--sub-heading);
    line-height: 145%;
    cursor: pointer;
}

.deals-offers-content p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--secondry-para);
    line-height: 160%;
    cursor: pointer;
}

.fruit {
    display: flex;
    align-items: center;
    align-content: center;
    margin-top: 8px;
}

.fruit i {
    color: var(--tag);
}

.fruit p {
    color: var(--secondry-para);
    margin: 0 15px;
    font-size: 16px;
    font-family: var(--font-secondary);
}


.deals-offer-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background: linear-gradient(90deg, rgba(3, 125, 88, 1) 0%, rgba(90, 184, 70, 1) 100%);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Shine Effect */
.deals-offer-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

/* Hover Effects */
.deals-offer-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Shine Move */
.deals-offer-btn:hover::before {
    left: 100%;
}

.deals-offer-btn a {
    text-decoration: none;
    font-family: var(--font-secondary);
    color: var(--button) !important;
    display: inline-block;
}


.deals-offers-content::after {
    content: "";
    position: absolute;
    background-image: url(../Images/Breads-Eggs.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 287px;
    height: 287px;
    top: 45%;
    left: 35%;
    animation: premiumFloat 4s ease-in-out infinite;
}

/* Animation */
@keyframes premiumFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-10px) rotate(2deg) scale(1.03);
    }

    50% {
        transform: translateY(-20px) rotate(0deg) scale(1.05);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg) scale(1.03);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

.deals-offers-content::after {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}


/* Deals & Offer Ends Here */

/* Stores Starts Here */

@media (min-width: 1400px) {
    #stores-container {
        max-width: 1415px;
    }
}


.stores {
    padding-top: 120px;
}


.stores-heading {
    text-align: center;
}

.stores-heading h2 {
    font-family: var(--font-primary);
    font-size: 45px;
    font-weight: 600;
    color: var(--sub-heading);
}

.stores-heading p {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondry-para);
    margin-top: 15px;
}

.stores-address {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    gap: 30px;
}

/* Delhi */

.ribbon-delhi {
    background-image: url(../Images/Ribbon-Delhi.png);
    width: 420px;
    height: 510px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

.delhi-ribbon-content {
    width: 300px;
    height: 400px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    margin-top: 165px;
}

.delhi-ribbon-add p {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondry-store-address);
}

/* Noida */


.ribbon-noida {
    background-image: url(../Images/Ribbon-Noida.png);
    width: 420px;
    height: 510px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

.noida-ribbon-content {
    width: 300px;
    height: 400px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    margin-top: 115px;
}

.noida-ribbon-add p {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondry-store-address);
}


/* Gurugram */


.ribbon-gurugram {
    background-image: url(../Images/Ribbon-Gurugram.png);
    width: 420px;
    height: 510px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

.gurugram-ribbon-content {
    width: 300px;
    height: 400px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    margin-top: -65px;
}

.gurugram-ribbon-add p {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondry-store-address);
}

/* Stores Ends Here */

/* Testimonials starts Here */

@media (min-width: 1400px) {
    #testimonials-container {
        max-width: 1440px;
    }
}

.Testimonials {
    font-size: 14px;
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 120px;
}

.testimonilas-heading {
    text-align: center;
}

.testimonilas-heading h2 {
    font-family: var(--font-primary);
    font-size: 45px;
    font-weight: 600;
    color: var(--sub-heading);
}

.urban {
    font-weight: 800;
    color: #5BB949;
    font-size: 45px;
}

.mandi {
    font-weight: 800;
    color: #017A5B;
    font-size: 45px;
}

/* Swiper */



.swiper {
    width: 100%;
    height: 400px;
    margin-top: 50px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: linear-gradient(-2deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    cursor: pointer;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

.first-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-left: 170px;
    margin-top: 50px;
}

.first-slide h3 {
    font-size: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--box-heading);
    margin-top: 15px;
}

.first-slide p {
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--box-para);
    width: 350px;
    margin-left: 45px;
}

.stars {
    margin-top: 120px;
    color: var(--stars);
}

/* Testimonials Ends Here */

/* Feedback Form Starts Here */


@media (min-width: 1400px) {
    #form-container {
        max-width: 1415px;
    }
}

.feedback-form {
    padding-top: 120px;
}

#form-container {
    width: 100%;
    height: 520px;
    background: linear-gradient(90deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
    border-radius: 16px;
}

.feedback-content {
    margin-top: 80px;
    margin-left: 30px;
}

@media (min-width: 992px) {
    #feedback {
        flex: 0 0 auto;
        width: 49%;
    }
}

.feedback-content h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--box-heading);
}

.feedback-content p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--box-para);
    width: 550px;
}

/* Form */

.customer-feedback {
    margin-top: 35px;

}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--placeholder);
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}



.result {
    margin-top: 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
    display: none;
}

.rating-option {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.rating-option label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}

.rating-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background: linear-gradient(270deg, rgba(3, 125, 88, 1) 0%, rgba(90, 184, 70, 1) 100%);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    margin-top: 10px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 0;
    border: none;
}

/* Shine Effect */
.form-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

/* Hover Effects */
.form-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Shine Move */
.form-btn:hover::before {
    left: 100%;
}

.form-btn a {
    text-decoration: none;
    font-family: var(--font-secondary);
    color: var(--button) !important;
    display: inline-block;
}


/* Feedback Form Ends Here */

/* Footer Starts Here */

@media (min-width: 1400px) {
    #footer-container {
        max-width: 1415px;
    }
}

.footer {
    padding-top: 120px;
    width: 100%;
}

#footer-fluid {
    width: 100%;
    height: 480px;
    background: linear-gradient(90deg, rgba(6, 127, 88, 1) 0%, rgba(91, 185, 71, 1) 100%);
}

.footer-logo {
    margin-top: 50px;
    width: 350px;
    height: 100px;
    background-color: var(--box);
    border-radius: 16px;
}

.footer-logo img {
    width: 280px;
    margin-top: 15px;
    margin-left: 35px;

}


.social-media-icon {
    display: flex;
}

.follow {
    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: 600;
    color: var(--box-heading);
    margin-top: 20px;
}

.social-media-icon img {
    width: 35px;
    height: 35px;
    margin-top: 10px;
    margin-left: 15px;
}

/* Footer Nav */

.footer-nav {
    margin-top: 100px;
}

.footer-nav ul {
    display: flex;
}

.footer-nav ul a {
    text-decoration: none;
}

.footer-nav ul li {
    list-style: none;
    color: var(--navbar-secondry);
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    padding: 8px 16px;
    transition: 0.3s;
    border-radius: 6px;
}

.footer-nav ul li:hover {
    background-color: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Number, Email and Loctions Starts Here */

.footer-adress {
    margin-top: 110px;
    margin-left: 120px;
    position: relative;
}

.footer-adress::after {
    content: "";
    position: absolute;
    background-image: url(../Images/Line-footer.png);
    width: 3px;
    height: 250px;
    top: -45%;
    left: -20%;
}


/* Number */

.number {
    display: flex;
}

.number i {
    color: var(--font-awesome);
    margin-top: 4px;
}

.number h5 {
    color: var(--box-heading);
    margin-left: 15px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
}

/* Email */

.e-mail {
    display: flex;
    margin-top: 10px;
}

.e-mail i {
    color: var(--font-awesome);
    margin-top: 4px;
}

.e-mail h5 {
    color: var(--box-heading);
    margin-left: 15px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
}

/* Location */

.location {
    display: flex;
    margin-top: 10px;
}

.location i {
    color: var(--font-awesome);
    margin-top: 10px;
}

.location h5 {
    color: var(--box-heading);
    margin-left: 15px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
}

.hr-line {
    margin-top: 100px;
    border: none;
    height: 1px;
    background-color: #ffffff;
    opacity: 1;
}

/* Number, Email and Loctions Ends Here */

/* Terms & Condition Starts Here */

.terms-condition {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    gap: 35px;
    margin-top: 25px;
    cursor: pointer;
}

.terms-condition a {
    text-decoration: none;
}

.terms-condition h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--box-para);
}

.bottom {
    text-align: center;
    margin-top: 25px;
}

.bottom h5 {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--box-para);
    font-weight: 400;
}


/* Terms & Condition Ends Here */

/* ================================================Resposive Starts Here=================================================================== */


/* ===============================================================================================================================================
                                                        Responsive 366px                
=============================================================================================================================================== */


@media (max-width: 366px) {


    /* HeroBanner Starts Here */

    .upper {
        width: 200px;
        height: 50px;
    }

    .upper img {
        width: 20px;
        height: 20px;
    }

    .upper h4 {
        font-size: 16px;
    }

    .content h1 {
        font-size: 28px;
    }

    .daili {
        font-size: 20px;
    }

    .content p {
        font-size: 16px;
    }

    .hero-image img {
        width: 100%;
        margin-top: -150px !important;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* HeroBanner End */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .box-one {
        width: 100%;
    }

    .box-two,
    .box-three,
    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */

    /* Farm Delivery Starts Here */

    .farm-content h2 {
        font-size: 25px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 120px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    #free-container {
        height: 300px;
    }

    .free-delivery-content h2 {
        font-size: 25px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi-media.png);
        width: 300px;
        height: 248px;
        margin: 0 auto;
    }

    .delhi-content p {
        margin-top: -3px !important;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida-Media.png);
        width: 300px;
        height: 248px;
        margin-top: -40px !important;
        margin: 0 auto;
    }

    .noida-content h2 {
        margin-top: -3px;
    }

    .noida-content p {
        margin-top: -3px !important;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram-Media.png);
        width: 300px;
        height: 248px;
        margin-top: -50px;
        margin-top: -40px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .deals-offers {
        margin-top: 280px;
    }

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-discount h2 {
        font-size: 25px;
    }

    .weekly-discount p {
        font-size: 16px;
    }

    .weekly-offers {
        width: 100%;
    }

    .weekly-offers h2 {
        font-size: 25px;
    }

    .weekly-offers p {
        font-size: 16px;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .combo-packs h2 {
        font-size: 25px;
    }

    .combo-packs p {
        font-size: 16px;
    }

    .deals-offers-content h2 {
        font-size: 25px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        width: 150px;
        height: 150px;
        top: 65%;
        left: 40%;
    }

    /* Deals & Offer Ends Here */

    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 25px;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi-3.png);
        width: 300px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida-3.png);
        width: 300px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram-3.png);
        width: 300px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */

    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 25px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px;
        margin-left: 35%;
    }

    .first-slide p {
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        width: 250px;
        text-align: center;
        margin: 0 auto;
    }

    /* Testimonials Ends Here */

    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 25px;
        margin-left: -25px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 280px;
        margin-left: -25px;
    }

    #form-container {
        height: 850px;
    }

    /* Feedback Ends Here */

    /* Footer Starts Here */

    #footer-fluid {
        height: 800px;
    }

    .footer-logo {
        display: none;
    }

    .follow {
        text-align: center;
    }

    .social-media-icon {
        margin-left: 50px;
    }

    .footer-nav ul {
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 0 15px;
    }

    .footer-nav {
        margin-top: 50px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: -10px;
    }

    .footer-adress {
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 15px;
    }

    .terms-condition {
        gap: 15px;
    }

    .terms-condition h4 {
        font-size: 14px;
    }

    /* Footer Ends Here */
}


/* ===============================================================================================================================================
                                                        Responsive 480px                
=============================================================================================================================================== */

@media (min-width: 366px) and (max-width: 480px) {


    /* HeroBanner Starts Here */

    .upper {
        width: 200px;
        height: 50px;
    }

    .upper img {
        width: 20px;
        height: 20px;
    }

    .upper h4 {
        font-size: 16px;
    }

    .content h1 {
        font-size: 28px;
    }

    .daili {
        font-size: 20px;
    }

    .content p {
        font-size: 16px;
    }

    .hero-image img {
        width: 100%;
        margin-top: -68px !important;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* HeroBanner End */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .box-one,
    .box-two {
        width: 100%;
    }


    .box-three,
    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */

    /* Farm Delivery Starts Here */

    .farm-content h2 {
        font-size: 25px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 120px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 25px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi-480.png);
        width: 350px;
        height: 278px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida-480.png);
        width: 350px;
        height: 278px;
        margin-top: -30px;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram-480.png);
        width: 350px;
        height: 278px;
        margin-top: -30px;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .deals-offers {
        margin-top: 380px;
    }

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 25px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 150px;
        height: 150px;
        top: 65%;
        left: 40%;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */

    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 25px;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */

    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 23px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide p {
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
    }

    /* Testimonials Ends Here */

    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 25px;
        margin: 0 auto;
        text-align: center;
        margin-left: -25px;
    }

    .feedback-content p {
        font-size: 16px;
        margin: 0 auto;
        text-align: center;
        width: 300px;
        margin-left: -5px;
    }

    #form-container {
        height: 850px;
    }

    /* Feedback Ends Here */

    /* Footer Starts Here */

    #footer-fluid {
        height: 730px;
    }

    .footer-logo {
        display: none;
    }

    .follow {
        text-align: center;
        margin-top: 50px;
    }

    .social-media-icon {
        margin-left: 80px;
    }

    .footer-nav {
        margin-top: 30px;
    }

    .footer-nav ul {
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 0 15px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-top: 50px;
    }

    .footer-adress {
        margin-left: -10px;
    }

    .hr-line {
        margin-top: 15px;
    }

    .terms-condition {
        gap: 15px;
    }

    .terms-condition h4 {
        font-size: 14px;
    }

    /* Footer Ends Here */
}



/* ===============================================================================================================================================
                                                        Responsive 768px                
=============================================================================================================================================== */


@media (min-width: 480px) and (max-width: 768px) {

    /* HeroBanner Starts Here */
    .upper {
        margin: 0 auto;
        margin-top: -50px !important;
    }

    .content h1 {
        font-size: 40px;
        text-align: center;
    }

    .daili {
        font-size: 30px;
    }

    .content p {
        text-align: center;
    }

    .hero-btn {
        margin-left: 165px !important;
        margin-top: 0;
    }

    .hero-image img {
        width: 100%;
        margin: 0 auto;
        margin-top: -120px;
    }

    #hero-bg {
        height: 923px;
    }

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .box-one,
    .box-two {
        width: 100%;
    }


    .box-three,
    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */

    /* farm Delivery Starts Here */

    .farm-content h2 {
        font-size: 30px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 165px;
    }

    /* Farm Delivery Ends Here */


    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 25px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi.png);
        width: 450px;
        height: 350px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida.png);
        width: 450px;
        height: 350px;
        margin-top: -30px;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram.png);
        width: 450px;
        height: 350px;
        margin-top: -30px;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */

    /* Deals & Offer starts Here */

    .deals-offers {
        margin-top: 600px;
    }

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 30px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 250px;
        height: 250px;
        top: 45%;
        left: 40%;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */

    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */

    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 30px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide p {
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
    }

    /* Testimonials Ends Here */

    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 30px;
        margin: 0 auto;
        text-align: center;
        margin-left: -25px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
        margin: 0 auto;
        text-align: center;
        margin-left: 30px;
    }

    #form-container {
        width: 100%;
        height: 850px;
    }

    /* Feedback Ends Here */

    /* Footer Starts Here */


    .footer-nav ul {
        text-align: center !important;
        display: block;
    }

    #footer-fluid {
        height: 900px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 40px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */

}


/* ==================================================================================================================================================
                                                        Responsive 768px
=============================================================================================================================================== */


@media (min-width: 768px) and (max-width: 768px) {

    .hero-image img {
        width: 500px;
        margin-top: -108px;
    }

    .hero-btn {
        margin-left: 255px !important;
        margin-top: 0;
    }

    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 30px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide p {
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 300px;
    }

    /* Testimonials Ends Here */

}

/* ===============================================================================================================================================
                                                        Responsive 992px                
=============================================================================================================================================== */


@media (min-width: 769px) and (max-width: 992px) {

    /* HeroBanner Starts Here */

    .content h1 {
        font-size: 35px !important;
    }

    .daili {
        font-size: 30px;
    }

    .content p {
        font-size: 16px;
    }

    .hero-image img {
        width: 500px;
        margin-top: -164px;
    }

    #hero-bg {
        height: 900px;
    }



    /* HeroBanner Ends Here */


    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .box-one,
    .box-two {
        width: 100%;
    }


    .box-three,
    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */


    /* farm Delivery Starts Here */

    .farm-content {
        margin-top: -50px;
    }

    .farm-content h2 {
        font-size: 30px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 150px;
    }

    /* Farm Delivery Ends Here */


    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 30px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi.png);
        width: 450px;
        height: 350px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida.png);
        width: 450px;
        height: 350px;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram.png);
        width: 450px;
        height: 350px;
        margin-top: -20px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .deals-offers {
        margin-top: 580px;
    }

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
        margin-left: 20px;
    }

    .combo-packs {
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 30px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 250px;
        height: 250px;
        top: 50%;
        left: 40;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */


    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */


    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 30px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide p {
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 280px;
    }

    /* Testimonials Ends Here */


    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 30px;
        text-align: center;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
        text-align: center;
        margin: auto;
    }

    #form-container {
        width: 100%;
        height: 720px;
    }

    /* Feedback Ends Here */


    /* Footer Starts Here */

    .footer-nav {
        margin-top: -210px !important;
    }

    .footer-nav ul {
        text-align: center !important;
        display: block;
        margin-left: 450px;
    }

    #footer-fluid {
        height: 600px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 10px;
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */

}


/* ===============================================================================================================================================
                                                        Responsive 1024px                
=============================================================================================================================================== */


@media (min-width: 992px) and (max-width: 1025px) {

    /* HeroBanner Starts Here */

    .content h1 {
        font-size: 45px;
    }

    .daili {
        font-size: 30px;
    }

    .hero-image img {
        width: 480px;
        margin-top: 38px;
    }

    #hero-bg {
        height: 600px;
    }

    /* HeroBanner Ends Here */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .box-one,
    .box-two {
        width: 100%;
    }


    .box-three,
    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */


    /* farm Delivery Starts Here */

    .farm-content {
        margin-top: 70px;
    }

    .farm-content h2 {
        font-size: 40px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 220px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 40px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi.png);
        width: 450px;
        height: 350px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida.png);
        width: 450px;
        height: 350px;
        margin-top: 29px !important;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram.png);
        width: 450px;
        height: 350px;
        margin-top: -20px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .deals-offers {
        margin-top: 250px;
    }

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 36px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 450px;
        height: 450px;
        top: 115%;
        left: 0;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */


    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */


    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 40px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide h3 {
        font-size: 25px;
    }

    .first-slide p {
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 280px;
    }

    /* Testimonials Ends Here */



    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 40px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
    }

    #form-container {
        width: 100%;
        height: 550px;
    }

    /* Feedback Ends Here */


    /* Footer Starts Here */

    .footer-nav {
        margin-top: 40px;
    }

    .footer-nav ul {
        text-align: center !important;
        display: block;
    }

    #footer-fluid {
        height: 500px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 40px;
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */
}


/* ===============================================================================================================================================
                                                        Responsive 1200px                
=============================================================================================================================================== */



@media (min-width: 1025px) and (max-width: 1200px) {

    /* HeroBanner Starts Here */

    .content h1 {
        font-size: 45px;
    }

    .daili {
        font-size: 30px;
    }

    .hero-image img {
        width: 480px;
        margin-top: 38px;
    }

    #hero-bg {
        height: 600px;
    }

    /* HeroBanner Ends Here */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .box-one,
    .box-two,
    .box-three {
        width: 100%;
    }

    .box-four {
        width: 100%;
        margin-top: 50px;
    }

    /* About Ends Here */


    /* farm Delivery Starts Here */

    .farm-content {
        margin-top: 70px;
    }

    .farm-content h2 {
        font-size: 40px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 220px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 40px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi-media.png);
        width: 300px;
        height: 238px;
        margin: 0 auto;
        margin-top: 99px;
    }

    .delhi h2 {
        font-size: 30px;
    }

    .delhi p {
        font-size: 14px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida-Media.png);
        width: 300px;
        height: 238px;
        margin-top: 99px !important;
        margin: 0 auto;
    }

    .noida-content {
        margin-top: 20px;
    }

    .noida h2 {
        font-size: 30px;
    }

    .noida p {
        font-size: 14px;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram-Media.png);
        width: 300px;
        height: 238px;
        margin-top: 99px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: -70px;
    }

    .gurugram h2 {
        font-size: 30px;
    }

    .gurugram p {
        font-size: 14px;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 36px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 450px;
        height: 450px;
        top: 115%;
        left: 0;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */


    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */


    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 40px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide h3 {
        font-size: 25px;
    }

    .first-slide p {
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 280px;
    }

    /* Testimonials Ends Here */



    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 40px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
    }

    #form-container {
        width: 100%;
        height: 550px;
    }

    /* Feedback Ends Here */


    /* Footer Starts Here */

    .footer-nav {
        margin-top: 40px;
    }

    .footer-nav ul {
        text-align: center !important;
        display: block;
    }

    #footer-fluid {
        height: 500px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 40px;
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */
}



/* ===============================================================================================================================================
                                                        Responsive 1300pc                
=============================================================================================================================================== */



@media (min-width: 1201px) and (max-width: 1400px) {

    /* HeroBanner Starts Here */

    .content h1 {
        font-size: 45px;
    }

    .daili {
        font-size: 30px;
    }

    .hero-image img {
        width: 480px;
        margin-top: 38px;
    }

    #hero-bg {
        height: 600px;
    }

    /* HeroBanner Ends Here */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .box-one,
    .box-two,
    .box-three,
    .box-four {
        width: 100%;
    }


    /* About Ends Here */


    /* farm Delivery Starts Here */

    .farm-content {
        margin-top: 70px;
    }

    .farm-content h2 {
        font-size: 40px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 220px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 40px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi-1200.png);
        width: 350px;
        height: 278px;
        margin: 0 auto;
        margin-top: 99px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida-1200.png);
        width: 350px;
        height: 278px;
        margin-top: 99px !important;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram-1200.png);
        width: 350px;
        height: 278px;
        margin-top: 99px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
    }

    .combo-packs {
        margin-top: 20px;
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 36px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 450px;
        height: 450px;
        top: 115%;
        left: 0;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */


    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram-2.png);
        width: 350px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */


    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 40px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide h3 {
        font-size: 25px;
    }

    .first-slide p {
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 280px;
    }

    /* Testimonials Ends Here */



    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 40px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
    }

    #form-container {
        width: 100%;
        height: 550px;
    }

    /* Feedback Ends Here */


    /* Footer Starts Here */

    .footer-nav {
        margin-top: 40px;
    }

    .footer-nav ul {
        text-align: center !important;
        display: block;
    }

    #footer-fluid {
        height: 500px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 40px;
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */
}



/* ===============================================================================================================================================
                                                        Responsive 1440px                
=============================================================================================================================================== */



@media (min-width: 1401px) and (max-width: 1440px) {

    /* HeroBanner Starts Here */

    .content h1 {
        font-size: 45px;
    }

    .daili {
        font-size: 30px;
    }

    .hero-image img {
        width: 480px;
        margin-top: 38px;
    }

    #hero-bg {
        height: 600px;
    }

    /* HeroBanner Ends Here */

    /* About Starts Here */

    .four-boxes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .box-one,
    .box-two,
    .box-three,
    .box-four {
        width: 100%;
    }

    /* About Ends Here */


    /* farm Delivery Starts Here */

    .farm-content {
        margin-top: 70px;
    }

    .farm-content h2 {
        font-size: 40px;
    }

    .farm-content p {
        font-size: 16px;
    }

    .apple-play-btn img {
        width: 220px;
    }

    /* Farm Delivery Ends Here */

    /* Free Delivery Starts Here */

    .free-delivery-content h2 {
        font-size: 40px;
    }

    .free-delivery-content p {
        font-size: 16px;
    }

    .three-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .delhi {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Delhi.png);
        width: 450px;
        height: 350px;
        margin: 0 auto;
        margin-top: 50px;
    }

    .noida {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/Noida.png);
        width: 450px;
        height: 350px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .gurugram {
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        cursor: pointer;
        background-image: url(../Images/GuruGram.png);
        width: 450px;
        height: 350px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .gurugram-content h2 {
        margin-top: 0;
    }

    /* Free Delivery Ends Here */


    /* Deals & Offer starts Here */

    .two-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        padding: 0 15px;
    }

    .weekly-discount {
        width: 100%;
    }

    .weekly-offers {
        width: 100%;
        margin-left: 20px;
    }

    .combo-packs {
        width: 100%;
    }

    .deals-offers-content h2 {
        font-size: 36px;
    }

    .deals-offers-content p {
        font-size: 16px;
    }

    .deals-offers-content::after {
        content: "";
        position: absolute;
        background-image: url(../Images/Breads-Eggs.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 250px;
        height: 250px;
        top: 45%;
        left: 30%;
        animation: premiumFloat 4s ease-in-out infinite;
    }

    /* Deals & Offer Ends Here */


    /* Stores starts Here */

    .stores-heading h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .stores-heading p {
        font-size: 16px;
    }

    br {
        display: none;
    }

    .stores-address {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 100px;
    }


    .ribbon-delhi {
        background-image: url(../Images/Ribbon-Delhi.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .delhi-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-noida {
        background-image: url(../Images/Ribbon-Noida.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .noida-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    .ribbon-gurugram {
        background-image: url(../Images/Ribbon-Gurugram.png);
        width: 420px;
        height: 512px;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        margin: 0 auto;
    }

    .gurugram-ribbon-add p {
        font-size: 14px;
        width: 230px;
    }

    /* Stores Ends Here */


    /* Testimonials Starts Here */

    .testimonilas-heading h2 {
        font-size: 40px;
    }

    .first-slide img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-top: 50px !important;
        margin: 0 auto;
    }

    .first-slide h3 {
        font-size: 25px;
    }

    .first-slide p {
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--box-para);
        margin: 0 auto;
        width: 280px;
    }

    /* Testimonials Ends Here */



    /* Feedback Starts Here */

    .feedback-content h2 {
        font-size: 40px;
    }

    .feedback-content p {
        font-size: 16px;
        width: 380px;
    }

    #form-container {
        width: 100%;
        height: 550px;
    }

    /* Feedback Ends Here */


    /* Footer Starts Here */

    .footer-nav {
        margin-top: 40px;
    }

    .footer-nav ul {
        text-align: center !important;
        display: block;
    }

    #footer-fluid {
        height: 500px;
    }

    .footer-adress::after {
        display: none;
    }

    .footer-adress {
        margin-left: 40px;
        margin-top: 50px;
    }

    .hr-line {
        margin-top: 25px;
    }

    .terms-condition {
        gap: 35px;
    }

    .terms-condition h4 {
        font-size: 18px;
    }

    /* Footer Ends Here */
}



/* Ring */


/* BIG OUTER CIRCLE */
    .cursor-ring{
      position:fixed;
      width:25px;
      height:25px;
      border:2px solid #000000;
      border-radius:50%;
      pointer-events:none;
      z-index:9999;
      transform:translate(-50%, -50%);
      backdrop-filter: blur(2px);
    }

    /* SMALL INNER DOT */
    .cursor-dot{
      position:fixed;
      width:10px;
      height:10px;
      background:#000000;
      border-radius:50%;
      pointer-events:none;
      z-index:10000;
      transform:translate(-50%, -50%);
    }