/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, ul, li, p, form {
    margin: 0;
    padding: 0;
}

/* Basic styling for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #0f3252;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #B7DDEA; /* Add this line to set a blue background color */
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

header h1 {
    font-size: 46px;
}

/* Disable text selection */
.unselectable {
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

header h2, h3, h4, h5, h6 {
    font-size: 24px;
}

/* Navigation container styling */
#navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100; /* Ensure it's above other content */
    border-bottom: 1px solid #0f3252; /* Set border color to #0f3252 */
}

/* Navigation menu styling */
nav {
    list-style-type: none;
    text-align: center;
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #0f3252; /* Set border color to #0f3252 */
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #0f3252;
    font-weight: bold;
}

/* Adjust other sections to provide spacing for the fixed navigation bar */
/* Header spacing */
header {
    margin-top: 60px; /* Adjust as needed */
}

/* Services section styling and spacing */
#services, 
#aboutus, 
#contactus, 
#reviews {
    margin-top: 60px; /* Adjust as needed */
    background-color: #fff; /* Update background color to white */
    padding: 40px 0;
    text-align: center;
    border: 1px solid #0f3252; /* Set border color to #0f3252 */
}

/* About Us section styling */
#aboutus {
    margin-top: 60px; /* Adjust as needed */
    background-color: #fff; /* Update background color to white */
    padding: 10px 0;
    text-align: center;
}

/* Contact Us section styling */
#contactus {
    margin-top: 60px; /* Adjust as needed */
    background-color: #fff; /* Update background color to white */
    padding: 10px 0;
    text-align: center;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input[type="text"],
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {     
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #0f3252;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    padding: 7px 7px;
    width: 75%;
}

/* Style for all labels within the contact form */
.contact-form label {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px; /* Keep the spacing above labels the same */
    margin-bottom: 10px; /* Reduced spacing between labels and fields */
}

/* Style for the Message textarea */
.contact-form textarea {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #0f3252;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 150px; /* Adjust the height as needed */
    line-height: 30px;
    padding: 7px 7px;
    width: 75%;
}

.contact-form button[type="submit"]:hover {
    background-color: #B7DDEA;
}

/* Responsive styles */
/* Adjust layout for smaller devices (phones) */
@media only screen and (max-width: 480px) {
  /* Add specific styles for smaller devices */
}

/* Adjust layout for medium-sized devices (tablets) */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  /* Add specific styles for tablets */
}

/* Adjust layout for larger devices (desktops) */
@media only screen and (min-width: 1025px) {
  /* Add specific styles for larger screens (desktops) */
}

/* Adjust layout for iPhones */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  /* Add specific styles for iPhones */
}

/* Adjust layout for iPads */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Add specific styles for iPads in portrait orientation */
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Add specific styles for iPads in landscape orientation */
}

/* Adjust layout for Android devices */
/* You can add specific media queries for different screen sizes of Android devices */

/* Footer styling */
footer {
    background-color: #fff;
    color: #0f3252;
    text-align: center;
    padding: 20px 0;
}