html,
body {
padding-bottom: 200px;
}

ul {
padding-left: 1.2rem;
margin-bottom: 1rem;
list-style: none;
}

.experience-card {
background: transparent;
border-radius: 10px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.experience-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.company-name {
color: #2d3748;
font-weight: 600;
font-size: 1.25rem;
margin-bottom: 0.25rem;
}

.job-details {
color: #718096;
font-style: italic;
margin-bottom: 1rem;
}

.achievement-list {
list-style: none;
padding-left: 0;
}

.achievement-list li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.5rem;
color: #4a5568;
}

.achievement-list li::before {
content: "•";
position: absolute;
left: 0;
color: #4299e1;
font-weight: bold;
font-size: 1.2rem;
}

.highlight-number {
color: #4299e1;
font-weight: bold;
}
.side-navbar {
display: block; /* Force vertical stacking */
top: 50px;
}

@media (max-width: 768px) {
.side-navbar.sticky-top {
position: static !important;
top: auto !important;
}
}
