/* Top Bar Styles */
    .top-bar {
      background-color: ##7ac121;
      padding: 8px 0;
      font-size: 14px;
      border-bottom:;
      color:whitesmoke;
    }
    
    .top-bar a {
      color: #7ac121;
      text-decoration: none;
    }
    
    /* Navbar Styles */
    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 10px 0;
      position: relative;
      z-index: 1000;
    }
    
    .navbar-brand img {
      height: 40px;
      transition: all 0.3s;
    }
    
    .nav-link {
      color: #333 !important;
      font-weight: 500;
      padding: 8px 15px !important;
      border-radius: 5px;
      transition: all 0.3s;
    }
    
    .nav-link:hover, .nav-link.active {
      color: #7ac121 !important;
      background-color: rgba(122, 193, 33, 0.1);
    }
    
    /* Custom Toggle Button */
    .navbar-toggler {
      border: none;
      padding: 0;
      width: 40px;
      height: 40px;
      position: relative;
      background: transparent;
      z-index: 1001;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }
    
    .navbar-toggler .toggle-icon {
      display: block;
      width: 25px;
      height: 2px;
      background-color: #7ac121;
      position: absolute;
      left: 7px;
      transition: all 0.3s ease;
    }
    
    .navbar-toggler .toggle-icon:nth-child(1) {
      top: 12px;
    }
    
    .navbar-toggler .toggle-icon:nth-child(2) {
      top: 19px;
    }
    
    .navbar-toggler .toggle-icon:nth-child(3) {
      top: 26px;
    }
    
    .navbar-toggler[aria-expanded="true"] .toggle-icon:nth-child(1) {
      transform: rotate(45deg);
      top: 19px;
    }
    
    .navbar-toggler[aria-expanded="true"] .toggle-icon:nth-child(2) {
      opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .toggle-icon:nth-child(3) {
      transform: rotate(-45deg);
      top: 19px;
    }
    
    /* Mobile Menu Styles */
    .mobile-nav-container {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: white;
      z-index: 1000;
      box-shadow: 5px 0 15px rgba(0,0,0,0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      padding-top: 70px;
    }
    
    .mobile-nav-container.show {
      left: 0;
    }
    
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    
    .mobile-nav-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    
    .mobile-nav-item {
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
      transition: all 0.3s;
    }
    
    .mobile-nav-item:hover {
      background-color: rgba(122, 193, 33, 0.1);
      color: #7ac121;
      padding-left: 25px;
    }
    
    .mobile-nav-item.active {
      color: #7ac121;
      background-color: rgba(122, 193, 33, 0.1);
    }
    
    /* Cart Badge */
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      font-size: 10px;
      background: #dc3545;
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Login Button */
    .login-btn {
      background-color: #7ac121;
      color: white !important;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      transition: all 0.3s;
    }
    
    .login-btn:hover {
      background-color: #68a71d;
      transform: translateY(-2px);
    }
    
    /* Animations */
    @keyframes slideInLeft {
      from { transform: translateX(-20px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        display: none !important;
      }
      
      .top-bar {
        font-size: 12px;
      }
      
      .navbar-brand img {
        height: 35px;
      }
    }
    
    @media (min-width: 992px) {
      .mobile-nav-container,
      .mobile-nav-overlay {
        display: none !important;
      }
    }



    #learn-more{
      background-color:white;
      color:black;
      transition:0.5s linear;
      border:1px solid  #7ac121;
    }
    #learn-more:hover{
      background-color: #7ac121;
      color: white !important;
    }
    #shopnow{
      background-color:orange;
      color:white;
    }
    #shopnow:hover{
      color:white;
      background-color:#7ac121;
    }
  

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    animation: pulse 2s infinite;
    text-decoration:none;
  }
  
  .whatsapp-icon {
    margin-top: 4px;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 24px;
    }
  }
