/* ===========================
   Utility Classes
   =========================== */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.font-light { font-weight: 300; }
.font-bold { font-weight: 700; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-sm { font-size: 0.875rem; }
.bg-surface { background-color: var(--clr-bg-surface); }
.rounded { border-radius: var(--radius-lg); overflow: hidden; }

/* Flex & Grid Helpers */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.align-center { align-items: center; }

/* ===========================
   Grid Column Definitions
   =========================== */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* ===========================
   Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand:hover { color: inherit; }
.brand-icon {
  color: var(--clr-primary);
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}
.nav-links a:hover {
  opacity: 1;
  color: var(--clr-primary);
}
.nav-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1010;
}

/* ===========================
   Sections
   =========================== */
.section {
  padding: var(--spacing-xl) 0;
}

/* Eyebrow (global — works both inside and outside .section-header) */
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
  margin-top: 1.5rem;
  border-radius: 2px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--clr-bg-main);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/founder-banner.png');
  background-size: cover;
  background-position: center right;
  transform: scale(1.05);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 40%);
  z-index: 1;
}

/* Split screen hero container styles */
.hero-container-split {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-text-side {
  text-align: left;
}
.hero-text-side h1 {
  line-height: 1.15;
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.hero-subtitle-split {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-ctas-split {
  display: flex;
  gap: 1.5rem;
}
.hero-ctas-split .btn-outline {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Absolute side positioning for the large portrait image */
.hero-image-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.founder-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% bottom;
  vertical-align: bottom;
  display: block;
  filter: drop-shadow(-10px 10px 30px rgba(0,0,0,0.5));
  transform: scale(1.15);
  transform-origin: right center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  /* Smooth horizontal and vertical gradient mask for perfect blending */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%), linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 20%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%), linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 20%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--clr-text-muted);
  border-radius: 13px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  height: 6px;
  background-color: var(--clr-primary);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Above-the-fold entrance animations (Load Animations) */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .reveal-left {
  opacity: 0;
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero .reveal-left.delay-1 {
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
.hero .reveal-left.delay-2 {
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero-image-side.reveal-right {
  opacity: 0;
  animation: slideInRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Media Queries for responsive split design */
@media (max-width: 992px) {
  .hero-image-side {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative; /* ensure absolute children stay within */
  }
  .hero-bg {
    background-size: 250% auto;
    background-position: 82% top;
    background-repeat: no-repeat;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(17,17,17,0) 0%, rgba(17,17,17,0.8) 40%, rgba(17,17,17,1) 75%);
  }
  .scroll-indicator {
    display: none;
  }
  .hero-container-split {
    padding-top: 100px;
    padding-bottom: 40px;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .google-rating-badge {
    padding: 4px 12px 4px 4px !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    width: max-content !important;
    align-self: center !important;
  }
  .google-rating-badge div {
    font-size: 0.85rem !important;
    padding: 3px 8px !important;
  }
  .google-rating-badge span {
    font-size: 0.8rem !important;
  }
  .hero-container-split {
    justify-content: flex-start;
    min-height: 100vh;
  }
  .hero-text-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(32vh + 8px);
  }
  .hero-text-side h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
  }
  .hero-subtitle-split {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 0;
  }
  .hero-ctas-split {
    position: relative;
    width: 100%;
    margin-top: 8px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
  }
  .hero-ctas-split .btn {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem 2rem;
  }
  .hero-image-side {
    position: relative;
    width: 100%;
    height: 48vh;
    margin-top: 2rem;
    order: 2;
  }
  .founder-img {
    object-fit: contain;
    object-position: center bottom;
  }
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ===========================
   Philosophy Section
   =========================== */
.philosophy {
  overflow: hidden;
}
.image-stack {
  position: relative;
}
.image-stack .main-img {
  width: 100%;
  object-fit: cover;
}
.stats-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 3;
}
.stats-card h3 {
  font-size: 2.75rem;
  line-height: 1;
}
.stats-card p {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: var(--clr-text-muted);
}
.philosophy-text p {
  margin-top: 1.5rem;
  line-height: 1.8;
}
.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85) !important;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-top: 2rem;
}
.link-arrow:hover { color: var(--clr-primary); }
.link-arrow i {
  transition: transform var(--transition-fast);
}
.link-arrow:hover i {
  transform: translateX(6px);
}

/* ===========================
   Classes Section
   =========================== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.class-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}
.class-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-gold);
  box-shadow: 0 20px 60px rgba(244, 196, 0, 0.08);
}
.card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  overflow: hidden;
}
.class-card:hover .card-img {
  transform: scale(1.08);
}
.card-content {
  padding: 1.5rem 2rem 2rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, var(--clr-bg-main) 50%, transparent 100%);
  margin-top: -80px;
}
.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.footer-col-middle {
  display: flex;
  justify-content: center;
}
.footer-col-last {
  display: flex;
  justify-content: flex-end;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-footer span {
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* ===========================
   Live Performances Section
   =========================== */
.performances {
  overflow: hidden;
}
.perf-visuals {
  position: relative;
}
.perf-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.perf-image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.event-tag {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after {
  background: rgba(17,17,17,0.3);
}

/* ===========================
   Testimonial Section
   =========================== */
.testimonial-section {
  background: linear-gradient(135deg, var(--clr-bg-main) 0%, var(--clr-bg-surface) 100%);
  position: relative;
}
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}
.quote-icon {
  font-size: 4rem;
  color: var(--clr-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.testimonial-author {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--clr-primary);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #e0b000 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--clr-bg-main);
}
.cta-banner p {
  color: rgba(17,17,17,0.7);
  max-width: 500px;
  margin: 1rem auto 2rem;
}
.cta-banner .btn {
  background: var(--clr-bg-main);
  color: var(--clr-primary);
}
.cta-banner .btn:hover {
  background: var(--clr-bg-surface);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===========================
   Contact & Footer
   =========================== */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--clr-primary);
}
.contact-form {
  padding: 2.5rem 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-muted);
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: rgba(255,255,255,0.08);
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--clr-primary);
  font-size: 0.85rem;
}
select {
  appearance: none;
  -webkit-appearance: none;
}
select option {
  background: var(--clr-bg-main);
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--clr-border);
}
.footer-bottom .brand {
  font-size: 1.2rem;
}
.socials {
  display: flex;
  gap: 1.5rem;
}
.socials a {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.socials a:hover {
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* ===========================
   Animations
   =========================== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-12px) translateX(-50%); }
  60% { transform: translateY(-6px) translateX(-50%); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===========================
   Mobile Menu Overlay
   =========================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
  transition: color var(--transition-fast);
}
.mobile-menu-overlay a:hover {
  color: var(--clr-primary);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ===========================
   Responsive — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {
    grid-column: span 12;
  }
  .col-offset-1 {
    grid-column: span 12;
  }
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card {
    right: 1rem;
    bottom: -1rem;
  }
  .event-tag {
    left: 1rem;
    bottom: 1rem;
  }
  .image-stack {
    margin-bottom: 4rem;
  }
  .perf-visuals {
    margin-bottom: 3rem;
  }
  .performances .grid-12 {
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    padding: 2rem;
  }
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .section {
    padding: 4rem 0;
  }
  .classes-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
  .cta-banner {
    padding: 3rem 0;
  }
}

/* ===========================
   Page Hero (Inner Pages)
   =========================== */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--clr-bg-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}
.page-hero .eyebrow {
  margin-bottom: 1rem;
}
.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Page hero with background image */
.page-hero-bg {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.7) 0%,
    rgba(17, 17, 17, 0.85) 100%
  );
}
.page-hero-bg .hero-content {
  position: relative;
  z-index: 2;
}

/* ===========================
   Active Nav Link
   =========================== */
.nav-links a.active {
  color: var(--clr-primary);
  opacity: 1;
}

/* ===========================
   Feature/Value Grid (Philosophy, etc.)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  padding: 2.5rem;
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-gold);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================
   Expanded Classes Page
   =========================== */
.class-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: border-color var(--transition-smooth);
}
.class-detail-card:hover {
  border-color: var(--clr-border-gold);
}
.class-detail-img {
  min-height: 350px;
  background-size: cover;
  background-position: center;
}
.class-detail-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.class-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.class-detail-content .subtitle {
  color: var(--clr-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.class-detail-content p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.class-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.class-detail-content ul li {
  color: var(--clr-text-muted);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.class-detail-content ul li::before {
  content: '♪';
  color: var(--clr-primary);
  position: absolute;
  left: 0;
}

/* Alternate layout: image on right */
.class-detail-card.reverse {
  direction: rtl;
}
.class-detail-card.reverse > * {
  direction: ltr;
}

/* ===========================
   Events Page — Service Cards
   =========================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-gold);
}
.service-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.service-card-content {
  padding: 2rem;
}
.service-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.service-card-content p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================
   Gallery Page — Expanded
   =========================== */
.gallery-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-grid-large .gallery-item {
  aspect-ratio: 4/3;
}
.gallery-grid-large .gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid-large .gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* ===========================
   Contact Page — Full Width
   =========================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-hours {
  margin-top: 2rem;
  padding: 2rem;
}
.contact-hours h4 {
  margin-bottom: 1rem;
  color: var(--clr-primary);
}
.contact-hours table {
  width: 100%;
  border-collapse: collapse;
}
.contact-hours td {
  padding: 0.5rem 0;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--clr-border);
}
.contact-hours td:last-child {
  text-align: right;
}

/* ===========================
   Footer for multi-page
   =========================== */
.footer {
  background: var(--clr-bg-main);
  padding: 3rem 0;
  border-top: 1px solid var(--clr-border);
}

/* ===========================
   Responsive — Inner pages
   =========================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .class-detail-card {
    grid-template-columns: 1fr;
  }
  .class-detail-img {
    min-height: 280px;
  }
  .class-detail-card.reverse {
    direction: ltr;
  }
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid-large .gallery-item.tall,
  .gallery-grid-large .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 0 3rem;
  }
  .page-hero-bg {
    padding: 9rem 0 4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }
  .class-detail-content {
    padding: 2rem;
  }
}

/* ===========================
   WhatsApp Floating Action Button
   =========================== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 1000;
  transition: transform var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.whatsapp-fab:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #1ebd5a;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

/* ===========================
   Piano Floating Action Button
   =========================== */
.piano-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border-gold);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  animation: pulse-piano 2.5s infinite;
  overflow: hidden;
}
.piano-fab i {
  color: var(--clr-primary);
  font-size: 28px;
}
.piano-fab:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--clr-primary);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.4);
}
@keyframes pulse-piano {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 196, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(244, 196, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 196, 0, 0);
  }
}

/* ===========================
   Interactive Piano Modal
   =========================== */
.piano-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.piano-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.piano-modal {
  width: 90%;
  max-width: 600px;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.piano-modal-overlay.active .piano-modal {
  transform: scale(1);
}
.piano-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.piano-modal-close:hover {
  color: var(--clr-primary);
}

.piano-panel {
  display: none;
}
.piano-panel.active {
  display: block;
}

/* Playable Piano UI */
.piano-keyboard-container {
  margin-top: 1.5rem;
}
.piano-keyboard {
  position: relative;
  height: 220px;
  width: 100%;
  max-width: 480px;
  margin: 1.5rem auto 1rem;
  display: flex;
  background: #1e1e1e;
  padding: 12px 6px 6px;
  border-radius: 8px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.piano-key {
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 12px;
  transition: background-color 0.05s, transform 0.05s, box-shadow 0.05s;
}
.piano-key.white {
  flex: 1;
  height: 100%;
  background: linear-gradient(to bottom, #ffffff 0%, #eaeaea 100%);
  border: 1px solid #111;
  border-radius: 0 0 5px 5px;
  color: #333;
  margin: 0 1px;
  z-index: 1;
  box-shadow: 0 3px 5px rgba(0,0,0,0.3);
}
.piano-key.white:hover {
  background: linear-gradient(to bottom, #ffffff 0%, #d5d5d5 100%);
}
.piano-key.white.pressed {
  background: linear-gradient(to bottom, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-bg-main);
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.piano-key.black {
  position: absolute;
  width: 8%;
  height: 60%;
  background: linear-gradient(to bottom, #2d2d2d 0%, #0c0c0c 100%);
  border: 1px solid #000;
  border-top: none;
  border-radius: 0 0 3px 3px;
  color: #fff;
  z-index: 2;
  box-shadow: 0 3px 5px rgba(0,0,0,0.5);
}
.piano-key.black:hover {
  background: linear-gradient(to bottom, #3d3d3d 0%, #151515 100%);
}
.piano-key.black.pressed {
  background: linear-gradient(to bottom, var(--clr-primary-dark) 0%, #9e7b00 100%);
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Positioning for 5 black keys across 8 white keys (C, D, E, F, G, A, B, C) */
.piano-key.black[data-note="C#4"] { left: 9.5%; }
.piano-key.black[data-note="D#4"] { left: 21%; }
.piano-key.black[data-note="F#4"] { left: 47%; }
.piano-key.black[data-note="G#4"] { left: 59.5%; }
.piano-key.black[data-note="A#4"] { left: 72%; }

/* Key labels */
.key-note {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.key-letter {
  font-size: 0.65rem;
  opacity: 0.6;
  font-weight: 600;
}
.piano-key.white .key-letter {
  color: #777;
}
.piano-key.black .key-letter {
  color: #888;
}
.piano-key.white.pressed .key-letter {
  color: rgba(17, 17, 17, 0.6);
}

.piano-instructions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}
.piano-instructions p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--clr-text-muted);
}
.piano-instructions strong {
  color: var(--clr-primary);
}

@media (max-width: 768px) {
  .piano-fab {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
  .piano-fab i {
    font-size: 18px;
  }
  .piano-modal {
    padding: 2rem 1.2rem;
  }
  .piano-keyboard {
    height: 180px;
  }
  .key-note {
    font-size: 0.75rem;
  }
  .key-letter {
    display: none; /* Hide computer keys on small screens */
  }
}

.italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 768px) {
  .brand-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-col-middle,
  .footer-col-last {
    justify-content: flex-start;
  }
}

/* BENTO GALLERY GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    padding: 2rem 0;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--clr-surface);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .bento-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    .bento-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* ===== WHATSAPP MODAL ===== */
.whatsapp-fab {
    border: none;
    cursor: pointer;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    text-decoration: none;
}
.whatsapp-fab::before {
    content: "+91 9585196713";
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: var(--font-primary);
}
.whatsapp-fab:hover {
    transform: scale(1.1);
}
.whatsapp-fab:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.wa-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.wa-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.wa-modal {
    background: #111111;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.wa-modal-overlay.active .wa-modal {
    transform: translateY(0) scale(1);
}
.wa-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0,0,0,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}
.wa-modal-close:hover {
    background: rgba(0,0,0,0.5);
    color: white;
    transform: rotate(90deg);
}
.wa-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.wa-modal-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}
.wa-modal-header i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.wa-modal-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: white;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.wa-modal-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
    margin-top: 5px;
}
.wa-modal-body {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}
/* Scrollbar for modal body */
.wa-modal-body::-webkit-scrollbar {
    width: 6px;
}
.wa-modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.wa-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}
.wa-modal-body input, 
.wa-modal-body select, 
.wa-modal-body textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.wa-modal-body textarea {
    resize: vertical;
    min-height: 120px;
}
.wa-modal-body input:focus, 
.wa-modal-body select:focus, 
.wa-modal-body textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(244, 196, 0, 0.1); /* Primary color glow */
}

@media (max-width: 768px) {
    .whatsapp-fab {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animation for Talent Word Looping */
.animated-word-container {
  position: relative;
  display: inline-block;
}

.animated-word-container .music-icon {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--clr-primary);
  opacity: 0;
  animation: dropMusicLoop 4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.animated-word-container .the-word {
  opacity: 0;
  display: inline-block;
  animation: popWordLoop 4s infinite;
}

@keyframes dropMusicLoop {
  0% {
    top: -150px;
    opacity: 0;
    transform: translateX(-50%) rotate(-45deg) scale(1.5);
  }
  10% {
    opacity: 1;
  }
  30% {
    top: -10px;
    transform: translateX(-50%) rotate(0deg) scale(1);
    opacity: 1;
  }
  35% {
    top: 5px;
    transform: translateX(-50%) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  100% {
    top: 5px;
    opacity: 0;
  }
}

@keyframes popWordLoop {
  0%, 33% {
    opacity: 0;
    transform: scale(0.5);
  }
  36% {
    opacity: 1;
    transform: scale(1.2);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  95%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden; /* COMPLETELY prevent vertical scroll */
        scroll-snap-type: x mandatory;
        align-items: stretch; /* Ensure all cards stretch to match the tallest one */
        gap: 1.25rem;
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
        -webkit-overflow-scrolling: touch;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .testimonials-grid .testimonial-card {
        flex: 0 0 85%;
        max-width: 320px;
        min-width: 280px;
        height: auto; /* Allow height to fit content and stretch */
        min-height: min-content; /* Ensure it doesn't shrink below content */
        scroll-snap-align: start;
        scroll-margin-left: 1.5rem;
    }
    
    /* Ensure last card has space on the right when scrolled */
    .testimonials-grid::after {
        content: '';
        flex: 0 0 1px;
        margin-right: 1.5rem;
    }
    
    /* Hide scrollbar for a cleaner look */
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonials-grid {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
}

/* Google Reviews Card Hover Effects */
.google-reviews-card:hover .moving-dash {
  animation: dash-move 1s linear infinite;
  stroke: rgba(255, 255, 255, 0.8);
}
.google-reviews-card .moving-dash {
  transition: stroke 0.3s ease;
}
@keyframes dash-move {
  to {
    stroke-dashoffset: -24; /* Should match the total of stroke-dasharray (12 + 12 = 24) for seamless loop */
  }
}
.google-reviews-card:hover .google-icon-white {
  opacity: 0 !important;
}
.google-reviews-card:hover .google-icon-color {
  opacity: 1 !important;
}
