/* **********************************
******  CSS MEDIA QUERIES ********* 
************************************/

/* Extra Large Desktops / 4K Monitors */
@media (min-width: 1600px) {
    /* Custom ultra-wide layouts or extra spacing */
}


/* **********************************************************************/
/* **********************************************************************/



/* Large Desktops (Bootstrap XL) */
@media (max-width: 1200px) {
    /* Adjust spacing, reduce layout columns */
}


/* **********************************************************************/
/* **********************************************************************/



/* Medium Devices (Bootstrap LG & MD) */
@media (max-width: 992px) {
    /* Adjust font sizes, stack columns */


    /* **********************************************************************/
    /* header */

    header nav {
        display: none;
    }

    /* mobile-menu */
    header #mobile-menu {
        display: block;
    }

    /* hamburger */
    header #hamburger {
        display: block;
    }



    /* Mobile menu hidden by default */
    #mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* hidden off-screen */
        height: 100vh;
        width: 80%;
        /* or 100% if you want full-screen */
        max-width: 320px;
        padding: 100px 20px 20px 20px;
        background: white;
        backdrop-filter: blur(5px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 20px;
        transition: right 0.4s ease;
        /* smooth slide */
    }


    /* when active */
    #mobile-menu.active {
        right: 0;
    }

    #mobile-menu span.close {
        color: black;
        font-size: 25px;

        position: absolute;
        top: 32px;
        right: 33px;
    }

    #mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #mobile-menu ul li a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: black;
        text-transform: uppercase;
        font-weight: bold;
    }




    /* about */
    #about .abt-content-heading h5 {
        margin-bottom: 20px;
    }





    /* services */
    #services .services-card {
        margin-bottom: 20px;
    }







    /* footer  */
    footer .logo {
        margin-bottom: 50px;
    }



}


/* **********************************************************************/
/* **********************************************************************/



/* Tablets (Bootstrap SM) */
@media (max-width: 768px) {
    /* Collapse menus, full-width sections */

    /* **********************************************************************/
    /* home / */
    /* banner */
    #banner .banner-content h1 {
        font-size: 40px;
    }







    /* **********************************************************************/
    /* abt-page / */
     #other-page-heading .abt-page-content h5{
        font-size: 40px;
    }

    #other-page-heading .abt-page-content p {
        margin-bottom: 20px;
    }









    /* **********************************************************************/
    /* refer page / */
    .refer-details .refer-details-cover {
        margin-bottom: 20px;
    }





}


/* **********************************************************************/
/* **********************************************************************/



/* Small Devices (Bootstrap XS) */
@media (max-width: 576px) {
    /* Reduce padding, font sizes, optimize for touch */





    footer nav {
        margin-bottom: 40px;
    }
}



/* **********************************************************************/
/* **********************************************************************/




/* Extra Small / Mobile-first (below Bootstrap XS) */
@media (max-width: 400px) {
    /* Tighten UI for small phones (e.g. iPhone SE) */
}