#preloader,
.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link:hover:after {
  width: 100%;
}
.btn-primary-custom,
.nav-cta-btn {
  box-shadow: 0 5px 15px rgba(255, 62, 128, 0.3);
}
.nav-cta-btn:hover,
.social-icons a:hover {
  transform: translateY(-3px);
}
.instructor-img,
footer {
  border-image: var(--gradient) 1;
}
.navbar-brand,
.widget-title,
body {
  font-family: Montserrat, sans-serif;
}
.author-social a,
.back-to-top,
.copyright,
.hero-section,
.post-hero-section,
.section-title,
.zumba-quote {
  text-align: center;
}
.classical-quote,
.jazz-quote,
.quote-text,
.testimonial-text,
.zumba-quote {
  font-style: italic;
}
.classical-feature,
.contemporary-feature,
.faq-search input,
.jazz-feature,
.last-updated,
.navbar,
.salsa-feature,
.zumba-feature {
  backdrop-filter: blur(10px);
}
:root {
  --primary: #ff3e80;
  --secondary: #ffcc00;
  --accent: #00e5ff;
  --dark: #0a0a16;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, #ff3e80 0%, #ffcc00 100%);
  --gradient-reverse: linear-gradient(135deg, #ffcc00 0%, #ff3e80 100%);
  --zumba-red: #e30a17;
  --zumba-orange: #ff6b00;
  --zumba-yellow: #ffd700;
  --zumba-green: #00b894;
  --zumba-blue: #0984e3;
  --zumba-purple: #6c5ce7;
  --zumba-pink: #fd79a8;
  --kids-pink: #ff6b8b;
  --kids-blue: #4ecdc4;
  --kids-yellow: #ffd166;
  --kids-purple: #9d4edd;
  --kids-green: #06d6a0;
  --kids-orange: #ff9e6d;
  --jazz-purple: #6b3fa0;
  --jazz-gold: #ffd700;
  --jazz-teal: #20b2aa;
  --jazz-black: #1a1a1a;
  --jazz-silver: #c0c0c0;
  --classical-gold: #d4af37;
  --classical-burgundy: #800020;
  --classical-ivory: #fffff0;
  --classical-maroon: #800000;
  --classical-navy: #000080;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--dark);
  color: var(--light);
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}
.navbar {
  background: rgba(10, 10, 22, 0.95);
  padding: 15px 0;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 22, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
body,
html {
  overflow-x: hidden;
  max-width: 100%;
}
.table-responsive {
  width: 100%;
  overflow: auto !important;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 6px;
  transition: 0.3s;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #fff !important;
}
.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero-title,
.nav-cta-btn {
  background: var(--gradient);
}
.nav-cta-btn {
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-title,
.section-title h2 {
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}
.nav-cta-btn:hover {
  box-shadow: 0 8px 20px rgba(255, 62, 128, 0.4);
}
.dancer-loader:after,
.dancer-loader:before {
  position: absolute;
  left: 35px;
  width: 10px;
  height: 50px;
  border-radius: 5px;
  transform-origin: bottom center;
  top: 0;
  content: "";
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
.dancer-loader {
  width: 80px;
  height: 80px;
  position: relative;
  animation: 2s linear infinite spin;
}
.dancer-loader:before {
  background: var(--primary);
  animation: 1s ease-in-out infinite alternate dance;
}
.dancer-loader:after {
  background: var(--accent);
  animation: 1s ease-in-out infinite alternate-reverse dance;
  transform: translateX(20px);
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dance {
  0% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay,
.hero-video {
  height: 100%;
  position: absolute;
}
.hero-video {
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}
.hero-overlay {
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 22, 0.8) 0,
    rgba(255, 62, 128, 0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 60px;
}
.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  -webkit-background-clip: text;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-primary-custom,
.btn-secondary-custom {
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light);
  opacity: 0.9;
}
.btn-primary-custom {
  background: var(--gradient);
  border: none;
  color: #fff;
  border-radius: 50px;
}
.btn-primary-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 62, 128, 0.4);
}
.instructor-card:hover,
.pricing-card:hover,
.style-card:hover {
  box-shadow: 0 15px 30px rgba(255, 62, 128, 0.2);
  transform: translateY(-10px);
}
td:hover,tr:hover{
  color: #fff !important;
  --bs-table-hover-color:#fff;
}
.btn-secondary-custom {
  background: 0 0;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
}
.btn-secondary-custom:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-5px);
}
section {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 2.8rem;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
}
.footer-links a,
.social-icons a {
  display: inline-flex;
  text-decoration: none;
}
.section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: var(--gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.instructor-card,
.style-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.schedule-table th,
.social-icons a:hover,
.style-icon {
  background: var(--gradient);
}
.style-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}
.style-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.level-badge,
.popular-badge {
  font-size: 0.8rem;
  font-weight: 600;
}
.schedule-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.schedule-table th {
  color: #fff;
  border: none;
  padding: 15px;
  font-weight: 600;
}
.schedule-table td {
  padding: 15px;
  color: #fff;
  vertical-align: middle;
}
.level-badge {
  padding: 5px 10px;
  border-radius: 20px;
}
.beginner {
  background: rgba(0, 229, 255, 0.2);
  color: var(--accent);
}
.intermediate {
  background: rgba(255, 204, 0, 0.2);
  color: var(--secondary);
}
.advanced {
  background: rgba(255, 62, 128, 0.2);
  color: var(--primary);
}
.instructor-img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-bottom: 3px solid;
}
.social-icons a {
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 350px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.contact-form .form-control,
.pricing-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
}
.bollywood-movie-clip:hover .movie-overlay,
.choreography-showcase:hover .choreography-overlay,
.gallery-item:hover .gallery-overlay,
.music-showcase-jazz:hover .music-overlay-jazz,
.music-showcase-zumba:hover .music-overlay-zumba,
.music-showcase:hover .music-overlay,
.performance-showcase:hover .performance-overlay,
.showcase-kids:hover .showcase-overlay {
  opacity: 1;
}
.testimonial-card {
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border-left: 5px solid var(--primary);
}
.testimonial-text {
  margin-bottom: 20px;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.pricing-card {
  border-radius: 15px;
  padding: 30px;
  transition: 0.3s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.popular-badge,
.price {
  background: var(--gradient);
}
.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}
.accordion-item:hover,
.blog-post-card:hover,
.floating-btn:hover,
.footer-social a:hover {
  transform: translateY(-5px);
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  color: #fff;
  padding: 5px 30px;
  transform: rotate(45deg);
}
.footer-logo,
.price {
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}
.price {
  font-size: 3rem;
  -webkit-background-clip: text;
  margin: 20px 0;
}
.contact-form .form-control {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 62, 128, 0.25);
  color: #fff;
}
.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
footer {
  background: rgba(5, 5, 15, 0.9);
  padding: 70px 0 20px;
  border-top: 3px solid;
  position: relative;
  overflow: hidden;
}
footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,62,128,0.03)"/></svg>')
    0 0 / cover;
  z-index: 0;
}
.footer-content {
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.8;
}
.footer-heading {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.contact-info{background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;padding: 25px;}

.contact-info-footer p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  align-items: center;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.footer-links a i {
  font-size: 0.9rem;
  width: 20px;
  margin-right: 8px;
}
.contact-info-footer p {
  display: flex;
  align-items: flex-start;
}
.contact-info-footer i {
  margin-right: 12px;
  margin-top: 5px;
  font-size: 1.1rem;
}
#map-section,
.footer-newsletter,
.footer-social {
  margin-top: 20px;
}
.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form button {
  background: var(--gradient);
  border: none;
  color: #fff;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}
.floating-btn,
.footer-social a {
  border-radius: 50%;
  transition: 0.3s;
}
.newsletter-form button:hover {
  background: var(--gradient-reverse);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
}
.copyright {
  color: rgba(255, 255, 255, 0.6);
}
.copyright a {
  color: var(--accent);
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gradient);
}
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floating-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}
.blog-post-card,
.newsletter-form-large .input-group,
.sidebar-widget {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#scrollTop {
  background: var(--gradient);
  display: none;
}
#whatsapp,
.social-icon.whatsapp {
  background: #25d366;
}
#callNow {
  background: var(--primary);
}
.modal-content {
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-title {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.blog-hero-section,
.terms-hero-section {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  overflow: hidden;
}
.blog-hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.blog-hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}
.blog-post-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}
.post-image {
  height: 300px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-post-card:hover .post-image img,
.bollywood-costume:hover,
.classical-movement:hover,
.contemporary-movement:hover,
.salsa-move:hover,
.zumba-move:hover {
  transform: scale(1.05);
}
.post-content {
  padding: 20px;
}
.post-meta,
.recent-post-date {
  font-size: 0.85rem;
  color: #fff;
}
.post-category {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.post-title,
.terms-section strong {
  color: #333;
}
.post-excerpt {
  color: #fff;
  line-height: 1.6;
}
.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.read-more:hover,
.reply-btn:hover {
  color: #764ba2;
}
.featured-post-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.featured-image img,
.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4757;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
}
.categories-list .badge,
.pagination .page-item.active .page-link,
.post-hero-section {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
}
.widget-title {
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-list li,
.contact-info-terms p,
.post-body li {
  margin-bottom: 10px;
}
.categories-list a {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}
.categories-list a:hover {
  color: #667eea;
  padding-left: 10px;
}
.categories-list .badge {
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 10px;
}
.recent-post-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.recent-post-title {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.post-body h2,
.post-title {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
}
.recent-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.alert-primary .fa-lightbulb,
.recent-post-title a:hover,
.workshop-icon {
  color: #667eea;
}
#terms-faq .accordion-button:not(.collapsed),
.newsletter-card {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: #fff;
}
.newsletter-card .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.newsletter-icon {
  font-size: 2rem;
}
.pagination .page-link {
  color: #667eea;
  border: none;
  margin: 0 5px;
  border-radius: 5px;
  transition: 0.3s;
}
.pagination .page-item.active .page-link {
  border-color: #667eea;
}
.pagination .page-link:hover {
  background: rgba(102, 126, 234, 0.1);
}
#blog-newsletter {
  padding: 60px 0;
  margin-top: 60px;
}
.newsletter-form-large .input-group {
  background: #fff;
  border-radius: 50px;
  padding: 5px;
}
.newsletter-form-large .form-control {
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
}
.newsletter-form-large .form-control:focus {
  box-shadow: none;
}
.newsletter-form-large .btn {
  border-radius: 50px;
  padding: 10px 30px;
}
.search-form .input-group {
  border-radius: 50px;
  overflow: hidden;
}
.search-form .form-control {
  border: 1px solid #ddd;
  border-right: none;
  padding: 12px 20px;
}
.search-form .form-control:focus {
  box-shadow: none;
  border-color: #667eea;
}
.quote-section,
.stretch-item {
  border-left: 4px solid #667eea;
}
.search-form .btn {
  border: 1px solid #667eea;
  padding: 0 20px;
}
.post-hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 80px;
  overflow: hidden;
}
.post-hero-section .hero-overlay,
.terms-hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.author-social a,
.tag:hover {
  background: #667eea;
  color: #fff;
}
.post-hero-section .hero-content,
.terms-hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.post-title {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;color: #fff;
}
.post-excerpt,
.terms-hero-section .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.sidebar-widget .recent-post-title a{color: #fff;}
.blog-post-card .post-title{color: #0a0a0a;font-size: 1rem;}
.blog-post-card .post-excerpt{color: #0a0a0a;font-size: 1rem;}

.post-excerpt{
  margin:0px;margin-bottom: 30px;
}
.lead,
.quote-text {
  font-size: 1.25rem;
}
.post-author {
  margin-top: 30px;
}
.author-img,
.comment-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.blog-post {
  background:rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.featured-image {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
.post-body {
  line-height: 1.8;
  color: #fff;
}
.post-body h2 {
  font-weight: 700;
  margin-top: 40px;
  color: #fff;
}
.post-body h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
}
.post-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.post-body ol,
.post-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.lead {
  font-weight: 300;
  line-height: 1.7;
}
.stretch-item {
  padding: 20px;
  background: #0a0a16;
  border-radius: 10px;
}
.stretch-item img {
  height: 250px;
  object-fit: cover;
}
.quote-section {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0,
    rgba(118, 75, 162, 0.1) 100%
  );
}
.quote-text {
  margin-bottom: 10px;
}
.quote-author {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0;
}
.key-takeaways {
  background: #0a0a16;
  border-left: 4px solid #28a745;
}
.key-takeaways h4 {
  color: #28a745;
}
.key-takeaways ul,
.terms-section ul {
  list-style: none;
  padding-left: 0;
}
.key-takeaways li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.key-takeaways li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.tag {
  display: inline-block;
  padding: 5px 15px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.author-bio,
.share-post {
  background: #0a0a16;
}
.tag:hover {
  text-decoration: none;
}
.social-share {
  display: flex;
  gap: 15px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: translateY(-3px);
  text-decoration: none;
}
.social-icon.facebook {
  background: #3b5998;
}
.social-icon.twitter {
  background: #1da1f2;
}
.social-icon.linkedin {
  background: #0077b5;
}
.social-icon.pinterest {
  background: #bd081c;
}
.author-bio {
  border-top: 3px solid #667eea;
}
.author-bio-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.author-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  transition: 0.3s;
  padding-left: 7px;
}
#post-cta,
.table th {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
}
.table{color:#fff}
.author-social a:hover {
  background: #764ba2;
  transform: translateY(-3px);
}
.comments-section {
  background:#171722;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.comment,
.comment-form {
  background: #f8f9fa;
  border-radius: 10px;
}
.comment {
  padding: 20px;
  border-left: 3px solid #667eea;
}
.comment-author {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}
.comment-text {
  margin-top: 10px;
  color: #333;
}
.reply-btn {
  color: #667eea;
  text-decoration: none;
  padding: 0;
}
.comment-form {
  padding: 30px;
}
.workshop-card {
  background:rgba(255, 255, 255, 0.05);
  border: 2px solid #667eea;
}
#related-posts {
  padding: 60px 0;
}
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: 0 0;
}
.btn-outline-light:hover {
  background: #fff;
  color: #667eea;
}
.table th {
  color: #fff;
  border: none;
}
.table td,
.table th {
  padding: 15px;
  vertical-align: middle;
}
.alert-primary {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  color: #fff;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-content {
    margin-top: 30px;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .newsletter-form button {
    border-radius: 5px;
    padding: 12px;
  }
  .blog-hero-section {
    height: 300px;
    margin-top: 70px;
  }
  .featured-image,
  .featured-post-image {
    height: 250px;
  }
  .post-image {
    height: 150px;
  }
  .newsletter-form-large .input-group {
    flex-direction: column;
    background: 0 0;
    padding: 0;
  }
  .newsletter-form-large .form-control {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .newsletter-form-large .btn {
    width: 100%;
    border-radius: 10px;
  }
  .post-hero-section {
    height: 400px;
    margin-top: 70px;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-body p,
  .post-excerpt {
    font-size: 1rem;
  }
  .blog-post {
    padding: 20px;
  }
  .author-bio-img {
    width: 80px;
    height: 80px;
  }
  .comment {
    margin-left: 0 !important;
  }
  .social-share {
    justify-content: center;
  }
  .table-responsive {
    margin-bottom: 20px;
  }
}
.terms-hero-section .hero-title {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 15px;
}
.last-updated {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
}
.terms-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.terms-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.terms-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.terms-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}
.terms-section h5 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #444;
  margin-top: 20px;
  margin-bottom: 15px;
}
.terms-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.terms-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}
.terms-section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 1.2rem;
}
.alert {
  border-radius: 10px;
  border: none;
  padding: 15px 20px;
  margin: 20px 0;
}
.alert-info {
  background: rgba(102, 126, 234, 0.1);
  color: #333;
}
.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  color: #333;
  border-left: 4px solid #ffc107;
}
.alert i {
  font-size: 1.2rem;
}
.acceptance-section {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0,
    rgba(118, 75, 162, 0.1) 100%
  );
  border: 2px solid #667eea;
}
.acceptance-section h4 {
  color: #667eea;
  margin-bottom: 10px;
}
.contact-info-terms {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}
.contact-info-terms i {
  color: #667eea;
  width: 20px;
}
#terms-links .doc-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
#terms-links .doc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.doc-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-primary {
  border: 2px solid #667eea;
  color: #667eea;
  background: 0 0;
  transition: 0.3s;
}
.btn-outline-primary:hover {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}
#terms-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
#terms-faq .accordion-button {
  background: #fff;
  color: #333;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none;
}
#terms-faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}
#terms-faq .accordion-body {
  padding: 20px;
  background: #f8f9fa;
  color: #555;
  line-height: 1.7;
}
#terms-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%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");
}
#terms-faq .accordion-button:not(.collapsed)::after,
.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='white'%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");
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .terms-hero-section {
    height: 300px;
    margin-top: 70px;
  }
  .terms-hero-section .hero-title {
    font-size: 2.2rem;
  }
  .terms-hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .terms-card {
    padding: 25px;
  }
  .terms-title {
    font-size: 1.5rem;
  }
  .doc-card {
    margin-bottom: 20px;
  }
  #terms-faq .accordion-body,
  .contact-info-terms {
    padding: 15px;
  }
  #terms-faq .accordion-button {
    padding: 15px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .post-hero-section {
    height: 350px;
  }
  .post-title,
  .terms-hero-section .hero-title {
    font-size: 1.8rem;
  }
  .featured-image,
  .stretch-item img {
    height: 200px;
  }
  .terms-hero-section {
    height: 250px;
  }
  .terms-card {
    padding: 20px;
  }
  .terms-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .text-center.mt-5 .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .text-center.mt-5 .btn:last-child {
    margin-bottom: 0;
  }
}
.terms-section h2:before {
  content: attr(data-number) ". ";
  color: #667eea;
}
.terms-section ul li strong {
  color: #444;
}
.back-to-top {
  display: block;
  margin-top: 40px;
  padding: 10px 0;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}
.back-to-top:hover {
  color: #764ba2;
  text-decoration: underline;
}
.zumba-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8))
      center/cover,
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.zumba-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(227, 10, 23, 0.3),
    rgba(255, 107, 0, 0.3),
    rgba(255, 215, 0, 0.3)
  );
  animation: 10s ease-in-out infinite alternate zumbaPulse;
}
@keyframes zumbaPulse {
  0% {
    opacity: 0.3;
  }
  100%,
  33% {
    opacity: 0.4;
  }
  66% {
    opacity: 0.5;
  }
}
.zumba-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="%23E30A17" opacity="0.1"/><circle cx="50" cy="50" r="20" fill="%23FF6B00" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  animation: 20s linear infinite patternMoveZumba;
}
@keyframes patternMoveZumba {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
.zumba-badge {
  background: linear-gradient(135deg, var(--zumba-red), var(--zumba-orange));
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 3px solid var(--zumba-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: Oswald, sans-serif;
  font-weight: 600;
}
.style-badge-zumba,
.zumba-icon,
.zumba-quote {
  color: var(--zumba-yellow);
}
.zumba-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 3px solid rgba(227, 10, 23, 0.3);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.zumba-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--zumba-red),
    var(--zumba-orange),
    var(--zumba-yellow),
    var(--zumba-green),
    var(--zumba-blue)
  );
}
.zumba-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--zumba-red);
  box-shadow: 0 20px 40px rgba(227, 10, 23, 0.3);
}
.zumba-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--zumba-red), var(--zumba-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  border: 4px solid var(--zumba-yellow);
  box-shadow: 0 0 25px rgba(227, 10, 23, 0.5);
}
.zumba-feature {
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.9),
    rgba(26, 26, 26, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--zumba-red);
  margin-bottom: 20px;
  border-right: 3px solid rgba(255, 107, 0, 0.2);
}
.zumba-quote {
  font-size: 1.3rem;
  margin: 30px 0;
  position: relative;
  font-family: Lato, sans-serif;
  font-weight: 700;
}
.zumba-quote:after,
.zumba-quote:before {
  content: "💃";
  margin: 0 15px;
  animation: 1s ease-in-out infinite alternate danceIcon;
}
@keyframes danceIcon {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.bollywood-timeline,
.contemporary-timeline,
.jazz-timeline,
.salsa-timeline,
.zumba-timeline {
  position: relative;
  padding-left: 40px;
}
.zumba-timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--zumba-red),
    var(--zumba-orange),
    var(--zumba-yellow),
    var(--zumba-green)
  );
  border-radius: 2px;
}
.timeline-item-zumba {
  position: relative;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 2px solid rgba(227, 10, 23, 0.2);
}
.timeline-item-zumba:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--zumba-red);
  border: 3px solid var(--zumba-yellow);
}
.style-badge-zumba {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(227, 10, 23, 0.1);
  border: 2px solid var(--zumba-red);
  font-weight: 600;
  font-family: Oswald, sans-serif;
}
.classical-movement,
.jazz-move,
.salsa-move,
.zumba-move {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s;
  height: 250px;
}
.zumba-cta,
.zumba-style {
  border-radius: 15px;
  text-align: center;
}
.move-overlay,
.move-overlay-zumba {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 20px;
  color: #fff;
}
.zumba-cta {
  background: linear-gradient(135deg, var(--zumba-red), var(--zumba-orange));
  padding: 60px 0;
  color: #fff;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.zumba-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><circle cx="60" cy="60" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="30" fill="rgba(255,255,255,0.1)"/></svg>')
    0 0/120px 120px;
  animation: 20s linear infinite zumbaFloat;
}
@keyframes zumbaFloat {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-120px) rotate(10deg);
  }
}
.zumba-style {
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.9),
    rgba(26, 26, 26, 0.9)
  );
  padding: 30px;
  height: 100%;
  transition: 0.3s;
  border: 2px solid rgba(227, 10, 23, 0.3);
}
.zumba-style:hover {
  transform: translateY(-5px);
  border-color: var(--zumba-red);
  box-shadow: 0 10px 20px rgba(227, 10, 23, 0.2);
}
.style-icon-zumba {
  font-size: 40px;
  color: var(--zumba-yellow);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.choreography-showcase,
.music-showcase,
.music-showcase-jazz,
.music-showcase-zumba,
.performance-showcase {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 300px;
}
.choreography-overlay,
.movie-overlay,
.music-overlay,
.music-overlay-jazz,
.music-overlay-zumba {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.zumba-stats {
  background: linear-gradient(135deg, #8b0000, #b22222);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 4px solid var(--zumba-yellow);
  position: relative;
  overflow: hidden;
}
.zumba-stats:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 215, 0, 0.1) 20px,
    rgba(255, 215, 0, 0.1) 40px
  );
  animation: 25s linear infinite slideZumba;
}
@keyframes slideZumba {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}
.stats-icon-zumba {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--zumba-red), var(--zumba-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: var(--zumba-yellow);
  border: 5px solid var(--zumba-yellow);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(227, 10, 23, 0.5);
}
.zumba-beat {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--zumba-red),
    var(--zumba-red) 10px,
    var(--zumba-orange) 10px,
    var(--zumba-orange) 20px,
    var(--zumba-yellow) 20px,
    var(--zumba-yellow) 30px
  );
  animation: 0.5s linear infinite beatZumba;
}
@keyframes beatZumba {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 30px;
  }
}
.zumba-energy {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--zumba-red) 0, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
}
.level-indicator-classical,
.level-indicator-jazz,
.level-indicator-zumba {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 15px 0;
  position: relative;
}
.level-fill-zumba {
  height: 100%;
  background: linear-gradient(90deg, var(--zumba-red), var(--zumba-orange));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.btn-zumba-primary,
.zumba-corner {
  border: 3px solid var(--zumba-yellow);
}
.level-fill-zumba:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: 2s ease-in-out infinite shineZumba;
}
@keyframes shineZumba {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.zumba-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.6;
}
.corner-tl,
.corner-tl-kids,
.corner-tl-zumba {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.corner-tr,
.corner-tr-kids,
.corner-tr-zumba {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.corner-bl,
.corner-bl-kids,
.corner-bl-zumba {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.corner-br,
.corner-br-kids,
.corner-br-zumba {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.jazz-title,
.zumba-title,
h1,
h2,
h3,
h4,
h5 {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.5px;
}
.zumba-subtitle {
  font-family: Lato, sans-serif;
  font-weight: 300;
}
.btn-zumba-primary,
.btn-zumba-secondary {
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  padding: 12px 30px;
  transition: 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-zumba-primary {
  background: linear-gradient(135deg, var(--zumba-red), var(--zumba-orange));
  color: #fff;
  border-radius: 25px;
}
.btn-zumba-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(227, 10, 23, 0.3);
}
.btn-zumba-secondary {
  background: 0 0;
  color: var(--zumba-yellow);
  border: 3px solid var(--zumba-yellow);
  border-radius: 25px;
}
.btn-zumba-secondary:hover {
  background: var(--zumba-yellow);
  color: var(--zumba-red);
  transform: scale(1.05);
}
.text-red {
  color: var(--zumba-red) !important;
}
.text-orange {
  color: var(--zumba-orange) !important;
}
.text-yellow {
  color: var(--zumba-yellow) !important;
}
.text-green {
  color: var(--zumba-green) !important;
}
.text-blue {
  color: var(--zumba-blue) !important;
}
.text-purple {
  color: var(--zumba-purple) !important;
}
.text-pink {
  color: var(--zumba-pink) !important;
}
.bg-red {
  background-color: var(--zumba-red) !important;
}
.bg-orange {
  background-color: var(--zumba-orange) !important;
}
.bg-yellow {
  background-color: var(--zumba-yellow) !important;
}
.bg-green {
  background-color: var(--zumba-green) !important;
}
.bg-blue {
  background-color: var(--zumba-blue) !important;
}
.bg-purple {
  background-color: var(--zumba-purple) !important;
}
.bg-pink {
  background-color: var(--zumba-pink) !important;
}
.bollywood-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url("https://img.freepik.com/free-vector/people-dancing-bollywood-together_23-2148476607.jpg")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
      margin-top: 60px;
}
.bollywood-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 107, 0.2),
    rgba(255, 193, 7, 0.2)
  );
}
.bollywood-badge {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid gold;
}
.bollywood-card {
  background: linear-gradient(135deg, #1a1a1a, #2a0a0a);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 2px solid #333;
  position: relative;
}
.bollywood-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, gold);
}
.bollywood-card:hover {
  transform: translateY(-10px);
  border-color: #ff416c;
  box-shadow: 0 20px 40px rgba(255, 65, 108, 0.3);
}
.bollywood-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
  border: 3px solid gold;
}
.bollywood-feature {
  background: linear-gradient(
    135deg,
    rgba(26, 0, 0, 0.8),
    rgba(42, 10, 10, 0.8)
  );
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ff416c;
  margin-bottom: 20px;
}
.bollywood-glow {
  text-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
}
.bollywood-timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff416c, #ff4b2b, gold);
}
.timeline-item-bollywood {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid gold;
}
.timeline-item-bollywood:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff416c;
  border: 3px solid gold;
}
.bollywood-costume {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s;
  height: 420px;
}
.blog-sidebar .widget-title{color: #fff;}
.blog-sidebar .categories-list a{color: #fff !important;}
.costume-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 20px;
  color: #fff;
  text-align: center;
}
.bollywood-cta {
  background: linear-gradient(135deg, #8b0000, #b22222);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.bollywood-cta:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 50px,
    rgba(255, 215, 0, 0.1) 50px,
    rgba(255, 215, 0, 0.1) 100px
  );
  animation: 20s linear infinite shine;
}
.kids-card:before,
.kids-hero:before,
.kids-pattern,
.kids-timeline:before {
  top: 0;
  position: absolute;
}
@keyframes shine {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bollywood-dance-style {
  background: linear-gradient(135deg, #2a0a0a, #1a1a1a);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
  border: 1px solid #444;
}
.bollywood-dance-style:hover {
  transform: translateY(-5px);
  border-color: #ff416c;
}
.style-icon-bollywood {
  font-size: 40px;
  color: gold;
  margin-bottom: 20px;
  display: block;
}
.bollywood-movie-clip {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bollywood-stats {
  background: linear-gradient(135deg, #1a0000, #300);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 2px solid gold;
}
.stats-icon-bollywood {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
  border: 3px solid gold;
}
.kids-hero,
.kids-icon {
  align-items: center;
  color: #fff;
}
.bollywood-garland {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    gold,
    #ff416c 10px,
    gold 20px,
    #ff4b2b 30px
  );
  z-index: 1;
}
.kids-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url("https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.kids-hero:before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 139, 0.3),
    rgba(78, 205, 196, 0.3),
    rgba(255, 209, 102, 0.3)
  );
  animation: 10s ease-in-out infinite alternate rainbowPulse;
}
@keyframes rainbowPulse {
  0% {
    opacity: 0.3;
  }
  100%,
  33% {
    opacity: 0.4;
  }
  66% {
    opacity: 0.5;
  }
}
.kids-pattern {
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23FF6B8B" opacity="0.1"/><circle cx="30" cy="30" r="15" fill="%234ECDC4" opacity="0.1"/><circle cx="70" cy="70" r="20" fill="%23FFD166" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  animation: 20s linear infinite patternFloat;
}
.kids-card,
.kids-move,
.kids-quote,
.timeline-item-kids {
  position: relative;
}
@keyframes patternFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
.kids-badge {
  background: linear-gradient(135deg, var(--kids-pink), var(--kids-purple));
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 3px dashed var(--kids-yellow);
  font-family: "Fredoka One", cursive;
  letter-spacing: 1px;
}
.age-badge,
.kids-quote {
  font-family: "Comic Neue", cursive;
}
.kids-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  border: 4px solid var(--kids-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.kids-card:before {
  content: "";
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--kids-pink),
    var(--kids-blue),
    var(--kids-yellow),
    var(--kids-green),
    var(--kids-purple)
  );
}
.kids-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--kids-pink);
  box-shadow: 0 20px 40px rgba(255, 107, 139, 0.2);
}
.kids-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--kids-pink), var(--kids-purple));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  border: 4px solid var(--kids-yellow);
  box-shadow: 0 0 20px rgba(255, 107, 139, 0.5);
}
.kids-feature,
.timeline-item-kids {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.kids-feature {
  background:rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border-left: 8px solid var(--kids-green);
  margin-bottom: 20px;
  border-right: 4px solid var(--kids-blue);
}
.kids-quote {
  font-size: 1.3rem;
  color: var(--kids-purple);
  text-align: center;
  margin: 30px 0;
  font-weight: 700;
}
.kids-quote:after,
.kids-quote:before {
  content: "★";
  margin: 0 15px;
  color: var(--kids-yellow);
  font-size: 1.5rem;
  animation: 1s ease-in-out infinite alternate starTwinkle;
}
@keyframes starTwinkle {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.classical-timeline,
.kids-timeline {
  position: relative;
  padding-left: 50px;
}
.kids-timeline:before {
  content: "";
  left: 25px;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    to bottom,
    var(--kids-pink),
    var(--kids-blue),
    var(--kids-yellow),
    var(--kids-green)
  );
  border-radius: 3px;
}
.timeline-item-kids {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 3px solid var(--kids-blue);
}
.timeline-item-kids:before {
  content: "";
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--kids-pink);
  border: 4px solid var(--kids-yellow);
}
.age-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(255, 107, 139, 0.1);
  border: 2px solid var(--kids-pink);
  color: var(--kids-pink);
  font-weight: 600;
}
.kids-cta,
.move-overlay-kids {
  color: #fff;
  text-align: center;
}
.kids-move {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s;
  height: 370px;
  border: 4px solid var(--kids-yellow);
}
.kids-cta:before,
.move-overlay-kids {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.kids-move:hover {
  transform: scale(1.05) rotate(2deg);
}
.move-overlay-kids {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
}
.kids-cta,
.showcase-kids {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.kids-cta {
  background: linear-gradient(135deg, var(--kids-pink), var(--kids-orange));
  padding: 60px 0;
  margin: 40px 0;
}
.kids-cta:before {
  content: "";
  top: 0;
  background: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path d="M60,0 L120,60 L60,120 L0,60 Z" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="30" fill="rgba(255,255,255,0.1)"/></svg>')
    0 0/120px 120px;
  animation: 15s linear infinite kidsFloat;
}
@keyframes kidsFloat {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-120px) rotate(5deg);
  }
}
.kids-program {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 3px solid var(--kids-green);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.kids-program:hover {
  transform: translateY(-5px);
  border-color: var(--kids-purple);
  box-shadow: 0 15px 30px rgba(157, 78, 221, 0.2);
}
.program-icon {
  font-size: 45px;
  color: var(--kids-blue);
  margin-bottom: 20px;
  display: block;
  text-shadow: 2px 2px 0 var(--kids-yellow);
}
.showcase-kids {
  margin-bottom: 20px;
  height: 300px;
  border: 4px solid var(--kids-yellow);
}
.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.kids-stats {
  background: linear-gradient(135deg, var(--kids-blue), var(--kids-green));
  padding: 40px 0;
  border-radius: 20px;
  margin: 40px 0;
  border: 6px dashed var(--kids-yellow);
  position: relative;
  overflow: hidden;
}
.kids-stats:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.1) 30px,
    rgba(255, 255, 255, 0.1) 60px
  );
  animation: 25s linear infinite slideKids;
}
@keyframes slideKids {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}
.stats-icon-kids {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--kids-pink), var(--kids-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #fff;
  border: 5px solid var(--kids-yellow);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(255, 107, 139, 0.5);
}
.salsa-hero,
.salsa-icon {
  align-items: center;
  color: #fff;
}
.kids-confetti {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 0;
  z-index: 1000;
}
.level-fill-kids,
.level-indicator-kids {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.level-indicator-kids {
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  margin: 15px 0;
}
.level-fill-kids {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--kids-pink),
    var(--kids-blue),
    var(--kids-yellow)
  );
}
.level-fill-kids:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: 2s ease-in-out infinite shineKids;
}
@keyframes shineKids {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.kids-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid var(--kids-yellow);
  opacity: 0.6;
}
.kids-balloon {
  position: absolute;
  width: 60px;
  height: 80px;
  background: var(--kids-pink);
  border-radius: 50%;
  animation: 8s ease-in-out infinite floatBalloon;
  opacity: 0.7;
  z-index: 1;
}
.kids-balloon:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
}
@keyframes floatBalloon {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.kids-title,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Fredoka One", cursive;
  color: #fff;
}
.fun-text,
.kids-subtitle {
  font-family: "Comic Neue", cursive;
}
.kids-subtitle {
  font-weight: 700;
}
.text-primary{    color: rgb(255 88 106) !important;}
.btn-kids-primary,
.btn-kids-secondary {
  font-family: "Fredoka One", cursive;
  font-size: 1.1rem;
  padding: 12px 30px;
  transition: 0.3s;
}
.btn-kids-primary {
  background: linear-gradient(135deg, var(--kids-pink), var(--kids-purple));
  color: #fff;
  border: 3px solid var(--kids-yellow);
  border-radius: 25px;
}
.btn-kids-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 107, 139, 0.3);
}
.btn-kids-secondary {
  background: 0 0;
  color: var(--kids-blue);
  border: 3px solid var(--kids-blue);
  border-radius: 25px;
}
.jazz-badge,
.style-badge-jazz {
  font-family: Oswald, sans-serif;
}
.btn-kids-secondary:hover {
  background: var(--kids-blue);
  color: #fff;
  transform: scale(1.05);
}
.text-pink {
  color: var(--kids-pink) !important;
}
.text-blue {
  color: var(--kids-blue) !important;
}
.text-yellow {
  color: var(--kids-yellow) !important;
}
.text-purple {
  color: var(--kids-purple) !important;
}
.text-green {
  color: var(--kids-green) !important;
}
.text-orange {
  color: var(--kids-orange) !important;
}
.bg-pink {
  background-color: var(--kids-pink) !important;
}
.bg-blue {
  background-color: var(--kids-blue) !important;
}
.bg-yellow {
  background-color: var(--kids-yellow) !important;
}
.bg-purple {
  background-color: var(--kids-purple) !important;
}
.bg-green {
  background-color: var(--kids-green) !important;
}
.bg-orange {
  background-color: var(--kids-orange) !important;
}
.salsa-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8))
      center/cover,
    url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.salsa-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(220, 38, 38, 0.3),
    rgba(234, 88, 12, 0.3)
  );
}
.salsa-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23DC2626" opacity="0.3"/></svg>');
  background-size: 100px 100px;
  animation: 20s linear infinite patternMove;
}
.salsa-badge {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.salsa-card {
  background: linear-gradient(135deg, #1a0a0a, #2a1515);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 2px solid #444;
  position: relative;
}
.salsa-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc2626, #ea580c, #fbbf24);
}
.salsa-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #dc2626;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}
.salsa-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  border: 3px solid #fbbf24;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}
.salsa-rhythm,
.stats-icon-salsa {
  align-items: center;
  position: relative;
}
.salsa-feature {
  background: linear-gradient(
    135deg,
    rgba(42, 15, 15, 0.9),
    rgba(58, 20, 20, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #dc2626;
  margin-bottom: 20px;
}
.salsa-rhythm {
  font-size: 1.2rem;
  color: #fbbf24;
  text-align: center;
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.salsa-rhythm:after,
.salsa-rhythm:before {
  content: "♫";
  margin: 0 15px;
  color: #ea580c;
  animation: 1s ease-in-out infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.salsa-timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #dc2626, #ea580c, #fbbf24);
}
.timeline-item-salsa {
  position: relative;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.timeline-item-salsa:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc2626;
  border: 3px solid #fbbf24;
}
.style-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid #dc2626;
  color: #fbbf24;
  font-weight: 500;
}
.salsa-cta,
.salsa-style {
  border-radius: 15px;
  text-align: center;
}
.salsa-cta {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  padding: 60px 0;
  color: #fff;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.salsa-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30,0 L60,30 L30,60 L0,30 Z" fill="rgba(251,191,36,0.1)"/></svg>')
    0 0/60px 60px;
  animation: 20s linear infinite diamondMove;
}
@keyframes diamondMove {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-60px) rotate(10deg);
  }
}
.salsa-style {
  background: linear-gradient(
    135deg,
    rgba(42, 15, 15, 0.9),
    rgba(58, 20, 20, 0.9)
  );
  padding: 30px;
  height: 100%;
  transition: 0.3s;
  border: 2px solid #444;
}
.salsa-style:hover {
  transform: translateY(-5px);
  border-color: #dc2626;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}
.style-icon-salsa {
  font-size: 40px;
  color: #fbbf24;
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
.salsa-stats {
  background: linear-gradient(135deg, #450a0a, #7f1d1d);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 3px solid #ea580c;
  position: relative;
  overflow: hidden;
}
.salsa-stats:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(251, 191, 36, 0.1) 10px,
    rgba(251, 191, 36, 0.1) 20px
  );
  animation: 20s linear infinite slide;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
.stats-icon-salsa {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: #fff;
  border: 4px solid #fbbf24;
  z-index: 1;
}
.partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 50%;
  color: #fff;
  margin: 0 5px;
}
.level-marker {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
.salsa-beat,
.salsa-fire {
  height: 50px;
  position: absolute;
}
.level-beginner-marker {
  background: #10b981;
}
.level-intermediate-marker {
  background: #3b82f6;
}
.level-advanced-marker {
  background: #ef4444;
}
.salsa-beat {
  bottom: 0;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    #dc2626 20px,
    #dc2626 40px,
    #fbbf24 40px,
    #fbbf24 60px,
    #ea580c 60px,
    #ea580c 80px
  );
  animation: 2s linear infinite beat;
}
@keyframes beat {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 80px;
  }
}
.salsa-fire {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background: radial-gradient(ellipse at center, #dc2626 0, transparent 70%);
  filter: blur(10px);
  animation: 1s ease-in-out infinite alternate fire;
}
@keyframes fire {
  0% {
    transform: translateX(-50%) scaleY(1);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) scaleY(1.2);
    opacity: 1;
  }
}
.contemporary-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8))
      center/cover,
    url("https://images.unsplash.com/photo-1508700929628-666bc8bd84ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
}
.contemporary-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 17, 203, 0.2),
    rgba(37, 117, 252, 0.2)
  );
  animation: 15s infinite gradientShift;
}
@keyframes gradientShift {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}
.contemporary-badge {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.contemporary-card {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.contemporary-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
}
.contemporary-card:hover {
  transform: translateY(-10px);
  border-color: #6a11cb;
  box-shadow: 0 20px 40px rgba(106, 17, 203, 0.2);
}
.contemporary-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
}
.contemporary-feature {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8),
    rgba(12, 12, 12, 0.8)
  );
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #6a11cb;
  margin-bottom: 20px;
}
.contemporary-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #a0a0ff;
  border-left: 4px solid #2575fc;
  padding-left: 20px;
  margin: 30px 0;
}
.contemporary-timeline:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
}
.timeline-item-contemporary {
  position: relative;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.timeline-item-contemporary:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #6a11cb;
  border: 3px solid #2575fc;
}
.technique-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
  background: rgba(106, 17, 203, 0.1);
  border: 1px solid #6a11cb;
  color: #a0a0ff;
}
.contemporary-movement {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.movement-overlay {
  color: #fff;
}
.contemporary-cta {
  background: linear-gradient(135deg, #0f0c29, #302b63);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.contemporary-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>')
    0 0/100px;
  animation: 20s linear infinite float;
}
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(100px);
  }
}
.contemporary-technique {
  background: linear-gradient(
    135deg,
    rgba(12, 12, 26, 0.9),
    rgba(20, 20, 40, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(106, 17, 203, 0.3);
}
.contemporary-technique:hover {
  transform: translateY(-5px);
  border-color: #6a11cb;
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}
.technique-icon {
  font-size: 40px;
  color: #6a11cb;
  margin-bottom: 20px;
  display: block;
}
.contemporary-stats {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 1px solid rgba(106, 17, 203, 0.5);
}
.stats-icon-contemporary {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
}
.flow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #6a11cb,
    #2575fc,
    transparent
  );
  animation: 3s ease-in-out infinite flow;
}
.hiphop-timeline,
.jazz-hero,
.move-demo,
.timeline-item {
  position: relative;
}
@keyframes flow {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.instructor-highlight {
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a) padding-box,
    linear-gradient(135deg, #6a11cb, #2575fc) border-box;
}
.level-indicator {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 10px 0;
}
.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border-radius: 3px;
}
@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1200px;
  }
}
.hiphop-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8))
      center/cover,
    url("https://images.unsplash.com/photo-1533038590840-1cde6e668a91?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 70px;
}
.hiphop-badge {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
}
.hiphop-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid #333;
}
.hiphop-card:hover {
  transform: translateY(-10px);
  border-color: #ff416c;
}
.hiphop-level {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
}
.level-beginner {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}
.level-intermediate {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid #2196f3;
}
.level-advanced {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}
.hiphop-stats {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 40px 0;
  border-radius: 10px;
  margin: 40px 0;
}
.stats-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.move-demo {
  overflow: hidden;
  border-radius: 10px;
}
.move-demo video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.hiphop-timeline {
  padding-left: 30px;
  border-left: 2px solid #ff416c;
}
.timeline-item {
  margin-bottom: 30px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff416c;
}
.battle-card {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 10px;
  padding: 30px;
  border: 2px solid #333;
  transition: 0.3s;
}
.battle-card:hover {
  border-color: #ff416c;
  transform: scale(1.02);
}
.hiphop-cta {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  margin: 40px 0;
}
.jazz-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8))
      center/cover,
    url("https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  margin-top: 70px;
}
.jazz-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(107, 63, 160, 0.3),
    rgba(255, 215, 0, 0.3)
  );
  animation: 10s ease-in-out infinite alternate jazzPulse;
}
@keyframes jazzPulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
.jazz-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><rect x="30" y="30" width="20" height="20" fill="%23FFD700" opacity="0.2"/></svg>');
  background-size: 80px 80px;
  animation: 20s linear infinite patternMove;
}
@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
.jazz-badge {
  background: linear-gradient(135deg, var(--jazz-purple), var(--jazz-teal));
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid var(--jazz-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.jazz-card {
  background: linear-gradient(135deg, var(--jazz-black), #2a2a2a);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
}
.jazz-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--jazz-purple),
    var(--jazz-gold),
    var(--jazz-teal)
  );
}
.jazz-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--jazz-gold);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}
.jazz-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--jazz-purple), var(--jazz-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: var(--jazz-gold);
  border: 3px solid var(--jazz-gold);
  box-shadow: 0 0 20px rgba(107, 63, 160, 0.5);
}
.jazz-quote,
.stats-icon-jazz {
  align-items: center;
  position: relative;
}
.jazz-feature {
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.9),
    rgba(26, 26, 26, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--jazz-purple);
  margin-bottom: 20px;
  border-right: 2px solid rgba(255, 215, 0, 0.2);
}
.jazz-quote {
  font-size: 1.2rem;
  color: var(--jazz-teal);
  text-align: center;
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.jazz-quote:after,
.jazz-quote:before {
  content: "♬";
  margin: 0 15px;
  color: var(--jazz-gold);
  font-size: 1.5rem;
  animation: 1s ease-in-out infinite alternate musicNote;
}
@keyframes musicNote {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
.jazz-timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--jazz-purple),
    var(--jazz-gold),
    var(--jazz-teal)
  );
}
.timeline-item-jazz {
  position: relative;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.timeline-item-jazz:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--jazz-purple);
  border: 3px solid var(--jazz-gold);
}
.style-badge-jazz {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(107, 63, 160, 0.1);
  border: 2px solid var(--jazz-purple);
  color: var(--jazz-gold);
  font-weight: 500;
}
.jazz-cta,
.jazz-style {
  border-radius: 15px;
  text-align: center;
}
.jazz-move:hover {
  transform: scale(1.05) rotate(1deg);
}
.jazz-cta {
  background: linear-gradient(135deg, indigo, #6b3fa0);
  padding: 60px 0;
  color: #fff;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.jazz-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="rgba(255,215,0,0.1)"/></svg>')
    0 0/100px 100px;
  animation: 20s linear infinite jazzMove;
}
@keyframes jazzMove {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-100px) rotate(10deg);
  }
}
.jazz-style {
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.9),
    rgba(26, 26, 26, 0.9)
  );
  padding: 30px;
  height: 100%;
  transition: 0.3s;
  border: 2px solid rgba(107, 63, 160, 0.3);
}
.jazz-style:hover {
  transform: translateY(-5px);
  border-color: var(--jazz-purple);
  box-shadow: 0 10px 20px rgba(107, 63, 160, 0.2);
}
.style-icon-jazz {
  font-size: 40px;
  color: var(--jazz-gold);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.jazz-stats {
  background: linear-gradient(135deg, #2d1b47, indigo);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 3px solid var(--jazz-gold);
  position: relative;
  overflow: hidden;
}
.jazz-stats:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 215, 0, 0.1) 20px,
    rgba(255, 215, 0, 0.1) 40px
  );
  animation: 20s linear infinite slideJazz;
}
@keyframes slideJazz {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}
.stats-icon-jazz {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--jazz-purple), var(--jazz-teal));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: var(--jazz-gold);
  border: 4px solid var(--jazz-gold);
  z-index: 1;
}
.jazz-beat {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--jazz-purple),
    var(--jazz-purple) 10px,
    var(--jazz-gold) 10px,
    var(--jazz-gold) 20px,
    var(--jazz-teal) 20px,
    var(--jazz-teal) 30px
  );
  animation: 0.5s linear infinite beat;
}
@keyframes beat {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 30px;
  }
}
.jazz-sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--jazz-gold);
  border-radius: 50%;
  opacity: 0;
}
.level-fill-jazz {
  height: 100%;
  background: linear-gradient(90deg, var(--jazz-purple), var(--jazz-teal));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.level-fill-jazz:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: 2s ease-in-out infinite slideShine;
}
@keyframes slideShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.jazz-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--jazz-gold);
  opacity: 0.5;
}
.classical-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85))
      center/cover,
    url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--classical-ivory);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.classical-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M100,0 C155.228,0 200,44.772 200,100 C200,155.228 155.228,200 100,200 C44.772,200 0,155.228 0,100 C0,44.772 44.772,0 100,0 Z M100,50 C127.614,50 150,72.386 150,100 C150,127.614 127.614,150 100,150 C72.386,150 50,127.614 50,100 C50,72.386 72.386,50 100,50 Z" fill="%23D4AF37" opacity="0.1"/></svg>')
    0 0/200px;
  animation: 30s linear infinite floatPattern;
}
@keyframes floatPattern {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-200px) rotate(5deg);
  }
}
.classical-badge {
  background: linear-gradient(135deg, var(--classical-gold), #b8860b);
  color: var(--classical-maroon);
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid var(--classical-gold);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.classical-card {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
}
.classical-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--classical-gold),
    var(--classical-burgundy),
    var(--classical-navy)
  );
}
.classical-card:hover {
  transform: translateY(-10px);
  border-color: var(--classical-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.classical-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--classical-gold), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: var(--classical-maroon);
  border: 3px solid var(--classical-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}
.classical-quote,
.tradition-badge {
  color: var(--classical-gold);
  font-family: "Playfair Display", serif;
}
.classical-feature {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9),
    rgba(10, 10, 10, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--classical-gold);
  margin-bottom: 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}
.classical-quote {
  font-size: 1.3rem;
  border-left: 4px solid var(--classical-gold);
  padding-left: 25px;
  margin: 30px 0;
  line-height: 1.6;
}
.classical-timeline:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--classical-gold),
    var(--classical-burgundy),
    var(--classical-navy)
  );
}
.timeline-item-classical {
  position: relative;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.timeline-item-classical:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--classical-gold);
  border: 3px solid var(--classical-burgundy);
}
.tradition-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--classical-gold);
  font-weight: 500;
}
.classical-cta,
.movement-overlay {
  color: var(--classical-ivory);
  text-align: center;
}
.movement-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  padding: 20px;
}
.classical-cta {
  background: linear-gradient(
    135deg,
    var(--classical-maroon),
    var(--classical-burgundy)
  );
  padding: 60px 0;
  border-radius: 15px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.classical-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path d="M60,0 L120,60 L60,120 L0,60 Z" fill="rgba(212,175,55,0.1)"/></svg>')
    0 0/120px 120px;
  animation: 20s linear infinite classicalFloat;
}
@keyframes classicalFloat {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-120px) rotate(5deg);
  }
}
.classical-tradition {
  background: linear-gradient(
    135deg,
    rgba(15, 15, 30, 0.9),
    rgba(25, 25, 40, 0.9)
  );
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 2px solid rgba(212, 175, 55, 0.3);
}
.classical-tradition:hover {
  transform: translateY(-5px);
  border-color: var(--classical-gold);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.tradition-icon {
  font-size: 40px;
  color: var(--classical-gold);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.performance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.classical-stats {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 40px 0;
  border-radius: 15px;
  margin: 40px 0;
  border: 3px solid var(--classical-gold);
  position: relative;
  overflow: hidden;
}
.classical-stats:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(212, 175, 55, 0.1) 40px,
    rgba(212, 175, 55, 0.1) 80px
  );
  animation: 30s linear infinite statSlide;
}
@keyframes statSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(80px);
  }
}
.stats-icon-classical {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--classical-gold), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: var(--classical-maroon);
  border: 4px solid var(--classical-burgundy);
  position: relative;
  z-index: 1;
}
.technique-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--classical-gold);
  border-radius: 50%;
  color: var(--classical-maroon);
  margin: 0 3px;
  font-weight: 700;
}
.level-fill-classical {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--classical-gold),
    var(--classical-burgundy)
  );
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.level-fill-classical:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: 2s ease-in-out infinite shine;
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.classical-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-image: linear-gradient(
      45deg,
      var(--classical-gold),
      var(--classical-burgundy),
      var(--classical-navy)
    )
    1;
  pointer-events: none;
}
.classical-filigree {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z M50,10 C27.909,10 10,27.909 10,50 C10,72.091 27.909,90 50,90 C72.091,90 90,72.091 90,50 C90,27.909 72.091,10 50,10 Z" fill="%23D4AF37" opacity="0.3"/></svg>')
    0 0 / contain;
  opacity: 0.5;
}
.filigree-1 {
  top: 20px;
  left: 20px;
}
.filigree-2 {
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
}
.classical-title,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}
.faq-category-title,
.faq-contact-box h3,
.faq-hero h1 {
  font-family: Montserrat, sans-serif;
}
.faq-hero {
  background: linear-gradient(
    135deg,
    rgba(106, 17, 203, 0.9) 0,
    rgba(37, 117, 252, 0.9) 100%
  );
  color: #fff;
  padding: 120px 0 80px;
  margin-top: 70px;
  text-align: center;
}
.faq-hero h1 {
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.faq-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.faq-search {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
}
.faq-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.faq-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}
.faq-section {
  padding: 80px 0;
  background-color: #333;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-category-title {
  font-weight: 700;
  color: #6a11cb;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(106, 17, 203, 0.2);
  position: relative;
}
.accordion-body,
.accordion-button {
  padding: 20px 25px;
  background-color: #fff;
}
.faq-category-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #6a11cb 0, #2575fc 100%);
}
.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.accordion-button {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: #6a11cb;
  color: #fff;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(106, 17, 203, 0.2);
}
.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%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");
  transition: transform 0.3s;
}
.accordion-body {
  color: #555;
  line-height: 1.7;
}
.accordion-body ul {
  padding-left: 20px;
}
.accordion-body li {
  margin-bottom: 8px;
}
.faq-contact-box {
  background: linear-gradient(135deg, #6a11cb 0, #2575fc 100%);
  color: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(106, 17, 203, 0.2);
}
.faq-contact-box h3 {
  margin-bottom: 20px;
}
.faq-contact-box p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.no-results i {
  font-size: 4rem;
  color: #6a11cb;
  margin-bottom: 20px;
  opacity: 0.7;
}
.faq-icon {
  color: #6a11cb;
  margin-right: 10px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2.5rem;
  }
  .faq-hero {
    padding: 100px 0 60px;
  }
  .accordion-body,
  .accordion-button {
    padding: 15px 20px;
  }
  .accordion-button {
    font-size: 1rem;
  }
  .faq-contact-box {
    padding: 30px 20px;
  }
}