.profile-header {
    background: #ffffff;
    color: #2d3748;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    letter-spacing: 0;
    border-bottom: 3px solid #2563eb;
}

.profile-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.profile-header p {
    font-size: 1.1rem;
    opacity: 1;
    margin-bottom: 0;
    color: #666;
    font-weight: 600;
}

.profile-header .btn {
    margin: 0.25rem;
}

.experience-card, .skills-card {
    border-left: 5px solid #2563eb;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.experience-card:hover, .skills-card:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.body-content {
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #f9fafb;
    min-height: 100vh;
    color: #2d3748;
}

/* Form inputs with modern styling */
input, textarea {
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
}

input:focus, textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.10);
    outline: none;
    background: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
}

/* Navbar with simple styling */
.navbar {
    --bs-navbar-active-color: #2563eb;
    --bs-navbar-padding-y: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    background: #ffffff !important;
    border-bottom: 2px solid #2563eb;
}

/* Use a filled active style for highlighting active tab - matches header button style */
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.15);
    border: 1px solid #2563eb;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    background: #eff6ff !important;
    color: #2563eb !important;
    border-radius: 0.5rem;
    border: 1px solid #2563eb;
    transition: all 0.2s ease;
}

/* Navbar buttons with simple styling */
.navbar-nav .nav-link {
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    background: #ffffff !important;
    border: 1px solid #d1d5db;
    color: #2563eb !important;
    font-weight: 500;
}
.gap-2{
    gap: .2rem !important;
}
/* Button style for forms */
.btn-primary, button[type="submit"] {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.15);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover, button[type="submit"]:hover {
    background: #1d4ed8;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

/* Add smooth transitions to all links */
a {
    transition: all 0.2s ease;
    text-decoration: none;
    color: #2563eb;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
    color: #2d3748;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.75rem;
    display: inline-block;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}
