        html {
            scroll-behavior: smooth;
        }    
    /* Header Styles - Enhanced with animations */
    .navbar-header {
        position: sticky;
        background-color: rgb(255, 255, 255);
        height: 125px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 1.5px 3px rgba(0,0,0,0.04);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: top center;
        transform: scaleY(1);
        will-change: transform, padding;
      }
  
      .navbar-header.scrolled {
        transform: scaleY(0.9);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      }
  
      .social-icons {
        position: fixed;
        top: 40px;
        left: 20px;
        z-index: 1050;
        display: flex;
        gap: 15px;
      }
  
      .social-icons a {
        margin-right: 10px;
        font-size: 16px;
        color: gray;
        text-decoration: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
      }
  
      .social-icons a:hover {
        transform: translateY(-10px);
        color: #825CFF;
      }
  
      .logofinal-centered {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
  
      .logofinal-centered img {
        height: 80px;
        width: auto;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
      }
  
      .navbar-header.scrolled .logofinal-centered img {
        transform: scale(0.9);
      }
  
      .navbar-toggler {
        z-index: 1050;
        margin-top: 10px;
        margin-right: 15px;
        background-color: #a1a1a1;
        transition: transform 0.3s ease;
      }
  
      .navbar-toggler:hover {
        transform: scale(1.1);
      }
  
      /* Mobile Menu Styles - Enhanced */
      .offcanvas {
        width: 280px;
        background: #2e3049;
        transition: transform 0.3s ease;
      }
  
      .offcanvas .nav-link {
        padding: 11px 20px;
        color: #ffffff !important;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 18px;
      }
  
      .offcanvas .nav-link:hover {
        color: #825cff !important;
        transform: translateX(10px);
      }
  
      .offcanvas-header {
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
  
      .offcanvas-title {
        color: #ffffff;
        font-weight: 600;
      }
  
      .footer-section {
        background-color: #ffffff;
        padding: 40px 0;
        text-align: center;
      }
  
      .footer-social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
      }
  
      .footer-social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
        text-decoration: none;
        transition: all 0.3s ease;
      }
  
      .footer-social-icons a:hover {
        transform: translateY(-5px);
        background: #825cff;
        color: #fff;
      }
  
      .footer-text {
        color: #000000;
        opacity: 0.8;
        font-size: 16px;
      }
  
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      html,
      body {
        scroll-behavior: smooth;
        font-family: 'Segoe UI', sans-serif;
        overflow-x: hidden;
      }
  
      /* Manufacturing Section */
      .manufacturing-section {
        height: 60vh;
        background-color: black;
        display: flex;
        align-items: center;
        color: white;
        text-transform: uppercase;
        font-weight: bold;
      }
  
      .manufacturing-section h1 {
        font-size: 4rem;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out 0.5s forwards;
        font-weight: 700;
      }

      .benefits-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        line-height: 1.6;
      }
      
      .bullet-icon {
          position: absolute;
          left: 0;
          color: #ff6b35;
      }
      .Features-title{
        color: #315f14 !important;
        font-size: 1.25rem !important;
      }
      
    
  
      /* Products Section */
      .products-section {
        background-color: #fff;
        padding: 5rem 0;
      }
  
      .product-sidebar {
        background: #FFD782;
        min-width: 180px;
        max-width: 300px;
        margin-right: 2rem;
        position: relative;
        margin-top: -150px;
        height: max-content;
        padding: 20px;
        border-radius: 2px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
      }
  
      .product-sidebar ul {
        list-style: none;
        padding-left: 0;
        line-height: 45px;
        font-size: 15px;
        font-weight: 500;
      }
  
      .product-sidebar ul li {
        margin-bottom: 15px;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.6s ease;
      }
  
      .product-sidebar ul li.animate {
        opacity: 1;
        transform: translateX(0);
      }
  
      .product-sidebar a {
        text-decoration: none;
        color: #000;
        display: inline-block;
        transition: color 0.3s;
      }
  
      .product-sidebar a:hover {
        color: #f8f9fa;
      }
      .list-unstyled{
        padding-left: 0;
        list-style: none;
        font-size: 17px;
        font-weight: 400;
       }
  
      .product-content {
        flex: 1;
        padding: 0 20px;
      }
  
      .section-title {
        color: #333;
        font-size: 2.25rem;
        text-transform: uppercase;
        font-weight: bold;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }
  
      .section-title.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .section-underline {
        width: 80px;
        height: 4px;
        background-color: #4a7747;
        margin-bottom: 2rem;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.8s ease 0.3s;
      }
  
      .section-underline.animate {
        transform: scaleX(1);
      }
  
      .content-block h5 {
        font-weight: bold;
        color: #315F14;
        margin-top: 2rem;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
  
      .content-block h5.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .content-block p {
        color: #000000;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
        font-size: 17px;
        text-align: justify;
      }
  
      .content-block p.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      /* Manufacturing Carousel */
      .manufacturing-carousel {
        margin-top: 3rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }
  
      .manufacturing-carousel.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .manufacturing-carousel .carousel-item h5 {
        color: #444;
        font-weight: bold;
      }
  
      .manufacturing-carousel .carousel-control-prev,
      .manufacturing-carousel .carousel-control-next {
        width: 5%;
        background: none;
        border: none;
        box-shadow: none;
        opacity: 1;
      }
  
      .manufacturing-carousel .carousel-control-prev i,
      .manufacturing-carousel .carousel-control-next i {
        /* color: #000; */
        color: #000000;
        font-size: 2.2rem;
        transition: color 0.2s;
      }
  
      .manufacturing-carousel .carousel-indicators button {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 12px;
        height: 12px;
        margin: 0 6px;
        cursor: pointer;
        background-color: #000;
        border: 0;
        border-radius: 50%;
        opacity: 0.5;
        transition: opacity 0.6s ease;
      }
  
      .manufacturing-carousel .carousel-indicators button.active {
        opacity: 1;
        background-color: #139c4c;
      }
  
      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      /* Responsive Design */
      @media (max-width: 992px) {
        .products-section .container {
          flex-direction: column;
          gap: 2rem;
          text-align: justify;
        }
  
        .product-sidebar {
          width: 100%;
          max-width: 100%;
          margin-right: 0;
          margin-top: 0;
          padding: 15px;
        }
  
        .product-sidebar ul {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          padding-left: 0;
        }
  
        .product-sidebar ul li {
          margin: 10px 10px;
          flex: 1 0 45%;
          text-align: center;
        }
  
        .product-content {
          padding: 10px;
        }
      }
  
      @media (max-width: 768px) {
        .manufacturing-section {
          min-height: 70px;
          height: 300px;
          padding: 0.5rem 0;
        }
  
        .manufacturing-section h1 {
          font-size: 50px;
          margin: 0;
          line-height: 1;
          position: absolute;
          top: 35%;
        }
  
        .section-title {
          font-size: 1.5rem;
        }
  
        .product-sidebar ul li {
          flex: 1 0 100%;
        }
  
        .products-section {
          background-color: #fff;
          padding: 20px 0px 0px 0px;
        }
  
        .logofinal-centered {
          max-width: 150px;
        }
  
        .logofinal-centered img {
          height: 60px;
        }
  
        .social-icons {
          gap: 10px;
        }
      }
  
      @media (max-width: 576px) {
        .manufacturing-section {
          height: 250px;
        }
  
        .manufacturing-section h1 {
          font-size: 22px;
          position: absolute;
          top: 17%;
      }
        
        .products-section {
          background-color: #fff;
          padding: 20px 0px 0px 0px;
        }
      }
  
      @media (max-width: 425px) and (min-width: 320px) {
        .social-icons {
          position: fixed;
          top: 22px;
          left: 20px;
          z-index: 1050;
          display: flex;
          flex-direction: column;
          gap: 8px;
        }
  
        .products-section {
          background-color: #fff;
          padding: 20px 0px 0px 0px;
        }
      }
  
      a {
        color: rgb(255 255 255);
        text-decoration: none;
      }
  
      .offcanvas.show:not(.hiding),
      .offcanvas.showing {
        transform: none;
        z-index: 9999;
      }
  
      /* Additional smooth transitions */
      .container {
        transition: all 0.3s ease;
      }
  
      hr {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
        transition: all 0.8s ease;
      }
  
      hr.animate {
        opacity: 1;
        transform: scaleX(1);
      }