        .logom img{
            height: 90px;
            width: auto;
        }

     /* Navbar Styling */
        .navbar {
            background: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #17356B!important;
            letter-spacing: 0.5px;
        }

        .nav-link {
            color: #17356B!important;;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-link:hover {
            color:#0D8FCD !important;
            transform: translateY(-2px);
        }

        /* Main nav active link */
        .navbar-light .navbar-nav .nav-link.active {
        color: #0D8FCD; /* your brand color */
        font-weight: 600;
        }

        /* Dropdown active item */
        .dropdown-menu .dropdown-item.active {
        background-color: #0D8FCD;
        color: white;
        }

        /* Optional underline effect */
        .navbar-nav .nav-link.active::after {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        background: #0D8FCD;
        margin-top: 4px;
        }

        /* Dropdown item hover */
        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
        background-color: #0D8FCD; /* your brand color */
        color: #000;
        }

        /* Active dropdown item (current page) */
        .dropdown-menu .dropdown-item.active {
        background-color: #0D8FCD;
        color: #000;
        font-weight: 600;
        }
        .dropdown-menu .dropdown-item {
        transition: background-color 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu .dropdown-item.active {
        background-color: #0D8FCD;
        color: #000;
        }