:root {
    --primary-color: #004D40;
    --secondary-color: #00796B;
    --text-color: #333;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px; /* Reduced from 80px to match navbar height */
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 60px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 70px; /* Fixed height for logo container */
}

.logo-img {
    display: block;
    width: 70px;  /* Increased slightly from 25px for better visibility */
    height: 70px; /* Keep aspect ratio square */
    object-fit: contain; /* Changed from cover to maintain logo proportions */
    max-width: 100%; /* Ensure logo doesn't overflow */
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-left: 2rem; /* Add some space after logo/company name */
    align-items: center;
    flex: 1; /* Added flex grow */
    justify-content: flex-end; /* Added justify-content */
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}



