  /* Custom styles for a cleaner look not handled by Tailwind */
        body {
            font-family: 'Inter', sans-serif;
            @apply bg-gray-100 text-gray-800;
            overflow-x: hidden; /* Prevents horizontal scroll on smaller screens */
        }
        .bg-hero-gradient {
            background-image: linear-gradient(to right, #6A11CB, #2575FC);
        }
        .service-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            @apply hover:transform hover:-translate-y-2 hover:shadow-2xl;
        }
        /* Style for the testimonial slider */
        .testimonial-container {
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .testimonial-card {
            scroll-snap-align: start;
        }
        .contact {
    background-color: var(--bg-color-dark);
    color: var(--text-color-dark);
}

.contact h1 {
    color: var(--text-color-dark);
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
    font-size: 1rem;
}

.contact button {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--text-color-dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #0056b3;
}

.scroll-container {
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      padding: 2rem;
     
    }
    .scroll-container::-webkit-scrollbar {
      height: 10px;
    }
    .scroll-container::-webkit-scrollbar-thumb {
      background: #fbc02d;
    
    }
    
    .song-card {
      display: inline-block;
      vertical-align: top;
      border-radius: 10px;
      overflow: hidden;
     
      margin-right: 1rem;
      width: 160px;
      transition: transform 0.3s, ;
    }
    .song-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px red
    }

    .eon{ 
        border-radius: 270px;
       
    }
    .song-media img {border-radius: 270px; object-fit: cover; }
    
    .listen-btn {
      display: inline-block;
      margin-top: 1rem;
      background: white;
      
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s;
    }

    body {
  font-family: 'Inter', sans-serif;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
}

.faq-answer {
  margin-top: 10px;
  color: #4a5568;
}

.see-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #2575fc, #6a11cb);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.see-more-btn:hover {
  opacity: 0.9;
}
