        :root {
            --primary-color: #112465;
            --secondary-color: #293B78;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #333;
            --light-blue: #e3f2fd;
            --btn-color: #EDD823;
            --btn-second-color: #e7d741;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
            background-size: cover;
        }

        .page-header h1 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        input,
        label {
            font-size: 1.0rem;
        }

        /* Search Section */
        .search-section {
            background-color: white;
            padding: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .search-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .search-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .search-title i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-color);
        }

        .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
            font-size: 1.0rem;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.15);
        }

        .search-button {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 10px;
            font-size: 0.9rem;
        }

        .search-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.3);
        }

        .reset-button {
            background: #f8f9fa;
            color: var(--dark-color);
            border: 1px solid #e0e0e0;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .reset-button:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }

        /* Results Section */
        .results-section {
            padding: 30px 0 60px;
        }

        .results-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .results-count {
            font-size: 1.1rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .sort-options {
            display: flex;
            align-items: center;
        }

        .sort-label {
            margin-right: 10px;
            font-weight: 500;
            font-size: 1.0rem;
        }

        .school-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .school-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--primary-color);
        }

        .school-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .school-type {
            display: inline-block;
            background: rgba(106, 17, 203, 0.1);
            color: var(--primary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .school-ownership {
            display: inline-block;
            background: rgba(37, 117, 252, 0.1);
            color: var(--secondary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            margin-left: 8px;
        }

        .school-details {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .school-detail {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 10px;
            color: #666;
            font-size: 0.9rem;
        }

        .school-detail i {
            margin-right: 8px;
            color: var(--primary-color);
        }

        .school-actions {
            display: flex;
            gap: 10px;
        }

        .action-button {
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.8rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .view-button {
            background: rgba(106, 17, 203, 0.1);
            color: var(--primary-color);
        }

        .view-button:hover {
            background: rgba(106, 17, 203, 0.2);
            color: var(--primary-color);
        }

        .contact-button {
            background: var(--primary-color);
            color: white;
        }

        .contact-button:hover {
            background: var(--secondary-color);
            color: white;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .no-results i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .pagination{
            margin: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 40px;
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .search-card {
                padding: 20px;
            }

            .results-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .sort-options {
                margin-top: 15px;
            }

            .school-details {
                flex-direction: column;
            }

            .school-detail {
                margin-right: 0;
            }

            .school-actions {
                flex-direction: column;
            }

            .action-button {
                justify-content: center;
            }
        }








        /* -- VIEW_INSTITUTIONS -- */


        /* Institution Header */
        .institution-header {
            background: white;
            padding: 40px 0;
            margin-top: -30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
        }

        .institution-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 20px;
        }

        .badge-primary {
            background: rgba(106, 17, 203, 0.1);
            color: var(--primary-color);
        }

        .badge-secondary {
            background: rgba(37, 117, 252, 0.1);
            color: var(--secondary-color);
            margin-left: 10px;
        }

        .institution-name {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .institution-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .institution-location i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        p.lead {
            font-size: 1rem;
        }

        .institution-stats {
            display: flex;
            gap: 30px;
            margin-top: 25px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.0rem;
            font-weight: 600;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #666;
        }

        /* Content Section */
        .content-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(106, 17, 203, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .info-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .info-content p {
            color: #666;
            margin-bottom: 0;
        }

        /* Contact Card */
        .contact-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
        }

        .contact-card h3 {
            color: white;
            margin-bottom: 20px;
        }

        .contact-info {
            text-align: left;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-item i {
            margin-right: 15px;
            font-size: 1.2rem;
            width: 20px;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 255, 255, 0.3);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 10px 25px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 40px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .institution-name {
                font-size: 2rem;
            }

            .institution-stats {
                flex-direction: column;
                gap: 15px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .contact-card {
                padding: 30px 20px;
            }
        }