
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-icon {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-icon:hover {
    color: #fff;
}

.whatsapp-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

  /* Navbar container */
  .navbar {
    background: #fff;
    border-bottom: 1px solid #ccc;
  }

  

  /* Logo */
  .navbar-brand img {
    height: 100%;
  }

  /* Desktop menu */
  .desktop-menu {
    margin:10px;
    list-style: none;
    margin-left: auto;
    padding-left: 0;
    display: none;
    gap: 25px;
  }

  .desktop-menu li a {
    color: #323577;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 0;    
  }

  /* Hamburger menu */
  .mobile-menu {
    background: linear-gradient(120deg, #323577 0%, #2e3d8f 100%);
    border: 1px solid #323577;
    cursor: pointer;
    display: inline-block;
    position: static;
    right: 10px;
    padding: 8px 7px 4px;
    top: -60px;
    -webkit-transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999
  }

  .mobile-menu span {
    -webkit-transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 30px;
    background: #fff;
    height: 2px;
    margin-bottom: 4px;
    display: block
  }

  /* Mobile slide menu */
  .mobile-nav {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100vh;
    background: #323577;
    color: #fff;
    padding-top: 60px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav ul {
    list-style: none;
    padding-left: 20px;
  }

  .mobile-nav ul li {
    margin-bottom: 20px;
  }

  .mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }

  .mobile-nav ul li a:hover {
    color: #000000;
  }

  /* CLOSE ICON */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;

  /* 👇 THESE TWO LINES ARE CRITICAL */
  z-index: 10000;
  pointer-events: auto;
}


  /* Responsive rules */

  /* Show desktop menu on screens >= 992px */
  @media (min-width: 992px) {
    .desktop-menu {
      display: flex;
    }
    .mobile-menu {
      display: none;
    }
    .mobile-nav {
      display: none;
    }
  }
  .seyfert {
    color:#323577 !important;
  }