/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Navbar */
/* General Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
}
.logo{
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo h1 {
    color: white;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f80;
}

/* Burger menu styles */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease;
}

/* Cross icon styles */
.burger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line:nth-child(2) {
    opacity: 0; /* Hide the middle line */
}

.burger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: rgb(35 43 73 / 96%);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    }

    /* Show the burger icon */
    .burger {
        display: flex;
    }

    /* Active nav-links styles */
    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transition: opacity 0.5s ease 0.3s;
    }

    .nav-links.active li {
        opacity: 1;
        transition-delay: 0.5s;
    }
    .nav-links li a{
        color: #ff8800;
    }
}




/* Hero Section with Parallax */
/* Hero Section */
/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
  }
  
  .slider-wrapper {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
    margin-top: 235px  ;
  }
  
  .slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
  }
  
  .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .active .slide-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-title {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6)
  }
  
  .slide-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    
  }
  
  .btn-hero {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
  }
  
  .btn-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Slider Navigation Styling */
  .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
  }
  
  .prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    font-size: 2rem;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  

  
  @media (max-width: 768px){
    .slide-content h1{
        font-size: 38px;    }
  }
  
/* Stats Section */
.stats-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}
.stats-section h1{
    font-size: 40px;
}
.counter-grid {
    display: flex;
    justify-content: space-around;
}

.counter-item {
    font-size: 20px;
}

.counter {
    font-size: 3rem;
    color: #f80;
}
@media (max-width: 768px){
    .counter-grid {
        flex-direction: column;
        justify-content: space-around;
    }
}

/* Classes Section */
/* Our Classes Section */
/* Dance Programs Section Styling */
/* Dance Programs Section Styling */
.dance-program-section {
    padding: 80px 40px;
    /* background: linear-gradient(135deg, #ff6f61, #ffcc00); */
    background-color:#21253c;
    color: white;
    text-align: center;
}

.dance-program-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dance-program-section .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f5f5f5;
}

/* Grid Layout for Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Program Card Styling */
.program-card {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: justify;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Image Styling */
.program-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.program-card:hover .program-image img {
    opacity: 0.85;
}

/* Program Info Overlay */
.program-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.program-card:hover .program-info {
    transform: translateY(0);
}

.program-info h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #f80
}

.program-info p {
    font-size: 1.2rem;
    color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-image img {
        height: 377px;
    }
}

/* Dance Packages Section */
.dance-packages-section {
    padding: 60px 0;
   background-color: #ffe301;

    /* background-color: #333333; */

    color: #333;
}

.dance-packages-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00796b;
}

.dance-packages-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #777;
}

/* Packages Container */
.pricing-section {
    background: url('./img/bg-img.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    position: relative;
}

.overlay2 {
    background-color: rgba(10, 9, 10, 0.842);
    padding: 160px 0;
    text-align: center;
    z-index: 100;
}

.header h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.header p {
    font-size: 50px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 40px;
    text-decoration: underline;
    text-transform: uppercase;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping of cards on smaller screens */
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    width: 250px;
    text-align: center;
    border-left: 1px solid #ddd;
    border-top: 2px solid #ddd;
    position: relative;
}

.pricing-card h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.pricing-card h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.pricing-card h2 span {
    font-size:35px;
    color: #000000;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card button {
    background-color: transparent;
    border: 2px solid #000;
    padding: 10px 20px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .header h2 {
        font-size: 32px;
    }

    .header p {
        font-size: 36px;
    }

    .pricing-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .header h2 {
        font-size: 28px;
    }

    .header p {
        font-size: 28px;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }
    .pricing-card p{
font-size: 20px;
    }
    .pricing-card h2{
        font-size: 25px;
    }
}

    .dance-styles {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 40px 0;
        text-align: center;
    }

    .style-item {
        width: 20%;
        padding: 20px;
    }

    .style-item img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .style-item h2 {
        font-size: 36px;
        color: #000;
        margin-bottom: 10px;
    }

    .style-item p {
        color: #666;
        font-size: 16px;
        line-height: 1.5;
    }

    .style-item h2 {
        position: relative;
        padding-bottom: 5px;
    }

    .style-item h2::after {
        content: "";
        width: 50px;
        height: 2px;
        background-color: #7209b7;
        display: block;
        margin: 0 auto;
    }
    @media (max-width: 1024px) {
        .dance-styles {
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            margin: 40px 0;
            text-align: center;
        }
        .style-item {
            width: 45%;
            padding: 15px;
        }
        
        .style-item h2 {
            font-size: 30px;
        }
        
        .style-item img {
            width: 70px;
            height: 70px;
        }
    }
    
    @media (max-width: 768px) {
        .style-item {
            width: 100%; /* Full width for small screens */
            padding: 10px;
        }
        
        .style-item h2 {
            font-size: 24px;
        }
        
        .style-item img {
            width: 60px;
            height: 60px;
        }
        
        .style-item p {
            font-size: 14px;
        }
    }
    
    /* #container15 {
height: 200px;
} */

.imgs {
/* background:white; */
border-radius: 100%;
width: 50px;
height: 50px;
margin: auto;
margin-top: 50px;
cursor: pointer;
-webkit-animation: float-down 1s infinite alternate;
-moz-animation: float-down 1s infinite alternate;
-ms-animation: float-down 1s infinite alternate;
animation: float-down 1s infinite alternate;
}

.arrow svg {
width: 25px;
margin-top: 11px;
margin-left: 10px;
fill: #fff;
}

/* Arrow animations */
@keyframes float-down {
0% {
  transform: translate3d(0,0px,0);
}
100% {
  transform: translate3d(0,-5px,0);
}
}

    /* classing */
    .classing{
        background-color: #21253c;
    }
    .classing h1 {
        font-size: 40px;
        text-align: center;
        padding-top: 20px;
        text-decoration-color: rgb(151, 150, 150);
        color: #d8d1d1; /* Darker color for better readability */
        font-family: 'Arial', sans-serif; /* Adding a clean font */
      
    }
    
    .image-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; /* Creates space between items */
        gap: 20px; /* Adds consistent spacing between items */
        max-width: 1200px; /* Makes the gallery wider */
        margin: 0 auto;
        margin-top: 40px;
        padding: 20px; /* Adds padding around the gallery */
        overflow: hidden;
    }
    .grid-item {
        flex: 1 1 calc(25% - 20px); /* 4 items per row, adjusts automatically */
        max-width: calc(25% - 20px); /* Keeps the grid uniform */
        position: relative;
        overflow: hidden;
        border-radius: 10px; /* Softer, rounded corners */
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    
    .grid-item:hover {
        transform: scale(1.05); /* Adds a subtle zoom effect on hover */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Adds depth with shadow */
    }
    
    .grid-item img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 10px; /* Match container's rounded corners */
        object-fit: cover; /* Ensures the image covers its container */
    }
    
    @media (max-width: 1024px) {
        .grid-item {
            flex: 1 1 calc(33.33% - 20px); /* 3 items per row on tablets */
            max-width: calc(33.33% - 20px);
        }
    }
    
    @media (max-width: 768px) {
        .grid-item {
            flex: 1 1 calc(50% - 20px); /* 2 items per row on small screens */
            max-width: calc(50% - 20px);
        }
    }
    
    @media (max-width: 480px) {
        .grid-item {
            flex: 1 1 100%; /* 1 item per row on extra small screens */
            max-width: 100%;
        }
    }
    
    
    

/* Footer */
.footer-section {
    background: #21253c;
    padding: 40px 20px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}
.footer-about, .footer-links, .footer-contact, .footer-subscribe {
    flex: 1 1 250px;
    min-width: 220px;
}
.footer-section h3 {
    font-size: 1.8rem;
    color: #ff8800;
    margin-bottom: 10px;
}
.footer-about p, .footer-contact p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}
.social-links {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}
.social-icon {
    font-size: 1.8rem;
    color: #ff8800;
    transition: transform 0.3s, color 0.3s;
}
.social-icon:hover {
    transform: scale(1.3);
    color: #ff8800;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links a {
    text-decoration: none;
    font-size: 1.1rem;
    color:#ffffff;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.subscribe-form {
    display: flex;
    margin-top: 15px;
}
.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    outline: none;
}
.subscribe-form button {
    padding: 10px 20px;
    background:#ff8800;
    border: none;
    border-radius: 0 5px 5px 0;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.subscribe-form button:hover {
    background: #ffdc00;
}
.footer-subscribe p{
    color: white;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    margin-top: 30px;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-about, .footer-links, .footer-contact, .footer-subscribe {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form input, .subscribe-form button {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px;
    }
}