* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* WHATSAPP ICON */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}


.header-orange {
    background-color: #fa8128;
    height: 20px;
    width: 100%;
}

.logo {
    /* color: orange !important;
    font-size: 30px !important; */
    height: auto;
    width: 250px;
}

.logo a img {
    height: 100%;
    width: 100%;
}

.navbar-nav {
    margin-right: 20px !important;
}

.nav-item::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background: #fa8128;
    transition: 0.2s;
}

.nav-item:hover::after {
    width: 100%;
}


/* BENEFITS */ 


.health-benefits {
    margin-top: 30px;
    padding: 30px;
}


.health-title {
    position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  padding-right: 90px; /* Space for the line */
}

.health-title::after {
    content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;      /* Length of the line */
  height: 3px;      /* Thickness */
  background-color: #fa8128;
}

.health-benefits-section {
    margin-top: 50px;
    display: flex;
    gap:40px;
}

.benefits-box {
    width: 100%;
    height: 100%;
    background-color: #ffe9d3;
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* .box-text {
    width: 70%;
}

.box-image {
    width: 30%;
} */

.box-image img{
    width: 100px;
    height: auto;
}


/* ABOUT US */ 


.about-bg {
    background-image: url('../images/beebg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* opacity: 50%; */
}

.about-us {
    margin-top: 30px;
    padding: 30px;
}

.about-us-title {
    position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  padding-right: 90px; /* Space for the line */
}

.about-us-title::after {
    content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;      /* Length of the line */
  height: 3px;      /* Thickness */
  background-color: #fa8128;
} 


.about {
    
    display: flex;
    justify-content: center;
    /* padding: 0px 0px; */
    /* gap: 20px; */
}

.hex-wrapper {
    width: 30%;
}

.hex-image img {
    width: 250px;
    height: auto;
}

.about-text {
    width: 40%;
}


/* FEATURED PRODUCTS */

.featured-products {
    margin-top: 30px;
    padding: 30px;
}

.featured-title {
    position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  padding-right: 90px; /* Space for the line */
}

.featured-title::after {
    content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;      /* Length of the line */
  height: 3px;      /* Thickness */
  background-color: #fa8128;
} 


.featured {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.f-product img {
    width: 300px;
    height: auto;
}

.view-more-btn {
    margin-top: 40px;
    
}

.view-more {
    padding: 14px 20px !important;
    background-color: #ffe9d3 !important;
    color: #fa8128 !important;
    border: none !important;
    border-radius: 10px !important;
    gap: 20px !important;
    margin: 0 auto;
}

.view-more-btn img {
    width: 30px;
    height: auto;
}




/* FAQs */


.questions {
    margin-top: 30px;
    padding: 30px;
}

.questions-title {
    position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  padding-right: 90px; /* Space for the line */
}

.questions-title::after {
    content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;      /* Length of the line */
  height: 3px;      /* Thickness */
  background-color: #fa8128;
} 


/* CONTACT US */

.contact-us {
    margin-top: 30px;
    padding: 30px;
}

.contact-us-title {
    position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
  padding-right: 90px; /* Space for the line */
}

.contact-us-title::after {
    content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;      /* Length of the line */
  height: 3px;      /* Thickness */
  background-color: #fa8128;
} 

.contact-content {
    display: flex;
    justify-content: space-around;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #fa8128 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

input[type=text] {
    border-color: #fa8128 !important;
    width: 100%;
}

textarea {
    border-color: #fa8128 !important;
    width: 100%;
}

.submit {
    padding: 14px 30px !important;
    background-color: #ffe9d3 !important;
    color: #fa8128 !important;
    border: none !important;
    border-radius: 20px !important;
} 

/* support */

.contact-icon img {
    width: 30px;
    height: auto;
}

.email-icon img {
    width: 30px;
    height: auto;
}


.location-icon img {
    width: 30px;
    height: auto;
}


/* FOOTER */

.footer-orange {
    background-color: #fa8128;
    height: 20px;
    width: 100%;
}

.footer-orange p {
    margin: 0;
    padding: 0;
    text-align: center;
}

footer {
    /* background-color: #ffe9d3; */
    padding: 50px 20px;
    border-top: 1px solid #ffe9d3;
    margin-top: 50px;
}


.footer-content {
    display: flex;
    gap: 30px;
    justify-content: space-around;
}

.quick-links ul li {
    list-style: none;
   
}

.quick-links ul {
     margin: 0;
    padding: 0;
}

.social-icons img {
    width: 30px;
    height: auto;
}





/* PRODUCTS */

.product {
    display: flex;
    justify-content: space-around;
    /* gap: 40px; */
}



.product-image img {
    width: 300px;
    height: 100%;
}




.add-to-cart {
    padding: 14px 20px !important;
    background-color: #ffe9d3 !important;
    color: #fa8128 !important;
    border: none !important;
    border-radius: 10px !important;
    gap: 20px !important;
    margin: 0 auto;
}

.product-description {
    margin-top: 50px;;
}

.product-description h4 {
    margin-bottom: 20px;
}

.product-description p {
    text-align: justify;
}


/* CART */

.carttable-img {
    width: 100px;
    height: auto;
}

.cart-mobile {
    display: none;
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 20px;
    }
}


/* MOBILE VIEW */

@media (max-width: 767px) {


    /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .logo {
    height: auto;
    width: 200px;
}

    .navbar-nav {
        padding-left: 20px !important;
    }


    .header-orange {
    background-color: #fa8128;
    height: 14px;
    width: 100%;
}

.health-benefits h2 {
    font-size: 20px;
}

.box-image {
    margin: 0 auto;
}

.box-text h4 {
    font-size: 18px;
}

.box-text p {
    font-size: 16px;
}


    /* HEALTH BENEFITS */
    .health-benefits-section {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

    .benefits-box {
        width: 100%;
        height: auto;
        background-color: #ffe9d3;
        display: flex;
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }


/* ABOUT */

.about-us-title {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    padding-right: 90px;
    font-size: 20px;
}

.about {
    display: flex;
    justify-content: center;
    padding: 4px 14px;
    gap: 20px;
    flex-direction: column;
}

.hex-image {
    text-align: center;
}

.hex-image img {
    width: 150px;
    height: auto;
}

.hex-wrapper {
    width: 100%;
}

.about-text {
    width: 100%;
}


/* FEATURED */

.featured-title {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    padding-right: 90px;
    font-size: 20px;
}

.featured {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-direction: column;
}

.f-product {
    text-align: center;
}


.f-product img {
    width: 200px;
    height: auto;
}

.view-more-btn {
    margin: 0 auto !important;
    margin-top: 40px !important;
    width: 200px !important;
}

.view-more {
    /* font-size: 7px; */
    padding: 10px 14px !important;
    background-color: #ffe9d3 !important;
    color: #fa8128 !important;
    border: none !important;
    border-radius: 10px !important;
    gap: 20px !important;
    margin: 0 auto;
    width: 200px !important;;
}


/* FAQs */

.questions-title {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    padding-right: 90px;
    font-size: 20px;
}


/* CONTACT CONTENT */

input[type=text] {
    border-color: #fa8128 !important;
    width: 100%;
}


textarea {
    border-color: #fa8128 !important;
    width: 100%;
}

.contact-content {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 20px;
}

.support h4 {
    margin-bottom: 20px;
}


.contact-icon img {
    width: 20px;
    height: auto;
}

.email-icon img {
    width: 20px;
    height: auto;
}

.location-icon img {
    width: 20px;
    height: auto;
}


.contact-us-title {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    padding-right: 90px;
    font-size: 20px;
}

.submit-btn {
    /* margin: 0 auto; */
    text-align: center;
}

/* FOOTER */

.quick-links h4 {
    font-size: 20px;
}

.quick-links ul li a {
    text-decoration: none !important;
}

.connect-with-us h4 {
    font-size: 20px;
}

.footer-content {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    flex-direction: column;
}

iframe {
    width: 100%;
}

.footer-orange p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 12px;
}


.product {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-direction: column;
}

.product-image {
    margin: 0 auto;
    text-align: center;
}

.product-image img {
    width: 200px;
    height: 100%;
}

.product-description p {
    text-align: justify;
    font-size: 14px;
}



/* CART */

.cart-mobile {
        display: block;
    }

}