        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f4f6f9;
            color: #333;
        }

        /* Top Accessibility Bar */
        .top-bar {
            background-color: #0b3c5d;
            color: #fff;
            padding: 8px 50px;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
        }

        /* Header Section */
        header {
            background-color: #ffffff;
            padding: 15px 50px;
            display: flex;
            align-items: center;
            border-bottom: 3px solid #f5a623;
        }
        
        /* Logo Container updated for logo.png */
        .logo-container {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
        }
        .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* इससे लोगो बिना स्ट्रेच हुए परफेक्ट फिट होगा */
        }

        .header-title h1 {
            color: #0b3c5d;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .header-title p {
            color: #666;
            font-size: 14px;
            font-style: italic;
        }

        /* Navigation Bar */
        nav {
            background-color: #328cc1;
            padding: 0 50px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li {
            position: relative;
        }
        nav ul li a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s;
            text-transform: uppercase;
        }
        nav ul li a:hover {
            background-color: #0b3c5d;
        }
        
        /* Dropdown Menu */
        nav ul li:hover .dropdown {
            display: block;
        }
        .dropdown {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 180px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
            border-top: 3px solid #f5a623;
        }
        .dropdown a {
            color: #333 !important;
            padding: 12px 16px !important;
            text-transform: none !important;
            font-weight: normal !important;
            border-bottom: 1px solid #eee;
        }
        .dropdown a:hover {
            background-color: #f4f6f9;
            color: #0b3c5d !important;
        }

        /* Main Layout Container */
        .container {
            display: flex;
            padding: 30px 50px;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Left Side: Hero and Content */
        .main-content {
            flex: 2;
        }
        .hero-banner {
            background: linear-gradient(135deg, #0b3c5d, #328cc1);
            color: white;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .hero-banner h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #f5a623;
        }
        .hero-banner p {
            font-size: 16px;
            line-height: 1.6;
            max-width: 80%;
        }

        /* Right Side: Sidebar Desks */
        .sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .desk-card {
            background: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 5px solid #328cc1;
        }
        .desk-card h3 {
            color: #0b3c5d;
            border-bottom: 2px solid #f4f6f9;
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .profile-section {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        .avatar-placeholder {
            width: 70px;
            height: 70px;
            background-color: #e1e5eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #777;
            flex-shrink: 0;
        }
        .profile-info h4 {
            color: #333;
            font-size: 15px;
            margin-bottom: 2px;
        }
        .profile-info span {
            font-size: 12px;
            color: #777;
            display: block;
            margin-bottom: 8px;
        }
        .profile-info p {
            font-size: 13px;
            color: #555;
            line-height: 1.4;
            font-style: italic;
        }

        /* Notice Board Widget */
        .notice-board {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .notice-board h3 {
            color: #0b3c5d;
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 2px solid #f5a623;
            padding-bottom: 5px;
        }
        .notice-list {
            list-style: none;
        }
        .notice-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            font-size: 14px;
        }
        .notice-list li a {
            color: #328cc1;
            text-decoration: none;
        }
        .notice-list li a:hover {
            text-decoration: underline;
        }
        .new-tag {
            background-color: red;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: 5px;
            font-weight: bold;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        /* Footer */
        footer {
            background-color: #0b3c5d;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            font-size: 14px;
            border-top: 4px solid #f5a623;
        }

/* --- Slider CSS --- */
.slider-container {
    width: 100%;
    height: 350px; /* स्लाइडर की हाइट */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.slider {
    display: flex;
    width: 300%; /* 3 इमेजेस के लिए 300% */
    height: 100%;
    animation: slideAnimation 12s infinite; /* 12 सेकंड में पूरा लूप घूमेगा */
}

.slide {
    width: 33.33%; /* हर स्लाइड का हिस्सा */
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज बिना स्ट्रेच हुए परफेक्ट कटेगी */
}

/* इमेज के ऊपर दिखने वाला टेक्स्ट बैकग्राउंड */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 60, 93, 0.8); /* डार्क ब्लू ट्रांसपेरेंट बैकग्राउंड */
    color: #fff;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    border-top: 3px solid #f5a623;
}

/* ऑटोमैटिक स्लाइडर एनिमेशन */
@keyframes slideAnimation {
    0% { transform: translateX(0); }
    28% { transform: translateX(0); }
    33% { transform: translateX(-33.33%); }
    61% { transform: translateX(-33.33%); }
    66% { transform: translateX(-66.66%); }
    95% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}

/* Header Section CSS Update */
header {
    background-color: #ffffff;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* इससे लोगो लेफ्ट, टाइटल सेंटर और फोटो राइट में चली जाएगी */
    border-bottom: 3px solid #f5a623;
}

/* Center Title tweaks for alignment */
.header-title {
    flex-grow: 1;
    text-align: left; /* अगर आप टाइटल बिल्कुल सेंटर में चाहते हैं तो इसे center भी कर सकते हैं */
}

/* Right Side Kalam Image Styles */
.kalam-container {
    width: 90px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px; /* हल्का सा कर्व देने के लिए */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* फोटो पर हल्की सी शैडो */
    margin-left: 20px;
}

.kalam-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इससे फोटो बिना स्ट्रेच हुए बॉक्स में एकदम परफेक्ट दिखेगी */
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FOR ALL DEVICES)
   ========================================================================== */

/* 1. बड़ी स्क्रीन्स और टैबलेट्स के लिए (Laptop & Tablets - Max 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 20px;
        gap: 20px;
    }
    
    .hero-banner p {
        max-width: 100%;
    }
}

/* 2. छोटे टैबलेट और लैंडस्केप मोबाइल के लिए (Max 768px) */
@media (max-width: 768px) {
    /* टॉप बार को रिस्पॉन्सिव बनाना */
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 8px 15px;
    }
    .top-bar a {
        margin: 0 5px;
    }

    /* हेडर को वर्टिकल अलाइन करना */
    header {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    .logo-container {
        margin-right: 0;
    }
    .header-title {
        text-align: center;
    }
    
    /* हेडर की तस्वीरों (Kalam & Gandhi) को एक लाइन में सेट करना */
    header div:has(img:not([alt*="Logo"])) {
        display: inline-flex;
        margin-left: 0;
        gap: 10px;
    }
    .kalam-container {
        margin: 5px;
    }

    /* नेविगेशन बार को रैप करना */
    nav {
        padding: 0 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a {
        padding: 10px 12px;
        font-size: 13px;
    }
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    /* मुख्य लेआउट: साइडबार को नीचे भेजना */
    .container {
        flex-direction: column;
    }
    .main-content, .sidebar {
        flex: unset;
        width: 100%;
    }

    /* स्लाइडर की हाइट मोबाइल के हिसाब से कम करना */
    .slider-container {
        height: 220px;
    }
    .slide-caption {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* 4 कॉलम वाले लिंक्स ग्रिड को 2 कॉलम में बदलना */
    .links-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }

    /* फुटर को सही करना */
    footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }
    .footer-right {
        justify-content: center;
    }
}

/* 3. छोटे मोबाइल फोन के लिए (Smartphones - Max 480px) */
@media (max-width: 480px) {
    .header-title h1 {
        font-size: 20px;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* स्लाइडर हाइट और छोटी करना */
    .slider-container {
        height: 180px;
    }

    /* लिंक्स वाले 4 डिब्बों को सिंगल कॉलम (एक के नीचे एक) करना */
    .links-container {
        grid-template-columns: 1fr;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- Top Accessibility & Social Bar CSS --- */
.top-bar {
    background-color: #0b3c5d;
    color: #fff;
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px; /* एक्सेसिबिलिटी और सोशल लिंक्स के बीच की दूरी */
}

.accessibility-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.accessibility-links a:hover {
    color: #f5a623; /* होवर करने पर गोल्डन/ऑरेंज कलर */
}

.top-bar .divider {
    color: rgba(255, 255, 255, 0.4);
}

/* सोशल मीडिया आइकन्स की स्टाइल */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px; /* आइकन्स के आपस की दूरी */
}

.social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s, color 0.2s;
    display: inline-block;
}

/* होवर करने पर ब्रांड्स के ओरिजिनल कलर थीम इफ़ेक्ट */
.social-icons a:hover {
    transform: translateY(-2px); /* हल्का सा ऊपर उठने का इफ़ेक्ट */
}
.social-icons a.fb:hover { color: #1877f2; }
.social-icons a.insta:hover { color: #e1306c; }
.social-icons a.yt:hover { color: #ff0000; }
.social-icons a.x-twitter:hover { color: #ffffff; } /* X के लिए वाइट या हल्का ग्रे */
.social-icons a.linkedin:hover { color: #0077b5; }


/* --- रिस्पॉन्सिव मोबाइल अपडेट --- */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px 15px;
    }
    .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }
    .top-bar .divider {
        display: none; /* मोबाइल पर खड़ी डंडी छुपाने के लिए */
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        /*body {*/
            /* बैकग्राउंड पैटर्न इमेज उपलब्ध न होने पर हल्का ग्रे/वाइट बैकग्राउंड */
        /*    background-color: #f7f9fa; */
        /*    padding-top: 40px;*/
        /*}*/

        /* लिंक्स ग्रिड कंटेनर */
        .links-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 50px auto;
            padding: 0 15px;
        }

        /* कॉमन कार्ड डिज़ाइन */
        .link-card {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            min-height: 280px;
        }

        /* कार्ड हेडर */
        .card-header {
            padding: 12px 15px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
        }

        /* कार्ड बॉडी (कंटेंट एरिया) */
        .card-body {
            padding: 20px 15px;
            flex-grow: 1;
        }

        .card-body ul {
            list-style: none;
        }

        .card-body ul li {
            margin-bottom: 12px;
            font-size: 14px;
        }

        .card-body ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
        }

        .card-body ul li a:hover {
            color: #0076a3;
            text-decoration: underline;
        }

        /* --- अलग-अलग कार्ड्स के विशिष्ट रंग थीम --- */
        
        /* 1. Other Links (Yellow थीम) */
        .theme-yellow .card-header { background-color: #fce181; }
        .theme-yellow .card-body { background-color: #fefbe7; }

        /* 2. Services (Green थीम) */
        .theme-green .card-header { background-color: #92e0a7; }
        .theme-green .card-body { background-color: #f0fbf3; }

        /* 3. Click To Know (Pink/Lavender थीम) */
        .theme-pink .card-header { background-color: #f7bccc; }
        .theme-pink .card-body { background-color: #fdf2f5; }

        /* 4. External Links (Purple/Teal थीम) */
        .theme-purple .card-header { background-color: #c0a9ed; }
        .theme-purple .card-body { background-color: #e6fcf5; /* मिक्स शेड जैसा स्क्रीनशॉट में है */ }


        /* --- मुख्य फुटर डिज़ाइन --- */
        footer {
            background-color: #1e3d59;
            color: #ffffff;
            padding: 20px 50px;
            font-size: 13px;
            line-height: 1.8;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .footer-left {
            flex: 1;
        }

        .footer-center {
            text-align: center;
            flex: 1;
        }

        .browser-icons {
            display: inline-flex;
            gap: 8px;
            margin-top: 5px;
            vertical-align: middle;
        }

        .browser-icons i {
            font-size: 18px;
        }

        .footer-right {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: flex-end;
            flex: 1;
        }

        /* NIC लोगो का सिंपल डिज़ाइन */
        .nic-logo {
            font-weight: bold;
            font-size: 22px;
            letter-spacing: 1px;
            border-right: 1px solid rgba(255,255,255,0.3);
            padding-right: 10px;
        }
        
        .nic-text {
            font-size: 10px;
            line-height: 1.1;
            text-align: left;
        }

        /* स्क्रॉल टू टॉप बटन */
        .scroll-top-btn {
            background-color: #007bff;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: background 0.2s;
        }

        .scroll-top-btn:hover {
            background-color: #0056b3;
        }

        /* रिस्पॉन्सिव मोबाइल व्यू के लिए */
        @media (max-width: 992px) {
            .links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            footer {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .footer-right {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .links-container {
                grid-template-columns: 1fr;
            }
        }

/* --- Pre-Footer Widgets Section CSS --- */
.pre-footer-widgets {
    background-color: #eef2f5;
    padding: 40px 50px;
    border-top: 1px solid #dcdcdc;
}

.widgets-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr; /* 3 कॉलम्स का बैलेंस */
    gap: 30px;
}

.widget-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #328cc1; /* टॉप बॉर्डर ब्रांड कलर मैचिंग */
}

.widget-box h3 {
    color: #0b3c5d;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f4f6f9;
    padding-bottom: 10px;
}

.widget-box h3 i {
    color: #f5a623; /* आइकन्स को गोल्डन कलर */
}

/* 1. सांख्यिकी (Stats) ग्रिड */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #f5a623;
}

.stat-item i {
    font-size: 24px;
    color: #0b3c5d;
}

.stat-info h4 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.stat-info p {
    font-size: 12px;
    color: #666;
}

/* 2. स्टूडेंट कॉर्नर (Quick Actions) */
.actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.actions-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8fafc;
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.actions-list a:hover {
    background-color: #328cc1;
    color: #ffffff;
    transform: translateX(5px);
}

/* 3. हेल्पलाइन बॉक्स */
.helpline-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.helpline-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-phone, .help-email {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.help-phone {
    background-color: #e6f4ea;
    color: #137333;
}

.help-email {
    background-color: #e8f0fe;
    color: #1a73e8;
}


/* --- मीडिया क्वेरी (रिस्पॉन्सिव मोबाइल के लिए) --- */
@media (max-width: 992px) {
    .widgets-inner {
        grid-template-columns: 1fr; /* टैबलेट और मोबाइल पर एक के नीचे एक आ जाएगा */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pre-footer-widgets {
        padding: 30px 15px;
    }
}



  /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f4f6f9;
            color: #333;
        }

        /* Top Accessibility Bar */
        .top-bar {
            background-color: #0b3c5d;
            color: #fff;
            padding: 8px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .accessibility-links a {
            color: #fff;
            text-decoration: none;
            margin: 0 5px;
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-icons a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: transform 0.2s, color 0.2s;
        }
        .social-icons a:hover { transform: translateY(-2px); }
        .social-icons a.fb:hover { color: #1877f2; }
        .social-icons a.insta:hover { color: #e1306c; }
        .social-icons a.yt:hover { color: #ff0000; }
        .social-icons a.x-twitter:hover { color: #ffffff; }
        .social-icons a.linkedin:hover { color: #0077b5; }

        /* Header Section */
        header {
            background-color: #ffffff;
            padding: 15px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 3px solid #f5a623;
        }
        
        .logo-container {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
        }
        .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .header-title h1 {
            color: #0b3c5d;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .header-title p {
            color: #666;
            font-size: 14px;
            font-style: italic;
        }

        .kalam-container {
            width: 90px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-left: 20px;
        }
        .kalam-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Navigation Bar */
        nav {
            background-color: #328cc1;
            padding: 0 50px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s;
            text-transform: uppercase;
        }
        nav ul li a:hover {
            background-color: #0b3c5d;
        }

        /* Inner Page Banner */
        .page-banner {
            background: linear-gradient(135deg, #0b3c5d, #328cc1);
            color: white;
            padding: 40px 50px;
            text-align: center;
            border-bottom: 4px solid #f5a623;
        }
        .page-banner h2 {
            font-size: 32px;
            margin-bottom: 8px;
        }
        .page-banner p {
            font-size: 15px;
            color: #e2e8f0;
        }

        /* Main Content Container */
        .about-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .about-section {
            background: white;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .about-section h3 {
            color: #0b3c5d;
            font-size: 22px;
            margin-bottom: 15px;
            border-bottom: 2px solid #f5a623;
            padding-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-section p {
            margin-bottom: 15px;
            font-size: 15px;
            color: #4a5568;
            text-align: justify;
        }

        /* Vision & Mission Grid */
        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .vm-box {
            background: #f8fafc;
            padding: 25px;
            border-radius: 6px;
            border-top: 4px solid #328cc1;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .vm-box h4 {
            color: #0b3c5d;
            font-size: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vm-box h4 i {
            color: #f5a623;
        }

        /* Objectives List */
        .objectives-list {
            list-style: none;
            margin-top: 15px;
        }

        .objectives-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #4a5568;
        }

        .objectives-list li::before {
            content: "\f0a4"; /* FontAwesome hand icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #f5a623;
        }


        /* Responsive Media Queries */
        @media (max-width: 768px) {
            .top-bar { flex-direction: column; text-align: center; gap: 10px; padding: 10px; }
            .top-bar-right { flex-direction: column; gap: 8px; }
            header { flex-direction: column; text-align: center; padding: 20px; gap: 15px; }
            .logo-container { margin-right: 0; }
            header div:has(img:not([alt*="Logo"])) { display: inline-flex; }
            nav ul { flex-wrap: wrap; justify-content: center; }
            .vision-mission-grid { grid-template-columns: 1fr; }
        }