    /* ===== Base Navbar Styling ===== */
    .navbar-custom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #7a2928;
        padding: 5px 10px;
        padding-left: 30px;
        padding-right: 30px;
        height: 41px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-custom a.brand {
        color: white;
        font-size: 15px;
        text-decoration: none;
        padding-top: 5px;
        white-space: nowrap;
    }

    .navbar-links {
        display: flex;
        gap: 15px;
        align-items: center;
        transition: all 0.3s ease;
        line-height: 1;
    }

    .navbar-links a {
        color: white;
        font-size: 14px;
        text-decoration: none;
    }

    .navbar-links a:hover {
        color: #ffb48f;
    }

    /* ===== Toggle Button ===== */
    .navbar-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 20px;
        color: white;
        cursor: pointer;
    }

    /* ===== Mobile Responsive ===== */
    @media (max-width: 768px) {
        .navbar-custom {
            flex-wrap: wrap;
            height: auto;
        }

        .navbar-toggle {
            display: block;
        }

        @media (min-width: 280px) and (max-width: 580px) {
            .brand {
                font-size: 8px !important;
            }

            .container-fluid {
                padding: 0px;

            }

            .image1 {
                width: 84px !important;
            }

            .navbar-custom {
                flex-wrap: wrap;
                height: auto;
            }

            .navbar-toggle {
                display: block;
            }

            .navbar-brand {
                margin: 0px;
                text-align: center;

            }

            .header-logo {
                width: 60px;
            }

            .text-uppercase {
                font-size: 10px !important;
            }

            .display-4 {
                font-size: 13px !important;
            }

            .ddtext {
                font-size: 7px !important;
            }

            .rowss {
                margin: 0px;
                padding: 0px;
            }

            .colss {
                margin: 0px;
                padding: 0px;
            }

            .department-card {
                margin: 5px;
                padding: 5px;
            }

            .divH1 {
                font-size: 13px;
            }

            .paragraph {
                font-size: 7px;

            }
            .divmain{
                width: 50%;
            }
            .team-item {
                width: 100%;
                height: 100% !important;
                
            }
            .team-img{
                width: 105px !important;
            }
            .footerdiv{
                margin: 0px;
                padding: 0px;

            }
            .subfooter{
                font-size: 9px;
                width: 30%;
                margin-top: 0px;
            }
            .subfooter1{
                font-size: 9px;
                width: 70%;
                margin-top: 0px;
            }

        }

        /* Hide the menu by default */
        .navbar-links {
            flex-direction: column;
            background-color: #7a2928;
            width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, opacity 0.3s ease-in;
            opacity: 0;
        }

        .navbar-links a {
            padding: 10px 0;
            text-align: center;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Checkbox: show menu */
        #menu-toggle:checked+.navbar-links {
            max-height: 300px;
            /* Enough height for all links */
            opacity: 1;
        }
    }

    .maincardimg {
        height: 400px;
    }
    .paragraph{
        padding: 10px;

    }
