body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
  background-size: 400%;
  animation: colorShift 12s ease infinite;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;

}

.rainbow-gradient-circle,
.rainbow-gradient-circle1 {
  position: fixed;
  z-index: 1;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(100px);
  pointer-events: none;
  /* Prevent interaction */
}

.rainbow-gradient-circle {
  left: -15vw;
  top: 30vh;
  background-image: linear-gradient(45deg, #059dff, #36c6f0);
}

.rainbow-gradient-circle1 {
  right: -15vw;
  top: 30vh;
  background-image: linear-gradient(45deg, #b005ff, #f03636);
}

/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {

  .rainbow-gradient-circle,
  .rainbow-gradient-circle1 {
    width: 80vw;
    height: 80vw;
    filter: blur(60px);
  }

  .rainbow-gradient-circle {
    left: -40vw;
    top: 25vh;
  }

  .rainbow-gradient-circle1 {
    right: -40vw;
    top: 25vh;
  }
}


/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #1a0b2e, #2e1a47, #4a2c6b, #6b2c8a);
  background-size: 400%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 30;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  width: 500px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoPop 0.4s ease-in-out forwards;
}

.preloader-concept {
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(138, 74, 243, 0.6);
  opacity: 0;
  transform: translateY(30px);
  animation: conceptFade 0.4s ease-in-out 0.5s forwards;
  margin-top: 1rem;
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  60% {
    opacity: 0.8;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes conceptFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner {
  position: relative;
  height: 100vh;
  background-image: url(/static/v2static/images/images/headsetimg.jpg);
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease 0.2s;
}
.moblie-banner{
  display: none;
}


@media (max-width: 768px) {
  .banner {
    background-position: center;
    /* Re-ensure centering for smaller screens */
    height: 100vh;
    /* Optional: Adjust height for smaller screens if needed */
    justify-content: center;
    display: none;
  }
  .moblie-banner{
    display: block;

  }
  .carousel-item{
        transition: transform .3s ease-in-out !important;
  }
  .carousel-item img{
           width: 100% !important;
        height: 185px !important;
        border: 1px solid;
        object-fit: cover;
        border-radius: 30px;
       
  }
  .mob-ban{
    background-color: #ffffff;
    padding: 20px 0;
  }
  .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 50px;
    padding: 70px 0 10px 0;
}
}

@media (max-width: 1669px) {
  .banner {
    background-position: center;
    /* Re-ensure centering for smaller screens */
    height: 100vh;
    /* Optional: Adjust height for smaller screens if needed */
    
}
}

.banner.visible {
  opacity: 1;
}

#threeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: blur(1px);
}

.headset-image {
  width: 100px;
  height: auto;
}

.headset-image {
  position: absolute;
  width: 100px;
  /* Adjust size as needed */
  height: auto;
  z-index: 2;
  /* Above canvas but below banner-content */
  opacity: 0.8;
  /* Slight transparency to blend with background */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.headset-left {
  top: 20%;
  left: 5%;
  transform: rotate(-15deg);
  /* Slight tilt for dynamic look */
}

.headset-right {
  bottom: 20%;
  right: 5%;
  transform: rotate(15deg);
  /* Complementary tilt */
}

/* Hover effect for interactivity */
.headset-image:hover {
  opacity: 1;
  transform: scale(1.1) rotate(0deg);
  /* Straighten and slightly enlarge on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .headset-image {
    width: 100px;
    /* Smaller size for mobile */
  }

  .headset-left {
    top: 15%;
    left: 2%;
  }

  .headset-right {
    bottom: 15%;
    right: 2%;
  }
}

@media (max-width: 480px) {
  .headset-image {
    width: 80px;
    /* Even smaller for very small screens */
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }

  50% {
    transform: translateY(-10px) rotate(-15deg);
  }
}

.headset-left {
  animation: float 3s ease-in-out infinite;
}

.headset-right {
  animation: float 3s ease-in-out infinite reverse;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent !important;
  /* Semi-transparent white */

  /* For Safari compatibility */
  z-index: 20;
  padding: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* Optional subtle border */
}

.navbar-brand {
  color: white !important;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  color: #8a4af3 !important;
}

.navbar-brand img {
  width: 100%;
  height: 100px;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-link:hover {
  color: #8a4af3 !important;
  background-color: rgba(138, 74, 243, 0.1);
}

.navbar-toggler {
  border-color: white !important;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-toggler:hover {
  border-color: #8a4af3 !important;
  box-shadow: 0 0 10px rgba(138, 74, 243, 0.5);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
  width: 1.2em;
  height: 1.2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  
}

.close-menu:hover {
  color: #8a4af3;
}

.btn-login {
  background-color: transparent;
  color: white;
  border: 1px solid #8a4af3;
  border-radius: 12px;
  padding: 0.5rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(138, 74, 243, 0.3);
  margin-right: 20px;
}

.btn-login:hover {
  background-color: #8a4af3;
  border-color: #8a4af3;
  box-shadow: 0 0 15px rgba(138, 74, 243, 0.5);
  transform: translateY(-2px);
}
.btn-login1 {
  background-color: transparent;
  color: white;
  border: 1px solid #8a4af3;
  border-radius: 12px;
  padding: 0.5rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(138, 74, 243, 0.3);
  margin-right: 20px;
}

.btn-login1:hover {
  background-color: #8a4af3;
  border-color: #8a4af3;
  box-shadow: 0 0 15px rgba(138, 74, 243, 0.5);
  transform: translateY(-2px);
}
.btn_logout {
  background-color: transparent;
  color: white;
  border: 1px solid #8a4af3;
  border-radius: 12px;
  padding: 0.5rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(138, 74, 243, 0.3);
  margin-right: 20px;
}
.detail-content li{
  list-style-type: none;
}

.btn_logout:hover {
  background-color: #8a4af3;
  border-color: #8a4af3;
  box-shadow: 0 0 15px rgba(138, 74, 243, 0.5);
  transform: translateY(-2px);
}

.navbar>.container{
      flex-wrap: unset !important;
      justify-content: center !important;
}



.cart-icon {
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.cart-icon:hover {
  color: #8a4af3;
  transform: scale(1.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-logo {
  display: none;
  margin-bottom: 2rem;
}

.mobile-logo img {
  height: 100px;
  width: 100%;
}

.banner-content {
  z-index: 10;
  padding: 0 15px;
}

.banner h1 {
  font-size: 5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  word-spacing: 0.5rem;
  max-width: 1100px;
}

.banner p {
  font-size: 1.5rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.headphones {
  position: absolute;
  font-size: 10rem;
  opacity: 0.2;
  animation: pulse 4s infinite;
  top: 20%;
  left: 10%;
  color: #8a4af3;
}

.music-note {
  position: absolute;
  font-size: 5rem;
  opacity: 0.3;
  animation: float 5s infinite ease-in-out;
  color: #8a4af3;
}

.music-note:nth-child(1) {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.music-note:nth-child(2) {
  top: 50%;
  left: 20%;
  animation-delay: 1s;
}

.music-note:nth-child(3) {
  bottom: 10%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(138, 74, 243, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(138, 74, 243, 0.8);
  }
}

.btn-explore {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  background-color: #8a4af3;
  color: white;
  border: none;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: glowPop 0.4s ease-in-out 1.5s forwards;
  text-decoration: none;
}

.btn-explore:hover {
  background-color: #6a3ab2;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(138, 74, 243, 0.8);
}

.music-options {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.music-option {
  padding: 0.5rem 1.5rem;
  background-color: #2e1a47;
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(30px) rotate(5deg);
  animation: waveIn 0.3s ease-in-out forwards;
}

.music-option:nth-child(1) {
  animation-delay: 1.6s;
}

.music-option:nth-child(2) {
  animation-delay: 1.7s;
}

.music-option:nth-child(3) {
  animation-delay: 1.8s;
}

.music-option:nth-child(4) {
  animation-delay: 1.9s;
}

/* Banner Animation Styles */
.banner h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) scale(0.7);
  animation: boldLetterPop 0.3s ease-in-out forwards;
  text-shadow: 0 0 10px rgba(138, 74, 243, 0.5);
  margin-right: 15px;
}

.banner p {
  opacity: 0;
  transform: translateY(30px);
  animation: slideGlow 0.4s ease-in-out 1.8s forwards;
}

@keyframes boldLetterPop {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.7);
  }

  60% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideGlow {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 8px rgba(138, 74, 243, 0.6);
  }
}

@keyframes glowPop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 15px rgba(138, 74, 243, 0.6);
  }
}

@keyframes waveIn {
  0% {
    opacity: 0;
    transform: translateY(30px) rotate(5deg);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-5px) rotate(-2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}





.btn-cart {
  background: linear-gradient(45deg, #8a4af3, #a56bff);
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cart:hover {
  background: linear-gradient(45deg, #6a3ab2, #8a4af3);
  transform: scale(1.05);
  color: white !important;
}









.pricing {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
}

.pricing-heading {
  font-size: 3.1rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  z-index: 1;
}

.pricing-scroll-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.pricing-scroll-container {
  display: flex;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  gap: 30px;
  width: 80%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.pricing-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, WebKit browsers */
}

.pricing-card {
  flex: 0 0 300px;
  background: #1a0b2e;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out, height 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(40px);
  height: 400px;
  scroll-snap-align: center;
}

.pricing-features {
  margin: 20px 0;
  max-height: 115px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: none; /* Hide scrollbar for pricing-features in Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for pricing-features in IE and Edge */
}

.pricing-features::-webkit-scrollbar {
  display: none; /* Hide scrollbar for pricing-features in Chrome, Safari, WebKit browsers */
}

.pricing-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.center-highlight {
  height: 400px;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  background-image: url(/static/v2static/images/images/backimg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

.pricing-unit {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-features li {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing-features li i {
  color: #ffffff;
  margin-right: 8px;
}

.pricing-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-pricing,
.btn-add-to-cart {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-pricing {
  background: #8a4af3;
  color: #fff;
}

.btn-pricing:hover {
  background: #6a3ab2;
  color: #fff;
}

.btn-add-to-cart {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-add-to-cart:hover {
  background: #e2e6ea;
  transform: translateY(-2px);
}

.scroll-arrow {
  background: rgba(0, 123, 255, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.scroll-arrow:hover {
  background: rgb(63, 47, 209);
  transform: translateY(-50%) scale(1.1);
  opacity: 0.9;
}

.scroll-left {
  left: 10px;
}

.scroll-right {
  right: 10px;
}

@keyframes pulse {
  0%, 100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

@media screen and (max-width: 400px) {
  .pricing-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    gap: 30px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }
  .pricing-scroll-container::-webkit-scrollbar {
    display: none;
  }
}



/* <style> */

  .products {
      padding: 80px 0;
      background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
    }

    .section-subtitle {
      font-size: 1.2em;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #f0f0f0;
      opacity: 0.8;
      margin-bottom: 15px;
    }

    .products-heading {
      font-size: 2.8em;
      font-weight: 800;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      margin-bottom: 50px;
    }

    .price-range span{
      text-decoration: line-through;
    }

    .pro-card {
      width: 100%;
      background: transparent;
      border: 1px solid #0d6efd;
      border-radius: 15px;
      padding: 30px;
      transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
      opacity: 0;
      transform: translateY(50px);
      
    }

    .pro-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .pro-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 10px 30px rgba(235, 12, 205, 0.3);
      background: rgba(255, 255, 255, 0.1);
    }

    .card-overlay {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s ease;
      margin-bottom: 20px;
    }

    .card-overlay:hover {
      transform: scale(1.02);
    }

    .card-overlay img,
    .card-overlay video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      transition: all 0.6s ease;
    }

    .single-media {
      opacity: 1;
      z-index: 1;
    }

    .default-img {
      opacity: 1;
      z-index: 1;
    }

    .hover-img {
      opacity: 0;
      z-index: 2;
    }

    .card-overlay.show-hover .default-img,
    .card-overlay:hover .default-img {
      opacity: 0;
    }

    .card-overlay.show-hover .hover-img,
    .card-overlay:hover .hover-img {
      opacity: 1;
    }

    .image-text {
      position: absolute;
      top: 10px;
      color: #ffffff;
      font-size: 0.9em;
      font-weight: 700;
      text-transform: uppercase;
      background: rgba(0, 0, 0, 0.7);
      padding: 6px 12px;
      border-radius: 5px;
      z-index: 3;
      transition: all 0.6s ease;
    }

    .before-text {
      opacity: 1;
    }

    .after-text {
      opacity: 0;
    }

    .card-overlay.show-hover .before-text,
    .card-overlay:hover .before-text {
      opacity: 0;
    }

    .card-overlay.show-hover .after-text,
    .card-overlay:hover .after-text {
      opacity: 1;
    }

    /* Animation 1: Fade + Scale */
    .anim-1 .default-img { transform: scale(1); }
    .anim-1 .hover-img { transform: scale(1.1); }
    .anim-1.show-hover .default-img, .anim-1:hover .default-img { transform: scale(1.1); }
    .anim-1.show-hover .hover-img, .anim-1:hover .hover-img { transform: scale(1); }
    .anim-1 .before-text { left: 10px; transform: translateX(0); }
    .anim-1 .after-text { right: 10px; transform: translateX(20px); }
    .anim-1.show-hover .before-text, .anim-1:hover .before-text { transform: translateX(-20px); }
    .anim-1.show-hover .after-text, .anim-1:hover .after-text { transform: translateX(0); }

    /* Animation 2: Slide Left */
    .anim-2 .default-img { transform: translateX(0); }
    .anim-2 .hover-img { transform: translateX(100%); }
    .anim-2.show-hover .default-img, .anim-2:hover .default-img { transform: translateX(-100%); }
    .anim-2.show-hover .hover-img, .anim-2:hover .hover-img { transform: translateX(0); }
    .anim-2 .before-text { left: 10px; transform: translateX(0); }
    .anim-2 .after-text { left: 10px; transform: translateX(50px); }
    .anim-2.show-hover .before-text, .anim-2:hover .before-text { transform: translateX(-50px); }
    .anim-2.show-hover .after-text, .anim-2:hover .after-text { transform: translateX(0); }

    /* Animation 3: Slide Up */
    .anim-3 .default-img { transform: translateY(0); }
    .anim-3 .hover-img { transform: translateY(-100%); }
    .anim-3.show-hover .default-img, .anim-3:hover .default-img { transform: translateY(100%); }
    .anim-3.show-hover .hover-img, .anim-3:hover .hover-img { transform: translateY(0); }
    .anim-3 .before-text { top: 10px; transform: translateY(0); }
    .anim-3 .after-text { top: 10px; transform: translateY(-30px); }
    .anim-3.show-hover .before-text, .anim-3:hover .before-text { transform: translateY(30px); }
    .anim-3.show-hover .after-text, .anim-3:hover .after-text { transform: translateY(0); }

    /* Animation 6: Fade + Zoom Out */
    .anim-6 .default-img { transform: scale(1); }
    .anim-6 .hover-img { transform: scale(1.3); }
    .anim-6.show-hover .default-img, .anim-6:hover .default-img { transform: scale(0.8); }
    .anim-6.show-hover .hover-img, .anim-6:hover .hover-img { transform: scale(1); }
    .anim-6 .before-text { right: 10px; transform: scale(1); }
    .anim-6 .after-text { right: 10px; transform: scale(0.8); }
    .anim-6.show-hover .before-text, .anim-6:hover .before-text { transform: scale(1.2); }
    .anim-6.show-hover .after-text, .anim-6:hover .after-text { transform: scale(1); }

    /* Animation 7: Slide Right */
    .anim-7 .default-img { transform: translateX(0); }
    .anim-7 .hover-img { transform: translateX(-100%); }
    .anim-7.show-hover .default-img, .anim-7:hover .default-img { transform: translateX(100%); }
    .anim-7.show-hover .hover-img, .anim-7:hover .hover-img { transform: translateX(0); }
    .anim-7 .before-text { right: 10px; transform: translateX(0); }
    .anim-7 .after-text { right: 10px; transform: translateX(-50px); }
    .anim-7.show-hover .before-text, .anim-7:hover .before-text { transform: translateX(50px); }
    .anim-7.show-hover .after-text, .anim-7:hover .after-text { transform: translateX(0); }

    /* Animation 9: Fade + Rotate */
    .anim-9 .default-img { transform: rotate(0deg); }
    .anim-9 .hover-img { transform: rotate(-10deg); }
    .anim-9.show-hover .default-img, .anim-9:hover .default-img { transform: rotate(10deg); }
    .anim-9.show-hover .hover-img, .anim-9:hover .hover-img { transform: rotate(0deg); }
    .anim-9 .before-text { left: 10px; transform: rotate(0deg); }
    .anim-9 .after-text { left: 10px; transform: rotate(-15deg); }
    .anim-9.show-hover .before-text, .anim-9:hover .before-text { transform: rotate(15deg); }
    .anim-9.show-hover .after-text, .anim-9:hover .after-text { transform: rotate(0deg); }

    /* Animation 10: Slide Down */
    .anim-10 .default-img { transform: translateY(0); }
    .anim-10 .hover-img { transform: translateY(100%); }
    .anim-10.show-hover .default-img, .anim-10:hover .default-img { transform: translateY(-100%); }
    .anim-10.show-hover .hover-img, .anim-10:hover .hover-img { transform: translateY(0); }
    .anim-10 .before-text { top: 10px; transform: translateY(0); }
    .anim-10 .after-text { top: 10px; transform: translateY(30px); }
    .anim-10.show-hover .before-text, .anim-10:hover .before-text { transform: translateY(-30px); }
    .anim-10.show-hover .after-text, .anim-10:hover .after-text { transform: translateY(0); }

    /* Animation 11: Zoom + Fade */
    .anim-11 .default-img { transform: scale(1); }
    .anim-11 .hover-img { transform: scale(1.2); }
    .anim-11.show-hover .default-img, .anim-11:hover .default-img { transform: scale(0.9); }
    .anim-11.show-hover .hover-img, .anim-11:hover .hover-img { transform: scale(1); }
    .anim-11 .before-text { right: 10px; transform: scale(1); }
    .anim-11 .after-text { right: 10px; transform: scale(0.8); }
    .anim-11.show-hover .before-text, .anim-11:hover .before-text { transform: scale(1.2); }
    .anim-11.show-hover .after-text, .anim-11:hover .after-text { transform: scale(1); }

    .pri-card-content {
      position: absolute;
      top: 90%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      opacity: 0;
      z-index: 4;
      transition: opacity 0.4s ease;
    }

    .card-overlay:hover .pri-card-content {
      opacity: 0.9;
    }

    .view-btn {
      display: inline-block;
      padding: 10px 20px;
      background: #0d6efd;
      color: #fff;
      text-decoration: none;
      border-radius: 15px;
      font-weight: 700;
      text-transform: uppercase;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .view-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }

    .brand-name {
      color: #ffffff;
      font-size: 1.1em;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 1px;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .pro-card:hover .brand-name {
      color: #ffd700;
      transform: translateY(-5px);
    }

    .price-range {
      color: #d1d1d1;
      font-size: 1.3em;
      margin-top: 25px;
      
      transition: color 0.3s ease;
    }

    .pro-card:hover .price-range {
      color: #ffffff;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .products {
        padding: 40px 0;
      }

      .products-heading {
        font-size: 2em;
      }

      .section-subtitle {
        font-size: 1em;
      }

      .pro-card {
        padding: 20px;
      }

      .card-overlay {
        height: 200px;
      }

      .brand-name {
        font-size: 0.9em;
      }

      .price-range {
        font-size: 1em;
      }

      .view-btn {
        padding: 8px 16px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 576px) {
      .pro-card {
        padding: 15px;
      }

      .card-overlay {
        height: 180px;
      }

      .products-heading {
        font-size: 1.8em;
      }
    }

/* </style> */

.about-us {
  padding: 60px 0;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
}

.about-heading {
  opacity: 1;
  font-size: 3.1rem;
  font-weight: 700;

}

.about-box {
  width: 100%;
  height: 100%;
  border: none;
  background-image: url(/static/v2static/images/images/backgroundimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  text-align: center;
}
.about-img img {
  width: 100%;
  max-width: 600px;
  height: auto; /* Automatically adjust height to maintain aspect ratio */
  border-radius: 20px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet screens */
@media (max-width: 768px) {
  .about-img img {
    max-width: 90%;
    border-radius: 15px;
    margin-bottom: 15px;
  }
  .about-box {
    padding: 15px !important;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .about-img img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 0;
  }
}

.about-content h2 {
  margin: 25px 0 25px 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: start;
}

.about-content p {
  max-width: 95%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
  text-align: start;
}

.about-content h6 {
  margin: 25px 0 25px 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: start;
}

.about-btn {
  text-decoration: none;
  background: linear-gradient(45deg, #8a4af3, #a56bff);
  color: #fff;
  padding: 10px 10px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
}

.about-heading {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.recent {

  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
  padding: 60px 0;
}

.recent-heading {
  opacity: 1;
  transform: translateY(0);
  font-size: 3.1rem;
  font-weight: 700;
}

.background {
  position: absolute;
  width: 70vw;
  height: 45vw;
  border-radius: 50%;
  left: 0;
  top: 5vh;
  background-image: linear-gradient(45deg, #f00404, #f3a4ef);
  opacity: 0.25;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.music-player {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  text-shadow: 0 0 2px black;
}



.track-title {
  font-size: 24px;
  margin-bottom: 5px;
  color: #fff;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.controls button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.progress-bars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: white;
  transition: width 0.1s linear;
}

.time {
  font-size: 14px;
  color: #fff;
}

.music-player img {
  padding-bottom: 20px;
  width: 100%;
}

.recent .container {
  padding: 0 15px;
}

.music-card {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;



}

.recent .row::-webkit-scrollbar {
  display: none;
}

.recent .col-lg-2-4 {

  min-width: 200px;
  padding: 10px;
}

@media (min-width: 992px) {
  .recent .col-lg-2-4 {
    flex: 0 0 20%;
    min-width: 0;
  }
}

.choose {
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
  padding: 60px 0;
}

.choose-heading h2 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.underline {
  width: 100px;
  height: 5px;
  background-color: #4a2c6b;
  margin: 20px auto 20px;
}

.choose-heading p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 100px;
}

.feature {
  text-align: center;
}

.feature h3,
p {
  color: #fff;
}

.feature i {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 1px solid #4a2c6b;
  background-color: #0d6efd;
  padding: 20px;
  color: #fff;
  font-size: 50px;
  margin-bottom: 20px;
}

.why-choose {
  padding: 60px 0;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);


}

.why-heading p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 100px;
}

.why-heading h2 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.timeline {
  position: relative;

  margin: 0 auto;
}

.lines {
  width: 8px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

.timeline-content {
  width: 48%;
  background: #343a40;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.timeline-item.left .timeline-content {
  margin-right: 60px;
}

.timeline-item.right .timeline-content {
  margin-left: 60px;
}

.timeline-content h4 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 10px;
}

.timeline-date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.timeline-item.left .timeline-date {
  right: -110px;
}

.timeline-item.right .timeline-date {
  left: -110px;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
}

.timeline-marker svg {
  fill: #fff;
  width: 55px;
  padding: 8px;
}

@media (max-width: 768px) {
  .lines {
    height: 100%;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item.left,
  .timeline-item.right {
    justify-content: flex-start;
  }

  .timeline-content {
    width: 80%;
    margin: 0 0 20px 20px;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    margin-left: 50px;
    margin-right: 0;
  }

  .timeline-date {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .timeline-item.left .timeline-date,
  .timeline-item.right .timeline-date {
    left: auto;
    right: auto;
  }

  .timeline-marker {
    left: 10px;
    transform: none;
  }
}

.qr {
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
  padding: 60px 0;

  display: flex;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
}

.qr-heading h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  padding-bottom: 50px;
}

.qr-heading p {
  text-align: center;
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
}

.qr-img img {
  width: 100%;              /* Makes image fill the container */
         /* Prevents it from becoming too large on big screens */
  height: auto;             /* Maintains aspect ratio */
  border-radius: 15px;      /* Rounded corners */
  display: block;           /* Removes inline spacing */
  margin: 0 auto;           /* Horizontally centers the image */
}
@media (max-width: 480px) {
  .qr-img img {
    max-width: 100%;
    border-radius: 10px;
  }
}



.qr-content {
  
  position: relative;
  margin: 6rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.qr-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.qr-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: #fff;
  max-width: 500px;
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  .qr {
    padding: 2rem 0;
  }

  .qr-content {
    padding: 1rem 0;
    text-align: center;
  }

  .qr-img img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .qr-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .qr-content h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .qr-content p {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }

  .qr-img img {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
 .qr-img img {
    max-width: 400px;
  }
}



.client {

  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);

}

.client-heading h2 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;

}



.Feedback-img {
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 78vw, 500px);
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
}

.Feedback-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.row.justify-content-center {
  display: flex;
  justify-content: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 400px;
  animation: zoom 0.4s;
  margin-top: 70px;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 100px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
}

@media screen and (max-width: 700px) {
  .modal-content {
    width: 90%;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #1a0b2e !important;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 20;
  }


  .navbar-collapse.show {
    left: 0;
  }

  .mobile-logo {
    display: block;

  }

  .close-menu {
    display: block;
  }

  .navbar-nav {
   
    align-items: start;
   
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem !important;
    border-radius: 10px;
  }

  .nav-link:hover {
    background-color: rgba(58, 20, 228, 0.2);
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-brand img {
    height: 75px;
    width: 100%;
    margin-right: 350px;
  }

  .navbar-actions {
    gap: 0.5rem;
  }

  .cart-icon {
    font-size: 1.2rem;
  }

  .btn-login {
    padding: 0.4rem 1.5rem;
  }

  .navbar-toggler {
    padding: 0.4rem 0.6rem;
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .navbar-collapse::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    display: none;
  }

  .navbar-collapse.show::after {
    display: block;
  }

  .disco-ball {
    width: 40px;
    height: 40px;
    top: 5%;
    right: 5%;
  }

  .preloader-logo {
    width: 150px;
  }

  .preloader-concept {
    font-size: 1.4rem;
  }

  .banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    word-spacing: 0.3rem;
  }

  .banner p {
    max-width: 90%;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    word-spacing: 0.2rem;
  }

  .banner p {
    max-width: 90%;
    font-size: 0.95rem;
  }

  .btn-explore {
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
  }

  .music-options {
    gap: 0.5rem;
  }

  .music-option {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

  .headphones {
    font-size: 6rem;
    top: 15%;
    left: 5%;
  }

  .music-note {
    font-size: 3rem;
  }

  .music-note:nth-child(1) {
    top: 5%;
    right: 10%;
  }

  .music-note:nth-child(2) {
    top: 45%;
    left: 15%;
  }

  .music-note:nth-child(3) {
    bottom: 5%;
    right: 15%;
  }

  .disco-ball {
    width: 30px;
    height: 30px;
    top: 5%;
    right: 5%;
  }

  .preloader-logo {
    width: 120px;
  }

  .preloader-concept {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    word-spacing: 0.15rem;
  }


  .banner p {
    max-width: 90%;
    font-size: 0.9rem;
  }

  .btn-explore {
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
  }

  .music-option {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }

  .headphones {
    font-size: 4rem;
  }

  .music-note {
    font-size: 2rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.4rem 1rem !important;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 50px;
    width: 100%;
    margin-right: 100px;
  }

  .mobile-logo img {
    height: 80px;
    width: 70%;
  }

  .navbar {
    padding: 0;
  }

  .navbar-collapse {
    width: 290px;
    left: -100%;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .close-menu {
    font-size: 1.2rem;
    top: 15px;
    right: 15px;
  }

  .cart-icon {
    font-size: 1rem;
  }

  .btn-login {
    padding: 0.4rem 2rem;
    font-size: 0.9rem;
  }

  .navbar-actions {
    gap: block;
  }

  .disco-ball {
    width: 25px;
    height: 25px;
    top: 2%;
    right: 2%;
  }

  .preloader-logo {
    width: 100px;
  }

  .preloader-concept {
    font-size: 1rem;
  }
}



.carousel-slider {
  width: 100%;
}

.carousel-slider .swiper-wrapper {
  display: flex;
  align-items: center;

}

.carousel-slider .swiper-slide {
  width: clamp(150px, 15vw, 293px);
  height: clamp(150px, 100vw, 480px);
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target] {
  background-color: #e164ec !important;
}


.carousel-slider .swiper-slide.swiper-slide-active {
  background: transparent;

}

.carousel-slider .item-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}






.faq-heading h2 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.faq-heading p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 70px;

}







.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  background: #1a0b2e;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}



.card__content p {

  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.card__content h6 {

  font-size: 22px;
  color: #fff;
  font-weight: 600;
}





.footer {
  padding: 80px 0 20px;
  background: radial-gradient(circle at 50% 50%, #0b0c0c, #000000 45%);
  ;
}

.foot-serv {
  display: flex;
  justify-content: start;

  flex-direction: column;
}

.foot-serv h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;

}

.foot-serv ul {
  padding: 0px;
}

.foot-serv li {
  list-style: none;
  margin-top: 15px;
}

.foot-serv li a {
  font-size: 18px;
  display: inline-block;
  color: #acacac;
  line-height: 25px;
  transition: 0.3s;
  text-transform: capitalize;
  text-decoration: none;
}

.foot-info {
  display: flex;
  justify-content: start;
  gap: 10px;
  flex-direction: column;
}

.foot-info h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 10px;

  color: #acacac;
  font-weight: 400;
  text-decoration: none;
}

.footer-text:hover {
  color: #059dfd;
}

/* .foot-abt{
  margin-left: 65px;
} */
.foot-abt h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.foot-abt p {
  font-weight: 400;
  color: #acacac;
  font-size: 18px;
  /* padding-right: 31%; */
  line-height: 28px;
  margin-bottom: 32px;
}

.icn {
  display: flex;
  gap: 10px;
}

.icn-fb,
.icn-ist {
  width: 48px;
  background-color: #1e1e1e;
  height: 48px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  transition: 0.3s;
  color: white;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;


}

.icn-fb:hover {
  background-color: #059dfd;
}

.icn-ist:hover {
  background-color: #059dfd;
}

/* copy right st */
.copyright-style-one.no-border {
  border-top: 0;

  padding: 20px 0;
}


.copyright-style-one .ft-menu {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright-style-one .ft-menu li {
  margin: 0;
  padding: 0 10px;
  position: relative;
}

ul li {
  font-size: 18px;
  line-height: 1.67;
  color: #acacac;
  font-weight: 400;
}

ul li a {
  text-decoration: none;
  color: #acacac;
}

ul li a:hover {
  color: #059dfd;
}


.copyright-style-one .ft-menu li+li::after {
  position: absolute;
  content: "";
  height: 14px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.1);
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}

.copyright-style-one .ft-menu li a {
  font-size: 14px;
}

.copyright-style-one .copyright-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #acacac;
  margin: 0 0 30px;
}

.copyright-style-one .copyright-text {
  margin-bottom: 0;
  font-size: 14px;
  padding-left: 30px;
}
  .timeline-content p {
    font-weight: 500;
  }

@media (max-width: 576px) {

  .products {
    padding: 20px 0;
  }

  .products-heading.animate {
    font-size: 2rem;
  }

  .product-card .card-title {
    font-size: 1.2rem;
  }

  .product-card .card-text {
    font-size: 0.9rem;
  }

  .pricing-heading {
    font-size: 1.8rem;
  }

  .pricing-card {
    flex: 0 0 90%;
    height: 400px;
  }

  .recent-heading {
    font-size: 2rem;
  }

  .music-player {
    max-width: 180px;
  }

  .track-title {
    font-size: 18px;
  }

  .about-heading.animate {
    font-size: 2rem;
  }

  .about-img img {
    width: 100%;
    height: 250px;

  }

  .about-content h2 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }

  .choose-heading h2 {
    font-size: 2rem;
  }

  .choose-heading p {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .feature i {
    width: 60px;
    height: 60px;
    font-size: 30px;
    padding: 15px;
  }

  .why-heading h2 {
    font-size: 2rem;
  }

  .why-heading p {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .timeline-content h4 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 14px;
  }

  .qr-heading h2 {
    font-size: 2rem;
  }

  .client-heading h2 {
    font-size: 2rem;
  }

  .Feedback-img {
    width: clamp(160px, 10vw, 200px);
    height: clamp(100px, 71vw, 300px);
  }

  .modal-content {
    width: 90%;
  }


  .card__content {
    padding: 8px;
  }

  .card__content h6 {
    font-size: 14px;
  }

  .card__content p {
    font-size: 10px;
  }

  .feature p {
    font-size: 11px;
  }


  .footer {
    padding: 20px;
  }

  .btn-pricing,
  .btn-add-to-cart {
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 14px;
    width: 100px;
    height: 34px;
    padding: 7px;
  }

}


@media screen and (max-width: 576px) {
  .pricing-scroll-container {
    width: 100%;
    gap: 15px;
    padding: 15px 0;
  }

  .pricing-card {
    flex: 0 0 260px;
    height: 360px;
    opacity: 0.6;
  }

  .pricing-card.center-highlight {
    height: 350px;
    transform: scale(1.08);
    opacity: 1;
  }

  .pricing-card:hover {
    transform: scale(1.03);
  }

  .pricing-amount {
    font-size: 2.2rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .pricing-unit {
    font-size: 0.9rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
  }

  .btn-pricing,
  .btn-add-to-cart {
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .scroll-arrow {
    width: 35px;
    height: 35px;
  }
    .foot-serv li a{
              font-size: 13px;
             }
             .footer-text {
              font-size: 13px;
             }
             .foot-abt p{
              font-size: 13px !important;
             }
}




   .faq-section {
        background-color: #0c001f; /* Dark purple background from image */
        padding: 100px 0;
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        position: relative;
        overflow: hidden;
    }

    .faq-title-wrapper {
        position: relative;
        z-index: 2;
    }

    .faq-title-wrapper h2 {
        font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
        font-weight: 600;
        line-height: 1.2;
        color: #ffffff;
    }

    .faq-bg-question-mark {
        position: absolute;
        font-size: 30rem;
        font-weight: 700;
        color: rgba(36, 11, 64, 0.5); /* Very faint purple for the background '?' */
        top: 50%;
        left: -50px;
        transform: translateY(-50%);
        z-index: 1;
        line-height: 1;
        user-select: none;
    }

    .faq-accordion {
        width: 100%;
    }

    .faq-item {
        border-bottom: 1px solid rgba(138, 43, 226, 0.25); /* Subtle purple border */
    }

    .faq-question {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 24px 0;
        background: none;
        border: none;
        color: #fff;
        text-align: left;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .question-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        background-color: #8A2BE2; /* Bright Purple */
        color: #fff;
        border-radius: 50%;
        margin-right: 20px;
        font-weight: bold;
        font-size: 1rem;
    }

    .question-text {
        flex-grow: 1;
    }

    .toggle-icon {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238A2BE2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        padding-left: 48px; /* Aligns answer with question text */
        color: #ccc;
    }

    .faq-answer p {
        margin: 0;
        padding-bottom: 24px;
        line-height: 1.6;
    }

    /* --- Active State --- */
    .faq-item.active .faq-answer {
        max-height: 150px; /* Adjust if answers are longer */
    }

    .faq-item.active .toggle-icon {
        transform: rotate(-180deg);
    }

    .faq-title-wrapper span{
      width: 100%;
      height: auto;border: 10px solid;
      padding: 0 100px ;
    }



@media screen and (max-width: 992px) {
 
    .faq-title-wrapper{
              display: none;
             }
}

@media screen and (max-width: 768px) {
       .banner {
        background-position: center;
        height: 20vh;
        margin-top: 70px; 
        border-radius: 20px;
}
    .banner h1{
      font-size: 1.5rem;
    }
     
    /* .pricing-amount {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0px;
}
.pricing-features {
    margin: 0px 0;
    max-height: 115px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none;
  }
      .pricing-card.center-highlight {
        height: 250px;
      }
          .pricing-card {
        height: 237px;
          }
          .pricing-heading{
            margin-bottom: 20px;
          }
          .pricing{
            padding: 20px 0;
          }
              .btn-pricing, .btn-add-to-cart {
        padding: 7px 14px;
        font-size: 0.85rem;
        margin-top: 10px;
    } */
    /* .products{
      margin-top: 0 !important;
      
    } */
        .brand-name {
        font-size: 0.9em;
    }
    .rainbow-gradient-circle,
.rainbow-gradient-circle1 {
  display: none;
}
    /* .pricing-scroll-container {
        width: 67%;
        gap: 15px;
        padding: 15px 0;
    } */
        .banner p {
     display: none;
    }
    .section-subtitle{
      display: none;
    }
    .recent{
      padding: 0px 0;
    }
        .card-overlay{
          margin-bottom: 10px;
        }
          .price-range{
            margin-top: 0;
          }
          .sub-recent{
            display: none;
          }
          .sub-about{
            display: none;
          }
          .why-choose{
            padding: 0;
          }
          .sub-scan{
            display: none;
          }
              .qr {
                padding: 1rem 0;
              }
              .qr-content{
                margin: 2rem 0;
              }
              .sub-client{
                display: none;
              }
              .client{
                padding: 0rem 0;
              }
             .faq-title-wrapper{
              display: none;
             }
             .close{
              top: 80px;
             }
             .btn-login {
              border: 1px solid #fff;
             }
             .sub-pri{
              display: none;
             }
             .timeline-marker{
              width: 50px;
              height: 50px;
             }
             .timeline-marker svg{
              width: 44px;
             }
             .timeline-content{
              padding: 20px;
             }
               .faq-intro h2 {
        font-size: 2rem !important;
    }
    .faq-heading h2{
      font-size: 2rem;
    }
    .faq-heading p{
      font-size: 12px;
    }
}



