

       @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fc;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    line-height: 1.8;
    transition: all 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

h1, h2 {
    color: #002d62;
    font-weight: 600;
}

h1 {
    text-align: center;
    font-size: 30px;
    border-bottom: 4px solid #002d62;
    padding-bottom: 14px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

h1:hover {
    color: #004085;
    border-bottom: 4px solid #004085;
}


.buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            gap: 20px; /* Dono buttons ke beech gap badhane ke liye */
        }
        
        .buttons button {
            padding: 10px 20px;
            font-size: 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            background: #007bff;
            color: white;
            transition: background 0.3s;
            margin-top: 20px; /* Button ke upar space badhane ke liye */
            margin-bottom: 20px;
            
        }

        .buttons button:hover {
            background: #0056b3;
        }

       /* Active Button */
    .buttons .active {
    background: #ff9800; /* Active button ka background color */
    color: white;
    font-weight: bold;
}
         
        .songs-container {
			display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .song {
            background: #e7f0fd;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            width: 400px;
			height: 280px;
            text-align: center;
        }

        .song iframe {
            width: 320px;
            height: 200px;
            border-radius: 4px;
            border: none;
        }

        .song-title {
            margin-top: 10px;
            font-size: 1rem;
            font-weight: bold;
            color: #333;
        }
        
        
        
        /* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .buttons button {
        width: 100%;
        text-align: center;
    }

    .songs-container {
        flex-direction: column;
        align-items: center;
    }

    .song {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    .song iframe {
        width: 100%;
        height: 180px;
    }

    .blog {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .blog img {
        width: 100%;
        height: auto;
    }

    .blog-content {
        text-align: left;
    }
}

    