:root {
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --dark: #121212;
    --dark-light: #1E1E1E;
    --secondary: #2D2D2D;
    --light: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow-x: hidden;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar {
    background-color: rgba(18, 18, 18, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.floating-note {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.note-1 {
    top: 20%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.note-2 {
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.note-3 {
    top: 40%;
    left: 65%;
    width: 25px;
    height: 25px;
    animation-delay: 2s;
}

.note-4 {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes float {

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

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

.btn-warning {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--primary);
    border-radius: 2px;
}

.track-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.track-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.play-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.track-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    background-color: var(--dark-light) !important;
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    transform: translateY(-3px);
}

#backToTop {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

.floating-badge {
    top: -15px;
    right: -15px;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.05);
    }

    100% {
        transform: rotate(15deg) scale(1);
    }
}

.testimonial-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.filter-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive adjustments */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .carousel-control-next {
        right: 0px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.text-muted {
    color: #F8F9FA !important
}

/* Active nav link style */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffc107 !important;
    font-weight: 500;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #ffc107;
}

/* Back to top button */
#backToTop {
    display: none;
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.beat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.beat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.beat-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.beat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beat-card:hover .beat-overlay {
    opacity: 1;
}

.play-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.beat-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.genre-badge {
    transition: all 0.3s ease;
}

.beat-card:hover .genre-badge {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
}

.process-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.process-step:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.step-number {
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.floating-note {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.section-content {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.list-group-item {
    background-color: transparent;
    color: white;
    border-color: var(--secondary);
}

.list-group-item strong {
    color: var(--primary);
}

.blog-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tag-badge {
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.sidebar-widget {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary);
}

.popular-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--secondary);
    color: white;
    border-radius: 30px;
    margin: 0 5px 10px 0;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding-right: 120px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
}

.pagination .page-item .page-link {
    background-color: var(--dark-light);
    color: white;
    border-color: var(--secondary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.tag-badge {
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
}

.sidebar-widget {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary);
}

.popular-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.related-post-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.related-post-img {
    height: 200px;
    object-fit: cover;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.article-header-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    align-items: center;

}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.article-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.booking-card {
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.booking-card-header {
    background-color: var(--primary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.booking-card-body {
    padding: 30px;
}

.form-control,
.form-select {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.session-type-card {
    background-color: var(--secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-type-card:hover,
.session-type-card.active {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.session-type-card.active {
    background-color: rgba(255, 193, 7, 0.1);
}

.time-slot-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.time-slot-btn:hover,
.time-slot-btn.active {
    background-color: var(--primary);
    color: var(--dark);
}

.studio-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.studio-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.flatpickr-day.selected {
    background-color: var(--primary);
    border-color: var(--primary);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background-color: var(--secondary);
}

.booking-card {
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.booking-card-header {
    background-color: var(--primary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.booking-card-body {
    padding: 30px;
}

.form-control,
.form-select {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.session-type-card {
    background-color: var(--secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-type-card:hover,
.session-type-card.active {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.session-type-card.active {
    background-color: rgba(255, 193, 7, 0.1);
}

.time-slot-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.time-slot-btn:hover,
.time-slot-btn.active {
    background-color: var(--primary);
    color: var(--dark);
}

.studio-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.studio-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.flatpickr-day.selected {
    background-color: var(--primary);
    border-color: var(--primary);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background-color: var(--secondary);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    /* Changed from position-fixed to the actual CSS property */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    pointer-events: none;
    /* This allows clicks to pass through when fading out */
}

.music-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 60px;
    gap: 4px;
}

.music-loader .bar {
    width: 8px;
    height: 10px;
    background-color: #ffc107;
    animation: musicLoader 1.5s ease-in-out infinite;
    transform-origin: bottom;
}

.music-loader .bar:nth-child(1) {
    animation-delay: 0.1s;
}

.music-loader .bar:nth-child(2) {
    animation-delay: 0.2s;
}

.music-loader .bar:nth-child(3) {
    animation-delay: 0.3s;
}

.music-loader .bar:nth-child(4) {
    animation-delay: 0.4s;
}

.music-loader .bar:nth-child(5) {
    animation-delay: 0.5s;
}

.music-loader .bar:nth-child(6) {
    animation-delay: 0.6s;
}

.music-loader .bar:nth-child(7) {
    animation-delay: 0.7s;
}

.music-loader .bar:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes musicLoader {

    0%,
    100% {
        transform: scaleY(0.1);
    }

    50% {
        transform: scaleY(4);
    }
}

.bg-dark-subtle {
    background-color: #1c1e1f !important;
}

.p-4 {
    padding: 1.6rem !important;
}

#message {
    min-height: 235px;
}

textarea::placeholder {
    color: #fff !important;
}

input::placeholder {
    color: #fff !important;
}

#userpart {
    margin-left: 4%;
}

* {
    box-sizing: border-box;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}
.article-content img{margin-right: 10px;}

@media (max-width: 1150px) {
    .hero-title {
        margin-top: 20% !important;
        font-size: 3rem !important;
    }
}


.floating-note {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
}


.hero-section {
  overflow-x: hidden;
}

.carousel-item {
  max-width: 100%;
}

.track-cover img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Constrain floating elements */
  .floating-note {
    display: none; /* Optionally hide on mobile */
  }

  /* Adjust hero section padding */
  .hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure buttons wrap properly */
  .btn {
    white-space: normal;
  }
}

/* Ensure no horizontal overflow */
body {
  overflow-x: hidden;
}

/* Constrain floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  overflow: hidden;
}

/* Fix track card images */
.track-cover img {
  max-width: 100%;
  height: auto;
}

/* Prevent badge overflow */
.badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10% !important;
  }
  .floating-badge{
    top: 20px !important;
  }
}

/* Check for fixed-position elements */
.fixed-element, .sticky-element {
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
}


/* Reset negative margins on mobile */
@media (max-width: 767px) {
  * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Constrain transformed elements */
.transformed-element {
  transform: translateX(0) !important;
}

/* Replace 100vw with 100% on mobile */
@media (max-width: 767px) {
  .full-width-element {
    width: 100% !important;
  }
}

/* Nuclear option (use as last resort) */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

/* Kill horizontal scroll permanently */
body {
  overscroll-behavior-x: none;
}

@media (max-width: 767px) {
  /* Disable horizontal scroll */
  body, .container, .row, [class*="col-"] {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  /* Reset any problematic elements */
  .hero-section, .floating-elements, .carousel-item {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mb-5 {
    margin-bottom: 1rem !important;
  }
}
.track-item {
    transition: all 0.4s ease;
    transform: scale(1);
    opacity: 1;
}

.track-item.hide {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}
/* Footer Background Gradient */
footer {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    position: relative;
    overflow: hidden;
}

/* Glow Effect (Background Accent) */
footer::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.08);
    filter: blur(120px);
    top: -50px;
    left: -50px;
    z-index: 0;
}

/* Headings */
footer h5,
footer h6 {
    letter-spacing: 1px;
}

/* Links Hover Effect */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffc107 !important;
    padding-left: 5px;
}

/* Social Icons */
.social-link {
    background: #1a1a1a;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: #ffc107;
    color: #000 !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Contact Icons */
.contact-info i {
    font-size: 14px;
}

/* Divider */
footer hr {
    opacity: 0.2;
}

/* Bottom Text */
footer p,
footer small {
    font-size: 13px;
}

/* Back To Top Button */
#backToTop {
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

#backToTop:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
}

/* Floating Animation */
@keyframes floatBtn {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

#backToTop {
    animation: floatBtn 2.5s infinite ease-in-out;
}

/* Audio Glow Indicator */
#audio-player {
    display: none;
}

/* Responsive spacing */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
footer {
    position: relative;
    z-index: 1;
}

/* FIX: prevent overlay blocking clicks */
footer::before {
    pointer-events: none;
}

/* Ensure content is above overlay */
footer .container {
    position: relative;
    z-index: 2;
}

 /* hero section (FAQ hero) */
        .faq-hero {
            position: relative;
            min-height: 60vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            margin-top: 76px;
        }
        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,193,7,0.08) 0%, rgba(0,0,0,0.6) 90%);
            z-index: 1;
        }
        .faq-hero .container {
            position: relative;
            z-index: 3;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
        }
        .section-title {
            position: relative;
            display: inline-block;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 3px;
            background: #ffc107;
            border-radius: 3px;
        }
        .text-warning {
            color: #ffc107 !important;
        }
        /* floating notes animation (same vibe) */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
            pointer-events: none;
        }
        .floating-note {
            position: absolute;
            background: rgba(255,193,7,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,193,7,0.3);
            animation: floatNote 12s infinite ease-in-out;
        }
        .note-1 { top: 15%; left: 10%; width: 60px; height: 60px; animation-delay: 0s; }
        .note-2 { top: 70%; left: 85%; width: 35px; height: 35px; animation-delay: 2s; animation-duration: 14s; }
        .note-3 { top: 40%; left: 20%; width: 25px; height: 25px; animation-delay: 4s; animation-duration: 10s; }
        .note-4 { top: 80%; left: 15%; width: 45px; height: 45px; animation-delay: 1s; animation-duration: 16s; }
        @keyframes floatNote {
            0% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-25px) rotate(8deg); opacity: 0.7; }
            100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
        }
        /* FAQ Accordion custom styling (new classes) */
        .faq-accordion .accordion-item {
            background-color: #1a1a1a;
            border: 1px solid rgba(255,193,7,0.2);
            border-radius: 16px !important;
            margin-bottom: 1.25rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-accordion .accordion-item:hover {
            border-color: rgba(255,193,7,0.5);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .faq-accordion .accordion-header {
            background: transparent;
        }
        .faq-accordion .accordion-button {
            background-color: #1a1a1a;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.3rem 1.5rem;
            box-shadow: none;
            border: none;
            transition: all 0.25s;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: linear-gradient(95deg, #ffc10710 0%, #1a1a1a 100%);
            color: #ffc107;
            border-bottom: 1px solid rgba(255,193,7,0.3);
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%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");
        }
        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%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");
            transform: rotate(180deg);
        }
        .faq-accordion .accordion-body {
            background-color: #0f0f0f;
            color: #dddddd;
            padding: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            border-top: none;
        }
        /* contact card & button same style */
        .btn-warning {
            background-color: #ffc107;
            border: none;
            color: #0a0a0a;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-warning:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,193,7,0.3);
        }
        .btn-outline-warning {
            border: 2px solid #ffc107;
            color: #ffc107;
            transition: all 0.3s;
        }
        .btn-outline-warning:hover {
            background: #ffc107;
            color: #000;
            transform: translateY(-2px);
        }

         /* category tag styling */
        .faq-category-badge {
            background: rgba(255,193,7,0.15);
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #ffc107;
            display: inline-block;
        }
        /* scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ffc107;
            border-radius: 10px;
        }