/* Sticky Language Switcher */
    .lang-switcher {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1000;
    }

    /* Button Styling */
    .current-lang {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      padding: 12px 24px;
      font-size: 18px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }
    .current-lang:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.05);
    }

    /* Flag & Arrow */
    .current-lang img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      margin-right: 12px;
      border: 2px solid #fff;
    }
    .current-lang svg {
      margin-left: auto;
      fill: #fff;
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }

    /* Dropdown */
    .lang-options {
      position: absolute;
      bottom: 110%;
      left: 0;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      list-style: none;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 10;
    }

    .lang-options.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .lang-options li {
      padding: 12px 24px;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: background 0.2s ease-in-out;
      color: black;
    }
    .lang-options li:hover {
      background: rgba(255, 255, 255, 0.3);
    }
    .lang-options li img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 12px;
      border: 1px solid #fff;
    }