 body {
            font-family: 'Kumbh Sans', sans-serif;
        }

        /* Navbar */
        .navbar-nav .nav-link {
            font-weight: 400;
            color: #6C6C6C;
        }

        .navbar-nav .nav-link:hover {
            color: #d20000;
        }

        .navbar .btn-dark {
            background-color: #000033;
            border: none;
        }

        /* Contact Us Button Style */
        .contact-btn {
            padding: 8px 16px;
            background-color: #000066;
            color: #fff;
            text-decoration: none;

            transition: background-color 0.3s ease;
            white-space: nowrap;
            /* 💡 Prevent text from wrapping */
            display: inline-block;
            font-weight: 500;
        }


        .contact-btn:hover {
            background-color: #FF0000;
        }


        /* Hide Bootstrap's default caret */
        .custom-dropdown::after {
            display: none !important;
        }

        .dropdown-icon {
            font-size: 10px;
            /* You can go even smaller if needed */
            vertical-align: middle;
        }

        .nav-link.active {
            color: #EF3030 !important;
            font-weight: 400;
            /* Optional: to make it stand out more */
        }

        /* Optional: Change dropdown item active color as well */
        .dropdown-item.active {
            background-color: #EF3030;
            color: #fff;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 9999;

        }
 