/* ========== HEADER CSS WITH ANIMATIONS ========== */
.site-header {
	position: relative;
	z-index: 1000;
}

.header____wrap {
	/* position: absolute; */
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1111111;
	transition: all 0.3s ease;
}
.header-absolute {
	position: absolute;
}

.header-relative {
	position: relative;
}
.user-menu {
	position: relative;
	display: inline-block;
}
.user-menu .dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: var(--secondary-color);
	min-width: 140px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	overflow: hidden;
	display: none;
	z-index: 9999;
	margin: auto;
	width: 100%;
}
.user-menu .dropdown-menu a {
	display: block;
	padding: 10px 14px;
	text-decoration: none;
	color: var(--heading-color);
	font-family: var(--font-inter);
	font-size: 14px;
}
.user-menu .dropdown-menu a:hover {
	background: #f2f2f2;
	color: var(--dark-color);
}
.user-menu:hover .dropdown-menu {
	display: block;
}
.auth_modal_unique .btn-close {
    filter: brightness(0) saturate(100%) invert(59%) sepia(22%) saturate(1118%)  hue-rotate(355deg) brightness(97%) contrast(89%);
    opacity: 1;
}
/* Heading Style */
h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	/* cursor: none; */
	transition: 0.4s ease;
}

/* h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover {
	color: #00ffe7;
	transform: scale(1.02) rotate(-1deg);
	text-shadow:
		0 0 10px #00ffe7,
		0 0 20px #00ffe7,
		0 0 40px #00ffe7;
} */

/* Custom Cursor */
.cursor {
	width: 25px;
	height: 25px;
	border: 2px solid #00ffe7;
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: transform 0.1s ease;
	z-index: 9999;
	box-shadow: 0 0 15px #00ffe7;
}

/* Hover Animation */
.cursor.active {
	transform: translate(-50%, -50%) scale(2);
	background: #00ffe744;
	box-shadow: 0 0 25px #00ffe7;
}
/* Scrolled Header Effect */
.site-header.scrolled .header____wrap {
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
	backdrop-filter: blur(15px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1140px;
	}
}

/* Logo Animation */
.header-logo {
	animation: fadeInLeft 0.8s ease-out;
	opacity: 1 !important;
}

.header-logo img {
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
	max-width: 180px;
}

.header-logo img:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

/* Desktop Navigation Links Animation */
.header-link .single-item {
	opacity: 0;
	animation: fadeInDown 0.5s ease-out forwards;
}

.header-link .single-item:nth-child(1) {
	animation-delay: 0.1s;
}
.header-link .single-item:nth-child(2) {
	animation-delay: 0.2s;
}
.header-link .single-item:nth-child(3) {
	animation-delay: 0.3s;
}
.header-link .single-item:nth-child(4) {
	animation-delay: 0.4s;
}
.header-link .single-item:nth-child(5) {
	animation-delay: 0.5s;
}
.header-link .single-item:nth-child(6) {
	animation-delay: 0.6s;
}
.header-link .single-item:nth-child(7) {
	animation-delay: 0.7s;
}

.header-link .single-item a {
	position: relative;
	transition: color 0.3s ease;
	font-size: 12px;
}

.header-link .single-item a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: width 0.3s ease;
}

.header-link .single-item a:hover::after {
	width: 100%;
}

.header-link .single-item a:hover {
	color: #ff8e53 !important;
}

/* Sign Up Button Animation */
.signup-btn {
	background: var(--secondary-color);
	border: none;
	padding: 10px 18px;
	border-radius: 50px;
	color: white !important;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-family: var(--font-inter);
}

.signup-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.user-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	object-fit: scale-down;
}

.user-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Mobile Hamburger Button */
.mobile-hamburger {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: white;
	font-size: 22px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1001;
	position: relative;
}

.mobile-hamburger:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Styles */
.site-header .mobile-header {
	position: fixed;
	width: 320px;
	height: 100vh;
	top: 0;
	right: 0;
	padding: 80px 25px 30px;
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	z-index: 11111111 !important;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
	overflow-y: auto;
	margin: 0;
	list-style: none;
}

.site-header .mobile-header.open {
	transform: translateX(0);
}

/* Mobile Menu Items */
.mobile-header .single-item {
	margin-bottom: 20px;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.3s ease;
}

.mobile-header.open .single-item {
	opacity: 1;
	transform: translateX(0);
}

.mobile-header.open .single-item:nth-child(1) {
	transition-delay: 0.05s;
}
.mobile-header.open .single-item:nth-child(2) {
	transition-delay: 0.1s;
}
.mobile-header.open .single-item:nth-child(3) {
	transition-delay: 0.15s;
}
.mobile-header.open .single-item:nth-child(4) {
	transition-delay: 0.2s;
}
.mobile-header.open .single-item:nth-child(5) {
	transition-delay: 0.25s;
}
.mobile-header.open .single-item:nth-child(6) {
	transition-delay: 0.3s;
}
.mobile-header.open .single-item:nth-child(7) {
	transition-delay: 0.35s;
}

.mobile-header .single-item a {
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 500;
	display: block;
	padding: 12px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.mobile-header .single-item a:hover {
	color: #ff8e53 !important;
	padding-left: 10px;
}

/* Mobile Search */
.mobile__search {
	margin: 20px 0;
}

.mobile__search .form-control-1 {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 12px 20px;
	color: white;
	width: 100%;
	transition: all 0.3s ease;
}

.mobile__search .form-control-1:focus {
	outline: none;
	border-color: #ff8e53;
	background: rgba(255, 255, 255, 0.15);
}

.mobile__search .form-control-1::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.search-mobile-btn i {
	color: #ff8e53;
	font-size: 18px;
	cursor: pointer;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.mobile-signin,
.mobile-signup {
	flex: 1;
	text-align: center;
	padding: 12px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.mobile-signin {
	background: transparent;
	border: 2px solid #ff8e53;
	color: #ff8e53;
}

.mobile-signup {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
}

.mobile-signin:hover,
.mobile-signup:hover {
	transform: translateY(-2px);
}

/* Close Button */
.close-mobile-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	color: white;
	font-size: 18px;
}

.close-mobile-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

/* Overlay for Mobile Menu */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 111111;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Desktop Ecommerce Buttons Animation */
.ecommerce .header____btn {
	opacity: 0;
	animation: fadeInRight 0.5s ease-out forwards;
}

.ecommerce .header____btn:nth-child(1) {
	animation-delay: 0.5s;
}
.ecommerce .header____btn:nth-child(2) {
	animation-delay: 0.6s;
}
.ecommerce .header____btn:nth-child(3) {
	animation-delay: 0.7s;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Mobile Responsive */
@media (max-width: 991px) {
	.mobile-hamburger {
		display: flex !important;
	}

	.header-logo img.logo-here {
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.site-header .mobile-header {
		width: 100%;
	}

	.header-logo img.logo-here {
		max-width: 130px;
	}

	.mobile-auth-buttons {
		flex-direction: column;
		gap: 10px;
	}
}

/* Hide scroll when menu is open */
body.menu-open {
	overflow: hidden;
}

/* Search Icon */
.search-icon i {
	color: #a4a4a4;
}

/* Banner Section */
section.banner {
	background: url("../img/banner-bg.webp") no-repeat center center/cover;
	min-height: 100vh;
	position: relative;
}
/* Header Css  */

/* ========== BANNER SECTION WITH PARALLAX STARFIELD ========== */
.banner.section {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	/* background: radial-gradient(circle at 30% 20%, #0b0b2e, #020210); */
	background: linear-gradient(
		130deg,
		rgba(13, 15, 22, 1) 0%,
		rgba(31, 27, 50, 1) 50%,
		rgba(13, 15, 22, 1) 100%
	);
	overflow: hidden;
	z-index: 1;
}

/* 3D Canvas Container - Starfield Background */
.starfield-canvas-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

canvas {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
}

/* Content overlay - keeps original content visible */
.banner .container {
	position: relative;
	z-index: 99;
}

/* Original Banner Content Styles (preserved) */

/* .secondary-bold-font.level-1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 1.2;
	background: linear-gradient(135deg, #ffd166, #ff6ac2, #6c5ce7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 1.2rem;
} */

.banner-content h1 {
	color: var(--heading-color);
	margin-bottom: 1.2rem;
}

/* Button styling as per your code */
.btn.dark-color {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--body-color);
	letter-spacing: 0.5px;
	box-shadow: rgba(202, 144, 67, 0.4) 0px 10px 20px -5px;
	cursor: pointer;
	padding: 1rem 2.3rem;
	border-radius: 60px;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

.btn.dark-color:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: rgba(202, 144, 67, 0.6) 0px 18px 30px -8px;
	background: #b67c35; /* hover me slightly darker shade */
}

/* Responsive */
@media (max-width: 992px) {
	.banner-content {
		text-align: center;
	}

	.banner-btn {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.banner-content {
		padding: 1.5rem;
	}
	.banner-content {
		padding-left: unset;
	}
}

/* Floating music notes animation (CSS only) */
.floating-music-note {
	position: absolute;
	font-size: 1.5rem;
	pointer-events: none;
	z-index: 3;
	opacity: 0.6;
	filter: drop-shadow(0 0 5px #ff77aa);
	animation: floatNote 8s infinite ease-in-out;
}
/* .banner-content {
	padding-left: 230px;
} */
@keyframes floatNote {
	0% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.7;
	}

	90% {
		opacity: 0.7;
	}

	100% {
		transform: translateY(-100vh) rotate(360deg);
		opacity: 0;
	}
}

/* explore-section Css  */
.explore-section {
	background: linear-gradient(
		180deg,
		rgba(157, 71, 70, 0.6) 0%,
		rgba(202, 144, 67, 0.5) 100%
	);
}
.search-wrapper {
	max-width: 700px;
	margin: auto;
}
.search-box {
	background: #2c3143;
	border-radius: 50px;
	padding: 8px 10px;
	gap: 10px;
}
.search-box i {
	color: #9aa0b4;
	margin-left: 10px;
}
.search-box input {
	flex: 1;
	border: none;
	background: transparent;
	color: #fff;
	outline: none;
	font-size: 14px;
	color: var(--extra-color-1);
	font-family: var(--font-dm);
	font-weight: 400;
}
.search-box input::placeholder {
	color: var(--extra-color-1);
}
.search-btn {
	background: var(--secondary-color);
	border: none;
	color: #000;
	padding: 10px 22px;
	border-radius: 50px;
	font-weight: 600;
	transition: 0.3s;
	font-family: var(--font-dm);
	color: var(--body-color);
}
.search-btn:hover {
	background: #b67f36;
}
.tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.tag {
	background: #d19e4d;
	color: #000;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	border: 1px solid var(--extra-color-4);
	font-family: var(--font-dm);
	cursor: pointer;
	transition: 0.3s;
}
.tag:hover {
	background: #b67f36;
}
.explore____wrapper {
	background: #181b25;
	padding: 15px;
	border: 1px solid #2b2e3b50;
	box-shadow: 0px 8px 32px rgba(4, 5, 11, 0.4);
	transition: 0.6s ease;
}
.explore___badge {
	border-radius: 30px;
}
.explore____wrapper figure:hover .main___image {
	opacity: 0;
}
.hover____image {
	/* display: none; */
	transition: 0.6s ease;
	transform: translateX(-100px);
	top: 0;
	position: absolute;
	left: 0;
	opacity: 0;
}

.explore____wrapper figure {
	position: relative;
	overflow: hidden;
}

.explore____wrapper figure:hover .hover____image {
	/* display: block; */
	transform: translateX(0px);
	opacity: 1;
}
/* explore-section Css  */

/* sing-section Css  */
.sign____wrapper {
	background: linear-gradient(
		90deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	box-shadow: 0px 4px 30px 0px rgba(202, 144, 67, 0.5);
	padding: 30px;
	border: 1px solid transparent;
	transition: 0.4s ease;
}

.sign____wrapper:hover {
	background: linear-gradient(
		180deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-color: var(--secondary-color);
	border-radius: 12px;
}

.sign___span {
	background: var(--secondary-color);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: var(--body-color);
	font-size: 20px;
}
.music___fig {
	animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px); /* up */
	}
	100% {
		transform: translateY(0); /* back */
	}
}
/* sing-section Css  */

/* testi-section Css  */
.testi____wrapper {
	background: linear-gradient(
		90deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-radius: 15px;
	padding: 30px;
	transition: 0.4s ease;
	border: 2px solid transparent;
}
.testi____wrapper:hover {
	background: linear-gradient(
		180deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-color: var(--secondary-color);
}

/* venues-section Css  */
.venues____image .img-fluid {
	filter: drop-shadow(0px 8px 32px rgba(4, 5, 11, 0.4));
	border-radius: 16px;
}
.venues____image figure:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, #000);
	z-index: 1;
	transition: 0.6s cubic-bezier(0.92, -0.08, 0, 1.06);
}
.venues____image figure {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.venues____image:hover figure:before {
	top: 0;
}
.venues____image {
	background: var(--body-color);
	overflow: hidden;
}

.venues____image .animated___image {
	transform: translateX(-100%);
}

.venues____image .animated___right___image {
	transform: translateX(100%);
}
/* venues-section Css  */

/* plan-section Css  */
.plan___wrapper {
	background: #12151d;
	padding: 30px;
	border: 2px solid #1f222c;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.plan___wrapper:hover {
	border-color: var(--secondary-color);
}
.plan___btn {
	background: var(--extra-color-3);
	font-family: var(--font-dm);
	font-weight: 600;
	font-size: 13px;
	padding: 12px 30px;
	color: var(--heading-color);
}
.plan___wrapper.premium____wrap {
	border-color: var(--secondary-color);
}
.plan___wrapper.premium____wrap .plan___btn {
	background: var(--secondary-color);
	color: var(--body-color);
}
.popular___span {
	border-radius: 30px;
}
.popular___tag {
	margin-top: -15px;
}
/* plan-section Css  */
/* progress bar  */
.player {
	width: 100%;
	max-width: 500px;
	margin: auto;
	color: #fff;
}

.scrubber {
	width: 100%;
	height: 6px;
	background: #2a2a2a;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
	margin-top: 0px;
}

.progress {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, #1db954, #1ed760);
	border-radius: 50px;
	box-shadow: 0 0 10px #1db954;
}

.time {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 8px;
	color: #bbb;
}

/* waveform */
.waveform {
	display: flex;
	gap: 4px;
	height: 30px;
	width: 100%;
	align-items: flex-end;
}

.waveform div {
	width: 3px;
	background: #ca9043;
	animation: wave 1s infinite ease-in-out;
	opacity: 0.6;
}

@keyframes wave {
	0%,
	100% {
		height: 6px;
	}
	50% {
		height: 25px;
	}
}

/* footer Css  */
.site-footer {
	border-top: 2px solid #1e1c23;
	background: #1c181a;
}
/* footer Css  */

/* contact page Css  */
.bg____wrap {
	background: linear-gradient(
		90deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(33, 27, 45, 1) 0%,
		rgba(23, 19, 32, 1) 100%
	);
	padding: 30px;
	border: 2px solid #2c2836;
	transition: 0.6s ease;
}
.bg____wrap:hover {
	background: linear-gradient(
		180deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(23, 19, 32, 1) 0%,
		rgba(33, 27, 45, 1) 100%
	);
	border-color: var(--secondary-color);
}
.contact___icon {
	background: #30262d;
	color: var(--secondary-color);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 22px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}
/* contact page Css  */

/* pricing page Css  */
.plan___wrapper.plan___detail {
	background: linear-gradient(
		90deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(33, 27, 45, 1) 0%,
		rgba(23, 19, 32, 1) 100%
	);
}
.plan___wrapper.plan___detail.premium____wrap {
	box-shadow: 0px 25px 50px -12px rgba(118, 44, 237, 0.1);
}
.plan___wrapper.plan___detail .plan___btn {
	background: var(--extra-color-7);
}
.plan___wrapper.plan___detail.premium____wrap .plan___btn {
	background: var(--secondary-color);
	color: var(--heading-color);
}
.plan___wrapper.plan___detail.premium____wrap .plan___btn:hover {
	color: var(--body-color);
}
.plan___wrapper.plan___detail .plan___btn:hover {
	color: var(--secondary-color);
}
.copy___btn:hover {
	background: var(--secondary-color);
	color: var(--extra-color-7);
	font-weight: 700;
}
/* pricing page Css  */

/* playlist page Css  */
.playlist___btn {
	font-family: var(--font-inter);
	color: #fff;
	padding: 12px 20px;
}
/* playlist page Css  */

/* about page Css  */

.voice____box {
	background: linear-gradient(
		135deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(100, 54, 49, 1) 0%,
		rgba(23, 19, 32, 1) 100%
	);
	padding: 30px;
	border: 1px solid #2c2836;
}
.vision-section {
	background: #130f1b;
}
.choose___detail {
	height: 165px;
}
.join-section {
	background: #130f1b;
}
.join-section .btn {
	color: #fff;
}
.about____image {
	background: var(--extra-color-6);
	overflow: hidden;
}

.about____image .animated___image {
	transform: translateX(-100%);
}
/* about page Css  */

/* playlist Modal Css  */
.playlist____modal .modal-content {
	background: #17171c;
	border: 2px solid #2a2a2e;
	border-radius: 12px;
}
.play____wrapper {
	background: #29292e;
	padding: 15px;
	border-radius: 12px;
	position: relative;
}
@media (min-width: 576px) {
	.playlist____modal .modal-dialog {
		max-width: 570px;
		margin: 1.75rem auto;
	}
}
.playlist____modal .btn-close {
	filter: brightness(0) saturate(100%) invert(59%) sepia(22%) saturate(1118%)
		hue-rotate(355deg) brightness(97%) contrast(89%);
	opacity: 1;
}
.play___btn {
	font-size: 12px;
	font-family: var(--font-inter);
	font-weight: 400;
	color: #fff;
	border-radius: 12px;
	padding: 8px 15px;
}

.share___btn {
	font-size: 12px;
	font-family: var(--font-inter);
	font-weight: 400;
	color: #fff;
	border-radius: 12px;
	padding: 8px 15px;
	background: transparent;
	border-color: #fff;
}
/* playlist Modal Css  */

/* feedback page Css  */
.feedback____wrapper {
	background: #17171c;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #2a2a2e;
}
.feedback____wrapper .upload-box {
	border-color: #fff;
	background: transparent;
}
.feedback____wrapper .form-control {
	background: #29292e;
	border-radius: 12px;
	color: #919193;
}
.feedback____wrapper .form-control::placeholder {
	color: #919193;
}
.feedback____wrapper .btn {
	border-radius: 12px;
}
/* feedback page Css  */

/* upload Modal Css  */
.contact___icon {
	background: #3a3430;
	font-size: 18px;
	width: 45px;
	height: 45px;
}
#uploadModal .visualizer {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 70px;
	padding: 25px 25px 10px;
	border-radius: 16px;
	background: #34302f;
	justify-content: center;
	margin-top: 15px;
}
#uploadModal .bar {
	width: 4px;
	background: var(--secondary-color);
	border-radius: 3px;
	height: 5px;
	transition: height 0.1s ease;
}
#uploadModal .switch {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 26px;
}
#uploadModal .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
#uploadModal .slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background-color: #17171c;
	border-radius: 50px;
	transition: 0.3s;
}
#uploadModal .slider:before {
	content: "";
	position: absolute;
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: 0.3s;
}
#uploadModal .switch input:checked + .slider {
	background: var(--secondary-color);
}
#uploadModal .switch input:checked + .slider:before {
	transform: translateX(20px);
}
@media (min-width: 576px) {
	#uploadModal .modal-dialog {
		max-width: 680px;
	}
}

/* coundown Modal Css  */
#countdownModal .coundown____wrapper {
	height: 300px;
}
.countdown____text {
	font-size: 130px;
}
/* coundown Modal Css  */

/* recording Modal Css  */
.stop____btn {
	background: #dc2828;
	color: var(--heading-color);
}

/* addplaylist Modal Css  */
.addplaylist_____wrap {
	border: 1px solid #454549;
	background: transparent;
	cursor: pointer;
}
.addplaylist_____wrap.active {
	border-color: #3b2f24;
	background: #25211f;
}
.addplaylist_____wrap.active::after {
	content: "✔";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
}
.create____btn {
	background: #282a32;
	color: var(--secondary-color);
	border-radius: 12px;
	box-shadow: none;
}
.create____btn:hover {
	background: var(--dark-color);
	color: var(--heading-color);
}
.addplay___btn___wrap .btn {
	border-radius: 12px;
}
@media (min-width: 576px) {
	.addplaylist_____modal .modal-dialog {
		max-width: 400px;
	}
}
/* addplaylist Modal Css  */

/* music Modal Css  */
.play____btn {
	width: 40px;
	height: 40px;
	font-size: 20px;
	border-radius: 50%;
	padding: 0;
}
.form-range::-webkit-slider-thumb {
	background: orange;
}
.social____btn {
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
	padding: 5px 15px;
	font-size: 12px;
	border-radius: 12px;
}
.input-group > .form-control {
	border-radius: 12px !important;
}
.rock___wrap {
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 5px 10px;
}
.audio____detail {
	height: fit-content;
}
#progress2 {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 10px;
	background: #4f494c;
	overflow: hidden;
}
#progress2::-webkit-slider-runnable-track {
	height: 4px;
	background: #4f494c;
	border-radius: 10px;
}
#progress2::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 14px;
	width: 14px;
	background: var(--secondary-color);
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	z-index: 2;
	box-shadow: -300px 0 0 300px var(--secondary-color);
}
/* music Modal Css  */

/* recording Modal Css  */
#recordingModal .form-control {
	background: #29292e;
	color: #98989a;
}
#recordingModal .form-control::placeholder {
	color: #98989a;
}
#recordingModal .upload-box {
	border-color: #8b8b8d;
}
.btn____transparent {
	background: transparent;
	box-shadow: none;
	border-color: #29292e;
	border-radius: 16px;
	color: var(--secondary-color);
	padding: 12px 20px;
}
#recordingModal .btn {
	border-radius: 16px;
	padding: 12px 20px;
}
.visibility___btn {
	font-size: 13px;
	font-family: var(--font-inter);
	font-weight: 500;
	color: var(--secondary-color);
	background: transparent;
	border: 1px solid var(--secondary-color);
	border-radius: 10px;
	padding: 6px 15px;
}
.visibility___btn:hover {
	background: var(--secondary-color);
	color: #25211f;
}
/* recording Modal Css  */

/* share Modal Css  */
.social__btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 1px solid var(--secondary-color);
	border-radius: 12px;
	color: var(--secondary-color);
}
.social__btn:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
}
/* share Modal Css  */

/* Tablet Responsive  */

@media (max-width: 992px) {
	.contact____form___wrapper {
		margin-top: 30px;
	}
	.airp-lay {
		margin-bottom: 0;
		margin-top: 20px;
	}
	.header-logo {
		transform: unset !important;
	}
}

@media (max-width: 768px) {
	.testi____wrapper {
		margin-bottom: 20px;
	}
	.row___reverse {
		flex-direction: column-reverse;
	}
}
/* Tablet Responsive  */

/* Mobile Responsive  */
@media (max-width: 576px) {
	.bg____wrap {
		padding: 20px;
	}
	.voice____box {
		padding: 20px;
	}
	.search-box input {
		font-size: 11px;
	}
	.search-btn {
		padding: 10px 15px;
		font-size: 12px;
	}
	.search-box i {
		margin-left: 5px;
	}
	.sign____wrapper {
		margin-bottom: 20px;
		padding: 20px;
	}
	.testi____wrapper {
		padding: 20px;
	}
	.plan___wrapper {
		padding: 20px;
	}
	.airp-lay {
		margin-bottom: 0;
	}
	.feedback____wrapper {
		padding: 20px;
	}
}
/* Mobile Responsive  */
