/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&family=Dancing+Script:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #fff;
    color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo a{
   text-decoration: none;
   color: #000;
   font-size: 18px;
   font-weight: 600;
}
.logo img{
    height:80px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f8b400;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    padding: 10px;
    left: 0;
    background: #fff;
    min-width: 300px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1001;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu a {
    color: black;
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hide Menu Toggle in Desktop View */
.menu-toggle {
    display: none; /* Default Hidden */
}

/* Mobile & Tablet Fix for Dropdown */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
        display: none;
        padding: 10px;
        background: white;
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        display: block;
        padding: 10px;
    }

    /* Show Menu Toggle Only in Mobile & Tablet */
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}


/* Footer Section */
.footer {
    background: #000;
    color: white;
    padding: 50px 10%;
    text-align: left;
}

/* Footer Container Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Section: Logo & Social Links */
.footer-left {
    width: 30%;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f8b400;
}

/* Center Section: Quick Links */
.footer-center {
    width: 30%;
}

.footer-center h3,
.footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-center ul li a:hover {
    color: #f8b400;
}

/* Right Section: Contact Details */
.footer-right {
    width: 30%;
}

.footer-right a{
    text-decoration: none;
}

.footer-right p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-right p i {
    color: #f8b400;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        /* text-align: center; */
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        margin-bottom: 20px;
    }

}


/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/images/hero-section.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    animation: fadeIn 3s ease-in-out;
}

.hero-content p {
    font-size: 24px;
    margin: 20px 0;
}

.btn {
    background: #f8b400;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RB Dance Section */
.rb-dance {
    text-align: center;
    padding: 80px 10%;
    background: #000;
    color: white;
}

.section-title {
    font-size: 40px;
    font-family: 'Dancing Script', cursive;
}

.section-description {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Full-Screen Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Slight dim effect */
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.video-title {
    font-size: 48px;
    font-family: 'Dancing Script', cursive;
    animation: fadeIn 2s ease-in-out;
}

.video-text {
    font-size: 20px;
    margin: 10px 0;
    animation: fadeIn 3s ease-in-out;
}

.btn {
    background: #f8b400;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
    animation: fadeIn 4s ease-in-out;
}

.btn:hover {
    background: #fff;
}

/* Keyframe Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-title {
        font-size: 30px;
    }

    .video-text {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Image Gallery Section */
.image-gallery {
    padding: 80px 10%;
    background: #000;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.overlay p {
    font-size: 16px;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.gallery-item:hover .overlay h3,
.gallery-item:hover .overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .overlay h3 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* RB Dance Section */
.rb-dance-section {
    background: #000;
    color: white;
    text-align: center;
    padding: 80px 10%;
    overflow: hidden;
}

/* Container Layout */
.rb-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Box Design */
.rb-box {
    width: 22%;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Icon Wrapper */
.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: auto;
    transition: 0.3s ease-in-out;
    animation: bounceEffect 2s infinite alternate;
}

.rb-box img {
    width: 70px;
    height: 70px;
    transition: transform 0.5s ease-in-out;
}

/* Text Styling */
.rb-box h3 {
    font-size: 24px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 1s ease-in-out 0.5s forwards;
    color: #000;
}

.rb-box p {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 1s ease-in-out 0.7s forwards;
    color: #000;
}

/* Hover Effects */
.rb-box:hover {
    transform: scale(1.1);
}

.rb-box:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
}

.rb-box:hover img {
    transform: rotate(10deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceEffect {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .rb-container {
        flex-direction: column;
        align-items: center;
    }

    .rb-box {
        width: 80%;
    }
}


/* about-us page styles  */

/* Banner Section */
.rb-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('assets/images/44.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Black Transparent Overlay */
.rb-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay with opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

/* Banner Text */
.rb-banner-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out;
}

.rb-banner-text {
    font-size: 20px;
    max-width: 60%;
    line-height: 1.6;
    margin-top: 10px;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-banner-text {
        max-width: 80%;
        font-size: 18px;
    }

    .rb-banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .rb-banner-text {
        max-width: 90%;
        font-size: 16px;
    }

    .rb-banner-title {
        font-size: 32px;
    }
}

/* next section  */

/* Our Story Section */
.rb-story-section {
    background: #f9f9f9;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Story Container */
.rb-story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    gap: 50px;
}

/* Left Side: Text Content */
.rb-story-text {
    width: 50%;
    text-align: left;
    animation: fadeInLeft 1s ease-in-out;
}

.rb-story-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-story-subtitle {
    font-size: 22px;
    color: #f8b400;
    margin-bottom: 10px;
}

.rb-story-description {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
    margin-top: 10px;
}

/* Right Side: Story Image */
.rb-story-image {
    width: 50%;
    animation: fadeInRight 1s ease-in-out;
}

.rb-story-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-story-container {
        flex-direction: column;
        text-align: center;
    }

    .rb-story-text, .rb-story-image {
        width: 100%;
    }

    .rb-story-title {
        font-size: 40px;
    }

    .rb-story-subtitle {
        font-size: 20px;
    }

    .rb-story-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .rb-story-title {
        font-size: 36px;
    }

    .rb-story-subtitle {
        font-size: 18px;
    }

    .rb-story-description {
        font-size: 15px;
    }
}


/* Meet Our Team Section */
.rb-team-section {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
}

/* Section Title & Subtitle */
.rb-team-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-team-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
}

/* Team Container */
.rb-team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Instructor Card */
.rb-team-card {
    width: 250px;
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.rb-team-front,
.rb-team-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Front Side */
.rb-team-front {
    background: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rb-team-front img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.rb-team-front h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.rb-team-front p {
    font-size: 16px;
    color: #666;
}

/* Back Side */
.rb-team-back {
    background: #222;
    color: white;
    text-align: left;
    padding: 20px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rb-team-back h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f8b400;
}

.rb-team-back p {
    font-size: 16px;
    color: #ddd;
}

/* Flip Effect */
.rb-team-card:hover .rb-team-front {
    transform: rotateY(-180deg);
}

.rb-team-card:hover .rb-team-back {
    transform: rotateY(0deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-team-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .rb-team-container {
        flex-direction: column;
        align-items: center;
    }

    .rb-team-title {
        font-size: 40px;
    }

    .rb-team-subtitle {
        font-size: 18px;
    }

    .rb-team-card {
        width: 300px;
    }
}


/* Dance Styles Section */
.rb-dance-section {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
}

/* Section Title & Subtitle */
.rb-dance-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-dance-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
}

/* Dance Styles Container */
.rb-dance-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Dance Style Card */
.rb-dance-card {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

/* Hover Effect */
.rb-dance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Dance Icons */
.rb-dance-icon {
    font-size: 40px;
    color: #f8b400;
    margin-bottom: 10px;
}

/* Dance Style Title */
.rb-dance-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Dance Style Description */
.rb-dance-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Learn More Button */
.rb-dance-btn {
    display: inline-block;
    background: #f8b400;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease-in-out;
}

/* Button Hover Effect */
.rb-dance-btn:hover {
    background: #d19600;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-dance-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .rb-dance-container {
        flex-direction: column;
        align-items: center;
    }

    .rb-dance-title {
        font-size: 40px;
    }

    .rb-dance-subtitle {
        font-size: 18px;
    }

    .rb-dance-card {
        width: 90%;
    }
}

/* Student Testimonials Section */
.rb-testimonials-section {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
    position: relative;
}

/* Section Title & Subtitle */
.rb-testimonials-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-testimonials-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
}

/* Testimonials Carousel */
.rb-testimonials-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Testimonial Slide */
.rb-testimonials-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
}

/* Testimonial Text */
.rb-testimonials-text {
    font-size: 18px;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Testimonial Author */
.rb-testimonials-slide h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

/* Carousel Navigation Buttons */
.rb-prev-btn,
.rb-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.rb-prev-btn {
    left: 5%;
}

.rb-next-btn {
    right: 5%;
}

.rb-prev-btn:hover,
.rb-next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-testimonials-carousel {
        max-width: 90%;
    }

    .rb-prev-btn,
    .rb-next-btn {
        font-size: 20px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .rb-testimonials-title {
        font-size: 40px;
    }

    .rb-testimonials-subtitle {
        font-size: 18px;
    }

    .rb-prev-btn,
    .rb-next-btn {
        font-size: 18px;
        padding: 6px 10px;
    }
}
/* CTA Section */
.rb-cta-section {
    background: url('assets/images/33.jpg') no-repeat center center/cover;
    padding: 80px 10%;
    position: relative;
}

/* Dark Overlay */
.rb-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* CTA Container (Flexbox for Two Columns) */
.rb-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
    gap: 50px;
}

/* Left Column: Info */
.rb-cta-info {
    width: 50%;
    color: white;
}

.rb-cta-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
}

.rb-cta-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

/* CTA Button */
.rb-cta-btn {
    display: inline-block;
    background: #f8b400;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.rb-cta-btn:hover {
    background: #d19600;
}

/* Social Media Links */
.rb-social-links {
    margin-top: 20px;
}

.rb-social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}

.rb-social-links a:hover {
    color: #f8b400;
}

/* Right Column: Contact Form */
.rb-contact-form {
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.rb-contact-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rb-contact-form input,
.rb-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.rb-contact-form input::placeholder,
.rb-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form Button */
.rb-contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f8b400;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.rb-contact-form button:hover {
    background: #d19600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .rb-cta-info, .rb-contact-form {
        width: 100%;
    }

    .rb-cta-title {
        font-size: 40px;
    }

    .rb-cta-subtitle {
        font-size: 18px;
    }
}



/* FAQ Section */
.rb-faq-section {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
}

/* FAQ Title */
.rb-faq-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

/* FAQ Container */
.rb-faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* FAQ Question */
.rb-faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: #f8b400;
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
    border-radius: 5px;
    margin-bottom: 5px;
}

.rb-faq-question:hover {
    background: #d19600;
}

/* FAQ Answer */
.rb-faq-answer {
    display: none;
    background: white;
    padding: 10px;
    font-size: 16px;
    color: #333;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rb-faq-title {
        font-size: 40px;
    }
}


/* Events page style  */

/* Hero Banner Section */
.rb-event-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.rb-event-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rb-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.rb-event-overlay h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rb-event-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.rb-event-btn {
    background: #f8b400;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.rb-event-btn:hover {
    background: #d19600;
}

@media (max-width: 768px) {
    .rb-event-overlay h1 { font-size: 36px; }
    .rb-event-overlay p { font-size: 16px; }
}


/* Event Highlights Section */
.rb-event-highlights {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
}

/* Section Title & Subtitle */
.rb-event-highlights-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
    animation: fadeInDown 1s ease-in-out;
}

.rb-event-highlights-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
}

/* Event Highlights Grid */
.rb-event-highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Individual Highlight Card */
.rb-event-highlight {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

/* Hover Effect */
.rb-event-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Highlight Icons */
.rb-event-highlight i {
    font-size: 40px;
    color: #f8b400;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* Highlight Title */
.rb-event-highlight h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Highlight Description */
.rb-event-highlight p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-event-highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rb-event-highlights-title {
        font-size: 40px;
    }

    .rb-event-highlights-subtitle {
        font-size: 18px;
    }

    .rb-event-highlights-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Featured Performers Section */
.rb-performers-section {
    background: #f9f9f9;
    padding: 80px 10%;
    text-align: center;
}

/* Title & Subtitle */
.rb-performers-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-performers-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
}

/* Performers Grid */
.rb-performers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Individual Performer Card */
.rb-performer {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.rb-performer img {
    width: 100%;
    max-height: 350px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.rb-performer:hover img {
    transform: scale(1.1);
}

/* Performer Info (Hover Effect) */
.rb-performer-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.rb-performer:hover .rb-performer-info {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-performers-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rb-performers-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .rb-performers-title {
        font-size: 40px;
    }
}


/* Gallery Section */
.rb-gallery-section {
    background: #fff;
    padding: 80px 10%;
    text-align: center;
}

/* Title & Subtitle */
.rb-gallery-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-gallery-subtitle {
    font-size: 20px;
    color: #f8b400;
    margin-bottom: 40px;
}

/* Gallery Grid */
.rb-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

/* Individual Gallery Item */
.rb-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image & Video Styling */
.rb-gallery-item img,
.rb-gallery-item video {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Images */
.rb-gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Caption (Hover Effect) */
.rb-gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.rb-gallery-item:hover .rb-gallery-caption {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rb-gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .rb-gallery-title {
        font-size: 40px;
    }
}



/* Contact Page Banner */
.rb-contact-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('assets/images/11.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* Fixes the issue of overlapping with header */
}

/* Dark Gradient Overlay */
.rb-contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Banner Content */
.rb-contact-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Heading */
.rb-contact-banner h1 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 10px;
}

/* Subtitle */
.rb-contact-banner p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Call to Action Button */
.rb-contact-banner-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    background: #f8b400;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.rb-contact-banner-btn:hover {
    background: #222;
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

/* Fade In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-contact-banner h1 {
        font-size: 42px;
    }

    .rb-contact-banner p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .rb-contact-banner {
        height: 50vh;
        margin-top: 60px;
    }

    .rb-contact-banner h1 {
        font-size: 36px;
    }

    .rb-contact-banner p {
        font-size: 16px;
    }

    .rb-contact-banner-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}


/* Contact Split Section */
.rb-contact-split {
    background: #f9f9f9;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Split Container */
.rb-contact-split-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Left Side: Contact Form */
.rb-contact-split-form {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, #000428, #004e92);
    color: white;
}

.rb-contact-split-form h2 {
    font-size: 32px;
    font-family: 'Dancing Script', cursive;
}

.rb-contact-split-form p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact Form Inputs */
.rb-form-group {
    display: flex;
    gap: 15px;
}

.rb-contact-split-form input,
.rb-contact-split-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Textarea */
.rb-contact-split-form textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
.rb-contact-split-form button {
    padding: 14px;
    font-size: 18px;
    background: #f8b400;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.rb-contact-split-form button:hover {
    background: #222;
}

/* Right Side: Contact Information */
.rb-contact-split-info {
    flex: 1;
    padding: 50px;
    background: white;
    text-align: left;
}

.rb-contact-split-info h2 {
    font-size: 32px;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-contact-split-info p {
    font-size: 18px;
    color: #444;
    margin: 10px;
}

/* Contact Info Box */
.rb-contact-split-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rb-contact-split-box i {
    font-size: 28px;
    color: #f8b400;
}

/* Social Icons */
.rb-contact-split-social {
    margin-top: 20px;
}

.rb-contact-split-social a {
    font-size: 24px;
    color: #f8b400;
    margin-right: 15px;
    transition: 0.3s;
}

.rb-contact-split-social a:hover {
    color: #222;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rb-contact-split-container {
        flex-direction: column;
    }

    .rb-contact-split-form, .rb-contact-split-info {
        width: 100%;
        padding: 40px;
    }

    .rb-form-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .rb-contact-split {
        padding: 60px 5%;
    }

    .rb-contact-split-form h2,
    .rb-contact-split-info h2 {
        font-size: 28px;
    }

    .rb-contact-split-form p,
    .rb-contact-split-info p {
        font-size: 16px;
    }

    .rb-contact-split-social a {
        font-size: 20px;
    }
}

/* Location Map Section */
.rb-contact-map {
    text-align: center;
    padding: 80px 10%;
    background: #f9f9f9;
}

.rb-contact-map-title {
    font-size: 42px;
    font-family: 'Dancing Script', cursive;
    color: #222;
}

.rb-contact-map-subtitle {
    font-size: 18px;
    color: #f8b400;
    margin-bottom: 20px;
}

.rb-map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.rb-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}
