/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/


/* **********************************
******  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 */


    /* Adjust font sizes, stack columns */
    /* Show hamburger */
    header .ham {
        display: block;
        cursor: pointer;
    }

    header .ham i {
        color: var(--logo--orange);
        font-weight: bold;
        font-size: 24px;
    }

    /* Slide-in Nav */
    header nav {
        height: 100%;
        width: 100%;
        padding: 53px 10px;
        background-color: white;
        position: fixed;
        top: 0;
        left: -100%;
        /* hidden off-screen */
        z-index: 110;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* transition removed, GSAP controls animation */
    }

    header nav.active {
        left: 0;
        /* slides into view */
    }

    /* Close button */
    header .close {
        display: block;
        text-align: end;
        width: 100%;
    }

    .close-btn {
        display: inline-block;
        color: white;
        background-color: var(--logo--orange);
        padding: 15px;
        margin-bottom: 40px;
        font-weight: bold;
        font-size: 20px;
        cursor: pointer;
    }

    /* Mobile menu items */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
    }

    header nav ul li a {
        text-transform: capitalize;
        text-decoration: none;
        color: var(--logo--orange);
        font-size: 18px;
    }

    /* Broucher center align */
    header .broucher {
        margin-top: 40px;
        margin-left: 0;
        text-align: center;
    }

}

/* Medium Devices (Bootstrap LG & MD) */
@media (max-width: 992px) {





    /* banner */
    #banner .banner-txt .container {
        max-width: 637px;
    }

    #banner .banner-txt h1 {
        font-size: 40px;
    }





    #about .abt-img {
        margin-top: 20px;
    }

   .highlight-box {
        margin-top: 20px;
    }


     .highlight-middle-box {
        border-left: 1px solid white;
        border-right: 0px solid white;
    }







    #about .abt-highlights-cover p {
        text-align: center;
        margin-top: 40px;
    }



    #about .mission-border-line {
        margin-top: 40px;
    }

    #about .mission-border-line {
        border-top: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, rgb(70 70 70), transparent) 1;
        border-image-slice: 1;
    }


    #about .mission-and-vission {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }




















    .abt-highlight .abt-page-highlights-cover p {
        margin-bottom: 40px;
    }


    .abt-page-title,
    #credentials .credentials-title {
        width: 100%;
    }






    /* contact-details-right-box */
    .contact-details-right-box {
        padding: 50px 30px;
    }

    .contact-us-form-cover {
        padding: 50px 30px;
    }

}



/* Tablets (Bootstrap SM) */
@media (max-width: 768px) {
    /* Collapse menus, full-width sections */

    header {
        height: 80px;
    }

    header .logo{
        max-width: 400px;
    }




    /* banner */
    #banner {
        height: auto;
    }




    #banner .carousel-item {
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #banner .banner-img {
        margin: 50px 0;
    }

    #banner .banner-txt {
        width: 100%;
        margin-bottom: 50px;
    }

    #banner .banner-txt h1 {
        font-size: 30px;
    }




   .highlight-middle-box {
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, white, transparent) 1;
        border-left: 0px solid white;
        border-right: 0px solid white;
        padding: 0px 0;
    }





    footer .logo {
        height: auto;
    }




    footer .copy-rights .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Devices (Bootstrap XS) */
@media (max-width: 576px) {
    /* Reduce padding, font sizes, optimize for touch */

    header .logo {
        max-width: 300px;
    }



    #banner .banner-img {
        width: 60%;
    }

    footer .footer-contact {
        margin-top: 40px;
    }









    /* contact-details-right-box */
    .contact-details-right-box {
        padding: 50px 15px;
    }

    .contact-us-form-cover {
        padding: 50px 15px;
    }








}

/* Extra Small / Mobile-first (below Bootstrap XS) */
@media (max-width: 387px) {
    /* Tighten UI for small phones (e.g. iPhone SE) */


    .all-btn {
        padding: 15px 30px;
    }
}