:root {
    --primary-color: #0066cc;
    --secondary-color: #ffc107;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

.navbar-dark.bg-primary {
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        transform: translateY(-2px);
    }

.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: bottom;
    }

.hero-flag {
    max-width: 150px;
    height: auto;
    animation: fadeInDown 1s ease;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }

.service-icon {
    animation: fadeIn 1s ease;
}

.feature-box {
    transition: all 0.3s ease;
}

    .feature-box:hover {
        transform: scale(1.05);
    }

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-body {
    position: relative;
}

.value-item, .benefit-item {
    transition: all 0.3s ease;
}

    .value-item:hover, .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.job-listing .card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

    .job-listing .card:hover {
        border-left-color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.testimonial-avatar {
    transition: all 0.3s ease;
}

    .testimonial-avatar:hover {
        transform: rotate(360deg);
    }

footer {
    margin-top: auto;
}

    footer a {
        text-decoration: none;
        transition: all 0.3s ease;
    }

        footer a:hover {
            color: var(--secondary-color) !important;
            padding-left: 5px;
        }

.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.btn-warning {
    color: #000;
}

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    }

.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .list-group-item:hover {
        background-color: #f8f9fa;
        padding-left: 1.5rem;
    }

.alert {
    border-radius: 10px;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .navbar-brand span {
        font-size: 0.9rem;
    }

    .card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 250px;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .display-6 {
        font-size: 1.2rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #0052a3;
        border-color: #0052a3;
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

hr {
    opacity: 0.1;
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.table {
    margin-bottom: 0;
}

iframe {
    border-radius: 0 0 10px 10px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 20px;
        width: 2px;
        background: #e9ecef;
    }

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-item.completed .timeline-marker {
    box-shadow: 0 0 0 3px #28a745;
}

.timeline-item.active .timeline-marker {
    box-shadow: 0 0 0 3px #0d6efd;
    animation: pulse 2s infinite;
}

.timeline-content {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #e9ecef;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 2px #0066cc;
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.3);
    }

    100% {
        box-shadow: 0 0 0 2px #0066cc;
    }
}
.timeline-item.completed .timeline-content {
    border-left-color: #28a745;
}

.timeline-item.active .timeline-content {
    border-left-color: #0d6efd;
    background: #e7f1ff;
}

.timeline-content h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #495057;
}

.timeline-item.completed .timeline-content h6 {
    color: #28a745;
}

.timeline-item.active .timeline-content h6 {
    color: #0d6efd;
}
/* Form validation styles */
.is-invalid {
    border-color: #dc3545 !important;
}

    .is-invalid:focus {
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
    }

/* File upload styles */
input[type="file"]::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: all 0.15s ease-in-out;
}

input[type="file"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

/* Progress bar animation */
.progress-bar {
    transition: width 0.6s ease;
}
/* Info Box Styles */
.info-box {
    transition: all 0.3s ease;
}

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Process Steps */
.process-steps .step-item {
    transition: all 0.3s ease;
}

    .process-steps .step-item:hover {
        transform: translateX(10px);
    }

/* Print Styles */
@media print {
    .navbar, footer, .btn, .alert {
        display: none !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }

    .page-header {
        background: #fff !important;
        color: #000 !important;
    }
}
