 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #150b59 0%, #2d1b8f 100%);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-100px) translateX(50px); }
        }

        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            position: relative;
            z-index: 10;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
        }

        .logo img {
            width: 50%;
            
            object-fit: contain;
            border-radius: 10px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .school-name {
            display: flex;
            flex-direction: column;
        }

        .school-name h1 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #150b59;
            margin: 0;
            line-height: 1.2;
        }

        .school-name p {
            font-size: 0.8rem;
            color: #666;
            margin: 0;
        }

        .main-container {
            position: relative;
            z-index: 1;
            padding: 40px 0;
            flex: 1;
        }

        .portal-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            margin: 0 auto;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .portal-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .portal-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #150b59;
            margin-bottom: 10px;
        }

        .portal-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .option-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: left 0.5s;
        }

        .option-card:hover::before {
            left: 100%;
        }

        .option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(21, 11, 89, 0.3);
            border-color: #150b59;
        }

        .option-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #150b59;
        }

        .option-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #150b59;
            margin-bottom: 10px;
        }

        .option-desc {
            color: #666;
            font-size: 0.9rem;
        }

        .btn-custom {
            background: #150b59;
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(21, 11, 89, 0.4);
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(21, 11, 89, 0.6);
            background: #1f0f7a;
            color: white;
        }

        .footer {
            background: rgba(0, 0, 0, 0.2);
            color: white;
            padding: 30px 0;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content p {
            margin: 5px 0;
            font-size: 0.95rem;
        }

        .footer-content a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-content a:hover {
            color: #ffd700;
        }

        @media (max-width: 768px) {
            .portal-card {
                padding: 25px;
            }

            .portal-header h2 {
                font-size: 2rem;
            }

            .option-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .school-name h1 {
                font-size: 1.2rem;
            }

            .logo {
                width: 60px;
                height: 60px;
            }
        }

        .modal-content {
            border-radius: 15px;
            border: none;
        }

        .modal-header {
            background: #150b59;
            color: white;
            border-radius: 15px 15px 0 0;
        }

        .fees-page {
            background: linear-gradient(135deg, #150b59 0%, #2d1b8f 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        .fees-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .fees-header {
            background: #150b59;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .info-section {
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .info-section p {
            margin: 8px 0;
            font-size: 1rem;
        }

        .info-section strong {
            color: #150b59;
        }

        .table-responsive {
            margin: 20px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        table th {
            background: #150b59;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        table td {
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
        }

        table tbody tr:hover {
            background: #f8f9fa;
        }

        .btn-pay-now {
            background: #007bff;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-pay-now:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }

        .btn-details {
            background: #007bff;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-details:hover {
            background: #0056b3;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #150b59;
            margin: 30px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #150b59;
        }