/* navbar.css */
header {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
}

.navbar {
    padding: 0.75rem 1rem;
    
}

.navbar-brand img {
    width: 150px;
    
}

.navbar-nav {
    display: flex;
    justify-content: center;
    gap: 10px; 
}

.nav-link {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover,
.nav-link.active {
    color: #3d448a !important;
}

.navbar-toggler {
    border: none;
}

.navbar-collapse {
    justify-content: center;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin: 1rem;
        background: rgba(49, 49, 49, 0.105);
        padding: 0.5rem;
        border-radius: 0.5rem;
    }

    .nav-link {
        display: block;
        font-weight: 750 !important;
    }
}


/*Footer*/
.footer {
    background: linear-gradient(45deg, #a8edea, #fed6e3); 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer img {
    width: 150px;
}

.footer ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
    gap: 30px; 
}

.footer ul li {
    list-style: none;
    font-size: 1.2rem !important;
    font-weight: 500;
}

.footer a:hover {
    color: #7a7a7a !important; 
}

.footer a i {
    font-size: 1.2rem;
    transition: color 0.3s ease;
    
}

.footer .row {
    align-items: center;
}

.footer .social-links p {
    font-size: 1.1rem;
    margin: 1.2rem 0;
    font-weight: 500;
}

.footer .social-links a i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .footer img{
        width: 130px;
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .footer ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer ul li{
        font-size: 1rem !important;
    }

    .footer .social-links{
        margin-top: 10px;
        margin-bottom: 15px !important;
        align-items: center;
        justify-content: center;
    }
}