        /* Custom CSS (minimal, only for effects not achievable with utilities) */
        .scrolling-container {
            overflow: hidden;
            white-space: nowrap;
        }

        .scrolling-text {
            display: inline-block;
            padding-right: 2rem; /* Spacing between repeated text */
            animation: scroll-left 20s linear infinite; /* Adjusted speed */
        }

        @keyframes scroll-left {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Hero Section Customization */
        .hero-section {
            background-image: url('/../img/Nepali Ghar.webp'); /* Ensure this path is correct */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 80vh; /* Responsive height */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            color: #fff; /* Text color for hero content */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Dark overlay */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 1rem;
        }
        
        /* Navbar Branding */
        .navbar-brand img {
            height: 7vh; /* Responsive height for logo */
            border-radius: 7px;
            transition: transform 0.3s ease-in-out;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }