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

        }
        
        .members-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards;
        }

        .member-card {
            flex: 0 1 200px;
            margin: 20px 10px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
            border: 4px solid #FFD700;
            transition: transform 0.3s ease;
        }

        .member-card:hover .member-image {
            transform: scale(1.05);
        }

        .member-namme {
            font-size: 1.5em;
            color: #0258ad;
            margin: 10px 0;
        }

        .member-role {
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
        }

        .member-bio {
            color: #444;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .member-social {
            display: flex;
            gap: 15px;
            margin-top: auto;
        }

        .member-social a {
            color: #0258ad;
            font-size: 1.2em;
            transition: color 0.3s ease;
        }

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

        footer {
            text-align: center;
            padding: 20px 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; 
        }        

        /* Site-wide visual polish (matches index) */
        :root{ --accent: #0258ad; --accent-2: #FFD700; --muted:#666; --surface: rgba(255,255,255,0.98); }

        a { color: var(--accent); }
        .btn{ background: linear-gradient(90deg,var(--accent),#014486); color:#fff; padding:10px 14px; border-radius:10px; text-decoration:none; }

        .members-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
        .member-card { background: var(--surface); border-radius:12px; overflow:hidden; box-shadow:0 8px 30px rgba(2,8,30,0.06); transition: transform .18s ease, box-shadow .18s ease; }
        .member-card:hover{ transform: translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,0.12); }
        .member-card img{ width:100%; height:auto; display:block; }

        footer{ padding:24px 12px; background:linear-gradient(180deg,#003366,#002244); color:#fff; }
    