body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar Styling */
.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-dark .navbar-nav .active > .nav-link {
    color: #fff !important;
    font-weight: 600;
}

/* Card and Form Styling */
.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-title {
    color: #17428b;
    font-weight: 700;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control, .form-select {
    padding: 0.75rem;
    border-radius: 0.375rem;
    border-color: #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

/* Button Styling */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Results Styling */
#results .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#results .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 10px;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background-color: #17428b;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(23, 66, 139, 0.9) 0%, rgba(13, 110, 253, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.rounded-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%; /* Ensures circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* Adjust if initials look too large/small */
    line-height: 1; /* Ensures text fits neatly */
}

/* Services Cards */
.service-card {
    border: none;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem; /* Centers horizontally and adds space below */
}

.service-icon i {
    font-size: 1.75rem;
    color: #0d6efd;
}

/* Footer Styling */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
