
      :root {
            --primary: #1365c2;
            --primary-dark: #005656;
            --secondary: #5b0470;
            --light: #f4f9f9;
            --dark: #1a1a1a;
            --gray: #666666;
        }

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

        body {
            color: var(--dark);
            background-color: #ffffff;
            line-height: 1.6;
        }

        /* Top Header */
        .top-bar {
            background-color: var(--secondary);
            color: #fff;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .top-bar .info span {
            margin-right: 20px;
        }

        .top-bar .info i {
            margin-right: 5px;
            color: #4db6ac;
        }

        /* Main Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .brand-logo {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

        .btn-portal {
            background: var(--primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn-portal:hover {
            background: var(--primary-dark);
        }

        /* Hero Section */
       /* .hero {
            background: linear-gradient(rgba(0, 128, 128, 0.85), rgba(43, 57, 144, 0.85)), url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=1350&q=80') center/cover;
            color: white;
            padding: 100px 5%;
            text-align: center;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
*/
        /* Feature Cards */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            padding: 50px 5%;
            margin-top: -50px;
        }

        .card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            border-bottom: 4px solid var(--primary);
        }

        .card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* About Section */
        .about-section {
            padding: 60px 5%;
            display: flex;
            align-items: center;
            gap: 40px;
            background: var(--light);
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 32px;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: #fff;
            padding: 40px 5% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            margin-bottom: 15px;
            color: #4db6ac;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 14px;
            color: #bbb;
        }

        /* Admin Controls Bar */
        .admin-bar {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--dark);
            color: #fff;
            padding: 12px 20px;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 9999;
        }

        .admin-bar button {
            background: #ff9800;
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }

        .editable-active {
            outline: 2px dashed #ff9800 !important;
            background-color: rgba(255, 152, 0, 0.05);
        }
    