body, html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    padding-top: 10px;
    background-color: #f7f9fa; /* Light pastel blue */
}

header {
    text-align: center;
    margin-bottom: 30px;
    background-color: #364f6b; /* Dark blue-gray */
    color: #ffffff; /* White text */
}

#mainContent {
    padding: 20px;
}

.tab-links button {
    background-color: #a7c5eb; /* Soft pastel blue */
    border: none;
    outline: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.tab-links button.active {
    background-color: #7b8dbd; /* Darker blue-gray */
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    margin-top: -1px;
}

.tab-content.active {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: auto;
}

.slideshow-container .slide {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff; /* White text */
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    user-select: none;
}

.prev {
    left: 10px; 
    opacity: 1;
    z-index: 100;
    transition: none;
}

.next {
    right: 10px; 
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .slideshow-container {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) {
    .slideshow-container {
        max-width: 40%;
    }
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(55, 71, 79, 0.7); /* Dark semi-transparent background */
    color: #ffffff; /* White text */
    font-style: italic;
    padding: 10px;
    box-sizing: border-box;
}

.dropdown-container {
    margin-bottom: 20px;
}

.dropdown-label {
    font-size: 14px;
    color: #616161;
    margin-bottom: 5px;
}

.property-dropdown {
    width: calc(100% - 30px);
    padding: 12px 40px 12px 20px;
    font-size: 16px;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    background-color: #f8f8f8; /* Adjusted background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative; /* Ensure relative positioning */
}

.property-dropdown::after {
    content: '\25BC'; /* Downward arrow character */
    position: absolute;
    top: 50%;
    right: 5px; /* Adjusted right position */
    transform: translateY(-50%);
    pointer-events: none;
    color: #757575; /* Arrow color */
    font-size: 24px; /* Increased arrow size */
}


/* Adjusted styles for the dropdown arrow */
.dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 8px; /* Adjusted right position */
    transform: translateY(-50%);
    pointer-events: none;
    color: #757575; /* Adjust arrow color */
    font-size: 18px; /* Adjust arrow size */
}

/* Styles for the dropdown arrow on hover */
.property-dropdown:hover + .dropdown-arrow {
    color: #7b8dbd; /* Darker blue-gray on hover */
}

.property-dropdown:hover,
.property-dropdown:focus {
    border-color: #7b8dbd; /* Darker blue-gray on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.property-dropdown {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group > * {
    margin-bottom: 10px;
    padding: 10px;
    display: block;
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 22px);
}

.contact-form textarea {
    height: 150px;
}

.contact-form .form-group .half-width {
    width: calc(50% - 12px);
    display: inline-block;
}

.contact-form .form-group .third-width {
    width: calc(33.33% - 12px);
    display: inline-block;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #6ab8a7; /* Soft pastel green */
    color: white;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #5a9f96; /* Darker pastel green on hover */
}

.required::after {
    content: '*';
    color: red;
    margin-left: 5px;
}

.header-container {
    background-color: #364f6b; /* Dark blue-gray */
    color: #ffffff; /* White text */
    padding: 10px 20px;
}

@media only screen and (max-width: 768px) {
    header .header-container h1 {
        font-size: 24px; /* Adjust font size */
        margin-bottom: 0; /* Remove margin bottom */
    }
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li .menuItem {
    text-decoration: none;
    color: #ffffff; /* White text */
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

nav ul li .menuItem:hover {
    color: #7b8dbd; /* Darker blue-gray on hover */
}

.contact-info {
    text-align: right;
}

.contact-info a {
    color:#fcfffe
}

@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.company-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.company-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.company-info img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    float: left;
}
