/* Basic Styling */
body {
    margin: 0;
    font-family: sans-serif;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar.scrolled {
    background-color: white;
    color: black;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 40px; /* Add margin to move it right */
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: 80px; /* Add margin to move links to the left */
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
}

/* Contact Dropdown */
.contact-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto; /* Push to the right */
    margin-right: 40px; /* Add margin from the right */
}
.contact-button {
    background-color: #007bff; /* Blue background color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px; /* Add rounded corners */
    cursor: pointer;
}
.contact-dropdown .dropdown-content {  /* Target the correct dropdown */
    display: none;
    position: absolute;
    background-color:#212121; /* Light brown background color */
    min-width: 200px; /* Increased width */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0; /* Align to the right */
}

.contact-dropdown .dropdown-content p { /* Style for contact details */
    margin: 0;
    padding: 10px;
}

.contact-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content p { /* Style for contact details */
    margin: 0;
    padding: 10px;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content { /* This applies to nav link dropdowns */
    display: none;
    position: absolute;
    background-color: #f9f9f9; /* Original background color */
    min-width: 160px; /* Original width */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Banner */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 50px; /* Adjust for navbar height */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Divs */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.div-section {
    width: 45%;
    margin-bottom: 20px;
    padding: 20px;
    border: 0px solid #ddd;
    box-sizing: border-box;
    box-color:blue;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.footer-section ul {
    list-style: none; /* Remove list item dots */
    padding: 3px; /* Remove default padding */
}

.footer-section li {
  line-height: 1.5; /* Adjust the value as needed */
}
.footer-left {
    width: 40%;
    line-height:0.5;
}

.footer-right {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-section {
    width: 45%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .contact-dropdown {
        margin-left: auto;
    }
    .banner {
        height: 300px;
    }
    .content {
        flex-direction: column;
        align-items: center;
    }
    .div-section {
        width: 90%;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-right {
        width: 100%;
    }
    .footer-right {
        margin-top: 20px;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
}