      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;
        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;
      }
  
      /* Hero Section - Enhanced */
      .hero-section {
        height: 60vh;
        /* background-color: #000; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 20px;
      }
  
      .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out 0.5s forwards;
      }
  
      .hero-section p {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease-out 0.8s forwards;
      }
  
      /* About Section - Enhanced with animations */
      #about {
        background-color: #fff;
        color: #000;
        padding: 60px 10px;
      }
  
      #about h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }
  
      #about h2.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .section-underline {
        width: 80px;
        height: 4px;
        background-color: #4a7747;
        margin: 0 auto 40px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.8s ease 0.3s;
      }
  
      .section-underline.animate {
        transform: scaleX(1);
      }
  
      #about p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: justify;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
  
      #about p.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      /* Product Lists - Enhanced */
      .product-section {
        margin-top: 50px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }
  
      .product-section.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .product-section h5 {
        font-weight: bold;
        color: #315F14;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
  
      .product-section h5.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .list-unstyled {
        padding-left: 0;
        list-style: none;
        line-height: 45px;
        font-size: 18px;
        font-weight: 300;
      }
  
      .list-unstyled li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.6s ease;
      }
  
      .list-unstyled li.animate {
        opacity: 1;
        transform: translateX(0);
      }
  
      .list-unstyled li i {
        transition: all 0.3s ease;
      }
  
      .list-unstyled li:hover i {
        color: #4a7747 !important;
        transform: scale(1.2);
      }
  
      /* Marketing Info - Enhanced */
      .marketing-info {
        margin-top: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }
  
      .marketing-info.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .marketing-info h6 {
        font-weight: bold;
        text-transform: uppercase;
        color: #315F14;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
  
      .marketing-info h6.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      .marketing-info p {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
  
      .marketing-info p.animate {
        opacity: 1;
        transform: translateY(0);
      }
  
      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
  
      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
  
      /* Responsive Design */
      @media (max-width: 768px) {
        .hero-section h1 {
          font-size: 2rem;
        }
  
        #about h2 {
          font-size: 2rem;
        }
  
        #about p {
          font-size: 16px;
        }
  
        .logofinal-centered {
          max-width: 150px;
        }
  
        .logofinal-centered img {
          height: 60px;
        }
  
        .navbar-nav-scroll {
          flex-direction: column;
          gap: 10px;
          text-align: center;
        }
  
        .social-icons {
          gap: 10px;
        }
      }
  
      @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;
        }
  
        .hero-section h1 {
          font-size: 1.8rem;
        }
      }
  
      a {
        color: rgb(255 255 255);
        text-decoration: none;
      }
  
      .offcanvas.show:not(.hiding),
      .offcanvas.showing {
        transform: none;
        z-index: 9999;
      }
  
      .title-section {
        position: relative;
        top: 23%;
      }
  
      /* 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);
      }

      .aboutus{
      
      }