        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: white; 
            color: #fff;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5px;
            position: relative;
            height: 60vh;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 10px;
          }
          
          .logo-image {
            width: 100px;
            transition: transform 0.3s ease-in-out;
          }
          
          .logo-image:hover {
            transform: scale(1.1) rotate(10deg);
          }
          
          .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
          }
          
          .nav-links li a {
            color: #001f3f;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
          }
          
          .nav-links li a:hover {
            color: #778085;
            transform: translateY(-5px);
          }
          .track{
            background-color: rgb(253, 147, 26);
            padding: 8px 16px;
            color: white;
            border-radius: 25px;
            margin-top: 10px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 10px rgba(253, 147, 26, 0.5);
            text-decoration: none;
          }
          /* CTA button styling with glow effect */
          .cta {
            background-color: rgb(253, 147, 26);
            padding: 8px 16px;
            color: white;
            border-radius: 25px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 10px rgba(253, 147, 26, 0.5);
          }
          
          .cta:hover {
            background-color: #005fa3;
            box-shadow: 0 0 20px rgba(253, 147, 26, 1);
          }
          
          /* Menu toggle button (hamburger icon) */
          .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
          }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            height: 40vh;
            margin-bottom: 30px;
            background: linear-gradient(to right, #001f3f, #0074d9);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 3rem;
            -webkit-background-clip: text;
        }
        .hero p {
            font-size: 15px;
            margin-top: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }
        @keyframes glow {
            0% { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; }
            100% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
        }

        /* Decorative Animations */
        .circle {
            position: absolute;
            border-radius: 50%;
            background: white;
            opacity: 0.4;
            animation: move 10s infinite ease-in-out;
        }
        .circle.one {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }
        .circle.two {
            width: 300px;
            height: 300px;
            bottom: -100px;
            right: -100px;
        }
        @keyframes move {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(30px) translateX(30px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.9rem;
            }
        }

        /* Menu toggle button (hamburger icon) */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }

        /* Section Container */
        .performance-tracker {
            background: white;
            border-radius: 15px;
            padding: 5px;
            margin: auto;
            width: 100%;
            max-width: 1200px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: solid;
            border-color: #0074d9;
        }

        /* Floating Glow Effects */
        .performance-tracker::before,
        .performance-tracker::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(to right, #00ffff, #0074d9);
            animation: floating 5s infinite ease-in-out;
            opacity: 0.2;
            z-index: -1;
        }

        .performance-tracker::before {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }
        .performance-tracker::after {
            width: 300px;
            height: 300px;
            bottom: -80px;
            right: -80px;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Section Content */
        .performance-tracker p {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: #4CAF50;
        }
        .performance-tracker input {
            width: 80%;
            max-width: 1200px;
            padding: 0.8rem;
            border-radius: 10px;
            border: none;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #001f3f;
            background: rgb(245, 243, 243);
            outline: none;
        }
        .performance-tracker button {
            padding: 0.8rem 2rem;
            margin-bottom: 20px;
            font-size: 1rem;
            color: #fff;
            background: #4CAF50;
            border: none;
            border-radius: 10px;
            cursor: pointer;
        }
        

        /* Responsive Design */
        @media (max-width: 768px) {
            .performance-tracker input {
                width: 100%;
            }
            .performance-tracker button {
                width: 100%;
            }
        }

        /* School Report Section */
.report {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #001f3f, #0074d9);
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Glow Effects */
.report::before, 
.report::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), rgba(0, 0, 128, 0.5));
    opacity: 0.3;
    animation: floating 8s infinite ease-in-out;
    z-index: -1;
}
.report::before {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -70px;
}
.report::after {
    width: 300px;
    height: 300px;
    bottom: -70px;
    right: -100px;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Section Title */
.report h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: white;
	-webkit-background-clip: text;
	/* -webkit-text-fill-color: transparent; */
	/* animation: glow-text 2s infinite alternate; */
	/* text-shadow: 0 0 10px rgba(0, 255, 255, 0.8); */
}

@keyframes glow-text {
    0% { text-shadow: 0 0 10px #00ffff; }
    100% { text-shadow: 0 0 20px #ff00ff; }
}

/* Description Text */
.report p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Input and Button Container */
.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.input-container input {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    width: 60%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: box-shadow 0.3s ease;
}

.input-container input:focus {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.input-container button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(to right, #00ffff, #ff00ff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .report h2 {
        font-size: 2rem;
    }
    .input-container {
        flex-direction: column;
    }
    .input-container input,
    .input-container button {
        width: 100%;
    }
}
/* Footer Styling */
.footer {
    background: linear-gradient(to right, #001f3f, #0074d9);
    color: #fff;
    padding: 3rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo img {
    max-width: 150px;
    filter: drop-shadow(0 0 10px #00ffff);
    margin: 20px;
}

.footer-logo p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    flex: 1;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 0.5rem 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00ffff;
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.footer-contact p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: #00ffff;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    margin-top: 1rem;
}

.social-links .social-icon {
    display: inline-block;
    margin: 0 0.5rem;
}

.social-links .social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-links .social-icon:hover img {
    transform: scale(1.1);
}


@media (max-width: 480px) {
    .performance-tracker {
        margin-top: 50px ;
    }

    .hero{
        height: 66vh;
    }
    .hero h1 {
        font-size: 37px;
    }
    nav ul li a {
        font-size: 17px;
    }
    .footer-bottom p {
        font-size: 13px;
    }
    .report h2 {
        font-size: 25px;
      }
      .report p {
        font-size: 15px;
      }
      .footer-container {
        display: block;
    }
    .footer-logo img {
        margin: 20px;
    }
    
    }

    

    @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .menu-toggle {
          display: block;
          color: #0074d9;
        }
        .nav-links.show {
            display: flex;
            flex-direction: column;
            gap: 33px;
            position: absolute;
            top: 50px;
            right: 10px;
            background-color: rgba(0, 51, 102, 0.9);
            padding: 20px;
            border-radius: 10px;
            height: 40vh;
            width: 50%;
            z-index: 1000;
        }
      }
/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        flex: none;
        text-align: center;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-links ul li a,
    .footer-contact p {
        font-size: 0.9rem;
    }
}



#reportContent {
    max-width: 900px;
    margin: 0 auto;
}

/* Student Info Section */
.student-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.student-info img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.student-info h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.student-info p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

/* Wrapper to enable scrolling on small screens */
.performance-table-container {
    width: 100%;
    overflow-x: auto;
}

/* Performance Table Styles */
.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.performance-table thead {
    background-color: #4CAF50;
    color: white;
}

.performance-table th, .performance-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}




.performance-table th {
    font-size: 18px;
    font-weight: bold;
}

.performance-table td {
    font-size: 16px;
}
/* Responsive Styling */
@media screen and (max-width: 768px) {
    .performance-table th, 
    .performance-table td {
        font-size: 14px;
        padding: 8px 10px;
    }
    .performance-table {
        max-width: 650px; /* Prevents collapsing on small screens */
    }
}

@media screen and (max-width: 480px) {
    .performance-table-container {
        overflow-x: auto;
    }
    
    .performance-table th, .performance-table td {
        font-size: 10px;
        padding: 13px 4px;
        color: white;
      }
    .performance-table {
        max-width: 480px; /* Prevents collapsing on small screens */
    }
    .report{
        padding: 2rem 0.5rem;
    }
    .logo-image {
        width: 70px;
        transition: transform 0.3s ease-in-out;
      }
}

/* No Result or Error Messages */
.no-result, .error {
    text-align: center;
    font-size: 18px;
    color: #333;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 30px;
}

.no-result {
    color: #e74c3c;
}

.error {
    color: #e67e22;
}


