* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }
    .header{
      display: flex;
      width: 100%;
      height: 40PX;
      background-color: #5d18a2;
      margin-bottom: 10px;
      align-items: center;
      margin: 0;
      
    }
    .allbutton{
      display: flex;
    position: relative;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 5px 10px;
    align-items: center;
    align-self: stretch;
    padding: 0 10px;
    border-radius: 0.25rem;
    overflow-y: auto;
    padding: 0 5px;
    border-radius: 0;
      
    }
    .buttom{
      font-size: 12pt;
      margin: 10px;
      color: rgb(188, 5, 5);
      font-weight: bold;       /* <-- semicolon लगाया */
      text-decoration: none;

      
    }
    .context{
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 10;
      padding: 5px 10px;
      height: 114px;
      box-shadow: 0.25px 0.5px 5px rgba(0, 0, 0, 0.36);
      background: #fff;
      height: 90px;
      padding: 0;
      
    }


    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;      
      background: white ;
      
    }

    .panel {
      width: 400px;
      
      
      background: white;
      margin-top: 40px;
      padding: 30px;      
      border: solid rgb(179, 176, 176) 1px;
      box-shadow: 0px 10px 40px rgba(2, 1, 1, 0.2);
      text-align: center;
    }

    .panel h2 {
      margin-bottom: 20px;
      color: #333;
    }

    .input-box {
      margin-bottom: 18px;
      text-align: left;
    }

    .input-box label {
      font-size: 14px;
      font-weight: 600;
      color: #444;
      display: block;
      margin-bottom: 6px;
    }

    .input-box input, .input-box select {
      width: 100%;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      outline: none;
      font-size: 15px;
      transition: 0.3s;
    }

    .input-box input:focus, .input-box select:focus {
      border-color: #667eea;
      box-shadow: 0 0 8px rgba(102,126,234,0.4);
    }

    .btn {
      width: 30%;
      padding: 5px;
      margin-top: 10px;
      border: none;
      border-radius: 5px;
      font-size: 13px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      color: #fff;
    }

    .search-btn {
      background: rgb(33, 9, 145);
    }
    .search-btn:hover {
      background: linear-gradient(135deg, #0e8d82, #2fd46e);
    }

    .login-btn {
      background: linear-gradient(135deg, #667eea, #764ba2);
    }
    .login-btn:hover {
      background: linear-gradient(135deg, #5a67d8, #6b46c1);
    }

    .call-btn {
      background: linear-gradient(135deg, #ff512f, #dd2476);
    }
    .call-btn:hover {
      background: linear-gradient(135deg, #e04828, #c9185f);
    }

    @media (max-width: 480px) {
      .panel {
        width: 95%;
        padding: 20px;
      }
    }

    /* Inner scrolling text */
.context__inner {
  display: flex;
  position: relative;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  height: 50px;
  padding: 5px 10px;
  
}
.company-title{
  display: flex;
  position: relative;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #5d18a2;
}
.swag{
  border-bottom: solid rgb(179, 172, 172) 1px;
  padding-bottom: 10px;
}

/* Duplicate text for seamless repeat */
.context__inner span {
  margin-right: 50px;         /* text spacing */
}

/* Keyframes for leftward scroll */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* half width shift because duplicated */
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .context {
    font-size: 16px;
  }
  .context__inner {
    animation-duration: 10s;
  }
}

/* Optional: hover pause */
.context__inner:hover {
  animation-play-state: paused;
}