/* Container to center the content */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pushes logo to left, links to right */
    align-items: center;
    padding: 15px 20px;
}

/* The Navigation Bar Background */
.custom-nav {
    background-color: #333; /* Change to your brand color */
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Removing bullet points and making it horizontal */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Space between links */
    margin: 0;
    padding: 0;
}

/* Link Styling */
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Hover Effect */
.nav-links a:hover {
    color: #00aaff; /* Change to your highlight color */
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 15px;
        gap: 15px;
    }
    
    /* Force dropdown to show on hover */
.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* Adjust positioning */
}

/* Style the dropdown box to look like your theme */
.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    display: block;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}





/* Forces the select dropdowns to match the input font color and style */
.contact-form select.form-control {
    color: #495057 !important; /* Standard Bootstrap/Porto text color */
    font-size: 0.85rem;        /* Matches standard input size */
    height: calc(1.5em + 1.3rem + 2px); /* Matches Porto's input height */
}

/* Optional: This fixes the color for the "placeholder" (disabled) option */
.contact-form select.form-control:invalid,
.contact-form select.form-control option[value=""] {
    color: #999 !important;
}
}/* Add here all your CSS customizations */
