/* =============================================
   THE ART STUDIO - style.css
   Color Theme: Magenta/Pink (#e91e8c) + Deep Purple (#6a0080)
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --pink: #e91e8c;
  --pink-light: #ff4db8;
  --pink-dark: #c0006a;
  --purple: #6a0080;
  --purple-light: #9c27b0;
  --purple-dark: #4a0060;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gray: #555;
  --gray-light: #f5f5f8;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 4px 15px rgba(233, 30, 140, 0.12);
  --shadow-md: 0 8px 30px rgba(233, 30, 140, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.section-pad {
  padding: 90px 0;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pink);
}

.label-light {
  color: rgba(255, 255, 255, 0.7);
}

.label-light::before {
  background: rgba(255, 255, 255, 0.5);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-light {
  color: #ffb3e0;
  -webkit-text-fill-color: #ffb3e0;
}

/* ---------- TOP ANNOUNCEMENT BAR ---------- */
.top-bar {
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border-bottom: 1px solid rgba(233, 30, 140, 0.25);
  padding: 7px 0;
  position: relative;
  z-index: 1000;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s ease;
}

.top-bar-item i {
  font-size: 11px;
  color: var(--pink-light);
}

.top-bar-item:hover {
  color: var(--pink-light);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: block;
}

.top-bar-center {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  letter-spacing: 0.3px;
}

.top-bar-center strong {
  color: var(--pink-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.top-bar-social:hover {
  color: var(--pink-light);
  transform: translateY(-2px);
}

/* Top bar pe navbar ka padding adjust */
#mainNav {
  top: 0;
}

/* Hero section ka padding top bar height ke hisab se */
.hero-section {
  padding-top: calc(80px + 36px); /* navbar + top bar */
}

@media (max-width: 767px) {
  .top-bar-center {
    display: none;
  }
  .top-bar-left span {
    display: none;
  }
  .top-bar-item i {
    font-size: 13px;
  }
  .hero-section {
    padding-top: calc(70px + 34px);
  }
}

@media (max-width: 575px) {
  .top-bar-left .top-bar-item:last-child {
    display: none;
  }
  .hero-section {
    padding-top: calc(65px + 34px);
  }
}

/* ---------- NAVBAR ---------- */
#mainNav {
  background: rgba(26, 26, 46, 0.0);
  padding: 18px 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
  z-index: 999;
  border-top: 1px solid;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  width: 100%;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 10px;
  color: var(--pink-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

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

.btn-enroll {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px !important;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
  transition: var(--transition);
}

.btn-enroll:hover {
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.5);
  color: var(--white) !important;
}

.toggler-icon {
  font-size: 24px;
  color: black;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
  padding-top: 120px;
}

.hero-slide {
  position: relative;
  height: calc(92vh - 80px);
  min-height: 500px;
  max-height: 820px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide-1 {
  background-image: url('../images/g3.jfif');
}

.hero-slide-2 {
  background-image: url('../images/bg2.webp');
}

.hero-slide-3 {
  background-image: url('../images/b2.webp');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #ffb3e0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 34px;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.btn-hero {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: none;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 8px;
}

.btn-hero:hover {
  opacity: 0.88;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pink-light);
  color: var(--pink-light);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
  color: var(--pink-light);
}

.carousel-indicators {
  bottom: 24px;
  justify-content: flex-start;
  padding-left: 15px;
  margin: 0;
}

.carousel-indicators button {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--pink);
  width: 38px;
}

/* ---------- TICKER ---------- */
.ticker-strip {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- ABOUT ---------- */
.about-section {
  background: var(--white);
}

.about-img-collage {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 420px;
  border-radius: 30px 30px 30px 80px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-img-sm {
  position: absolute;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  border: 4px solid var(--white);
}

.sm-1 {
  width: 48%;
  height: 160px;
  bottom: 0;
  right: 0;
}

.sm-2 {
  width: 42%;
  height: 140px;
  bottom: 170px;
  right: 0;
}

.about-exp-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
  z-index: 2;
}

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 11px;
  opacity: 0.9;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.af-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.af-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(106, 0, 128, 0.08));
  color: var(--pink);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.af-item p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ---------- SERVICES ---------- */
.services-section {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 30, 140, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.ds-header {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 16px;
  padding: 18px 28px;
  margin-bottom: 30px;
}

.ds-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.dance-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(233, 30, 140, 0.08);
}

.dance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.dc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.dc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dance-card:hover .dc-img-wrap img {
  transform: scale(1.07);
}

.dc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent 60%);
}

.dc-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(233, 30, 140, 0.7);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.dc-body {
  padding: 22px;
}

.dc-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.dc-body p {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.dc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dc-link:hover {
  gap: 10px;
  color: var(--pink-dark);
}

/* ---------- BATCHES ---------- */
.batches-section {
  background: var(--white);
}

.batch-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.batch-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.08;
  transition: var(--transition);
}

.batch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.batch-card:hover::before {
  transform: scale(2);
}

.bc-pink {
  background: #fff0f8;
  border-color: rgba(233, 30, 140, 0.15);
}

.bc-pink::before {
  background: var(--pink);
}

.bc-purple {
  background: #f5f0ff;
  border-color: rgba(106, 0, 128, 0.15);
}

.bc-purple::before {
  background: var(--purple);
}

.bc-magenta {
  background: #fff0fc;
  border-color: rgba(220, 0, 150, 0.15);
}

.bc-magenta::before {
  background: #cc0099;
}

.bc-dark {
  background: #f0f2ff;
  border-color: rgba(26, 26, 46, 0.12);
}

.bc-dark::before {
  background: var(--dark);
}

.bc-rose {
  background: #fff5f8;
  border-color: rgba(233, 30, 140, 0.12);
}

.bc-rose::before {
  background: var(--pink-light);
}

.bc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(233, 30, 140, 0.35);
}

.bc-age-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233, 30, 140, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.batch-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.batch-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.6;
}

.bc-list {
  list-style: none;
  padding: 0;
}

.bc-list li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bc-list li i {
  color: var(--pink);
  font-size: 14px;
}

.bc-enroll {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-enroll-content {
  text-align: center;
  color: var(--white);
}

.bc-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 16px;
  padding: 8px;
}

.bc-enroll-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.bc-enroll-content h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.btn-enroll-white {
  background: var(--white);
  color: var(--pink) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-enroll-white:hover {
  background: var(--pink-light);
  color: var(--white) !important;
  transform: scale(1.05);
}

/* ---------- FITNESS ---------- */
.fitness-section {
  background: var(--gray-light);
}

.fitness-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.fitness-main-img {
  width: 100%;
  height: 480px;
  border-radius: 40px 40px 40px 100px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.fitness-badge-wrap {
  position: absolute;
  bottom: 30px;
  left: -20px;
}

.fitness-badge {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.fitness-badge i {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.fitness-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.fb-item {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid rgba(233, 30, 140, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.fb-item:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fb-icon {
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 8px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* ---------- FUSION ---------- */
.fusion-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.fusion-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.fusion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(106, 0, 128, 0.75));
  z-index: 1;
}

.fusion-section .container {
  position: relative;
  z-index: 2;
}

.fusion-section .section-title {
  color: var(--white);
}

.fusion-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.fusion-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.fusion-card:hover {
  background: rgba(233, 30, 140, 0.15);
  border-color: rgba(233, 30, 140, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.2);
}

.fusion-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}

.fusion-card h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.fusion-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.6;
}

/* ---------- YOGA ---------- */
.yoga-section {
  background: var(--white);
}

.yoga-img-wrap {
  position: relative;
  height: 480px;
}

.yoga-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.yoga-small-img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 48%;
  height: 200px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  object-fit: cover;
}

.yoga-programs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.yp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(233, 30, 140, 0.1);
  background: rgba(233, 30, 140, 0.02);
  transition: var(--transition);
}

.yp-item:hover {
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.05);
  transform: translateX(6px);
}

.yp-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(106, 0, 128, 0.08));
  color: var(--pink);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yp-content h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
}

.yp-content p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

/* ---------- WHY US ---------- */
.why-section {
  background: var(--gray-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(233, 30, 140, 0.08);
  box-shadow: var(--shadow-sm);
}

.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width 0.4s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-item:hover::after {
  width: 100%;
}

.wi-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(233, 30, 140, 0.06);
  line-height: 1;
}

.wi-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(233, 30, 140, 0.35);
}

.why-item h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 180px;
    }
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106, 0, 128, 0.9), rgba(233, 30, 140, 0.85));
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-title em {
  color: #ffb3e0;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--pink) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  background: var(--pink-light);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--gray-light);
}

.contact-info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 30, 140, 0.08);
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(233, 30, 140, 0.08);
}

.ci-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ci-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.35);
}

.ci-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

.ci-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

.ci-item a {
  color: var(--pink);
}

.ci-item a:hover {
  color: var(--pink-dark);
}

.ci-social {
  padding-top: 20px;
}

.ci-social strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn i {
  font-size: 18px;
}

.social-btn.instagram {
  background: rgba(214, 41, 118, 0.08);
  color: #d62976;
}

.social-btn.instagram:hover {
  background: #d62976;
  color: var(--white);
  transform: translateX(4px);
}

.social-btn.facebook {
  background: rgba(24, 119, 242, 0.08);
  color: #1877f2;
}

.social-btn.facebook:hover {
  background: #1877f2;
  color: var(--white);
  transform: translateX(4px);
}

.social-btn.youtube {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
}

.social-btn.youtube:hover {
  background: #ff0000;
  color: var(--white);
  transform: translateX(4px);
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 30, 140, 0.08);
}

.contact-form-box h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.custom-input {
  border: 1.5px solid rgba(233, 30, 140, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: #fafafa;
}

.custom-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
  background: var(--white);
  outline: none;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-label {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
}

.map-embed {
  line-height: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pink);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  font-size: 11px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--pink-light);
  padding-left: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact p i {
  color: var(--pink);
  margin-top: 3px;
  font-size: 14px;
  min-width: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-tagline {
  font-size: 13px;
  color: var(--pink-light);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 9000;
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.5);
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .gi-tall {
    grid-row: span 1;
  }

  .gi-wide {
    grid-column: span 1;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

.navbar-collapse{
	background-color:rgba(255, 255, 255, 0.97)
}
  .about-img-collage {
    height: 350px;
    margin-bottom: 40px;
  }

  .about-img-main {
    height: 300px;
  }

  .fitness-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .yoga-img-wrap {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 70px;
  }

  .hero-slide {
    height: calc(88vh - 70px);
  }

  .section-pad {
    padding: 55px 0;
  }

  .section-title {
    font-size: clamp(1.7rem, 5vw, 2.5rem);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .fitness-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-box,
  .contact-info-box {
    padding: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .yoga-img-wrap {
    height: 300px;
  }

  .yoga-small-img {
    display: none;
  }

  .about-img-sm.sm-2 {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding-top: 120px;
  }

  .hero-slide {
    height: calc(85vh - 65px);
    min-height: 440px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .fitness-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}
/* ========== ASSOCIATIONS SECTION ========== */
.assoc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.assoc-list li {
  color: #ccc;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.assoc-list li:last-child {
  border-bottom: none;
}
.text-pink {
  color: #e91e8c !important;
}

/* ========== WHY ART CARDS ========== */
.why-art-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  transition: 0.35s ease;
}
.why-art-card:hover {
  background: rgba(233,30,140,0.08);
  border-color: rgba(233,30,140,0.4);
  transform: translateY(-6px);
}
.wa-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(233,30,140,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.wa-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e91e8c, #6a0080);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
.why-art-card h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.why-art-card p {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ========== DANCE-STYLES-WRAP second instance spacing ========== */
.dance-styles-wrap + .dance-styles-wrap {
  margin-top: 2.5rem;
}
