
        * {
            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);
        }

        .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;
        }

        @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 ul {
                padding: 30px;
            }            
            
            .nav-bar {
                position: fixed;
                background: rgba(2, 88, 173, 0.95); /* Updated to match brand color */
                height: 100vh;
                width: 198px;
                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 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;
            }

            
        }
          
        main {          
            max-width: 800px;
            padding: 40px;
            margin: 50px auto 60px;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 20px;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
            transform: translateY(0);
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        main h3 {
            font-size: 2.5em;
            color: #0258ad;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        main h3::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: #FFD700;
            margin: 15px auto;
        }

        main > p {
            text-align: center;
            font-size: 1.2em;
            color: #666;
            margin-bottom: 40px;
        }

        .contact-info {
            margin-top: 40px;
            padding: 30px;
            border-top: 2px solid #eee;
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-info h3 {
            color: #0258ad;
            margin-bottom: 30px;
            font-size: 1.8em;
            text-align: center;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .contact-info p {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-info p:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-info i {
            color: #0258ad;
            font-size: 1.5em;
            width: auto;
            background: #f0f7ff;
            padding: 12px;
            border-radius: 50%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Links inside contact items (Facebook, email, etc.) */
        .contact-info p a {
            color: #0258ad;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info p a:hover {
            color: #FFD700;
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            main {
                margin: 0 15px;
                padding: 30px 20px;
                border-radius: 15px;
                margin-top: 50px;
            }

            main h3 {
                font-size: 2em;
            }

            .contact-info p {
                padding: 12px;
                font-size: 0.95em;
            }

            .contact-info i {
                padding: 10px;
                font-size: 1.2em;
            }
        }
        footer {
            text-align: center;
            padding: 25px 0;
            margin-top: 400px;
            background: #003366; /* Dark Green */
            color: #fff;
            position: relative;
            bottom: 0px;
            width: 100%;
        }

        footer a {
            color: #FFD700; 
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline; 
        }