.header-container {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.header-logo:hover {
    color: #e6f2ff;
    transform: translateY(-2px);
}

.header-logo-icon {
    margin-right: 12px;
    font-size: 2rem;
    color: #b3d9ff;
}

.header-nav-link {
    display: flex;
    align-items: center;
    color: #e6f2ff !important;
    font-weight: 500;
    padding: 0.7rem 1.2rem !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.header-nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-nav-icon {
    margin-right: 8px;
    font-size: 1.3rem;
}

.header-toggler {
    border: none;
    padding: 0.4rem 0.7rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.header-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.header-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .header-nav-collapse {
        background-color: #0a58ca;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        margin-top: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    .header-nav-link {
        margin: 8px 0;
        justify-content: center;
    }
}

.header-content {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.header-content h1 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.header-content p {
    color: #1a6fd4;
    font-size: 1.1rem;
    line-height: 1.6;
}

.header-feature-box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0d6efd;
}

.header-feature-box h3 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* footer  */
.footer-container {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    margin-right: 12px;
    font-size: 2rem;
    color: #b3d9ff;
}

.footer-description {
    color: #cce5ff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #cce5ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link-icon {
    margin-right: 8px;
    font-size: 1.1rem;
    color: #b3d9ff;
}

.footer-contact {
    color: #cce5ff;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-contact-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #b3d9ff;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #b3d9ff;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    text-align: center;
    color: #cce5ff;
    font-size: 0.9rem;
}

.footer-newsletter {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #084298;
}

.footer-newsletter .btn {
    background-color: #0d6efd;
    border: none;
    color: white;
    font-weight: 500;
}

.footer-newsletter .btn:hover {
    background-color: #0b5ed7;
}

@media (max-width: 767.98px) {
    .footer-col {
        margin-bottom: 2rem;
    }
}