/* Ensure the entire body uses flexbox layout to stick footer to the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif; /* Use a modern, clean font */
    
}

/* Services Section */
#services {
    padding: 6rem 2rem 4rem; /* Added top padding for more room */
    background: #f9f9f9; /* Light background */
    flex-grow: 1; /* Ensures content grows to fill remaining space */
    margin-top: 100px; /* Make sure services section starts below the fixed header */
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* Service Item */
.service-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Subtle hover lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.service-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    color: #666; /* Lighter text color */
    line-height: 1.5;
}

/* Header Fix */
header {
    position: fixed; /* Keeps header fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    background: #fff; /* White background */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    margin-left: 1rem;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav a:hover {
    color: #007BFF;
}
/* Remove Underline from Links */
a {
    text-decoration: none; /* Removes underline */
}
