:root{
    --green: #088178;
    --grey: #E3E6F3;
    --heading_color: #222;
    --paragraph_color: #465b52;
    /* --green: #cce7d0; */
}

*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    font-family: 'Spartan', sans-serif;
}

h1{
    font-size: 3.125rem;   /* 50px  */
    line-height: 4rem;     /* 64px  */
    color: var(--heading_color);
}

h2{
    font-size: 2.875rem;    /* 46px  */
    line-height: 3.375rem;  /* 54px  */
    color: var(--heading_color);

}

h4{
    font-size: 1.25rem;     /* 20px  */
    color: var(--heading_color);
}

h6{
    font-size: 0.75rem;     /* 12px  */
    font-weight: 700;
}

p{
    font-size: 1rem;         /* 16px  */
    color: var(--paragraph_color);
    margin: 1rem 0 1.25rem 0;  /* 16px 0 20px 0  */
}

button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s ease;
}

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s ease;
}

.section-p1{
    padding: 2.5rem 5rem;    /* 40px  80px*/
}

.section-m1{
    margin: 2.5rem 0;       /* 40px 0 */
}

/* Header Start */
.header{
    background-color: #E3E6F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5rem;    /* 20px 80px */
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position:sticky;
    top: 0;
    left: 0;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar li{
    list-style: none;
    /* padding-left: 1.125rem; */
    padding: 0 1.125rem;   /* 18px  */
    position: relative;
}

.navbar li a{
    text-decoration: none;
    font-size: 1rem;          /* 16px  */
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}


.navbar li a:hover,
.navbar li a.active{
    color: var(--green);
}

.navbar li a.active::after,
.navbar li a:hover::after{
    content: "";
    width:30%;
    height: 0.125rem;     /* 2px  */
    background-color: var(--green);
    position: absolute;
    bottom: -0.25rem;     /* 4px  */
    left: 1.25rem;          /* 20px  */
}

.mobile{
    display: none;
    /* align-items: center; */
}

#close{
    display: none;
}

/* Home Page */
.hero{
    background-image: url("img/hero4.png");
    height:90vh;
    width:100%;
    background-size: cover;
    background-position: top 25% right 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem 5rem;      /* 20px 80px */
}

.hero h4{
    padding-bottom: 1rem;
}

.hero h1{
    color: var(--green);
}

.hero button{
    background-image: url("img/button.png");
    background-color: transparent;
    color: var(--green);
    border: 0;
    padding:1rem 5rem 1rem 4rem;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.94rem;     /* 15px */
}

.feature{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.feature__box{
    width: 11.25rem;        /* 180px */
    text-align: center;
    padding: 1.5rem 1rem;   /* 24px  16px*/
    box-shadow: 1.25rem 1.25rem 2.125rem rgba(0,0,0,0.03);     /* 20px 20px 34px */
    border: 1px solid #cce7d0;
    border-radius: 0.25rem;   /* 4px */
    margin: 0.94rem 0;           /* 15px */
}

.feature__box:hover{
    box-shadow: 0.625rem 0.625rem 3.375rem rgba(70,62,221,0.1);     /* 10px 10px 54px */
    /* increase x increase y reduce radius */
}

.feature__box img{
    width:100%;
    /* margin-bottom: 10px; */
}

.feature__box h6{
    background-color: #fddde4;
    color: var(--green);
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 0.25 rem;
    display: incline-block;    /* to reduce padding effect */
}

.feature__box:nth-child(2) h6{
    background-color: #cdebbc;

}

.feature__box:nth-child(3) h6{
    background-color: #d1e8f2;

}

.feature__box:nth-child(4) h6{
    background-color: #cdd4f8;

}

.feature__box:nth-child(5) h6{
    background-color: #f6dbf6;

}

.feature__box:nth-child(6) h6{
    background-color: #fff2e5;

}

.product1{
    text-align: center;
}

.product1__container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0 ;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin: 15px 0; 
    transition: 0.2s ease;
    position: relative;
}

.product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}

.product1 .pro img{
    max-width: 100%;
    border-radius: 20px;
}

.product1 .pro .desc{
    text-align: start;
    padding: 10px 0;
}

.product1 .pro .desc span{
    color: #606063;
    font-size: 12px;
}

.product1 .pro .desc h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

.product1 .pro .desc i{
    font-size: 12px;
    color: rgb(243,181,25);
}

.product1 .pro .desc h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
}

.product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    /* font-weight: 500; */
    color: var(--green);
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.banner {
    position: relative;
    background-image: url('img/banner/b2.jpg'); /* Replace 'your-background-image.jpg' with the actual path to your image */
    background-size: cover;
    background-position: center;
    color: #fff; /* Set text color for better visibility */
    text-align: center;
    padding: 50px; /* Adjust the padding as needed */
  }

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    filter: blur(100px); /* Adjust the blur intensity as needed */
  }

.banner h4{
    color: #fff;
    font-size: 16px;
}

.banner h2{
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
}

.banner h2 span{
    color: #ef3636;
}

.banner button:hover{
    background-color: var(--green);
    color: #fff;
}

.sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: url(img/banner/b17.jpg);
    background-size: cover;
    background-position: center;
    /* min-width: max(580px,49%); */
    min-width: 580px;
    height: 50vh;
    padding: 30px;
    /* margin: 10px 0;  */
}

.sm-banner .banner-box2{
    background-image: url(img/banner/b10.jpg);
}

.sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

.sm-banner h2{
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.sm-banner span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

.sm-banner .banner-box:hover button{
    background-color: var(--green);
    border: 1px solid var(--green);
}

.banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

.banner3 .banner-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: url(img/banner/b7.jpg);
    background-size: cover;
    background-position: center;
    min-width: 30%;
    height: 30vh;
    padding: 20px;
    margin-bottom: 20px; 
}

.banner3 h2{
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

.banner3 h3{
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

.banner3 .banner-box2{
    background-image: url(img/banner/b4.jpg);
}

.banner3 .banner-box3{
    background-image: url(img/banner/b18.jpg);
}

.newsletter{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* padding: 40px 80px; */
    background-image: url(img/banner/b14.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

.newsletter__text h4{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.newsletter__text p{
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

.newsletter__text p span{
    color: #ffbd27;
}

.newsletter__form{
    display: flex;
    width: 40%;
}

.newsletter__form input{
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    outline: none;
}

.newsletter__form button{
    background-color: var(--green);
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-bottom: 20px;
}

footer .logo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin: 0 0 10px 0;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover{
    color: var(--green);
}

footer .install .row img{
    border: 1px solid var(--green);
    border-radius: 6px;
}

footer .install img{
    margin: 10px 0 15px 0;
}

footer .copyright{
    width: 100%;
    text-align: center;
}
.navbar-brand{
    font-size: 20px; 
    color: rgb(0, 0, 0);

}
.quote-text{
    font-size: 35px;
    font-family: 'AmstelvarAlpha';
    /* You can replace 'Roboto' with any other attractive font */
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left:50px;
    color: #000000;
    /* Adjust the color as needed */
    font-weight: bold;
    /* Adjust the font weight as needed */
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    max-width: 100%;
    height: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    outline: none;
    border-radius: 50%;
    margin-top: -20px;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.millets{
    font-size: 25px;
}


.banmill{
    color: #ffea02; 
    font-size: 100px;
}

.ban2mill{
    color: #1601ff;
    font-size: 50px
}

body{
    background:#eee;
}

.card{
    border:none;

    position:relative;
    overflow:hidden;
    border-radius:8px;
    cursor:pointer;
}

.card:before{
    
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background-color:#E1BEE7;
    transform:scaleY(1);
    transition:all 0.5s;
    transform-origin: bottom
}

.card:after{
    
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background-color:#8E24AA;
    transform:scaleY(0);
    transition:all 0.5s;
    transform-origin: bottom
}

.card:hover::after{
    transform:scaleY(1);
}


.fonts{
    font-size:11px;
}

.social-list{
    display:flex;
    list-style:none;
    justify-content:center;
    padding:0;
}

.social-list li{
    padding:10px;
    color:#8E24AA;
    font-size:19px;
}


.buttons button:nth-child(1){
       border:1px solid #8E24AA !important;
       color:#8E24AA;
       height:40px;
}

.buttons button:nth-child(1):hover{
       border:1px solid #8E24AA !important;
       color:#fff;
       height:40px;
       background-color:#8E24AA;
}

.buttons button:nth-child(2){
       border:1px solid #8E24AA !important;
       background-color:#8E24AA;
       color:#fff;
        height:40px;
}
.section-border {
    border: 2.5px solid #17a2b8 !important;
    box-shadow: 5px 5px 15px 0.1rem #8b8b8b;
}

.card {
    transition: transform 0.3s;
    background-color: #f8e184b3; /* Light background color */
    border-radius: 15px;
    overflow: hidden;
    max-width: 900px; /* Adjust the maximum width as needed */
    margin: auto; /* Center the card */
}

.card:hover {
    transform: scale(1.05);
}

.testimonial {
    padding: 20px;
}

.avatar img {
    width: 100%;
    height: auto;
    border: 4px solid #fff; /* White border around the avatar */
}

p {
    color: #000000; /* Text color */
    font-size: 18px;
}



.imageee{
    margin-left: 41%;

}
.discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
}
.cs {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4c96af;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
}
.pro {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pro:hover {
    transform: scale(1.05);
}

.desc {
    padding: 20px;
    text-align: center;
}

.desc h5 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

.item-price {
    font-size: 1rem;
    margin-top: 10px;
}
.original-price {
    color: #ff0000; /* Different color for original price */
}

.discounted-price {
    color: #000000; /* Different color for discounted price */
}

.slides {
    font-size: 0; /* Set font size to 0 to remove white space between inline-block elements */
  }
  
.slide {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
  }

  /* Style for Popover Box */
.popover {
    max-width: 250px; /* Set the maximum width of the popover box */
    background-color: #ff0000; /* Background color */
    border: 1px solid #ccc; /* Border color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    color: #ffffff; /* Text color */
    padding: 10px; /* Padding inside the popover box */
    font-weight: bold;
    font-size: 1rem;
}

.popover-title {
    font-weight: bold; /* Bold title text */
}

.popover-content {
    margin-top: 10px; /* Add some space between title and content */
}

/* Style for the close button in the popover */
.popover .close {
    position: absolute;
    top: 5px;
    right: 10px;
}

/* Style for the arrow of the popover */
.popover.top .arrow {
    border-top-color: #ccc; /* Arrow color */
}

/* Style for the arrow border */
.popover.top .arrow:after {
    border-top-color: #fff; /* Arrow border color */
}



/* Shop Page */


/* Single Product */


/* Blog Page */


/* About Page */


/* Cart Page */



/* Start Media Query*/

@media (max-width: 799px){

    .imageee{
        margin-left: 25%;
        
    }
    .section-p1{
        padding:40px 40px;
    }

    .navbar{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position:fixed;
        top:0;
        right:-400px;
        height:100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(194, 7, 7, 0.1);
        padding:80px 0 0 10px;
    }

    .container-fluid {
        background-color: #000000; 
        background-image: linear-gradient(62deg, #d2c6c6 0%, #ede504 100%);
        font-family: 'AmstelvarAlpha';
        color: #000000;
        font-weight: bold;
    }
    .quote-text{
        font-size: 35px;
        font-family: 'AmstelvarAlpha';
        margin-left:50px;
        color: #000000;
        font-weight: bold;
    }

    .navbar-brand{
        font-size: 14px; 
        color: rgb(0, 0, 0);
    
    }
    .millets{
        font-size: 20px;
    }
    
    .navbar li{
        margin-bottom: 25px;
    }

    .navbar.active{
        right:0px;
    }

    .mobile{
        display: flex;
        align-items: center;
    }

    .mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag{
        display: none;
    }

    .hero {
        height: 70vh;
        padding: 0px 80px;
        background-position: top 30% right 30%;
    }

    .feature {
        justify-content: center;
    }

    .feature__box {
        margin: 15px 15px;
    }

    .product1__container {
        justify-content: center;
    }

    .product1 .pro {
        margin: 15px;
    }

    .banner {
        height: 20vh;
    }

    

    .sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }

    .banner3 {
        padding: 0 40px;
    } 

    .banner3 .banner-box {
        width: 28%;
    }

    .newsletter__form {
        width: 70%;
    }

    p {
        color: #495057; /* Text color */
        font-size: 14px;
    }
}


@media (max-width: 477px){
    .section-p1{
        padding: 20px;
    }

    .header {
        padding: 10px 30px;
    }

    .hero {
        padding: 0px 20px;
        background-position: 55%;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    .feature {
        justify-content: space-between;
    }

    .feature__box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    .product1 .pro {
        width: 100%;
    }



    .banner {
        height: 40vh;
    }

    .sm-banner .banner-box {
        height: 40vh;
    }

    .sm-banner .banner-box2 {
        margin-top: 20px;
    }

    .banner3 {
        padding: 0 20px;
    }

    .banner3 .banner-box {
        width: 100%;
    }

    .newsletter {
        padding: 40px 20px;
    }

    .newsletter__form {
        width: 100%;
    }

    footer .copyright {
        text-align: start;
    }
}
