body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('./assets/Eshaguptabgimage.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
    margin-left: 20px;
    
}

.header img {
    max-height: 50px;
    
    
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right img {
    margin-left: 10px;
}

#khelraja-logo {
    max-height: 100px;
   
}

.main-content img {
   /* Make the image fill its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below the image */
    margin: 20px 40px; /* Add some spacing around the image */
    max-height: 500px;
 
}


.mobile-pic {
  display: none;
}

.footer-right {
    display: none;
}


/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {

    body {
        background-image: url('./assets/Eshaguptabgmobile.webp');
    }
    .header {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center; /* Center text on smaller screens */
    }

    .header img {
        max-height: 40px; /* Adjust height for smaller screens */
        margin-bottom: 10px; /* Add some spacing between elements on smaller screens */
    } 

    #khelraja-logo {
        max-height: 80px; /* Adjust height for smaller screens */
    }
  
    /* hiding the image fromt the desktop view */

    .header-right {
        display: none;
    }

    .mobile-pic {
        margin: auto; /* Adjust spacing for smaller screens */  
        height:  auto;
        max-width: 100%;
        margin-top: 10%;
        display: block;
    }

    .mobile-pic img {
        width: 100%; /* Set the width to 100% of the container */
        height: auto; /* Automatically adjust the height based on the width */
        display: block;
        margin: auto;
        max-width: 100%; /* Ensure the image doesn't exceed its original size */
        max-height: 100%; /* Ensure the image doesn't exceed its original size */
        margin-top: 70%;
    }

    .main-content {
        display: none; !important;
    }


    
    /* Practice area */

    .footer-right {
        display: flex;
        align-items: center;
        
    }
    
    .footer-right img {
        margin-left: 10px;
        max-height: 40px;
        margin-top: 5%;
    }

 
}


