
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    background-color: #f1f1f1;
}


.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: white;
  font-family: sans-serif;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-box {
  width: 32px;
  height: 32px;
  background-color: #be1e2d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-right: 10px;
}

.logo-title {
  font-size: 20px;
  font-weight: bold;
  color: #1c1c1c;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 32px;
  height: 32px;
  background-color: #f6f6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.icon-circle:hover {
  background-color: #eaeaea;
}


    .video-section {
      position: relative;
      /* margin-top: 20px; */
    }

    .video-section video {
      width: 100%;
      height: auto;
      /* border-radius: 8px; */
      display: block;
    }

    .search-overlay {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      background-color: rgba(0, 0, 0, 0.4);
      color: white;
      border-radius: 30px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .search-text {
      flex: 1;
      text-align: center;
      color: white;
      font-size: 14px;
    }

    .search-overlay i {
      font-size: 16px;
      color: white;
    }

    .video-caption {
      position: absolute;
      bottom: 12px;
      width: 100%;
      text-align: center;
      color: white;
      font-size: 14px;
      /* background: rgba(0, 0, 0, 0.3); */
      padding: 6px 0;
      border-radius: 0 0 8px 8px;
    }

    .carousel {
      width: 100%;
      max-width: 600px;
      overflow: hidden;
      /* margin-top: 20px; */
      border-radius: 8px;
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-track img {
      width: 100%;
      flex-shrink: 0;
    }

    p.title {
      text-align: center;
      margin-top: 10px;
      font-size: 14px;
      font-weight: bold;
    }

    p.subtitle {
      text-align: center;
      font-size: 12px;
      font-weight: 200;
      margin-top: 8px;
    }

    /* Logo carousel styles */
    .logo-carousel {
      width: 100%;
      overflow: hidden;
      margin: 30px auto;
      border-radius: 8px;
      position: relative;
    }

    .logo-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .logo-track img {
      width: 120px;
      padding: 0 10px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .menu-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 5px auto 30px auto;
  max-width: 100%;
  /* padding: 0 16px; */
}

.menu-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.menu-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}

.menu-item {
  min-width: 100px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.menu-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 6px;
}

.menu-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}


.nav-btn {
  /* background: white; */
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.nav-btn:disabled {
  display: none;
}
.nav-btn i{
    font-size: 20px;
}

.right-btn {
  margin-left: 10px;
}

.employee-levels-section {
  /* background: linear-gradient(to right, #e4f0ff, #d3e5f9); */
  /* padding: 0px 16px; */
  margin-top: 30px;
  border-radius: 12px;
  overflow-x: hidden;
}

.employee-levels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.employee-levels-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.employee-levels-header .view-more {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
.levels-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.levels-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.level-card {
  flex: 0 0 48%;
  min-width: 265px;
  max-width: 20px;
  border-radius: 16px;
  padding: 16px;
  scroll-snap-align: start;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.level-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.level-title,
.level-price,
.level-desc {
  color: #fff;
}

.level-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.level-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.level-desc {
  font-size: 13px;
  margin-bottom: 8px;
}

.level-btn {
  border: 2px solid #ffffff;
  background: none;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 40px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .level-card {
    flex: 0 0 80%;
  }
}

@media screen and (max-width: 480px) {
  .level-card {
    flex: 0 0 90%;
    max-width: 360px;
  }
}


 /* ========== Footer (Bottom Menu) ========== */
.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  font-family: sans-serif;
}

.menu-item,
.menu-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #444;
  text-align: center;
}

.menu-item svg,
.menu-center svg {
  font-size: 18px;
  margin-bottom: 4px;
}

.menu-center {
  position: relative;
  top: -16px;
}

.center-icon {
  width: 50px;
  height: 50px;
  background-color: #be1e2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}

.menu-center span {
  font-size: 12px;
  color: #888;
}
.copyright{
  margin-top:10px;
  margin-bottom:80px;
  text-align: center;
}
.copyright span{
  text-align: center;
  font-size: 12px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: gray;
  font-size: 12px;
}

.nav-item .label.active {
  font-weight: bold;
  color: crimson;
}

.start-button {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: crimson;
  border-radius: 50%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
a{
    text-decoration: none;
}