body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

header {
    background: linear-gradient(to right, #ffffff, #ffffff); /* Gradient background */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Box shadow for premium look */
}

.logo {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: bold; /* Bold font for logo */
}
.logo img {
    max-width: 80px; /* Set maximum width */
    height: auto; /* Maintain aspect ratio */
}

nav {
    flex: 1;
    
    
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for link color */
}

nav ul li a:hover {
    color: #ffd700; /* Change link color on hover */
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    .logo {
        order: 2;
    }
    .left-menu, .right-menu {
        display: none;
    }
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu ul li {
    margin: 10px 0;
    text-align: center;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        order: 1;
         /* Show hamburger menu on smaller screens */
    }

    .mobile-menu {
        display: none; /* Initially hide mobile menu */
        position: relative;
        top: 100%; /* Position the menu below the header */
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 20px;
    }

    .mobile-menu.show {
        display: block;
        max-width: 40%;
        margin-left: 28%;
        background-color: #000;
        border-radius: 4%; /* Show mobile menu when .show class is applied */
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu ul li {
        margin: 10px 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
    }
}



.premium-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-image: url('Images/WhatsApp\ Image\ 2024-05-13\ at\ 4.03.54\ PM.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust height as needed */
    color: #fff; /* Change text color for better visibility */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle text shadow for readability */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Elegant font choice */
}

.premium-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1; /* Ensure content is above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    padding: 20px;
    border-radius: 10px; /* Rounded corners for a refined look */
}
.left-content {
    padding: 20px;
    opacity: 0; /* Start with opacity 0 */
    animation: revealText 4s forwards; /* Apply animation */
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start slightly below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.left-content h2 {
    margin-bottom: 20px;
    font-size: 6rem;
    color: #ffd700; /* Gold color for a premium feel */
    font-family: 'Merriweather', serif; /* Elegant serif font */
}

.left-content p {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Open Sans', sans-serif; /* Clean, modern font */
}

button {
    padding: 12px 24px;
    background-color: #ffd700; /* Gold color for a premium feel */
    color: #000;
    border: none;
    border-radius: 25px; /* More rounded for a premium feel */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for a floating effect */
}

button:hover {
    background-color: #e5c200; /* Slightly darker gold on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.social-icons a {
    color: #ffd700; /* Gold color for a premium feel */
    margin: 0 10px;
    font-size: 1.5rem; /* Increase icon size for emphasis */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #e5c200; /* Slightly darker gold on hover */
    transform: scale(1.2); /* Slightly enlarge on hover */
}

.custom-shape-divider-top-1715755467 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1715755467 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 67px;
}

.custom-shape-divider-top-1715755467 .shape-fill {
    fill: #FFFFFF;
}
@media (max-width: 1000px) {
    .premium-section {
        padding: 20px;
    }

    .left-content h2 {
        font-size: 2.7rem;
    }
}









/* Basic resets */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.about-section {
    position: relative;
    margin-top: 50px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* Premium gradient background */
    color: #fff; /* Light text color for contrast */
}

.custom-shape-divider-top-1715687775, .custom-shape-divider-bottom-1715687982 {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1715687775 svg, .custom-shape-divider-bottom-1715687982 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1715687775 .shape-fill, .custom-shape-divider-bottom-1715687982 .shape-fill {
    fill: #0f0c29;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.about-image {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px 0 0 15px;
    transition: transform 0.3s ease;
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for a premium effect */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.about-image:hover .image-overlay {
    opacity: 1; /* Show overlay on hover */
}

.about-text {
    padding: 50px;
    flex: 1;
    text-align: center;
}

.about-text h2 {
    font-size: 3rem;
    color: #ffd700; /* Gold color for a premium feel */
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.about-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

button {
    padding: 15px 30px;
    background-color: #ffd700; /* Gold color for a premium feel */
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

button:hover {
    background-color: #e5c200;
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 1000px) {
    .about-content {
        flex-direction: column;
    }

    .about-image img {
        border-radius: 15px 15px 0 0;
    }

    .about-text {
        padding: 30px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


.video-gallery-container {
    padding: 20px;
    
    
    max-width: 1200px;
    margin: auto;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    
}
.text {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.text h1 {
    font-size: 2.5em;
    margin: 0;
    color: #333;
}

.text p {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0 0;
}

.video-thumbnail {
    position: relative;
    width: 300px;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-thumbnail .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.video-thumbnail .overlay .text {
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.video-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover .overlay {
    opacity: 1;
}

.more-songs {
    text-align: center;
    padding: 30px;
}

.more-songs button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.more-songs button:hover {
    background-color: #555;
    transform: scale(1.05);
    
}


@media (max-width: 768px) {
    .video-thumbnail {
        width: 45%;
    }
    .text h1 {
        font-size: 2em;
    }

    .text p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        width: 100%;
    }
    .text h1 {
        font-size: 1.5em;
    }

    .text p {
        font-size: 0.9em;
    }
    .more-songs button {
        width: 50%;
        padding: 15px;
        font-size: 1em;
    }

}


/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    .premium-design-box {
        width: calc(50% - 40px); /* Set width to one-half of container minus margins */
    }
}


/* Basic resets */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.gallery-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    text-align: center;
}

.gallery-heading h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffd700; /* Gold color for a premium feel */
    font-family: 'Merriweather', serif;
}

.gallery-heading p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 380px; /* Fixed height for uniformity */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ffd700; /* Gold color for text */
    font-size: 1.5rem;
    font-family: 'Merriweather', serif;
    text-align: center;
    padding: 20px;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
    .gallery-grid{
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .gallery-heading h2 {
        font-size: 2rem;
    }

    .gallery-heading p {
        font-size: 1rem;
    }

    .overlay-text {
        font-size: 1.2rem;
    }

    .lightbox-content {
        width: 100%;
    }

    #caption {
        width: 100%;
    }
    
}




  
  
    * {
        box-sizing: border-box;
    }
    
    .footer{
    background:#000;
    padding:30px 0;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    
    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:center;
    padding:5%;
    }
    .footer .row ul li{
    display: flex;
    margin:10px 0px;
    text-align:center;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }