/* ========================================================================
                        INDEX PAGE
=========================================================================== */
    :root {
            --gold: #F5A623;
            --gold-dark: #E69500;
            --navy: #0A192F;
            --light-bg: #F8FAFE;
            --text-dark: #1E293B;
            --text-muted: #64748B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html{
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            font-weight: 400;
            color: var(--text-dark);
            background: #FFFFFF;
            line-height: 1.5;
            letter-spacing: -0.01em;
            padding-top: 0;
            overflow-x: hidden;
        }
        
        main {
            margin-top: 0;
        }
        
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 600;
            letter-spacing: -0.02em;
        }
        
        /* Modern Navbar - Glass Effect */
        .navbar {
            background: rgba(10, 25, 47, 0.92) !important;
            backdrop-filter: blur(12px);
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #FFD166, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .navbar-nav .nav-link {
            color: #f1f5f9 !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 0.3rem;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.2s;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: rgba(245, 166, 35, 0.15);
            color: var(--gold) !important;
        }
        
        .dropdown-menu {
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 0.5rem;
        }
        
        .dropdown-item {
            color: #e2e8f0;
            font-weight: 500;
            border-radius: 12px;
            padding: 0.5rem 1rem;
        }
        
        .dropdown-item:hover {
            background: var(--gold);
            color: #000;
        }
        
        .logo-css
        {
            position: absolute;
            top: 2px;          
            z-index: 10;
        }
        
        /* Hero Modern Section */
        .hero-modern {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.4) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 4rem 0;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(245, 166, 35, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(245, 166, 35, 0.5);
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .gradient-text {
            background: linear-gradient(120deg, #FFD166, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-text {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .btn-primary-gold {
            background: var(--gold);
            color: #0A192F;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 40px;
            transition: 0.2s;
            border: none;
        }
        
        .btn-primary-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-outline-light {
            border: 1px solid white;
            color: white;
            border-radius: 40px;
            padding: 12px 32px;
            transition: 0.2s;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: #0A192F;
        }
        
        .hero-wave {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            z-index: 3;
        }
        

        /* News Ticker Styles */
        .news-ticker-section {
            background: #F8FAFE;
            border-bottom: 1px solid #eef2f6;
            padding: 0.75rem 0;
        }
        .ticker-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            border-radius: 50px;
            padding: 0.2rem 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .ticker-label {
            background: var(--gold);
            color: #0A192F;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .ticker {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 40px;
        }
        .ticker-track {
            display: inline-block;
            white-space: nowrap;
            animation: scrollTicker 25s linear infinite;
        }
        .ticker-item {
            display: inline-block;
            padding: 0 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
        }
        .ticker-item i {
            margin-right: 6px;
            color: var(--gold);
        }
        .ticker-item a{
            color: inherit;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: 0.3s ease;
        }
        
        .ticker-item a:hover{
            color: #ffd700;
            opacity: 0.85;
        }
        
        .ticker-link-icon{
            font-size: 11px;
            opacity: 0.7;
        }
        @keyframes scrollTicker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .ticker:hover .ticker-track {
            animation-play-state: paused;
        }
        
        /* Stats Section */
        .stats-section {
            background: white;
            padding: 2.5rem 0;
            border-bottom: 1px solid #eef2f6;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1.2;
        }
        
        .stat-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        
        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 28px;
            text-align: center;
            transition: all 0.25s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px rgba(0,0,0,0.05);
            border-color: rgba(245, 166, 35, 0.2);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .feature-card p {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 0.95rem;
        }
        
        /* Section Titles */
        .section-badge {
            display: inline-block;
            background: rgba(245, 166, 35, 0.1);
            color: var(--gold);
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .section-title-modern {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .section-title { 
            font-size:2.4rem; 
            font-weight:700; 
            background:linear-gradient(120deg,#1E2A5E,#FF9F1C); 
            -webkit-background-clip:text; 
            background-clip:text; 
            color:transparent; 
            margin-bottom:1.1rem; 
        }
        
        
        /* About Section */
        .stat-inline {
            font-size: 1rem;
            color: var(--text-dark);
        }
        
        .stat-inline i {
            color: var(--gold);
            width: 28px;
        }
        
        .campus-image-wrapper {
            position: relative;
        }
        
        .image-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1rem;
            border-radius: 40px;
            color: white;
            font-size: 0.8rem;
        }
        
        /* Modern Accordion */
        .modern-accordion .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 20px !important;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #eef2f6;
        }
        
        .accordion-button {
            background: white;
            font-weight: 600;
            padding: 1.2rem;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: #FFF8F0;
            color: var(--gold-dark);
        }
        
        .accordion-icon {
            font-size: 1.4rem;
            margin-right: 12px;
        }
        
        /* CTA Modern */
        .cta-modern {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            margin: 3rem 0;
            border-radius: 32px;
            overflow: hidden;
        }
        
        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,25,47,0.85), rgba(0,0,0,0.7));
        }
        
        .cta-modern .container {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        
        /* Gallery Cards */
        .gallery-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: default;
        }
        
        .gallery-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.3s;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.2s;
            color: white;
            font-size: 2rem;
        }
        
        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-card:hover img {
            transform: scale(1.02);
        }
        
        .gallery-card,
        .gallery-card img,
        .gallery-overlay{
            pointer-events: none;
        }


/* ========================================================================
                        ABOUT US PAGE
=========================================================================== */


        /* ======================================================
                                GLOBAL - ABOUT US
        ====================================================== */
        .about-section{
            /*scroll-margin-top: 110px;*/
            padding: 70px 0;
        }
        
        /*.section-title{*/
        /*    font-size: 2.4rem;*/
        /*    font-weight: 700;*/
        /*    margin-bottom: 15px;*/
        /*    color: #0A192F;*/
        /*}*/
        
        .section-subtitle{
            color: #64748B;
            margin-bottom: 50px;
            font-size: 1rem;
            line-height: 1.8;
        }
        
        /* ======================================================
                                HERO
        ====================================================== */
        
        .about-hero{
            position: relative;
            min-height: 350px;
            background:
            linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
            url('../uploads/campus/campus.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 30px;
        }
        
        .about-hero h1{
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .about-hero p{
            font-size: 1.1rem;
            opacity: 0.95;
        }
        
        /* ======================================================
                            PRINCIPAL DESK
        ====================================================== */
        
        .about-card{
            background: #fff;
            border-radius: 24px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .about-card h3{
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #0A192F;
        }
        
        .about-card p{
            /*color: #64748B;*/
            line-height: 1.9;
        }
        
        .principal-img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
        }
        
        /* ======================================================
                            MISSION & MOTTO
        ====================================================== */
        
        .mission-section{
            background: #F8FAFE;
        }
        
        .mission-card{
            background: linear-gradient(135deg, #0A192F, #132845);
            border-radius: 24px;
            padding: 35px;
            color: #fff;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .mission-icon{
            width: 65px;
            height: 65px;
            border-radius: 18px;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #FFD166;
        }
        
        .mission-card h3{
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 18px;
        }
        
        .mission-card p{
            color: rgba(255,255,255,0.88);
            line-height: 1.9;
            margin-bottom: 0;
        }
        
        .motto-line{
            color: #FFD166;
            margin-bottom: 18px;
            font-weight: 700;
        }
        
        /* ======================================================
                                ABOUT NSA
        ====================================================== */
    
        .about-nsa-section{
            background: #F8FAFE;
        }
        
        .about-nsa-card{
            position: relative;
            background: #fff;
            border-radius: 32px;
            padding: 50px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
        }
        
        .about-nsa-card::before{
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(245,166,35,0.08);
        }
        
        .about-badge{
            display: inline-block;
            background: rgba(245,166,35,0.12);
            color: #E69500;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .about-nsa-content h3{
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #0A192F;
        }
        
        .about-nsa-content h3 span{
            color: #F5A623;
        }
        
        .about-nsa-content p{
            color: #64748B;
            line-height: 1.9;
            margin-bottom: 20px;
        }
        
        .about-highlights{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }
        
        .highlight-item{
            background: #FFF7EC;
            border-radius: 18px;
            padding: 20px 25px;
            min-width: 140px;
            text-align: center;
        }
        
        .highlight-item h4{
            color: #E69500;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .highlight-item span{
            color: #475569;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .about-nsa-image{
            position: relative;
        }
        
        .about-nsa-image img{
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 28px;
        }
        
        .image-badge{
            position: absolute;
            left: 20px;
            bottom: 20px;
            background: rgba(10,25,47,0.88);
            color: #fff;
            padding: 12px 20px;
            border-radius: 40px;
            font-weight: 600;
            backdrop-filter: blur(6px);
        }
        
        .info-box{
            background: #F8FAFE;
            border-radius: 20px;
            padding: 25px;
            height: 100%;
        }
        
        .info-box h4{
            color: #0A192F;
            font-weight: 700;
            margin-bottom: 18px;
        }
        
        .info-list{
            padding-left: 18px;
            margin-bottom: 0;
        }
        
        .info-list li{
            color: #64748B;
            margin-bottom: 10px;
            line-height: 1.7;
        }
        
        .achievement-box{
            background: linear-gradient(135deg, #0A192F, #132845);
            border-radius: 28px;
            padding: 40px;
            color: #fff;
        }
        
        .achievement-box h4{
            font-weight: 700;
            text-align: center;
        }
        
        .achievement-item{
            background: rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            height: 100%;
        }
        
        .achievement-item h5{
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .achievement-item p{
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.8;
        }
        
        .national-highlight{
            background: rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 20px;
            text-align: center;
            line-height: 1.9;
            color: rgba(255,255,255,0.92);
        }
        
        /* ======================================================
                                STAFF
        ====================================================== */
        
        .staff-table{
            background: #fff;
            border: 1px solid #dbe2ea;
        }
        
        .staff-table thead{
            background: #0A192F;
            color: #fff;
        }
        
        .staff-table th{
            padding: 14px;
            font-weight: 600;
            border: 1px solid #dbe2ea !important;
        }
        
        .staff-table td{
            padding: 14px;
            border: 1px solid #dbe2ea !important;
            color: #475569;
        }
        
        .staff-table tbody tr:hover{
            background: #F8FAFE;
        }
        
        /* ======================================================
                            SCHOOL ANTHEM
        ====================================================== */
        
        .anthem-box{
            position: relative;
            background: linear-gradient(135deg, #1A2F4D, #243B5A);
            color: #fff;
            padding: 50px 40px;
            border-radius: 28px;
            text-align: center;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .anthem-box::before,
        .anthem-box::after{
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            z-index: 1;
        }
        
        .anthem-box::before{
            top: -100px;
            left: -100px;
        }
        
        .anthem-box::after{
            bottom: -100px;
            right: -100px;
        }
        
        .anthem-shape-1,
        .anthem-shape-2{
            position: absolute;
            border-radius: 50%;
            background: rgba(255,209,102,0.08);
            z-index: 1;
        }
        
        .anthem-shape-1{
            width: 120px;
            height: 120px;
            top: 20px;
            right: 60px;
        }
        
        .anthem-shape-2{
            width: 90px;
            height: 90px;
            bottom: 30px;
            left: 70px;
        }
        
        .anthem-box h3,
        .anthem-box p{
            position: relative;
            z-index: 2;
        }
        
        .anthem-box p{
            color: rgba(255,255,255,0.92);
            line-height: 2;
            margin-bottom: 0;
        }
        
        /* ======================================================
                            INFRASTRUCTURE
        ====================================================== */
        
        .modern-accordion .accordion-item{
            border: none;
            margin-bottom: 1rem;
            border-radius: 20px !important;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .modern-accordion .accordion-button{
            background: #fff;
            padding: 1.2rem;
            font-weight: 600;
            font-size: 1.05rem;
        }
        
        .modern-accordion .accordion-button:not(.collapsed){
            background: #FFF7EC;
            color: #E69500;
        }
        
        .modern-accordion .accordion-body{
            color: #64748B;
            line-height: 1.8;
        }



/* ========================================================================
                        ADMINISTRATION PAGE
=========================================================================== */
        /* ======================================================
                                GLOBAL
        ====================================================== */
        .admin-section{
            padding: 70px 0;
        }
        
        /*.section-title{*/
        /*    font-size: 2.4rem;*/
        /*    font-weight: 700;*/
        /*    margin-bottom: 15px;*/
        /*    color: #0A192F;*/
        /*}*/
        
        .section-subtitle{
            color: #64748B;
            margin-bottom: 50px;
            line-height: 1.8;
        }
        
        /* ======================================================
                                HERO
        ====================================================== */
        
        .admin-hero{
            position: relative;
            min-height: 350px;
            background:
            linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
            url('../uploads/campus/campus.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 30px;
        }
        
        .admin-hero h1{
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .admin-hero p{
            font-size: 1.1rem;
            opacity: 0.95;
        }
        
        /* ======================================================
                            ADMIN CARDS
        ====================================================== */
        
        .admin-card{
            background: #fff;
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .admin-card::before{
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 220px;
            height: 220px;
            background: rgba(245,166,35,0.08);
            border-radius: 50%;
        }
        
        .admin-card-content{
            position: relative;
            z-index: 2;
        }
        
        .admin-badge{
            display: inline-block;
            background: rgba(245,166,35,0.12);
            color: #E69500;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 18px;
        }
        
        .admin-card h3{
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0A192F;
        }
        
        .admin-card p{
            color: #64748B;
            line-height: 1.9;
        }
        
        /* ======================================================
                                TABLE
        ====================================================== */
        
        .admin-table{
            background: #fff;
            border: 1px solid #dbe2ea;
            margin-top: 25px;
        }
        
        .admin-table thead{
            background: #0A192F;
            color: #fff;
        }
        
        .admin-table th{
            padding: 14px;
            font-weight: 600;
            border: 1px solid #dbe2ea !important;
        }
        
        .admin-table td{
            padding: 14px;
            border: 1px solid #dbe2ea !important;
            color: #475569;
        }
        
        .admin-table tbody tr:hover{
            background: #F8FAFE;
        }
        
        /* ======================================================
                            HIGHLIGHT BOX
        ====================================================== */
        
        .highlight-box{
            background: linear-gradient(135deg, #0A192F, #132845);
            color: #fff;
            padding: 30px;
            border-radius: 24px;
            margin-top: 30px;
        }
        
        .highlight-box p{
            margin-bottom: 0;
            line-height: 1.9;
            color: rgba(255,255,255,0.92);
        }



/* ========================================================================
                        CONTACT US PAGE
=========================================================================== */
    .btn-gold { 
        background:#FF9F1C; 
        color:#000; font-weight:bold; 
        border-radius:40px; 
        padding:12px 32px; 
        transition:0.3s; 
        border:none; 
    }
    .btn-gold:hover { 
        background:#FFB347; 
        transform:scale(1.03); 
    }
    .contact-info-modern{
    display: flex;
    flex-direction: column;
    gap: 22px;
    }
    
    .contact-item{
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    
    .contact-icon{
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        background: rgba(212,175,55,0.12);
        color: #d4af37;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    
    .contact-item h6{
        margin-bottom: 4px;
        font-size: 15px;
        font-weight: 600;
        color: #111;
    }
    
    .contact-item p{
        margin: 0;
        color: #666;
        line-height: 1.7;
        font-size: 15px;
        font-weight: 400;
    }
    
    .social-links-modern{
        display: flex;
        gap: 14px;
    }
    
    .social-links-modern a{
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f5f5f5;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s ease;
    }
    
    .social-links-modern a:hover{
        background: #d4af37;
        color: #fff;
        transform: translateY(-3px);
    }
    
/* ========================================================================
                        TOAST
=========================================================================== */
    .custom-toast{
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 9999;
        min-width: 320px;
        padding: 16px 18px;
        border-radius: 12px;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        animation: slideIn 0.4s ease;
    }
    
    .custom-toast.success{
        background: #198754;
    }
    
    .custom-toast.error{
        background: #dc3545;
    }
    
    @keyframes slideIn{
        from{
            opacity: 0;
            transform: translateX(100%);
        }
        to{
            opacity: 1;
            transform: translateX(0);
        }
    }





        

/* ============================================================================================================
    RESPONSIVE             RESPONSIVE              RESPONSIVE          RESPONSIVE          RESPONSIVE
================================================================================================================ */
    
    @media (max-width: 991px){
        /* ======================================================
                        INDEX 
        ===================================================== */
        .navbar{
            padding: 0.8rem 1rem 1.2rem;
        }
    
        .navbar .container{
            position: relative;
            min-height: 75px;
        }
    
        /* CENTER LOGO */
        .mobile-center-logo{
            position: absolute !important;
            left: 50%;
            top: 8px;
            transform: translateX(-50%) !important;
            z-index: 11;
            margin: 0 !important;
            padding: 0 !important;
        }
    
        .logo-css{
            position: static !important;
            height: 80px;
            width: auto;
            display: block;
        }
    
        /* TOGGLER */
        .navbar-toggler{
            position: absolute !important;
            right: 15px;
            top: 18px;
            transform: none !important;
            z-index: 12;
    
            border: 2px solid rgba(255,255,255,0.9) !important;
            border-radius: 10px;
            padding: 6px 10px;
            background: rgba(255,255,255,0.08);
        }
    
        .navbar-toggler-icon{
            filter: brightness(0) invert(1);
        }
    
        /* COLLAPSE MENU */
        .navbar-collapse{
            margin-top: 40px;
            /*background: rgba(10,25,47,0.98);*/
            /*border-radius: 16px;*/
            /*padding: 15px;*/
        }
        
        
    }
        

    @media (max-width: 768px) {
        /* ======================================================
                        INDEX - RESPONSIVE
        ===================================================== */
        .hero-title {
            font-size: 2.2rem;
        }
        .section-title-modern {
            font-size: 1.8rem;
        }
        .navbar {
            padding: 0.8rem 1rem;
        }
        .ticker-label { font-size: 0.7rem; padding: 0.2rem 0.8rem; }
        .ticker-item { font-size: 0.75rem; padding: 0 1rem; }
        
        /* ======================================================
                         ABOUT US- RESPONSIVE 
        ===================================================== */
        .about-section{
            padding: 50px 0;
        }
    
        .section-title{
            font-size: 1.8rem;
        }
        .about-hero{
            min-height: 280px;
        }
        .about-hero h1{
            font-size: 2rem;
        }
        .about-nsa-card{
            padding: 30px;
        }
        .about-nsa-content h3{
            font-size: 1.8rem;
        }
        .about-highlights{
            justify-content: center;
        }
        .about-nsa-image img{
            height: 300px;
        }
        .anthem-box{
            padding: 40px 25px;
        }
        
        /* =========================================================
                        ADMINISTRATION PAGE
        ============================================================ */
        .admin-section{
            padding: 50px 0;
        }
        .section-title{
            font-size: 1.8rem;
        }
        .admin-hero{
            min-height: 280px;
        }
        .admin-hero h1{
            font-size: 2rem;
        }
        .admin-card{
            padding: 30px;
        }
        .admin-card h3{
            font-size: 1.6rem;
        }
        
    }
    /*===============Admission Page =============================
    ========================================================*/
    /* ======================================================
                        GLOBAL
====================================================== */
.admission-section{
    padding: 70px 0;
}

/*.section-title{*/
/*    font-size: 2.4rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 15px;*/
/*    color: #0A192F;*/
/*}*/

.section-subtitle{
    color: #64748B;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* ======================================================
                        HERO
====================================================== */
.admission-hero{
    position: relative;
    min-height: 350px;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('uploads/campus/campus.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 30px;
}

.admission-hero h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.admission-hero p{
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ======================================================
                    ADMISSION CARD
====================================================== */
.admission-card{
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.admission-card::before{
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(245,166,35,0.08);
}

.admission-content{
    position: relative;
    z-index: 2;
}

.admission-badge{
    display: inline-block;
    background: rgba(245,166,35,0.12);
    color: #E69500;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.admission-card h3{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0A192F;
}

.admission-card p{
    color: #64748B;
    line-height: 1.9;
}

/* ======================================================
                    PROCESS STEPS
====================================================== */
.process-steps{
    margin-top: 30px;
}

.process-step{
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.step-number{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FFF7EC;
    color: #E69500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5{
    font-weight: 700;
    margin-bottom: 8px;
    color: #0A192F;
}

.step-content p{
    margin-bottom: 0;
}

/* ======================================================
                        TABLE
====================================================== */
.admission-table{
    background: #fff;
    border: 1px solid #dbe2ea;
    margin-top: 25px;
}

.admission-table thead{
    background: #0A192F;
    color: #fff;
}

.admission-table th{
    padding: 14px;
    font-weight: 600;
    border: 1px solid #dbe2ea !important;
}

.admission-table td{
    padding: 14px;
    border: 1px solid #dbe2ea !important;
    color: #475569;
}

.admission-table tbody tr:hover{
    background: #F8FAFE;
}

/* ======================================================
                    NOTIFICATION BOX
====================================================== */
.notification-box{
    background: linear-gradient(135deg, #0A192F, #132845);
    border-radius: 28px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.notification-box::before{
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.notification-box h4{
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.notification-box p,
.notification-box ul{
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.92);
    line-height: 1.9;
}

.notification-box ul{
    padding-left: 20px;
}

/* ======================================================
                    RESPONSIVE
====================================================== */
@media(max-width:768px){

    .admission-section{
        padding: 50px 0;
    }

    .section-title{
        font-size: 1.8rem;
    }

    .admission-hero{
        min-height: 280px;
    }

    .admission-hero h1{
        font-size: 2rem;
    }

    .admission-card{
        padding: 30px;
    }

    .admission-card h3{
        font-size: 1.6rem;
    }

    .notification-box{
        padding: 30px;
    }
}
