
     ---------- GLOBAL RESET & COMMON COMPONENTS ---------- 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

     Common button style (primary, outline, link) 
    .btn-custom-primary {
      background-color: #CFF520;
      border: none;
      padding: 10px 24px;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 40px;
      transition: all 0.2s ease;
      color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .btn-custom-primary:hover {
      background-color: #004494;
      transform: translateY(-1px);
      color: white;
    }
    .btn-custom-outline {
      background: transparent;
      border: 1.5px solid #0a58ca;
      color: #0a58ca;
      padding: 9px 24px;
      font-weight: 600;
      border-radius: 40px;
      transition: 0.2s;
    }
    .btn-custom-outline:hover {
      background: #0a58ca;
      color: white;
    }
     card common styling (for menu items) 
    .menu-card-item {
      border-radius: 20px;
      transition: all 0.2s ease;
      background: #fff;
      border: none;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
    }
    .menu-card-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }
    .menu-icon-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-bottom: 12px;
    }
     mega menu wrapper styling 
    .mega-dropdown-menu {
      width: 100%;
      background: white;
      border-radius: 24px;
      border: none;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
      padding: 2rem 1.5rem;
      margin-top: 0.5rem;
    }
    .navbar-nav .dropdown-menu {
      border: none;
      border-radius: 24px;
    }
    .dropdown-item:active {
      background-color: #f8f9fa;
    }
     navbar brand 
    .navbar-brand img {
      max-height: 48px;
      width: auto;
    }
     navbar link style 
    .navbar-light .navbar-nav .nav-link {
      font-weight: 600;
      color: #5F8517;
      font-size: 0.95rem;
      padding: 0.5rem 1rem;
      transition: 0.2s;
    }
    .navbar-light .navbar-nav .nav-link:hover {
      color: #6B853A;
    }
    .dropdown-toggle::after {
      vertical-align: middle;
    }
     mega menu column headings 
    .mega-title {
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #6c757d;
      margin-bottom: 1rem;
    }
    .mega-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      font-weight: 500;
      color: #1f2937;
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.2s;
      border-radius: 12px;
    }
    .mega-link:hover {
      color: #0a58ca;
      background: #f8fafc;
      padding-left: 8px;
    }
    .mega-link img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      border-radius: 10px;
    }
    .mega-side-image {
      background: linear-gradient(145deg, #f1f5f9, #ffffff);
      border-radius: 24px;
      padding: 20px;
      text-align: center;
      height: 100%;
    }
    .mega-side-image img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
    }
    .solution-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }
     download catalog button style (common component) 
    .btn-download-catalog {
  background: #6B853A;
  color: #fff;
  border-radius: 40px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-download-catalog:hover {
  background: #5F8517;
  color: #fff;
}
     mobile offcanvas custom 
    .offcanvas-body .nav-link {
      font-weight: 500;
      padding: 0.75rem 0;
    }
     responsiveness 
    @media (max-width: 991.98px) {
      .mega-dropdown-menu {
        padding: 1rem;
        box-shadow: none;
      }
      .navbar-nav .dropdown-menu {
        border: none;
        background: #f9fafb;
      }
    }
     simple dropdown hover for desktop (optional) 
    @media (min-width: 992px) {
      .navbar-nav .dropdown-menu {
        display: none;
        opacity: 0;
        transition: opacity 0.15s;
      }
      .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        margin-top: 0;
      }
    }
    hr {
      margin: 0.5rem 0;
    }
     footer {
      background: #f8f9fa;
      margin-top: 80px;
    } 
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float i {
    font-size: 20px;
}

 HOVER 
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    color: #fff;
}

 MOBILE - only icon 
@media (max-width: 576px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }
}


 GO TO TOP BUTTON 
.totop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

 SHOW BUTTON 
.totop.active {
    opacity: 1;
    visibility: visible;
}

 HOVER 
.totop:hover {
    background: #084298;
    transform: translateY(-3px);
}

