
        /* Resetting default browser styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            color: #333;
        }

        header {
            background-color: #111;
            color: #fff;
            padding: 10px 0;
            text-align: center;
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 15px 0;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
        }

        nav a:hover {
            color: #ff6347;
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
        }

        .slides {
            display: flex;
            width: 200%;
            animation: slide 999909s;
        }

        .slide {
            width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(-100%); }
            40% { transform: translateX(-200%); }
            60% { transform: translateX(-300%); }
            80% { transform: translateX(-400%); }
            100% { transform: translateX(0); }
        }

        /* Music Section */
        .music-section {
            background: url('https://banibatiti.com/wp-content/uploads/2025/01/Screenshot-33.png') repeat-x;
            background-size: cover;
            padding: 50px 10%;
            text-align: center;
        }

        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .music-card {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
            color: #fff;
            text-align: center;
        }

        .music-card img {
            width: 100%;
            border-radius: 10px;
        }

        .music-card button {
            margin-top: 10px;
            background-color: #ff6347;
            border: none;
            padding: 10px;
            color: #fff;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
        }

        .music-card button:hover {
            background-color: #ff4500;
        }

        /* About Us Section */
        .about-us {
            padding: 50px 10%;
            text-align: center;
            background-color: #222;
            color: #fff;
        }

        .about-us h2 {
            margin-bottom: 20px;
        }

        .about-us ul {
            list-style: none;
            text-align: left;
            margin: 0 auto;
            display: inline-block;
            padding-left: 0;
        }

        .about-us ul li {
            margin-bottom: 15px;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 50px 10%;
            background-color: #ff6347;
        }

        .why-choose-us img {
            width: 400px;
            border-radius: 10px;
        }

        .why-choose-us .description {
            width: 50%;
            color: white;
        }

        .why-choose-us .description h3 {
            margin-bottom: 15px;
        }

        /* Contact Us Section */
        .contact-us {
            padding: 50px 10%;
            background-color: #222;
            color: white;
            text-align: center;
        }

        .contact-us input, .contact-us textarea {
            width: 100%;
            padding: 15px;
            margin-top: 10px;
            border-radius: 5px;
            border: none;
            margin-bottom: 20px;
            background-color: #fff;
            color: #333;
        }

        .contact-us button {
            padding: 15px;
            background-color: #ff6347;
            border: none;
            border-radius: 5px;
            color: white;
            cursor: pointer;
            font-size: 16px;
        }

        .contact-us button:hover {
            background-color: #ff4500;
        }

        /* Scroll to top Button */
        #scrollToTopBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff6347;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            cursor: pointer;
        }

        #scrollToTopBtn:hover {
            background-color: #c8ff00;
            color: #000000;
            font-weight: bold;
            text-transform: uppercase;
        }





        /*Newsletter Section*/
        .newsletter{
            background-color: #FF6347;
            padding: 50px 10%;
            text-align: center;
            color: hsl(0, 0%, 100%);
        }  
        .newsletter input{
            width: 300px;
            padding: 10px;
            border-radius: 5px;
            border: none;
            margin-top: 10px;
        }
        .newsletter button{
            padding: 10px 20px;
            background-color: #000000;
            color: #fff;
            border:rgb(224, 248, 9);
            border-radius: 5px;
            cursor: pointer;
        }
        .newsletter button:hover{
            background-color: #eeff00;
            color: #000000;
            
        }
        



        



        /* Responsiveness */
        @media screen and (max-width: 768px) {
            .hero {
                height: 40vh;
            }

            .why-choose-us {
                flex-direction: column;
                align-items: center;
            }

            .why-choose-us img {
                width: 80%;
            }

            .why-choose-us .description {
                width: 80%;
                text-align: center;
            }

            .music-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .music-grid {
                grid-template-columns: 1fr;
            }

            .about-us ul {
                text-align: center;
            }
        }
        


        /* Footer */
        /* This is the CSS file for the footer theme of the Banibatiti website. */
/* The footer contains the logo, contact information, and social media links. */
/* The footer is styled to be responsive and visually appealing. */
/* The footer is designed to be consistent with the overall theme of the website. */    
/* The footer is designed to be user-friendly and easy to navigate. */
/* The footer is designed to be accessible and compliant with web standards. */
/* This theme is created by Banibatiti.com */
/* Do not remove or delete or change the backlink found on this footer */


/* CSS for the footer */





/*Begaining of footer codes by Banibatiti.com */
.banibatiti.com {
    margin: 0;
    font-family: Arial, sans-serif;
}
a{
    text-decoration: none;
    color: #ffffff;
}
.banibatiti-com {
    background-color: #f1f1f1;
    color: #000000;
    text-align: center;
    padding: 20px;
    margin-bottom: 100px; /* Space for the footer */
}
.banibatiti-com h1 {
    color: #000000;
}

.footer {
    background-color: #70271a;
    color: white;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer-section h4 {
    margin-bottom: 10px;
}
.footer-section a {
    color: white;
    text-decoration: none;
}
.footer-section a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
}
/* End of footer Code */


 /* Basic styling for the backlink */
 .backlink {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    border-top: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
}
.backlink a {
    text-decoration: none;
    color: #333;
}

