
body {
    margin: 0; /* Remove default margin around the body */
    padding: 0;/* Remove default padding */
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
}

.description {
    line-height: 1.8; /* Improves readability with proper line spacing */
    color: #333; /* Neutral dark gray text color */
    margin: 3px auto; /* Center the content */
    max-width: 100%; /* Limit width for better readability */
    padding: 3px; /* Add padding for better layout */
    background-color: #fff; /* Light background to make the section stand out */
}

.description h2 {
    font-size: 1.8rem; /* Slightly larger font size for the heading */
    font-weight: bold; /* Make the heading bold */
    color: rgb(1, 46, 58); /* Accent color for the heading */
    margin-bottom: 5px; /* Space below the heading */
    
}

.description p {
    font-size: 1.1rem; /* Standard readable font size for paragraphs */
    margin-bottom: 5px; /* Add spacing between paragraphs */
}

.ad-container {
    min-height: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1; /* Light gray placeholder */
    color: #666;
    font-size: 12px;
}




/* Main container */
.container {
    /*width: 100%; /* Adjust the width to make it contained */
    max-width: 1100px; /* Set a maximum width */
    margin: 0 auto; /* Center the container */
    padding: 10px;
}

/* Header and Logo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: rgb(1, 46, 58);
    color: white;
    border-radius: 0px;
}

header .logo h2 {
    margin: 0 0 0 30px;
    font-size: 1.8rem;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}

.navbar .nav-list {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-list li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
  
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.navbar .nav-list li a:hover {
    background-color: #025d84;
    border-radius: 0px;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
            
.form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Submit Button Style */
button[type="submit"] {
    background-color: rgb(1, 46, 58); /* Primary blue color */
    color: #ffffff; /* White text */
    font-size: 16px; /* Adjust the font size */
    font-weight: bold; /* Make the text bold */
    padding: 10px 20px; /* Add some padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover Effect */
button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Focus Effect */
button[type="submit"]:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a subtle blue glow */
}

/* Disabled State */
button[type="submit"]:disabled {
    background-color: #d6d6d6; /* Light gray background */
    color: #999999; /* Gray text */
    cursor: not-allowed; /* Show not-allowed cursor */
    border: none; /* Remove border */
}

.g-recaptcha {
    margin-top: 12px;
}

.success-message {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
}

.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
}



/* Hamburger menu for mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 1.5rem;
}

/* Search form styling */
.search-form {
    text-align: center;
    margin-bottom: 20px;
}

.search-form input[type="text"] {
    padding: 12px;
    width: 60%;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-form input[type="submit"] {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-form input[type="submit"]:hover {
    background-color: #45a049;
}







/* Section Styles */
    .postal-code-details {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A clean and readable font */
        background-color: transparent;
        padding: 40px 20px;
        text-align: center;
	}

    /* Header Styling */
    .postal-header{
         font-size: 1.8rem; /* Slightly larger font size for the heading */
    font-weight: bold; /* Make the heading bold */
    color: #333; /* Accent color for the heading */
    margin-bottom: 5px; /* Space below the heading */
    }

    /* Details Container Styling 
    .details-container {
        background-color: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        max-width: 600px;
        
    }*/

    
	
	
	
	

    /* Province and District Tag Styling */
    .tags {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .tag {
        background-color: #e2e2e2;
        color: #333;
        font-size: 0.8rem;
        padding: 8px 15px;
        border-radius: 2px;
        text-transform: uppercase;
        font-weight: bold;
        display: inline-block;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .province {
        background-color: #046371;
        color: #fff;
    }

    .district {
        background-color: #046371;
        color: #fff;
    }

    /* Postal Code */
    .postal-code {
        font-size: 3em;
        color: #4A4A4A;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .postal-codes h2 {
        font-size: 1.8rem; /* Slightly larger font size for the heading */
        font-weight: bold; /* Make the heading bold */
        color: rgb(1, 46, 58); /* Accent color for the heading */
        margin-bottom: 38px; /* Space below the heading */
    }

    .postal-codes th {
        color: rgb(255, 255, 255); /* Accent color for the heading */
        
    }

    /* Item (City) Styling */
    .detail-item {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin: 15px 0;
        text-align: left;
    }

    .detail-label {
        font-weight: bold;
        color: #333;
        margin-right: 10px;
    }

    .detail-value {
        color: #007bff;
        font-weight: 500;
    }

    /* No Information Styling */
    .no-info {
        font-size: 1.2rem;
        color: #fff;
        background-color: #e74c3c;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: 30px auto;
    }

/* Style for the search input field */
#searchInput {
    width: 80%;
    padding: 10px;
    font-size: 17px;
    border: 2px solid #f7c204;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 40px;
}

/* Style for the search results container */
#searchResults {
    width: auto;
    max-height: 200px;
    margin-top: -95px;
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    box-sizing: border-box;
    text-align: left;
}

/* Style for each suggestion item */
#searchResults ul {
    list-style: none;
    padding: 5px;
    margin: 0;
}

#searchResults li {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

/* Highlight the suggestion on hover */
#searchResults li:hover {
    background-color: #f0f0f0;
}

/* Style for the no results message */
#searchResults .no-results {
    padding: 10px;
    color: #888;
    font-size: 16px;
    text-align: left;
}

/* Add a pointer cursor when hovering over the suggestions */
#searchResults li a {
    text-decoration: none;
    color: #007bff;
}

#searchResults li a:hover {
    color: #007bff;
}


/* Footer Styling */
footer {
    width: 100%; /* Full width */
    background-color: rgb(1, 46, 58); /* Dark background color */
    color: white; /* Text color */
    padding: 20px 0; /* Padding for spacing */
    margin-top: 50px;
    position: relative;
    left: 0;
    bottom: 0;
}

.footer-content {
    max-width: 1200px; /* Centered content with a max width */
    margin: 0 auto; /* Auto margins to center */
    text-align: center; /* Center-align the text */
}

.footer-content ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 10px 0 0; /* Adjust margins */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Add spacing between items */
}

.footer-content ul li a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Adjust font size */
}

.footer-content ul li a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Button and Explore More */
button#exploreMore {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    text-decoration: none;
}

button#exploreMore:hover {
    background-color: #025d84;
}

.postal-link {
	text-decoration: none; /* Remove underline */
	color: rgb(9, 1, 53); /* Set link color to red */
}

.postal-link:hover {
	text-decoration: none; /* Optional: Add underline on hover */
	color: rgb(43, 16, 220); /* Optional: Change to a darker red on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 990px) {
    .navbar .nav-list {
        display: none;
        flex-direction: column;
        position:absolute;
        width: 100%; /* Adjust the width as needed */
       
        /*height: 220px;  Set the desired height */
        background-color: rgb(1, 46, 58);
     
        top: 32px; /* Align below the navbar */
        right: 0px; /* Align the menu to the right side */
        border-radius: 0px; /* Optional: Add rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for depth */
        /*overflow-y: auto;  Scroll if content exceeds height */
    }

    .navbar .nav-list.active {
        display: flex;
        
    }

    .navbar .nav-list li {
        display: flex;
        align-items: center; /* Vertically centers the text */
        justify-content: right; /* Aligns the text to the right side */
        padding-top: 5px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-left: 10px;
    }

    .navbar .nav-list li a {
        text-align: left; /* Ensures the text itself aligns to the right */
        width: 100%; /* Makes the clickable area span the full width */
        padding: 5px 5px 5px 5px; /* Adjust padding for spacing */
        color: #fff; /* Optional: Set text color */
        text-decoration: none; /* Optional: Remove underline */
        padding-right: 10px;
        padding-left: 10px;
    
        border-bottom: 1px solid #444;
    }

    .hamburger {
        display: block;
    }

    .search-form input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-form input[type="submit"] {
        width: 100%;
    }
    .search-form img {
        margin-bottom: 20px;
    }

    header {
        padding: 13px 13px 14px 1px;
}
