/* --- Global Styles & Background --- */
body {
    margin: 0;
    font-family: Arial, sans-serif; /* Use a suitable font */
    color: #333; /* Default text color */
    
    /* Background Image Setup */
    background-image: url('https://partners.dream-draw.me/images/Layer 63.png'); /* **REPLACE THIS PATH** */
    background-size: cover; /* Ensures the image covers the entire screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensures the body covers the viewport height */
    
    /* Flexbox for centering the main content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Container for the Selection Block (to make it stand out) --- */
.selection-container {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white box */
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

/* --- Logo Styling --- */
.logo-section {
    margin-bottom: 20px;
}

.logo {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
    display: block; /* Important for alignment */
    margin: 0 auto;
}

/* --- Text/Title Styling --- */
.title {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #004d99; /* Dark blue title */
}

.subtitle {
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 30px;
    color: #555;
}

/* --- Button Group Layout --- */
.button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px; /* Space between buttons */
}

/* --- Individual Button Styling --- */
.lang-button {
    text-decoration: none; /* Remove underline from links */
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.25em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: block; /* Make sure the link takes up the full width */
}

/* English Button Colors */
.english-button {
    background-color: #ffbf00; /* Primary blue */
    color: white;
}

.english-button:hover {
    background-color: #b18400a;
    transform: translateY(-2px);
}

/* Bengali Button Colors */
.bengali-button {
    background-color: #28a745; /* Green color */
    color: white;
}

.bengali-button:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
}