/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}









/* Navbar Container */
.sticky-top {
    position: sticky;
    top: 0;
    padding: 0 0 7px 0;
    z-index: 1020;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  /* Logo Style */
  /*
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D90216;
    height: 70px;
    width: 50px;
    border-radius: 0px 0px 50px 50px;
    text-align: center;
  }

 
  .logo-icon {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    padding: 20px 5px;
    font-weight: bold;
  }


*/

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D90216;
    height: 38px;
    width: 38px;
    border-radius: 0px 50px 50px 0;
    text-align: center;
}
 
  .logo-icon {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    padding: 20px 5px;
    font-weight: 900;
    margin: -4px 0 0 -3px;
}
  
  /* links  */
  a {
    color: rgb(24 91 189);
    text-decoration: none;
  }


  /* Brand Name */
  .brand-name {
    color: #D90216;
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    margin: 0px 0 0 1px;
  }
  
p.sub{
    color: #D90216;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    margin: -10px 0 0 0;
}

  /* Navbar Links */
  .navbar-nav a {
    color: #000000;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
  }
  
  .navbar-nav a:hover, .navbar-nav a.active {
    color: #D90216;
    background-color: rgba(217, 2, 22, 0.1);
    border-radius: 5px;
  }
  
  /* Dropdown Menu */
  span#hide{
    display: none;
  }
  .dropdown-menu {
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-item {
    color: #000000;
    padding: 10px 15px;
    transition: all 0.3s;
  }
  
  .dropdown-item:hover {
    background-color: rgba(217, 2, 22, 0.1);
    color: #D90216;
  }

div#post.dropdown-menu.bg-light.mt-2.show
      {
        width: 300px;
        display: block !important;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
        border: none;
        background-color: #fff;
        box-shadow: none;
        

      }
   
      span.postmenu
      {
        display: block;
        font-size: 14px;
        color: #000000;
        width: 100%;
        padding: 10px 15px;
        transition: all 0.3s;
        text-align: left;
        margin: 0 0 0 0;
        border-bottom: 1px solid #D90216;
        white-space: normal;
      

      }
      

  /* Shop Now Button */
  .btn-danger {
    background-color: #D90216;
    color: #ffffff;
    border: none;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .btn-danger:hover {
    background-color: #ff4d4d;
    color: #ffffff;
  }
  
.navbar-toggler {
    padding: 10px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: #c20404;
    background-color: #fff;
    border: 1px solid #c20404;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.navbar-toggler:hover {
    padding: 10px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: #ffffff;
    background-color: #c20404;
    border: 1px solid #f0ebeb;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
  
  
@media (max-width: 992px) {

  .btn-danger {
      display: block !important;
      margin-top: 10px;
  }


}
  






















/* Blog Header */
.blog-header {
    background: #d90217;
    background-image: url('/img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

  
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 1.2rem;
    color: #fff;
}

/* Blog Content */
main.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1024px;
    margin: 20px auto;
}


article {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

img {
    max-width: 100%;
   /* height: 600px; */
    border-radius: 5px;
    margin-bottom: 20px;
}



main h2 {
    color: #d90216;
    font-size: 1.8rem;
    margin: 15px 0 15 0;
    text-align: center;
}

main h3 {
    color: #d90216;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
}

main ul {
    margin: 20px 0;
    padding: 0 20px;
    list-style: disc;
}

main ul li {
    margin-bottom: 10px;
}

main blockquote {
    font-style: italic;
    background-color: #f1f1f1;
    padding: 15px;
    border-left: 5px solid #d90216;
    margin: 20px 0;
    border-radius: 5px;
}







/* Buttons */
.btn {
    background-color: #d90216;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background-color: #a70110;
    text-decoration: none;
}

/* Footer */
.blog-footer {
    background-color: #f1f1f1;
    color: #666;
    text-align: center;
}

.blog-footer p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 23px;
    }
    .blog-header p {
        font-size: 16px;
    }

    main.container {
        padding: 20px;
    }

    main h2 {
        font-size: 26px;
    }

    main h3 {
        font-size: 1.3rem;
    }

    img {
    max-width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 20px;
         }

}






  
  /* Ingredients Section */
  .ingredients-section {
    background: linear-gradient(135deg, #eaf7ea, #f9f9f9);
    padding: 60px 0;
  }
  
  /* Section Title */
  .ingredients-title {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
  }
  
  .ingredients-title .highlight {
    color: #d90216;
  }
  
  .ingredients-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  /* Ingredient Item */
  .ingredient-image {
    width: 80px;
    height: 80px;
    background: #ffc107;
    padding: 5px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
  }

  div.col-lg-3.col-md-4.col-sm-6.text-center {
    width: 24%;
    
    border: 1px dashed #C20404;
    margin: 3px;
    border-radius: 10px;
    
 
}

div.row.g-4
{
justify-content: center;
margin: 10px 0 40px 0;
}




  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ingredients-title {
        font-size: 28px;
    }
  
    h3 {
        font-size: 16px;
    }
  
    p#ingredients {
        font-size: 12px !important;
    }




  }


  
  @media (min-width: 1024px)  {
    
    div.col-lg-3.col-md-4.col-sm-6.text-center {
      width: 23%;
      padding: 6px;
      border: 1px dashed #C20404;
      margin: 10px;
      border-radius: 10px;
    
  }

  }




  /* Benefits Section */
  .benefits-section {
    background: #f9f9f9;
    padding: 60px 0;
  }
  
  /* Section Title */
  .benefits-title {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .benefits-title .highlight {
    color: #d90216;
  }
  
  .benefits-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  /* Benefit Item */
  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .benefit-icon {
    font-size: 40px;
    color: #d90216;
    margin-bottom: 15px;
  }
  
  .benefit-item h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
  }
  
  .benefit-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Product Image */
  .product-image {
    max-width: 100%;
    border-radius: 10px;
   /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  }


  /* Responsive Design */
  @media (max-width: 768px) {
    .benefits-title {
        font-size: 28px;
    }
  
    .benefit-item h5 {
        font-size: 16px;
    }
  
    .benefit-item p {
        font-size: 13px;
    }

    div#m-hide.col-md-2.text-center {
        
        display: none;
    }

    div.col-lg-3.col-md-4.col-sm-6.text-center {
    width: 48%;
    padding: 6px;
    border: 1px dashed #C20404;
    margin: 3px;
    border-radius: 10px;
 
}

  }

  
  @media (min-width: 820px)  {
    img#d-hide.img-fluid
      {
  display: none;
  
       }
  }

  @media (min-width: 1024px)  {

    
  img#d-hide.img-fluid
      {
   display: none;

      }

  }

  


  /* Footer Section */
  .footer-section {
    background-color: #f9f9f9;
    padding: 60px 0;
  }

  h3 {
    font-size: 18px !important;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}
  
  /* Footer Titles */

    #footer-title {
        font-size: 34px;
        margin-top: 20px;
    }

  .footer-title {
    font-size: 24px;
    font-weight: bold;
    color: #d90216;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Help Button */
  .footer-help-button {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #d90216;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
  .footer-help-button:hover {
    background-color: #ff4d4d;
    color: #ffffff;
  }
  
  /* Footer Image */
  .footer-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact Buttons */
  .footer-contact h5 {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
  }
  
  .footer-contact .btn {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #d90216;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
  }
  
  .footer-contact .btn:hover {
    background-color: #ff4d4d;
    color: #ffffff;
  }
  
  /* Copyright */
  .footer-copyright {
    font-size: 14px;
    color: #666666;
  }
  
  .footer-copyright a {
    text-decoration: none;
    color: #d90216;
  }
  
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    padding: 10px 15px;
    background-color: #d90216;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .back-to-top:hover {
    background-color: #ff4d4d;
    color: #ffffff;
  }


.btn-danger {
        display: block !important;
        margin-top: 10px;
    }
  

  /* Responsive Design */
  @media (max-width: 768px) {


    .footer-title {
        font-size: 20px;
        margin-top: 20px;
    }
  
    .footer-description {
        font-size: 13px;
    }
  
    .footer-contact h5 {
        font-size: 14px;
    }
  
    .footer-contact .btn {
        font-size: 13px;
    }
  
    .footer-help-button {
        font-size: 13px;
    }

     .btn-danger {
        display: block !important;
        margin-top: 10px;
    }
  }
  
 