    * {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Texturina', serif; 
            background-color: #F9F9F9; /* Light background for contrast */
            line-height: 1.6;
   
        }

        
        header {
            padding: 20px 0;
            min-height: 1000px;
            width: 100%;
            background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Swayambhunath.jpeg);
            background-position: center;
            background-size: cover;
            position: relative;
        }        
        
        nav {
            display: flex;
            padding: 2% 6%;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        nav .fa {
            display: none;
        }

        nav img {
            height: 150px;
            border-radius: 10px;
            margin-right: 20px;
            display: inline-block;
        }

        .nav-bar ul {
            margin-bottom: 20px;
            opacity:0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-bar ul li {
            list-style: none;
            display: inline-block;
            padding: 12px 16px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-bar ul li a{
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-bar ul li:hover a {
            color: #FFD700;
        }

        .nav-bar ul li::after {
            content: '';
            display: block;
            margin: auto;
            width: 0%;
            height: 2px;
            background: #FFD700; /* Soft Yellow */
            transition: width 0.4s ease;
        }

        .nav-bar ul li:hover::after {
            width: 100%; /* Expand underline on hover */
        }

        .text-container {
            width: 90%;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            opacity: 0;
            animation: fadeIn 1.5s forwards 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translate(-50%, -40%); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }

        .text-container h1 {
            font-size: 62px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .text-container h2 {
            font-size: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        @media (max-width: 600px) {
            .text-container h1 {
                font-size: 35px;
            }
            .text-container h2 {
                font-size: 15px;
            }
            .nav-bar ul li {
                display: block;
            }

            nav .fa {
                display: block;
                color: #fff;
                margin: 15px;
                font-size: 24px;
                cursor: pointer;
                z-index: 3;
            }            
            
            .nav-bar {
                position: fixed;
                background: rgba(2, 88, 173, 0.95); /* Updated to match brand color */
                height: 100vh;
                width: 250px;
                top: 0;
                right: -250px;
                text-align: left;
                z-index: 2;
                transition: 0.3s;
                box-shadow: -2px 0 5px rgba(0,0,0,0.2);
            }

            .nav-bar ul {
                padding: 30px;
            }

            nav a {
                margin: auto;/* Adjust margin for stacked layout */  
            }

            .nav-bar ul li:hover::after {
                width: 100%; /* Expand underline on hover */
                margin-right: 120px;
            } 

            .language-buttons {
                margin: 10px 0;
            }

            body {
                overflow-x: hidden;
                width: 100%;
            }
            
            header {
                width: 100vw;
                overflow-x: hidden;
            }

            nav {
                padding: 10px 20px;
                width: 100%;
            }

            .text-container {
                width: 100%;
                padding: 0 20px;
            }

            section {
                margin: 20px 10px;
                width: auto;
            }

            section img {
                width: 100%;
                height: auto;
                float: none;
                padding-right: 0;
                margin-bottom: 20px;
            }

            .nav-bar {
                width: 200px;
            }
        }

        section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 30px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        section:hover {
            transform: translateY(-5px);
        }

        section h2 {
            margin-bottom: 40px;
            font-size: 2em;
            text-align: center;
            color: #0258ad;
            position: relative;
        }

        section h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: #FFD700;
            margin: 10px auto;
        }

        section img {
            float: left;
            height: 330px;
            width: 450px;
            padding-right: 50px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        section img:hover {
            transform: scale(1.02);
        }

        section p {
            font-size: 1.3em;
            margin-bottom: 20px;
        }

        section ul {
            font-size: 1.3em;
            padding: 20px 40px;
        }

        section ul li {
            margin-bottom: 10px;
            position: relative;
        }

        section ul li::before {
            content: '•';
            color: #FFD700;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 40px;
            background: #003366;
            color: #fff;
            position: relative;
            bottom: 0;
            width: 100%;
            box-sizing: border-box;
        }

        footer .social-links {
            margin: 20px 0;
        }

        footer .social-links a {
            font-size: 24px;
            margin: 0 10px;
            color: #fff;
            transition: color 0.3s;
        }

        footer .social-links a:hover {
            color: #FFD700;
        }

        footer a {
            color: #FFD700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #fff;
        }

        .language-buttons {
            display: flex;
            gap: 10px;
            margin-right: 20px;
        }

        .lang-btn {
            background: transparent;
            border: 2px solid #FFD700;
            color: #fff;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: inherit;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: #FFD700;
            color: #000;
        }

        .lang-btn.active {
            background: #FFD700;
            color: #000;
        }