body{
    width: 100%;
    background-color: rgb(233, 235, 238);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.navbar{
    /* position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000; */
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-brand, .navbar-nav>.nav-item>.nav-link, .navbar-nav>.nav-item>.dropdown-menu>li>button>span{
    /* font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal; */
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 10pt;
}

.navbar-brand > h3{
    box-shadow: 0px 0px 5px 5px #ffffff69;
    border-radius: 6px;
    margin: 0;
    padding: 0 2px 4px 2px;
} 




/* Footer */
footer {
    background-color: var(--bs-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 12pt;
}

.footer-section p{
    font-size: 10pt;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 10pt;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .subjects-list {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .quiz-actions {
        flex-direction: column;
    }
    
    .quiz-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .score-card {
        padding: 2rem 1rem;
    }
    
    .score-percentage {
        font-size: 3rem;
    }
}

