/* :root {
    --primary-color: #6a994e;
    --secondary-color: #a7c957;
    --accent-color: #f2e8cf;
    --dark-color: #386641;
    --light-color: #f8f9fa;
} */

/* :root {
    --primary-color: #4A90E2; 
    --secondary-color: #58D68D;
    --accent-color: #FAD7A0; 
    --dark-color: #1D3C3A;
    --light-color: #F5F5F5; 
} */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #50B8D3;
    --accent-color: #A1D8E6;
    --dark-color: #2C6D8F;
    --light-color: #E3F2FD;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.bg-secondary-custom {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
}

.hero-section {
    background: linear-gradient(rgba(4, 94, 110, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1200x800/?school,children') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid white;
}

.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    background-color: var(--dark-color);
    color: white;
}

.accessibility-features {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.accessibility-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.login-container {
    max-width: 450px;
    margin: auto;
    padding: 2rem;
}

.login-card {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.login-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.login-body {
    padding: 2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(106, 153, 78, 0.25);
}

.login-footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--accent-color);
}

.login-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-floating>label {
    color: #666;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 1rem;
    color: #666;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bg-facebook {
    background-color: #4267B2;
}

.bg-twitter {
    background-color: #1DA1F2;
}

footer {
    background-color: var(--dark-color);
    color: white;
    margin-top: auto;
}

.navbar-brand {
    font-weight: bold;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 576px) {
    .login-container {
        padding: 1rem;
    }

    .login-header,
    .login-body {
        padding: 1.5rem;
    }
}


.profile-header {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.status-card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.status-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
}

.status-body {
    padding: 1.5rem;
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background-color: transparent;
}

.tab-content {
    background-color: white;
    border-radius: 0 0 10px 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.document-item:last-child {
    border-bottom: none;
}

.document-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid white;
}

.timeline-item.completed::before {
    background-color: var(--primary-color);
}

.timeline-item.current::before {
    background-color: var(--secondary-color);
}

.timeline-item.pending::before {
    background-color: #ccc;
}

.avatar-dropdown .dropdown-toggle::after {
    display: none;
}

.avatar-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.user-avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu .active {
    background-color: var(--primary-color);
    color: white;
}

footer {
    background-color: var(--dark-color);
    color: white;
    margin-top: auto;
}

.google-btn {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    padding: 0;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.google-btn:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.google-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
}

.google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    padding: 0 16px 0 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .profile-header {
        text-align: center;
    }

    .profile-avatar {
        margin-bottom: 1rem;
    }
}