a {
  text-decoration: none !important;
  outline: none;
  color: #4b7155;
}

.bg-dark {
  background-color: #343a40 !important;
}

.uim-svg {
  fill: #9fbf90 !important;
}
.uim-svg svg {
  width: 24px;
  height: 24px;
  vertical-align: inherit;
}

.icons-sm svg {
  height: 18px;
  width: 18px;
}

.icons-md svg {
  height: 32px;
  width: 32px;
}

.icons-lg svg {
  height: 40px;
  width: 40px;
}

.icons-xl svg {
  height: 48px;
  width: 48px;
}

.footer {
  padding: 80px 0px 60px;
}
.footer .footer-list-menu li a {
  display: inline-block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  transition: all 0.4s;
}
.footer .footer-list-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer .social-icons-list li {
  margin-bottom: 0.5rem;
}
.footer .social-icons-list li a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  color: #343a40;
  transition: all 0.4s;
  border-radius: 50%;
}
.footer .social-icons-list li a:hover {
  color: #ffffff;
}

.footer-alt {
  background-color: #2f353a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  padding-top: 78px; /* ØªÙ†Ø¸ÛŒÙ… Ø¨Ø± Ø§Ø³Ø§Ø³ Ø§Ø±ØªÙØ§Ø¹ ÙˆØ§Ù‚Ø¹ÛŒ Ù‡Ø¯Ø± */
}
/* === Base === */
.app-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.search-wrapper {
  position: relative;
  max-width: 300px;
}

.search-input {
  border-radius: 50rem;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  font-size: 0.95rem;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.search-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(110, 142, 89, 0.3); /* Ø³Ø¨Ø² Ø¨Ø±Ù†Ø¯ */
  outline: none;
}

.search-icon,
.search-wrapper .bi-search {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #6e8e59; /* Ø±Ù†Ú¯ Ø¨Ø±Ù†Ø¯ */
  font-size: 1rem;
  pointer-events: none;
}

/* === Mobile search overlay === */
.mobile-search-overlay,
#mobileSearchOverlay {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background-color: #fff;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-search-overlay.active,
#mobileSearchOverlay.active {
  top: 0;
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.search-bar-wrapper input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.search-bar-wrapper i {
  margin-left: 0.25rem;
}

/* === Backdrop === */
#searchBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1049;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#searchBackdrop.active {
  display: block;
  opacity: 1;
}

.download-box {
  background-image: url("");
  background-size: cover;
  background-position: center;
  height: 460px;
  width: 90%;
  max-width: 1260px;
  border-radius: 1rem;
  overflow: hidden;
}

.glow-download-btn-green {
  background-color: #28a745; /* Bootstrap success green */
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 0 12px rgba(40, 167, 69, 0.6);
  transition: all 0.25s ease-in-out;
}

.glow-download-btn-green:hover {
  background-color: #218838;
  box-shadow: 0 0 22px rgba(40, 167, 69, 0.9);
}

.centered-download-box {
  background-image: url("");
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 90%;
  max-width: 1260px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.centered-download-box .content-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}



.right-download-box {
  background-image: url('');
  background-size: cover;
  background-position: center;
  height: 350px;
  width: 90%;
  max-width: 1260px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.right-download-box .content-wrapper {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}



.recommended-carousel {
  overflow: hidden;
  position: relative;
}

.recommended-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  scrollbar-width: none;
}
.recommended-track::-webkit-scrollbar {
  display: none;
}

.recommended-card {
  flex: 0 0 auto;
  width: 160px;
  text-align: left;
}

.recommended-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}

.carousel-arrow.left {
  left: 1rem;
}

.carousel-arrow.right {
  right: 1rem;
}

.recommended-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  scrollbar-width: none;
}
.recommended-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.carousel-arrow.left {
  left: 1rem;
}
.carousel-arrow.right {
  right: 1rem;
}
.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}






.footer {
  padding: 80px 0px 60px;
}
.footer .footer-list-menu li a {
  display: inline-block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  transition: all 0.4s;
}
.footer .footer-list-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer .social-icons-list li {
  margin-bottom: 0.5rem;
}
.footer .social-icons-list li a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  color: #343a40;
  transition: all 0.4s;
  border-radius: 50%;
}
.footer .social-icons-list li a:hover {
  color: #ffffff;
}

.footer-alt {
  background-color: #2f353a;
}
