body {
  font-family: "Google Sans", Arial, sans-serif;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

header.scrolled {
  border-color: #ddd;
}

.logo h2 {
  font-weight: 500;
  font-size: 1.375rem;
  color: #5f6368;
  margin: 0;
}

.search-box {
  display: none;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: white;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-radius: 8px;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  z-index: 1050;
}
@media (max-width: 768px) {
  .search-box {
      width: 100%;
      left: 0;
      transform: none;
      border-radius: 0;
      top: 0;
      padding: 17px 15px;
  }
}
.search-box.active {
  display: flex;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
}

.suggestion-box {
  display: none;
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: white;
  box-shadow: 0 4px 6px rgba(32, 33, 36, 0.28);
  border-radius: 8px;
  z-index: 1040;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f1f3f4;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 20px 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider-img img {
  width: 360px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  padding: 5px;
  display: none;
  z-index: 10;
}

.slider-wrapper:hover .arrow-btn {
  display: block;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.ftul {
    color: #8d8d8d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;

}

@media (max-width: 768px) {
  .search-box {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    top: 0;
  }

  .suggestion-box {
    width: 100%;
    left: 0;
    transform: none;
    box-shadow: none;
  }
}

.play-tab {
  border: 1px solid #dadce0;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 14px;
  color: #202124;
  cursor: pointer;
  transition: all 0.2s ease;
}

.play-tab.active {
  background-color: #e6f4ea;
  border-color: transparent;
  color: #137333;
  font-weight: 500;
}
/* App rank section spacing */
.top-charts .app-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.play_store_list:hover {
  background-color: #f1f3f4;
}
.play_store_list {
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play_store_list:hover {
  background-color: #f1f3f4;
  transform: translateY(-2px);
}

.app-rank {
  width: 24px;
  text-align: center;
  font-weight: 500;
}

.app-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: solid 1px #e5e5e5;
  box-shadow: 0 1px 3px rgb(187 187 187 / 10%);
}

/* Main Slider */
.app-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding-bottom: 10px;
  position: relative;
}

/* Hide scrollbar for all devices */
.app-slider::-webkit-scrollbar {
  display: none;
}
.app-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Mobile Only - Hide Arrow Buttons */
@media (max-width: 768px) {
  .arrow-btns {
    display: none !important;
  }
}

/* Image Card */
.play-store-img {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
  background: #fff;
  transition: all 0.3s ease;
  border: solid 1px #e5e5e5;
  box-shadow: 0 1px 3px rgb(187 187 187 / 10%);
}

.play-store-img-card:hover .play-store-img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Arrows */
.arrow-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.arrow-btns:hover {
  background: #f1f3f4;
}

.arrow-left {
  left: -15px;
}

.arrow-right {
  right: -15px;
}

/* Show Arrows on Hover in Desktop Only */
@media (min-width: 769px) {
  .position-relative:hover .arrow-btns {
    opacity: 1;
    visibility: visible;
  }
}
.top-charts-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  position: relative;
  -webkit-overflow-scrolling: touch; /* ADD THIS */
}

.top-charts-wrapper::-webkit-scrollbar {
  display: none;
}
.top-charts-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.top-charts-col {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.play_store_list {
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #fff;
}

.play_store_list:hover {
  background-color: #f1f3f4;
  transform: translateY(-2px);
}

.app-rank {
  width: 24px;
  text-align: center;
  font-weight: 500;
}

/* Arrow Buttons */
.arrow-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.arrow-left {
  left: -15px;
}

.arrow-right {
  right: -15px;
}

@media (min-width: 768px) {
  .top-charts-position:hover .arrow-btns {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .arrow-btns {
    display: none !important;
  }
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  z-index: 1000;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666;
  font-size: 11px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 23px;
}

.mobile-bottom-nav .nav-item.active {
  color: #01875f; /* Green color */
}

.mobile-bottom-nav .nav-item span {
  margin-top: 2px;
  font-size: 10px;
}
.play-footer {
  margin-bottom: 60px;
}

/* Shimmer Animation */
.shimmer {
  position: relative;
  overflow: hidden;
  background: #f3f2f3;
  color: transparent !important;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}
.logo_header{
  color:#5F637C;
  font-size: 20px;
}
