#home a.home,#about a.about,#services a.services,#products a.products,#contact a.contact{
  background: #fff;
  color: #36c6d3;
}

  /*Logo*/
    .img-logo{
        max-width: 150px;
    }

  /*Topbar*/
    .topbar {
      background: #0d6efd;
      color: #fff;
      font-size: 14px;
    }
    .topbar a {
      color: #fff;
      text-decoration: none;
      margin-left: 15px;
    }
    .navbar-brand {
      font-weight: bold;
    }

  /* Hover dropdown */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

   
  /*Floatng Whatsapp*/
    .whatsapp-float {
      position: fixed;
      left: 20px;
      bottom: 40px;
      width: 55px;
      height: 55px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      line-height: 55px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }

  /* Hover Effect */
    .whatsapp-float:hover {
      background-color: #1ebe5d;
      transform: scale(1.1);
      color: white;
    }
