
    /*  School sub system css */
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding-top: 50px; /* Offset for fixed header */
        }
        
        /* Fixed Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            color: white;
            padding: 0.1rem 1rem ;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        #menu-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        #menu-toggle:hover {
            transform: scale(1.1);
        }
        
        /* Sliding Menu with Adjusted Speed */
        #sliding-menu {
            position: fixed;
            top: 50px; /* Below the fixed header */
            right: -320px;
            width: 300px;
            height: calc(100vh - 70px);
            background-color: #34495e;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Moderate speed with smooth easing */
            z-index: 1000;
            padding: 2rem 1rem;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }
        
        #sliding-menu.active {
            right: 0;
        }
        
        #sliding-menu ul {
            list-style: none;
            margin-top: 1rem;
        }
        
        #sliding-menu li {
            margin: 1rem 0;
            border-bottom: 1px solid #4a6278;
            padding-bottom: 0.5rem;
            transition: transform 0.2s;
        }
        
        #sliding-menu li:hover {
            transform: translateX(5px);
        }
        
        #sliding-menu a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            transition: color 0.2s;
        }
        
        #sliding-menu a:hover {
            color: #3498db;
        }
        
        #menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: 0.5rem;
            right: 1rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        #menu-close:hover {
            transform: rotate(90deg);
        }
        
        .overlay {
            position: fixed;
            top: 50px; /* Below the fixed header */
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .overlay.active {
            display: block;
            opacity: 1;
        }
        /* Main Content */
        main {
            flex: 1;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            background: #EDEDED;
        }
        
        .hero {
            background-color: #3498db;
            color: white;
            padding: 2rem 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            text-align: center;

        }

        .rokisan {
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            padding: 2rem 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
          

        }

        .inner {
           padding:0px;
            margin-bottom: 1rem;

        }
                
        /* Horizontal Content Slider */
        .slider-container {
            position: relative;
            margin: 2rem 0;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
            gap: 1rem;
        }
        
        .slide {
            min-width: 100%;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        @media (min-width: 768px) {
            .slide {
                min-width: calc(50% - 0.5rem);
            }
        }
        
        @media (min-width: 1024px) {
            .slide {
                min-width: calc(33.333% - 0.666rem);
            }
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
            gap: 0.5rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bdc3c7;
            border: none;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: #3498db;
        }
        
        /* Responsive Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .grid-item {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        /* Fat Footer */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 1rem 1rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-column h3 {
            color: #3498db;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-column a:hover {
            color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }