.language-switcher {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 0px;
    }

    .langbutton {
      position: relative;
      width: 100px;
      height: 36px;
      background: #ebf7fc;
      border-radius: 50px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .langcheckbox {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 3;
    }

    .knobs {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
    }

    .layer {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ebf7fc;
      border-radius: 50px;
      z-index: 1;
      transition: background-color 0.3s ease;
    }

    .knobs:before {
      content: "عربى";
      position: absolute;
      top: 50%;
      left: 6px;
      transform: translateY(-50%);
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      padding: 6px 12px;
      background-color: var(--main-color);
      border-radius: 50%;
      transition: 0.3s ease all;
    }

    .langcheckbox:checked + .knobs:before {
      content: "ENG";
      left: auto;
      right: 6px;
      background-color: var(--secondary-color);
    }

    .langcheckbox:checked ~ .layer {
      background-color: #fcebeb;
    }