
        /* Navbar Custom Styles */
        .navbar {
            background: linear-gradient(90deg, #ff416c, #ff4b2b); /* Gradient background */
            box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Subtle shadow */
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            letter-spacing: 1px;
            transition: transform 0.3s;
        }

        .navbar-brand:hover {
            transform: scale(1.1);
            color: #ffeb3b;
        }

        .nav-link {
            color: #fff;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s;
        }

        /* Hover effect underline */
        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #ffeb3b;
            transition: width 0.3s;
            position: absolute;
            bottom: -5px;
            left: 0;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #ffeb3b;
        }

        /* Hamburger menu style */
        .navbar-toggler {
            border: 2px solid #fff;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
        }
