<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        :root {
            --primary-color: #080561;
            --secondary-color: #a757b4f5;
            --accent-color: #f5f5f5;
            --white: #ffffff;
            --button-hover: #8e44ad;
            --text-color: #333;
            --light-gray: #f8f9fa;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: var(--accent-color);
            padding-top: 70px;
            padding-bottom: 0;
            position: relative;
            min-height: 100vh;
        }

        /* Header Styles (unchanged from your original) */
        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--button-hover);
            transform: translateY(-3px);
        }

        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background-color: var(--primary-color);
            color: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 100vw;
        }

        .scrolled {
            padding: 8px 5%;
        }

        .left-section {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 0;
        }

        .menu-btn {
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            display: none;
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn.active {
            font-size: 26px;
        }

        .logo {
            font-size: 22px;
            font-weight: bold;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 150px;
            transition: none;
            flex-shrink: 1;
            color: white;
            text-decoration: none;
        }

        .logo:hover {
            color: white;
        }

        .explore-btn {
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 15px;
        }

        .explore-btn:hover {
            background-color: var(--button-hover);
        }

        .home-icon {
            font-size: 18px;
        }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: center;
            margin: 0 15px;
        }

        .menu-item {
            padding: 10px 12px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: white;
            text-decoration: none;
            white-space: nowrap;
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 280px;
            height: calc(100vh - 70px);
            background-color: white;
            z-index: 999;
            transition: all 0.4s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            overflow-y: auto;
            padding-top: 20px;
            display: none;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-item {
            padding: 15px 25px;
            border-bottom: 1px solid #eee;
            color: var(--primary-color);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .mobile-menu-item:hover {
            background-color: #f9f9f9;
        }

        .overlay {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: none;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Main Content Styles */
        .main-content {
            padding: 30px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .scholarship-article {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 30px;
        }

        .article-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .article-title {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .article-subtitle {
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 500;
        }

        .article-content {
            line-height: 1.7;
            color: var(--text-color);
            font-size: 1rem;
        }

        .article-content p {
            margin-bottom: 1.2em;
            text-align: justify;
        }

        .section-title {
            color: var(--primary-color);
            margin: 2em 0 1em;
            font-size: 1.5rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .scholarship-card {
            background: var(--light-gray);
            border-radius: 8px;
            padding: 25px;
            margin: 1.5em 0;
            border-left: 4px solid var(--secondary-color);
        }

        .card-title {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .eligibility-list, .application-list {
            margin: 15px 0;
            padding-left: 20px;
        }

        .eligibility-list li, .application-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 5px;
        }

        .highlight-box {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border: 1px solid #d0e3ff;
        }

        .highlight-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contact-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95rem;
        }

        .contact-table th, .contact-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-table th {
            background-color: #f5f5f5;
            color: var(--primary-color);
            font-weight: 500;
        }

        .contact-table tr:hover {
            background-color: #f9f9f9;
        }

        .form-cta {
            background-color: #fff8e6;
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0 20px;
            text-align: center;
            border: 1px dashed var(--secondary-color);
        }

        .cta-text {
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            font-size: 1.1rem;
            color: #d35400;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .form-button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .form-button:hover {
            background-color: var(--button-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        /* Footer Styles */
        .site-footer {
            background-color: #1a1a1a;
            color: #f0f0f0;
            padding: 1.5rem 1rem;
            font-family: 'Segoe UI', Roboto, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Top Line - Links */
        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: color 0.2s ease;
            padding: 0 0.5rem;
        }

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

        .footer-separator {
            color: rgba(240, 240, 240, 0.5);
            font-size: 0.9rem;
        }
        
        /* Middle Line - Social Icons */
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 0.5rem 0;
        }

        .footer-social a {
            font-size: 1.2rem;
            transition: transform 0.2s ease;
            color: #f0f0f0;
            text-decoration: none;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

        /* Social Icon Colors - Original Brand Colors */
.fa-linkedin { color: #0077b5; }
.fa-youtube { color: #ff0000; }
.fa-telegram { color: #0088cc; }
.fa-whatsapp { color: #25D366; }

.fa-instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback for older browsers */
}


        /* Bottom Line - Credits */
        .footer-credits {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
            color: #aaa;
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.8rem;
        }

        .footer-brand {
            font-style: italic;
            font-size: 0.8rem;
        }

        .footer-brand a {
            color: #a757b4;
            font-weight: 500;
            text-decoration: none;
        }

        .footer-brand a:hover {
            text-decoration: none;
        }

        /* Desktop Layout */
        @media (min-width: 768px) {
            .footer-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 0;
            }

            .footer-links {
                justify-content: flex-start;
                gap: 0;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-credits {
                align-items: flex-end;
            }

            .footer-links a {
                font-size: 1.1rem;
            }

            .footer-separator {
                font-size: 1.1rem;
            }

            .footer-social a {
                font-size: 1.5rem;
            }

            .footer-copyright {
                font-size: 1rem;
            }

            .footer-brand {
                font-size: 1.1rem;
            }
        }

        /* Bottom Navigation - Mobile Only */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: none;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            z-index: 1000;
            width: 100%;
            max-width: 100vw;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            padding: 5px 8px;
            border-radius: 8px;
        }

        .nav-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .nav-item.active {
            color: var(--secondary-color);
            background-color: rgba(167, 87, 180, 0.1);
            transform: translateY(-3px);
        }

        .nav-item:not(.active):hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Responsive adjustments */
        @media (min-width: 993px) {
            .menu-btn,
            .mobile-menu,
            .overlay,
            .bottom-nav {
                display: none !important;
            }
            
            .desktop-menu {
                display: flex;
            }
        }

        @media (max-width: 992px) {
            .desktop-menu {
                display: none;
            }
            
            .menu-btn {
                display: flex;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .overlay {
                display: block;
            }
            
            .bottom-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
                padding-bottom: 60px;
                overflow-x: hidden;
            }
            
            .bottom-nav {
                display: flex;
            }
            
            .top-bar {
                padding: 10px 3%;
                height: 60px;
            }
            
            .mobile-menu {
                top: 60px;
                height: calc(100vh - 120px);
            }
            
            .overlay {
                top: 60px;
            }
            
            .logo {
                font-size: 20px;
                max-width: 120px;
            }
            
            .explore-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

            .scroll-to-top {
                bottom: 70px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .scholarship-article {
                padding: 25px;
            }

            .article-title {
                font-size: 1.6rem;
            }

            .article-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .card-title {
                font-size: 1.1rem;
            }

            .form-cta {
                padding: 20px;
            }

            .cta-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .scholarship-article {
                padding: 20px;
            }

            .article-title {
                font-size: 1.4rem;
            }

            .contact-table th, 
            .contact-table td {
                padding: 10px;
                font-size: 0.85rem;
            }

            .form-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }</pre></body></html>