Feel the Beat. Live the Vibe. Dance Like Never Before.
Join Kharghar’s most loved dance studio where passion meets precision, and beginners become performers.
More Than a Dance Class – It’s a Community
At The Dance Vibes Studio, we believe in more than just teaching steps—we create an atmosphere where everyone, from toddlers to adults, can express, connect, and thrive through dance.
Guided by the passionate and patient Sudhanshu Sir, our instructors bring out the best in every student—no matter the age or experience level.
Whether you’re dancing for fun, fitness, or performance, our inclusive, energetic, and positive space will leave you hooked from the first beat.
Why Dancers Love The Dance Vibes
Energetic Vibes & Great Music
“Music’s always a banger!” – Experience the best beats that keep you moving.
For All Ages & Levels
From toddlers to seniors, everyone fits in our inclusive dance family.
Expert & Friendly Instructors
“Patient, supportive, and professional” – Learning made easy and fun.
Fun, Fitness & Community
“Didn’t even realize I was working out!” – Fitness disguised as fun.
Performance Opportunities
Events that give you the stage to shine and showcase your skills.
Practice Videos & Feedback
Take the learning home with you and improve at your own pace.
Find Your Groove – Choose a Class That Moves You
🎭 Bollywood Beats
Classic and contemporary Bollywood moves for kids and adults
🎤 Hip-Hop Flow
Street-style moves with attitude and energy
🌟 Contemporary Vibes
Expressive and fluid movements that tell a story
💪 Fitness Groove
Dance workout sessions that make fitness fun
👩👦👦 Women’s Batch
Comfortable environment for women to express and learn
🌙 Night Batch
Perfect for working professionals and late risers
Meet Sudhanshu Sir – The Heartbeat of The Dance Vibes
With years of experience and a true gift for teaching, Sudhanshu Sir is the soul of our studio. His calm, patient approach, tailored feedback, and fun-loving energy make learning dance a delightful journey.
“He taught us graceful moves in just a few days. His professionalism and flexibility are unmatched.”
What Our Students Say *(Real Stories. Real Vibes.)*
“This place makes you feel alive! Every session is filled with energy and positive vibes.”
– Priya M.“As a married woman with kids, this is my happy space. The community here is so supportive!”
– Anjali K.“From a non-dancer to loving every step—this place changed me completely. Thank you Sudhanshu Sir!”
– Rahul S.“The atmosphere is both friendly and disciplined. A rare combo that makes learning so effective!”
– Meera T.Ready to Dance With Us?
Whether you’re taking your first step or your hundredth, we’re here to guide you. Fill out the form below to book a free trial class or ask us anything!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Dance Vibes Studio - Feel the Beat. Live the Vibe.</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
/* Header */
.header {
position: fixed;
top: 0;
width: 100%;
background: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
transition: all 0.3s ease;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: #ff6b6b;
text-decoration: none;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
cursor: pointer;
}
.nav-links a:hover {
color: #ff6b6b;
}
/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dance" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dance)"/></svg>');
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero-content {
z-index: 2;
max-width: 800px;
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #fff, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: linear-gradient(45deg, #ff6b6b, #ee5a52);
color: white;
box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
/* Section Styles */
.section {
padding: 5rem 0;
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}
.highlight {
color: #ff6b6b;
}
/* About Section */
.about {
background: #f8f9fa;
}
.about-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 0 2rem;
}
.about-content p {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
/* Features Section */
.features {
padding: 5rem 2rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.feature-card h3 {
color: #333;
margin-bottom: 1rem;
}
/* Classes Section */
.classes {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.classes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
padding: 0 2rem;
}
.class-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 2rem;
border-radius: 15px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}
.class-card:hover {
transform: scale(1.05);
}
/* Instructor Section */
.instructor {
padding: 5rem 2rem;
}
.instructor-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: center;
max-width: 1000px;
margin: 0 auto;
}
.instructor-image {
width: 100%;
height: 400px;
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 6rem;
color: white;
}
/* Testimonials */
.testimonials {
background: #f8f9fa;
padding: 5rem 2rem;
}
.testimonial-carousel {
display: flex;
gap: 2rem;
overflow-x: auto;
padding: 2rem 0;
scroll-snap-type: x mandatory;
}
.testimonial-card {
min-width: 300px;
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
scroll-snap-align: start;
}
.stars {
color: #ffd700;
margin-bottom: 1rem;
}
/* Contact Section */
.contact {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 5rem 2rem;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 1rem;
border: none;
border-radius: 10px;
font-size: 1rem;
background: rgba(255, 255, 255, 0.1);
color: white;
backdrop-filter: blur(10px);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255, 255, 255, 0.7);
}
/* Footer */
.footer {
background: #333;
color: white;
text-align: center;
padding: 3rem 0;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.footer-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #ff6b6b;
}
.social-icons {
display: flex;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.social-icon {
width: 50px;
height: 50px;
background: #ff6b6b;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
font-size: 1.5rem;
transition: transform 0.3s ease;
}
.social-icon:hover {
transform: scale(1.1);
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.instructor-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-links {
flex-direction: column;
gap: 1rem;
}
}
/* Scroll animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<nav class="nav">
<a href="#home" class="logo">🕺 Dance Vibes</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#classes">Classes</a></li>
<li><a href="#instructor">Instructor</a></li>
<li><a href="#testimonials">Reviews</a></li>
<li><a href="#contact">Join Us</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h1>Feel the Beat. Live the Vibe. Dance Like Never Before.</h1>
<p>Join Kharghar's most loved dance studio where passion meets precision, and beginners become performers.</p>
<div class="cta-buttons">
<a href="#contact" class="btn btn-primary">Try a Free Class</a>
<a href="#classes" class="btn btn-secondary">Explore Our Batches</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about section">
<div class="about-content fade-in">
<h2 class="section-title">More Than a Dance Class – It's a <span class="highlight">Community</span></h2>
<p>At <strong>The Dance Vibes Studio</strong>, we believe in more than just teaching steps—we create an atmosphere where everyone, from toddlers to adults, can express, connect, and thrive through dance.</p>
<p>Guided by the passionate and patient <strong>Sudhanshu Sir</strong>, our instructors bring out the best in every student—no matter the age or experience level.</p>
<p>Whether you're dancing for fun, fitness, or performance, our inclusive, energetic, and positive space will leave you hooked from the first beat.</p>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="section">
<h2 class="section-title fade-in">Why Dancers Love <span class="highlight">The Dance Vibes</span></h2>
<div class="features-grid">
<div class="feature-card fade-in">
<div class="feature-icon">🎵</div>
<h3>Energetic Vibes & Great Music</h3>
<p>"Music's always a banger!" - Experience the best beats that keep you moving.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">💃</div>
<h3>For All Ages & Levels</h3>
<p>From toddlers to seniors, everyone fits in our inclusive dance family.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">👨🏫</div>
<h3>Expert & Friendly Instructors</h3>
<p>"Patient, supportive, and professional" - Learning made easy and fun.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">👯♀️</div>
<h3>Fun, Fitness & Community</h3>
<p>"Didn't even realize I was working out!" - Fitness disguised as fun.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">🎤</div>
<h3>Performance Opportunities</h3>
<p>Events that give you the stage to shine and showcase your skills.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">📹</div>
<h3>Practice Videos & Feedback</h3>
<p>Take the learning home with you and improve at your own pace.</p>
</div>
</div>
</div>
</section>
<!-- Classes Section -->
<section id="classes" class="classes">
<div class="section">
<h2 class="section-title fade-in">Find Your Groove – Choose a Class That <span style="color: #ffd700;">Moves You</span></h2>
<div class="classes-grid">
<div class="class-card fade-in">
<h3>🎭 Bollywood Beats</h3>
<p>Classic and contemporary Bollywood moves for kids and adults</p>
</div>
<div class="class-card fade-in">
<h3>🎤 Hip-Hop Flow</h3>
<p>Street-style moves with attitude and energy</p>
</div>
<div class="class-card fade-in">
<h3>🌟 Contemporary Vibes</h3>
<p>Expressive and fluid movements that tell a story</p>
</div>
<div class="class-card fade-in">
<h3>💪 Fitness Groove</h3>
<p>Dance workout sessions that make fitness fun</p>
</div>
<div class="class-card fade-in">
<h3>👩👦👦 Women's Batch</h3>
<p>Comfortable environment for women to express and learn</p>
</div>
<div class="class-card fade-in">
<h3>🌙 Night Batch</h3>
<p>Perfect for working professionals and late risers</p>
</div>
</div>
<div style="text-align: center; margin-top: 2rem; font-style: italic; font-size: 1.2rem;">
"Mother and son both learning together? That's what we call true dance vibes."
</div>
</div>
</section>
<!-- Instructor Section -->
<section id="instructor" class="instructor">
<div class="instructor-content fade-in">
<div class="instructor-image">
👨🏫
</div>
<div>
<h2 class="section-title" style="text-align: left;">Meet <span class="highlight">Sudhanshu Sir</span> – The Heartbeat of The Dance Vibes</h2>
<p style="font-size: 1.2rem; line-height: 1.8; margin-bottom: 1.5rem;">
With years of experience and a true gift for teaching, Sudhanshu Sir is the soul of our studio. His calm, patient approach, tailored feedback, and fun-loving energy make learning dance a delightful journey.
</p>
<blockquote style="font-style: italic; font-size: 1.1rem; color: #666; border-left: 4px solid #ff6b6b; padding-left: 1rem;">
"He taught us graceful moves in just a few days. His professionalism and flexibility are unmatched."
</blockquote>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials">
<div class="section">
<h2 class="section-title fade-in">What Our Students Say <span class="highlight">*(Real Stories. Real Vibes.)*</span></h2>
<div class="testimonial-carousel">
<div class="testimonial-card fade-in">
<div class="stars">⭐⭐⭐⭐⭐</div>
<p>"This place makes you feel alive! Every session is filled with energy and positive vibes."</p>
<strong>- Priya M.</strong>
</div>
<div class="testimonial-card fade-in">
<div class="stars">⭐⭐⭐⭐⭐</div>
<p>"As a married woman with kids, this is my happy space. The community here is so supportive!"</p>
<strong>- Anjali K.</strong>
</div>
<div class="testimonial-card fade-in">
<div class="stars">⭐⭐⭐⭐⭐</div>
<p>"From a non-dancer to loving every step—this place changed me completely. Thank you Sudhanshu Sir!"</p>
<strong>- Rahul S.</strong>
</div>
<div class="testimonial-card fade-in">
<div class="stars">⭐⭐⭐⭐⭐</div>
<p>"The atmosphere is both friendly and disciplined. A rare combo that makes learning so effective!"</p>
<strong>- Meera T.</strong>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="section">
<h2 class="section-title fade-in">Ready to <span style="color: #ffd700;">Dance With Us?</span></h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 3rem;">Whether you're taking your first step or your hundredth, we're here to guide you. Fill out the form below to book a free trial class or ask us anything!</p>
<form class="contact-form fade-in">
<div class="form-group">
<input type="text" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="number" placeholder="Age" required>
</div>
<div class="form-group">
<input type="email" placeholder="Email Address" required>
</div>
<div class="form-group">
<select required>
<option value="">Preferred Time Slot</option>
<option value="morning">Morning (6AM - 10AM)</option>
<option value="afternoon">Afternoon (2PM - 6PM)</option>
<option value="evening">Evening (6PM - 9PM)</option>
<option value="night">Night Batch (9PM - 11PM)</option>
</select>
</div>
<div class="form-group">
<textarea placeholder="Tell us about your dance goals or any questions..." rows="4"></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">Let's Dance 🎶</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-links">
<a href="#about">About</a>
<a href="#classes">Classes</a>
<a href="#instructor">Instructor</a>
<a href="#testimonials">Reviews</a>
<a href="#contact">Contact</a>
</div>
<div class="social-icons">
<a href="#" class="social-icon">📷</a>
<a href="#" class="social-icon">🎥</a>
<a href="#" class="social-icon">📘</a>
<a href="#" class="social-icon">💬</a>
</div>
<div>
<p><strong>📍 Studio Address:</strong> Sector 21, Kharghar, Navi Mumbai</p>
<p><strong>📞 Phone:</strong> [Insert Number] | <strong>✉️ Email:</strong> [Insert Email]</p>
<p style="margin-top: 2rem; opacity: 0.7;">© 2025 The Dance Vibes Studio. All rights reserved. Made with ❤️ for dancers.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Scroll animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
document.querySelectorAll('.fade-in').forEach(el => {
observer.observe(el);
});
// Header background on scroll
window.addEventListener('scroll', () => {
const header = document.querySelector('.header');
if (window.scrollY > 100) {
header.style.background = 'rgba(0, 0, 0, 0.95)';
} else {
header.style.background = 'rgba(0, 0, 0, 0.9)';
}
});
// Form submission
document.querySelector('.contact-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your interest! We\'ll contact you soon to schedule your free trial class. 🕺💃');
this.reset();
});
// Add some interactive hover effects
document.querySelectorAll('.feature-card, .class-card, .testimonial-card').forEach(card => {
card.addEventListener('mouseenter', function() {
this.style.transform = this.classList.contains('class-card') ? 'scale(1.05)' : 'translateY(-10px)';
this.style.boxShadow = '0 20px 40px rgba(0, 0, 0, 0.15)';
});
card.addEventListener('mouseleave', function() {
this.style.transform = this.classList.contains('class-card') ? 'scale(1)' : 'translateY(0)';
this.style.boxShadow = this.classList.contains('testimonial-card') || this.classList.contains('feature-card')
? '0 10px 30px rgba(0, 0, 0, 0.1)' : '';
});
});
</script>
</body>
</html>