body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333; /* Default text color */
    background-color: #f4f4f4; /* Light grey background */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121; /* Dark grey/black for titles */
    margin-bottom: 2rem;
    text-align: center;
}
.card {
    background-color: #ffffff; /* White card background */
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Added box-shadow transition */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}
.experience-item {
    border-bottom: 1px solid #e0e0e0; /* Light grey border */
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rating {
    color: #ffc107; /* A touch of gold/yellow for stars */
}

/* Basic Fade-in Animation for sections */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

 /* Slide-up Animation for cards */
 .slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    padding-left: 1rem; /* Add some padding to the left */
}

.mobile-menu-items a {
    padding: 0.5rem 0; /* Add vertical padding to links */
    width: 100%; /* Make links take full width for easier clicking */
}

/* Smooth transition for menu visibility */
@media (max-width: 767.98px) {
    #menu-items {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out; /* Added padding transition */
        padding: 0 1rem; /* Initial padding, will transition */
    }

    #menu-items.open {
        max-height: 500px; /* Adjust as needed, should be larger than the menu content */
        opacity: 1;
        padding: 1rem; /* Padding when open */
    }
}

/* Sticky Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50; /* Tailwind z-index for being on top */
}