body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

/* CSS Variables */
:root{
    --navbar-height: 59px;
}

/* Navigation Bar */
#navbar {
    display: flex;
    align-items: center;
    background-color: black; /* Coral color */
    padding: 10px 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo styling */
#logo img {
    height: 50px; /* Adjust as necessary */
    border-radius: 30px 30px 30px 30px;
}

/* Styles for the navigation list */
#navbar ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 0; /* Align list to the left */
}

/* Individual items within the navbar */
#navbar .home,
#navbar .about,
#navbar .Food,
#navbar .con,
#navbar .car {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Spacing between items */
    
}


#navbar .item a {
    text-decoration: none; /* Remove underline */
    color: white; /* Link color */
    padding: 10px;
    transition: color 0.3s; /* Smooth transition for hover effect */
}

#navbar .item a:hover {
    color: #FFD700; /* Gold color on hover */
    background-color: white;
    border-radius: 25px; 

}

#navbar ul {
    margin-left: auto;
}


/* Icon styling */
.material-symbols-outlined {
    margin-right: 1px; /* Space between icon and text */
    font-size: 20px; /* Size of the icon */
    color: white; /* Icon color */
}



/* Additional styling for all items to align left */
#navbar > div,
#navbar ul > div {
    display: flex; /* Ensure all items use flex layout */
    align-items: center; /* Center items vertically */
    margin: 0; /* Remove default margins */
}





.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
align-items: center;
}


.header {
text-align: center;
padding: 20px 0;
margin-top: 40px;
}

.header h1 {
margin: 0;
font-size: 2em;
}

.content {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 20px;
margin-bottom: 20px;

}

.contact-info {
    background-color: #f9f9f9; /* Light background color */
    padding: 20px; /* Space inside the container */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    margin-bottom: 20px; /* Space below the container */
    max-width: 700px; /* Optional: Limit the width of the container */
}

.contact-info h2 {
    color: #333; /* Heading color */
    margin-bottom: 15px; /* Space below the heading */
    font-size: 24px; /* Font size of the heading */
}

.contact-info p {
    color: #666; /* Text color */
    margin-bottom: 10px; /* Space below paragraphs */
    line-height: 1.6; /* Line height for better readability */
}

.contact-info p strong {
    color: #000; /* Bold text color */
    font-weight: bold; /* Make the text bold */
}

.contact-info a {
    color: #007BFF; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.contact-info a:hover {
    text-decoration: underline; /* Underline links on hover */
}

.contact-info p:last-child {
    margin-bottom: 0; /* Remove bottom margin from the last paragraph */
}

/* Map Container Styles */
.map {
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Maximum width for better appearance on large screens */
    height: 400px; /* Set a specific height for the map */
    margin: 20px auto; /* Center the map and add space above and below */
    border: 2px solid #ddd; /* Light border around the map */
    border-radius: 5px; /* Rounded corners for a modern look */
    overflow: hidden; /* Hide any overflow content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Map Iframe Styles */
.map iframe {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    border: 0; /* Remove default border */
    border-radius: 10px; /* Match the container's rounded corners */
}


/* Adjust the width of the contact form */
.contact-form {
/* flex: 0 0 40%; Flex-grow, flex-shrink, and flex-basis */
/* max-width: 50%; Maximum width of the form */
/* padding: 20px;
border-radius: 8px;
width: 40%;
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 20px; */
display: flex;
justify-content: space-between;
gap: 10px;
margin-top: 20px;

}

.contact-form h2 {
font-size: 1.5em;
margin-bottom: 20px;
margin-top: 10px;

}

.contact-form h3 {
    font-size: 1.5em;
    margin-top: 10px;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
}

.form-group {
margin-bottom: 15px;
width: 160px;
padding: auto;
}

.form-group input, .form-group textarea {
width: 100%;
padding: 10px;
margin: 5px 0;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1em;
}

.form-group textarea {
height: 100px;
}

.submit-btn {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}

.submit-btn:hover {
background-color: #45a049;
}

/* Team contacts section */
.team-contacts {
 /* Adjust flex-grow for the team contacts to take remaining space */
/* padding: 20px; */
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);

}


.team-contacts h2 {
font-size: 1.5em;
margin-bottom: 5px;

}

.team-member {
display: flex;
align-items: center;
gap: 10px;

}

.team-member img {
border-radius: 50%;
margin-right: 15px;
width: 60px;
height: 60px;
}

.team-member .info {
display: flex;
flex-direction: column;
}

.team-member .info h3 {
margin: 0;
font-size: 1.2em;
}

.team-member .info p {
margin: 2px 0;
font-size: 0.9em;
}

footer, footer * {
    margin: 0;
    padding: 0;
}

/* Main Footer Styling */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0; /* Remove any padding from the footer itself */
}

/* Column Styling */
footer .col {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo Styling */


/* Text Styling */
footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

/* Image Styling */
footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

/* Hover Effects */
footer .follow i:hover,
footer a:hover {
    color: #088178;
}

/* Copyright Section Styling */
footer .copyright {
    width: 100%;
    text-align: center;
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
    margin-top: 0; /* Remove any top margin */
    margin-top: 20px;
}
