﻿/* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #1e3a8a;
            --secondary: #e11d48;
            --accent: #fbbf24;
            --bg-light: #f8fafc;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.95);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.04) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(225, 29, 72, 0.04) 0px, transparent 50%), url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e3a8a' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1.5'/%3E%3Ccircle cx='15' cy='15' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
        }

        /* --- 1. TOP BAR & NEWS TICKER --- */
        .top-bar {
            background: var(--primary);
            color: var(--white);
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            font-weight: 300;
        }

        .top-bar i {
            margin-right: 5px;
            color: var(--accent);
        }

        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--accent);
        }

        .news-ticker {
            background: var(--secondary);
            color: var(--white);
            padding: 5px 0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .news-ticker marquee {
            vertical-align: middle;
        }

        /* --- 2. MODERN STICKY NAVBAR --- */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            width: 370px;
            height: auto;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 15px;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .nav-links li a i.fa-chevron-down {
            font-size: 10px;
            color: var(--text-muted);
        }

        .nav-links li a i:not(.fa-chevron-down) {
            color: var(--secondary);
            font-size: 16px;
            transition: 0.3s;
        }

        .nav-links li a:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
            transform: translateY(-2px);
        }

        .nav-links li a:hover i {
            color: var(--accent);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
            z-index: 1001;
            list-style: none;
            flex-direction: column;
            padding: 10px 0;
            margin-top: 10px;
        }

        .dropdown-content li { width: 100%; }

        .dropdown-content li a {
            padding: 10px 20px;
            display: block;
            border-radius: 0;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-dark);
            transform: none !important;
            box-shadow: none !important;
        }

        .dropdown-content li a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 25px;
        }

        .dropdown:hover .dropdown-content {
            display: flex;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .erp-btn {
            background: var(--secondary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
        }

        .erp-btn:hover {
            background: #be123c;
            transform: translateY(-2px);
            color: var(--white);
            box-shadow: 0 6px 15px rgba(225, 29, 72, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }

        /* --- 3. POPUP MODAL --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease;
        }

        .modal-overlay.show { opacity: 1; visibility: visible; }

        .modal-box {
            background: var(--white);
            width: 90%;
            max-width: 650px;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            position: relative;
            transform: scale(0.8);
            transition: 0.4s ease;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            border-top: 5px solid var(--secondary);
        }

        .modal-overlay.show .modal-box { transform: scale(1); }

        .close-btn {
            position: absolute; top: 15px; right: 20px;
            font-size: 28px; color: var(--text-muted);
            cursor: pointer; transition: 0.3s; line-height: 1;
            z-index: 10; background: var(--bg-light);
            border-radius: 50%; width: 35px; height: 35px;
        }

        .close-btn:hover {
            color: var(--white); background: var(--secondary);
            transform: rotate(90deg);
        }

        .modal-box img {
            width: 100%; border-radius: 15px;
            height: 220px; object-fit: cover; margin-bottom: 15px;
        }

        .modal-box h3 {
            color: var(--primary); font-size: 24px;
            margin-bottom: 5px; font-weight: 800;
        }
        .modal-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

        /* --- 4. SLIDER SECTION --- */
        .slider-container {
            position: relative; width: 100%; height: 75vh;
            overflow: hidden; background: #000;
        }


          .slider-containerr {
            position: relative; width: 100%; height: 45vh;
            overflow: hidden; background: #000;
        }


              .slide-contentt {
            position: relative; z-index: 3; max-width: 900px;
            padding: 0 20px; transform: translateY(30px);
            transition: transform 1s ease-in-out;
        }

        .slide.active .slide-contentt { transform: translateY(0); }

        .slide-contentt h2 {
            font-size: 3.8rem; font-weight: 800; margin-bottom: 15px;
            line-height: 1.2; text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .slide-contentt p { font-size: 1.2rem; font-weight: 300; margin-bottom: 30px; }











        .slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0; transition: opacity 1s ease-in-out;
            display: flex; align-items: center; justify-content: center;
            text-align: center; color: var(--white);
            background-size: cover; background-position: center;
        }

        .slide.active { opacity: 1; z-index: 2; }

        .slide::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(225, 29, 72, 0.5));
            z-index: 1;
        }

        .slide-content {
            position: relative; z-index: 3; max-width: 900px;
            padding: 0 20px; transform: translateY(30px);
            transition: transform 1s ease-in-out;
        }

        .slide.active .slide-content { transform: translateY(0); }

        .slide-content h2 {
            font-size: 3.8rem; font-weight: 800; margin-bottom: 15px;
            line-height: 1.2; text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .slide-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 30px; }

        .btn {
            padding: 12px 30px; background: var(--secondary); color: var(--white);
            font-weight: 600; border-radius: 50px; display: inline-block;
            transition: 0.3s; box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
        }

        .btn:hover {
            background: #be123c; transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(225, 29, 72, 0.4);
        }

        .slider-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2); border: none; color: var(--white);
            width: 50px; height: 50px; border-radius: 50%; font-size: 20px;
            cursor: pointer; z-index: 10; transition: 0.3s; backdrop-filter: blur(5px);
        }
        .slider-btn:hover { background: var(--secondary); }
        .prev-btn { left: 30px; }
        .next-btn { right: 30px; }

        /* --- 5. SCROLL ANIMATION --- */
        .reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- 6. ABOUT SECTION --- */
        .section { padding: 80px 5%; }
        .container { max-width: 1200px; margin: 0 auto; }
        .grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
        .section-title { font-size: 36px; color: var(--primary); font-weight: 700; margin-bottom: 20px; }
        .section-title span { color: var(--secondary); }
        .text-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 15px; text-align: justify; }

        .founder-box {
            background: var(--white); padding: 40px; border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08); text-align: center;
            border-top: 5px solid var(--secondary);
        }
        .founder-box img {
            width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
            margin-bottom: 20px; border: 4px solid var(--bg-light); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .founder-box h4 { color: var(--primary); font-size: 22px; font-weight: 700; }
        .founder-box blockquote {
            font-style: italic; color: var(--text-muted); margin-top: 15px;
            font-size: 15px; position: relative; padding: 0 20px;
        }
        .founder-box blockquote::before {
            content: '\201C'; font-size: 40px; color: var(--accent); position: absolute;
            left: -10px; top: -15px; opacity: 0.5;
        }

        /* --- 7. MISSION & VISION SECTION --- */
        .mission-vision-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px; margin-top: 30px;
        }
        .mv-card {
            background: var(--white); padding: 40px 30px; border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; position: relative;
            transition: 0.4s ease; overflow: hidden; border: 1px solid #e2e8f0;
        }
        .mv-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; transition: 0.4s ease;
        }
        .mission-card::before { background: var(--secondary); }
        .vision-card::before { background: var(--primary); }
        .mv-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        
        .mv-icon {
            width: 80px; height: 80px; margin: 0 auto 25px; display: flex;
            align-items: center; justify-content: center; border-radius: 50%;
            font-size: 35px; transition: 0.4s ease;
        }
        .mission-card .mv-icon { background: rgba(225, 29, 72, 0.1); color: var(--secondary); }
        .vision-card .mv-icon { background: rgba(30, 58, 138, 0.1); color: var(--primary); }
        .mv-card:hover .mv-icon { transform: scale(1.1) rotate(5deg); }
        .mission-card:hover .mv-icon { background: var(--secondary); color: var(--white); box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3); }
        .vision-card:hover .mv-icon { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3); }
        
        .mv-card h3 { font-size: 24px; color: var(--text-dark); margin-bottom: 15px; font-weight: 700; }
        .mv-card p { color: var(--text-muted); line-height: 1.7; font-size: 15px; }

        /* --- 8. ICONS FACILITIES --- */
        .icon-facilities { position: relative; background-color: var(--white); padding: 80px 5%; overflow: hidden; }
        .icon-facilities::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1920');
            background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.05; z-index: 0;
        }
        .icon-facilities .container { position: relative; z-index: 1; }
        .icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .icon-card {
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(4px); padding: 40px 20px;
            border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: 0.3s;
            border-bottom: 4px solid transparent; border: 1px solid #e2e8f0;
        }
        .icon-card:hover {
            transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--secondary); background: var(--white);
        }
        .icon-card i { font-size: 45px; color: var(--primary); margin-bottom: 20px; transition: 0.3s; }
        .icon-card:hover i { color: var(--secondary); transform: scale(1.1); }
        .icon-card h4 { color: var(--text-dark); font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* --- 9. 3-COLUMN SCROLLING UPDATES & TOPPERS --- */
        .updates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .update-box {
            background: var(--white); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0; overflow: hidden; display: flex; flex-direction: column;
        }
        .update-header {
            color: var(--white); padding: 15px 20px; font-size: 18px; font-weight: 600;
            display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .header-news { background: var(--primary); }
        .header-xii { background: var(--secondary); }
        .header-x { background: #0f172a; }
        .update-header i { color: var(--accent); font-size: 20px; }
        .header-news i { animation: ring 2s infinite ease-in-out; }
        
        @keyframes ring {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            50% { transform: rotate(-15deg); }
            75% { transform: rotate(10deg); }
        }

        .update-body { padding: 20px; height: 350px; }
        .notice-item { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px dashed #cbd5e1; }
        .notice-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .notice-date {
            display: inline-block; background: rgba(30, 58, 138, 0.1); color: var(--primary);
            padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; margin-bottom: 8px;
        }
        .notice-text { font-size: 14px; color: var(--text-dark); line-height: 1.6; font-weight: 500; }
        .new-badge {
            background: var(--secondary); color: var(--white); font-size: 10px;
            padding: 2px 6px; border-radius: 10px; margin-left: 8px; vertical-align: middle; animation: blink 1s infinite;
        }
        @keyframes blink { 50% { opacity: 0.5; } }

        .topper-list-item { display: flex; align-items: center; gap: 15px; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px dashed #cbd5e1; }
        .topper-list-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .topper-list-img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); padding: 2px; }
        .topper-list-info { flex-grow: 1; }
        .topper-list-info h4 { color: var(--text-dark); font-size: 15px; font-weight: 700; margin-bottom: 3px; }
        .topper-list-info p { font-size: 12px; color: var(--text-muted); font-weight: 500; }
        .topper-score {
            font-size: 18px; font-weight: 800; color: var(--secondary);
            background: rgba(225, 29, 72, 0.1); padding: 5px 10px; border-radius: 8px;
        }
        .header-x + .update-body .topper-score { color: var(--primary); background: rgba(30, 58, 138, 0.1); }

        /* --- 10. PHOTO GALLERY --- */
        .photo-gallery { background: #f1f5f9; padding: 80px 5%; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
        .gallery-item {
            position: relative; height: 260px; border-radius: 15px; overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08); border: 4px solid var(--white); cursor: pointer;
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .gallery-item:hover img { transform: scale(1.12); }
        .gallery-item::after {
            content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(30, 58, 138, 0.5); color: var(--white); font-size: 40px;
            display: flex; justify-content: center; align-items: center; opacity: 0;
            transition: opacity 0.4s ease; pointer-events: none;
        }
        .gallery-item:hover::after { opacity: 1; }

        /* --- 11. WHATSAPP & FOOTER --- */
        .whatsapp-float {
            position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF;
            border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
            z-index: 100; display: flex; align-items: center; justify-content: center;
            width: 60px; height: 60px; transition: 0.3s; animation: pulse-green 2s infinite;
        }
        .whatsapp-float:hover { transform: translateY(-5px) scale(1.05); background-color: #128C7E; color: #FFF; }
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        footer { background: #0f172a; color: #cbd5e1; padding: 60px 5% 20px; }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
            max-width: 1200px; margin: 0 auto; border-bottom: 1px solid #334155; padding-bottom: 40px;
        }
        .footer-col h3 { color: var(--white); font-size: 20px; margin-bottom: 20px; font-weight: 600; }
        .footer-col p, .footer-col a {
            font-size: 14px; margin-bottom: 12px; line-height: 1.6; color: #cbd5e1; display: block; transition: 0.3s;
        }
        .footer-col a:hover { color: var(--accent); padding-left: 5px; }

        /* --- 12. RESPONSIVE DESIGN --- */
        @media (max-width: 991px) {
            .grid-2 { grid-template-columns: 1fr; }
            .slide-content h2 { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            .nav-center {
                flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0;
                background: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: 0.4s ease-in-out; padding: 0; gap: 0;
            }
            .nav-center.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); padding-bottom: 20px; }
            .nav-links { flex-direction: column; width: 100%; gap: 0; align-items: stretch; }
            .nav-links li { text-align: center; border-bottom: 1px solid #f1f5f9; }
            .nav-links li a { justify-content: center; border-radius: 0; padding: 15px; }
            .nav-links li a:hover { border-radius: 0; transform: none; }
            .dropdown-content { position: static; box-shadow: none; display: none; background: #f1f5f9; margin-top: 0; }
            .dropdown-content li a { padding-left: 20px; }
            .dropdown:hover .dropdown-content { display: flex; animation: none; }
            .erp-btn { margin: 15px auto 0; width: 80%; justify-content: center; }
            .menu-toggle { display: block; }
            .slide-content h2 { font-size: 2.2rem; }
            .slider-btn { display: none; }
            .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
        }