/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML Fix */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-x: hidden;
    height: 100%; /* Ensure the full height */
    font-family: 'Georgia', serif;
    box-sizing: border-box;
}


/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between; /* Align logo and menu icon to opposite sides */
    align-items: center; /* Vertically align items */
    padding: 10px 30px; /* Add padding for spacing */
    background-color: #ffffff; /* White background for clarity */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for header */
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 10; /* Ensure it stays above other elements */
    width: 100%; /* Set the correct width */
    margin: 0; /* Remove any margin that might cause a gap */
    box-sizing: border-box; /* Include padding in the width */
    max-width: 100%; /* Ensure no overflow beyond the screen */
}

/* Logo Styling */
.logo img {
    width: 150px; /* Adjust logo size */
    height: auto;
    
}

/* Menu Icon */
.menu-icon {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the text and the icon */
    cursor: pointer;
}


/* Add hover effects for the menu icon */
.menu-icon a i:hover {
    color: #f0ad4e; /* Change color on hover */
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}




/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%; /* Ensure it spans full width */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure it stays behind other elements */
}


.company-name {
    flex-grow: 1; /* Allow the company name to occupy available space */
    text-align: center; /* Center the text */
    font-size: 1.8rem;
    font-weight: bold;
   
}
.infinity-plus {
    color: #30336a;
}

.realty {
    color: #f0ad4e;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}
h1 {
    font-size: 2rem;
    margin: 20px 0;
}

h2 {
    font-size: 2rem;
    margin: 20px 0;
}

h2 span {
    color: #eeeeee;
    font-weight: bold;
}

.buttons {
    margin: 20px 0;
    text-align: center;
}

.btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary {
    background-color: #c29d63 !important; /* Use !important if needed */
    color: white !important;
    border: none; /* Remove border */
    outline: none; /* Remove outline */
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px; /* Adjust for rounded corners */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transitions */
}

.btn-primary:hover {
    background-color: #b0895e; /* Slightly darker shade for hover effect */
}

.btn-secondary {
    background-color: #3e4a61;
    color: white;
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 100px;
    }

    .company-name {
        font-size: 2rem;
        margin-top: 30px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

/* Property Search Section */
.property-search-section {
    padding: 120px 70px;
    background: url('/Photos/H2.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    min-height: 650px; /* Set a minimum height for the section */
}

.property-search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center align items */
    align-items: center;
    gap: 15px; /* Spacing between form elements */
    max-width: 1200px;
    margin: 0 auto;
}
.property-search-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #173451; /* Adjust to match background if required */
    font-weight: bold;
}
.property-search-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}

/* Inputs and Dropdowns */
.property-search-container input,
.property-search-container select {
    width: 190px;
    padding: 25px 35px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    
}

.property-search-container input:focus,
.property-search-container select:focus {
    border-color: #f0ad4e;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.2);
}

.property-search-filters select:hover,
.property-search-filters input[type="text"]:hover {
    border-color: #f0ad4e;
}

/* Styling for the search button */
.property-search-container button {
    width: 80%;
    padding: 12px;
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.property-search-container button:hover {
    background-color: #f0ad4e;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-search-container input,
    .property-search-container select {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 10px;
    }

    .property-search-container button {
        width: 100%; /* Full width button on smaller screens */
    }
}

/* Property Carousel Styling */
.property-carousel .swiper-button-next,
.property-carousel .swiper-button-prev {
    color: black !important;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: absolute;
    z-index: 10;
    border: none;
}

.property-carousel .swiper-button-next:hover,
.property-carousel .swiper-button-prev:hover {
    background-color: black;
    color: white !important;
    transform: scale(1.2);
}

.property-carousel .swiper-button-prev {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.property-carousel .swiper-button-next {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.property-card .info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: #fff;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.property-card:hover .info-overlay {
    opacity: 1;
    transform: translateY(0); /* Slide in from the bottom */
}

/* Adjust Swiper slides */
.property-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
}

.property-card {
    position: relative;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.property-card .info-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
    color: #f39c12; /* Highlighted color */
}

.property-card .info-overlay p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #ffffff;
}


/* Featured Listings Title */
.featured-listings-title {
    font-size: 3.8rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Georgia', serif; /* Matching the font style */
}

/* Featured Listings Subtitle */
.featured-listings-subtitle {
    font-size: 1.8rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

/* Filter Links */
.filter-options {
    text-align: center;
    margin-bottom: 30px;
}

.filter-link {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin: 0 15px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-family: 'Georgia', serif;
}

.filter-link.active {
    color: #000;
}

.filter-link.active::after,
.filter-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #000;
    width: 100%;
}

.filter-link:hover {
    color: #000;
}

/* Swiper Styling */
.property-carousel {
    padding: 40px 0;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-slide {
    width: 30%; /* Ensure 3 items fit in a row */
    margin: 0 15px; /* Add space between items */
}
/* menu page */
/* Full-Screen Menu */
.menu-page {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10000; /* Ensure it's on top of other elements */
    flex-direction: row;
    overflow-y: auto;
    padding: 50px;
}


/* Left Section: Logo and Menu Items */
.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 20px;
}

.menu-logo {
    margin-bottom: 50px; /* Space below the logo */
    text-align: left;
}

.menu-logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 50px;
}

/* Menu List Styling */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Take full width */
}



.menu-list li {
    font-size: 2.2rem; /* Adjust font size */
    color: black;
    margin-bottom: 20px; /* Spacing between list items */
    font-weight: normal;
    cursor: pointer;
    position: relative; /* Required to position the arrow */
    transition: all 0.3s ease;
    padding-right: 20px; /* Add padding to make space for the arrow */
}
.menu-list li:hover {
    color: #007b5e; /* Highlight color on hover */
    transform: translateX(10px); /* Slight move on hover */
}
.menu-list li a {
    text-decoration: none;
    color: inherit; /* Inherit the color from li */
}

.menu-list li::after {
    position: relative;
    content: "›"; /* Arrow character */
    font-size: 2rem;
    color: black;
    position: absolute;
    right: 20px; /* Adjust this value to move the arrow closer to the text */
    top: 50%;
    transform: translateY(-50%); /* Vertically center the arrow */
    transition: color 0.3s ease;
}

.menu-list li:hover::after {
    color: #007b5e;
    transform: translateX(5px); /* Slight arrow movement */
}
/* Footer Section */
.menu-footer {
    margin-top: 40px;
    text-align: center;
}

.menu-footer p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.menu-footer form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.menu-footer input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    max-width: 300px;
}

.menu-footer button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-footer button:hover {
    background-color: #c29d63;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons i {
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #c29d63;
}

/* Right Section: Image */
.menu-image {
    flex: 1;
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromRight 2s ease-out forwards;
    padding-left: 40px; 
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.menu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 60px;
    font-size: 5rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease;
    font-weight: bold;
}

.menu-close:hover {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-page {
        flex-direction: column; /* Stack items vertically */
    }

    .menu-image {
        order: -1; /* Move the image to the top */
        width: 100%; /* Make the image take full width */
        margin-bottom: 20px; /* Add spacing below the image */
    }

    .menu-content {
        order: 1; /* Ensure the list comes below the image */
        width: 100%; /* Make the list take full width */
        padding: 0 20px; /* Add some padding for better spacing */
    }

    .menu-logo {
        text-align: center; /* Center the logo */
    }

    .menu-list {
        list-style: none;
        padding: 0;
    }

    .menu-list li {
        font-size: 1.5rem; /* Adjust font size for mobile */
        margin-bottom: 15px; /* Add spacing between items */
    }
}

/* Animation Keyframes */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* our company page  */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Hero Section */
.our-company-hero-section {
    height: 70vh; /* Increase the section height to full viewport height */
    overflow: hidden; /* Prevent any overflow issues */
}

.our-company-hero-section .hero-image {
    width: 100%;
    height: 140%; /* Ensure the image fills the entire section */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
}


/* About Us Section */
.our-company-about-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-company-about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black; /* Maintain black for headings */
    margin-bottom: 20px;
}

.our-company-about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: black; /* Maintain black text */
    margin-bottom: 15px;
}

.our-company-about-section .mission-statement {
    font-size: 1.5rem;
    font-weight: bold;
    color: black; /* Maintain black */
    margin-top: 30px;
}

/* Hover Effects for Links */
a {
    color: black; /* Default color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0ad4e; /* Hover color */
}



/* How We Work Section */
.how-we-work {
    background-color: #ffffff; /* Light background for contrast */
    padding: 50px 20px;
}

.how-we-work-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h2 {
    font-size: 3rem;
    color: black; /* Keep title in black */
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.6rem;
    line-height: 2;
    color: black; /* Keep text in black */
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-we-work-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        margin-bottom: 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        width: 100%;
        border-radius: 10px;
    }
}

/* Contact Us Section */
.contact-us-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.contact-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-text {
    flex: 1;
    max-width: 600px;
}

.contact-text h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-text p {
    font-size: 1.2rem;
    color: black;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: black;
    font-weight: bold;
}

/* Default input style: Line */
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    font-size: 1rem;
    padding: 5px 0;
    outline: none;
    transition: all 0.3s ease;
}
/* When focused: Display as box */
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid black;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

/* Placeholder style */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contact-form .btn-submit {
    padding: 15px 20px;
    background-color: black;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.contact-form .btn-submit:hover {
    background-color: #f0ad4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-text,
    .contact-form {
        max-width: 100%;
    }

    .contact-form form {
        width: 100%;
    }
}
/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: bold;
}

/* Header Section */
.page-header {
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    padding: 15px 30px;
}


.menu-icon i {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

h1, h2, h3 {
    font-weight: bold;
}

/* Header Section */
.page-header {
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    padding: 15px 30px;
}


.menu-icon p {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-right: 5px;
}
/* Header Section */
.page-header {
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    padding: 15px 30px;
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 10;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML Fix */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%; /* Ensure it takes up full height */
    font-family: 'Georgia', serif;
}


/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%; /* Ensure the full height */
    font-family: 'Georgia', serif;
    box-sizing: border-box;
}

/* Header Section */
header {
    position: absolute;
    top: 0; /* Ensure header sticks to the top */
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: transparent; /* Ensure no background color causes gaps */
}
.menu-icon .fas {
    font-size: 1.8rem;
    color: black;
    transition: all 0.3s ease-in-out;
}

.menu-icon:hover .fas {
    color: #f0ad4e;
    transform: scale(1.2);
}

.menu-icon:hover p {
    color: #f0ad4e;
}


.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure it stays behind other elements */
}


/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 100px;
    }

    .company-name {
        font-size: 2rem;
        margin-top: 30px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}


.career-link {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.career-link:hover {
    color: #f0ad4e;
    border-color: #f0ad4e;
}



/* Property Carousel Styling */
.property-carousel {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.property-card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.property-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.property-card p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

.property-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .swiper-slide {
        width: auto !important;
    }

    .swiper {
        padding: 0 10px; /* Add padding for mobile */
    }

    .property-card {
        height: auto;
        margin: 0 5px;
    }

    .property-card img {
        height: 150px;
    }

    .property-card h3 {
        font-size: 1rem;
    }

    .property-card p {
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        font-size: 1.2rem; /* Reduce size for mobile */
    }
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: black !important; /* Ensures the arrow is always black */
    font-size: 1.5rem; /* Arrow size */
    width: 40px;
    height: 40px;
    background-color: white; /* White background */
    border-radius: 0%; /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transitions */
    position: absolute; /* Place within the carousel area */
    z-index: 10;
    border: none; /* Remove default browser focus border */
}

/* Remove Blue Outline on Click/Focus */
.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none; /* Remove focus outline */
    box-shadow: none; /* Remove focus shadow */
}

/* Hover Effects */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: black; /* Darken the background on hover */
    color: white !important; /* Arrow color changes to white */
    transform: scale(1.2); /* Slight enlargement */
}

/* Position of the Arrows */
.swiper-button-prev {
    left: -15px; /* Adjust the left position */
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
}

.swiper-button-next {
    right: -15px; /* Adjust the right position */
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
}

/* Adjustments for Mobile View */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .swiper-button-prev {
        left: -10px; /* Adjust position for smaller screens */
    }

    .swiper-button-next {
        right: -10px; /* Adjust position for smaller screens */
    }
}

/* Featured Listings Title */
.featured-listings-title {
    font-size: 3.8rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Georgia', serif; /* Matching the font style */
}

/* Featured Listings Subtitle */
.featured-listings-subtitle {
    font-size: 1.8rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

/* Filter Links */
.filter-options {
    text-align: center;
    margin-bottom: 30px;
}

.filter-link {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin: 0 15px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-family: 'Georgia', serif;
}

.filter-link.active {
    color: #000;
}

.filter-link.active::after,
.filter-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #000;
    width: 100%;
}

.filter-link:hover {
    color: #000;
}

/* Swiper Styling */
.property-carousel {
    padding: 40px 0;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-slide {
    width: 30%; /* Ensure 3 items fit in a row */
    margin: 0 15px; /* Add space between items */
}
/* menu page */
/* Full-Screen Menu */
.menu-page {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10000; /* Ensure it's on top of other elements */
    flex-direction: row;
    overflow-y: auto;
    padding: 50px;
}


/* Left Section: Logo and Menu Items */
.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 20px;
}

.menu-logo {
    margin-bottom: 50px; /* Space below the logo */
    text-align: left;
}

.menu-logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 50px;
}

/* Menu List Styling */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Take full width */
}



.menu-list li {
    font-size: 2.2rem; /* Adjust font size */
    color: black;
    margin-bottom: 20px; /* Spacing between list items */
    font-weight: normal;
    cursor: pointer;
    position: relative; /* Required to position the arrow */
    transition: all 0.3s ease;
    padding-right: 20px; /* Add padding to make space for the arrow */
}
.menu-list li:hover {
    color: #007b5e; /* Highlight color on hover */
    transform: translateX(10px); /* Slight move on hover */
}
.menu-list li a {
    text-decoration: none;
    color: inherit; /* Inherit the color from li */
}

.menu-list li::after {
    position: relative;
    content: "›"; /* Arrow character */
    font-size: 2rem;
    color: black;
    position: absolute;
    right: 20px; /* Adjust this value to move the arrow closer to the text */
    top: 50%;
    transform: translateY(-50%); /* Vertically center the arrow */
    transition: color 0.3s ease;
}

.menu-list li:hover::after {
    color: #007b5e;
    transform: translateX(5px); /* Slight arrow movement */
}
/* Footer Section */
.menu-footer {
    margin-top: 40px;
    text-align: center;
}

.menu-footer p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.menu-footer form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.menu-footer input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    max-width: 300px;
}

.menu-footer button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-footer button:hover {
    background-color: #c29d63;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons i {
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #c29d63;
}

/* Right Section: Image */
.menu-image {
    flex: 1;
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromRight 2s ease-out forwards;
    padding-left: 40px; 
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.menu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 60px;
    font-size: 5rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease;
    font-weight: bold;
}

.menu-close:hover {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-page {
        flex-direction: column; /* Stack items vertically */
    }

    .menu-image {
        order: -1; /* Move the image to the top */
        width: 100%; /* Make the image take full width */
        margin-bottom: 20px; /* Add spacing below the image */
    }

    .menu-content {
        order: 1; /* Ensure the list comes below the image */
        width: 100%; /* Make the list take full width */
        padding: 0 20px; /* Add some padding for better spacing */
    }

    .menu-logo {
        text-align: center; /* Center the logo */
    }

    .menu-list {
        list-style: none;
        padding: 0;
    }

    .menu-list li {
        font-size: 1.5rem; /* Adjust font size for mobile */
        margin-bottom: 15px; /* Add spacing between items */
    }
}

/* Animation Keyframes */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* our company page  */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Us Section */
.our-company-about-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-company-about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black; /* Maintain black for headings */
    margin-bottom: 20px;
}

.our-company-about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: black; /* Maintain black text */
    margin-bottom: 15px;
}

.our-company-about-section .mission-statement {
    font-size: 1.5rem;
    font-weight: bold;
    color: black; /* Maintain black */
    margin-top: 30px;
}

/* Hover Effects for Links */
a {
    color: black; /* Default color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0ad4e; /* Hover color */
}

/* Responsive Design */
@media (max-width: 768px) {

    .our-company-hero-section {
        height: 400px;
    }
    .our-company-hero-section .hero-image {
        width: 100%;
        height: 140%; /* Adjust height to fit the reduced section height */
        object-fit: cover; /* Maintain aspect ratio and cover the area */
    }

    .our-company-about-section h1 {
        font-size: 2rem;
    }

    .our-company-about-section p {
        font-size: 1rem;
    }
    .our-company-about-section {
        padding: 30px 15px; /* Reduce padding for better spacing on smaller screens */
    }
}

/* How We Work Section */
.how-we-work {
    background-color: #ffffff; /* Light background for contrast */
    padding: 50px 20px;
}

.how-we-work-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h2 {
    font-size: 3rem;
    color: black; /* Keep title in black */
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.6rem;
    line-height: 2;
    color: black; /* Keep text in black */
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-we-work-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        margin-bottom: 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        width: 100%;
        border-radius: 10px;
    }
}

/* Contact Us Section */
.contact-us-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.contact-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-text {
    flex: 1;
    max-width: 600px;
}

.contact-text h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-text p {
    font-size: 1.2rem;
    color: black;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: black;
    font-weight: bold;
}

/* Default input style: Line */
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    font-size: 1rem;
    padding: 5px 0;
    outline: none;
    transition: all 0.3s ease;
}
/* When focused: Display as box */
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid black;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

/* Placeholder style */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contact-form .btn-submit {
    padding: 15px 20px;
    background-color: black;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.contact-form .btn-submit:hover {
    background-color: #f0ad4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-text,
    .contact-form {
        max-width: 100%;
    }

    .contact-form form {
        width: 100%;
    }
}

h1, h2, h3 {
    font-weight: bold;
}

h1, h2, h3 {
    font-weight: bold;
}


/* Our Company Page: Social Icons Styling */
.our-com-social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    align-items: center;
    justify-content: flex-start; /* Align to left */
    margin-left: 50px; /* Add spacing between the logo and icons */
}

.our-com-social-icons i {
    font-size: 1.5rem;
    color: #333; /* Default icon color */
    cursor: pointer;
    transition: color 0.3s ease;
}

.our-com-social-icons i:hover {
    color: #f0ad4e; /* Hover color */
}

/* General Reset for mobile */
@media (max-width: 768px) {
    /* Header Container Adjustments */
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 15px;
        gap: 10px;
    }

    /* Company Name */
    .company-name {
        font-size: 1.5rem; /* Smaller font size for company name */
        font-weight: bold;
        color: #333;
        margin: 0;
        text-shadow: none; /* Remove text-shadow for simplicity on mobile */
    }

    .menu-icon i {
        font-size: 1.5rem;
    }

    /* Adjust Social Icons */
    .our-com-social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 10px 0;
    }

    .our-com-social-icons i {
        font-size: 1.2rem;
    }
}

/* Affiliates Content Section */
.affiliates-section {
    padding: 60px 30px;
    background-color: #f9f9f9;
    text-align: center;
}

.affiliates-section .section-title {
    font-size: 4rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.affiliates-section .section-description {
    font-size: 2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Styling */
.affiliates-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .affiliates-section {
        padding: 40px 20px;
    }

    .affiliates-section .section-title {
        font-size: 3rem; /* Reduce title size */
    }

    .affiliates-section .section-description {
        font-size: 1.5rem; /* Adjust description size for better readability */
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .affiliates-section {
        padding: 30px 15px;
    }

    .affiliates-section .section-title {
        font-size: 2.5rem; /* Further reduce title size */
    }

    .affiliates-section .section-description {
        font-size: 1.2rem; /* Adjust description size */
        line-height: 1.4;
    }

    .affiliates-section img {
        max-width: 100%; /* Ensure the image fully adjusts on mobile */
        height: auto; /* Maintain aspect ratio */
    }
}


.marketing-approach-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.marketing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.marketing-text {
    flex: 1;
    text-align: left;
}

.marketing-text h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.marketing-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.marketing-text .highlight {
    color: #007b5e; /* Green highlight color for "buyers" and "sellers" */
    font-weight: bold;
}

.marketing-image {
    flex: 1;
    text-align: right;
}

.marketing-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .marketing-container {
        flex-direction: column;
        text-align: center;
    }

    .marketing-image {
        margin-top: 20px;
    }

    .marketing-text {
        text-align: center;
    }

    .marketing-text h2 {
        font-size: 2rem;
    }

    .marketing-text p {
        font-size: 1rem;
    }
}
/* Styling for the dropdown */
.dropdown {
    display: none; /* Initially hide the dropdown */
    list-style: none;
    margin: 5px 0 0 15px; /* Indent the dropdown items */
    padding: 0;
}

.dropdown li {
    margin: 5px 0;
}

.dropdown a {
    font-size: 1rem; /* Slightly smaller font for dropdown items */
    color: #555; /* Optional: Different color for dropdown items */
}

/* Dropdown when visible */
.dropdown.show {
    display: block;
}


/* Buyer's Guide Section */
.buyers-guide-section {
    padding: 50px 20px;
    text-align: center;
}

.buyers-guide-section .intro-text {
    text-align: center;
    margin-bottom: 20px; /* Add spacing below the heading */
    padding: 150px 0; /* Add spacing above and below */
   background-color:#f9f9f9; /* Optional: Highlight background */
}
.buyers-guide-section .intro-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}


.buyers-guide-section .intro-text p {
    font-size: 1.8rem;
    color: #555;
}
.buyers-guide-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
}

.image-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
  
}

.form-container {
    max-width: 500px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
   
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.form-container label {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-container input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-container button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #a67b4e;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .buyers-guide-container {
        flex-direction: column;
    }

    .intro-text h1 {
        font-size: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .image-container img,
    .form-container {
        max-width: 100%;
    }
}


/* How We Work Section */
.Luxury {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 20px;
}

.Luxury-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h2 {
    font-size: 3rem;
    color: black; /* Keep title in black */
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.6rem;
    line-height: 2;
    color: black; /* Keep text in black */
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .Luxury-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        margin-bottom: 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        width: 100%;
        border-radius: 10px;
    }
}


.team-expertise-section {
    padding: 60px 0;
    background-color: #fff;
}

.team-expertise-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

.team-expertise-section .expertise-item {
    text-align: center;
    margin-bottom: 30px;
}

.team-expertise-section .expertise-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.team-expertise-section .expertise-item p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.team-expertise-section .row {
    display: flex;
    justify-content: center; /* Align items horizontally in the center */
    align-items: flex-start; /* Align items vertically at the top */
    gap: 20px; /* Add spacing between items */
    flex-wrap: wrap; /* Ensure responsiveness for smaller screens */
}

.team-expertise-section .expertise-item {
    flex: 1 1 300px; /* Allow flexibility for responsiveness */
    max-width: 300px; /* Set a maximum width for consistency */
    text-align: center;
}


.calculator-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Calculators Section */
.calculators-section .container {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    padding: 20px;
    overflow-x: auto; /* Horizontal scrolling for smaller screens */
    margin-top: 60px;
}

/* Add space above the calculators section */
.calculators-section {
    margin-top: 100px; /* Adjust this value as needed */
    padding: 20px 0;
}


.calculator-card {
    flex: 1 1 250px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.calculator-card:hover .card-image {
    transform: scale(1.1);
}

h3 {
    color: #c29d63;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #c29d63;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #a1784b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

        /* Ensure proper spacing for the calculators section */
        .calculators-section {
            margin-top: 150px; /* Match this to the height of the header */
            padding: 20px 0;
        }
    
    header .header-container {
        flex-direction: column;
        text-align: center;
    }

    .calculators-section .container {
        flex-wrap: wrap;
    }

    .calculator-card {
        max-width: 100%;
    }
}
.in-our-com-social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    align-items: left;
    margin-left: 20px; /* Add spacing between the logo and icons */
}

.in-our-com-social-icons i {
    font-size: 1.5rem;
    color: #333; /* Default icon color */
    cursor: pointer;
    transition: color 0.3s ease;
}

.in-our-com-social-icons i:hover {
    color: #f0ad4e; /* Hover color */
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack logo and social icons on smaller screens */
        align-items: center;
    }

    .in-our-com-social-icons {
        margin-left: 0;
        margin-top: 10px; /* Add space above the icons */
        justify-content: center; /* Center icons for smaller screens */
    }
}

/* Career Section */
.career-section {
    padding: 50px 20px;
    background-color: #fff;
    min-height: 650px;
}

.career-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    gap: 40px;
}

.career-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
}

.career-content {
    flex: 1;
    max-width: 600px;
}

.career-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: #000000;
}

.career-content h2 span {
    display: inline-block;
    opacity: 0; /* Initially hidden */
    animation: fadeInOneByOne 0.5s ease-in-out forwards;
    color: #000; /* Black text color */
}

.career-content h2 span:nth-child(1) {
    animation-delay: 0.2s; /* Delay for the first word */
}

.career-content h2 span:nth-child(2) {
    animation-delay: 0.4s; /* Delay for the second word */
}

.career-content h2 span:nth-child(3) {
    animation-delay: 0.6s; /* Delay for the third word */
}

.career-content h2 span:nth-child(4) {
    animation-delay: 0.8s; /* Delay for the fourth word */
}

.career-content h2 span:nth-child(5) {
    animation-delay: 1s; /* Delay for the fifth word */
}

.career-content h2 span:nth-child(6) {
    animation-delay: 1.2s; /* Delay for the sixth word */
}

.career-content p {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
}



.career-link:hover {
    color: #f0ad4e;
    border-color: #f0ad4e;
}

/* Responsive Styles for Career Section */
@media (max-width: 768px) {
    .career-container {
        flex-direction: column;
        text-align: center;
    }

    .career-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .career-content h2 {
        font-size: 2rem;
    }

    .career-content p {
        font-size: 0.9rem;
    }

    .career-link {
        font-size: 0.9rem;
    }
}

/* Keyframes for One-by-One Animation */
@keyframes fadeInOneByOne {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Welcome Box Styling */
.welcome-box {
    background-color: rgba(43, 40, 40, 0.7); /* Shaded background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto; /* Center the box */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInBox 1s ease-in-out; /* Box animation */
}

/* General Text Styling */
.welcome-box p {
    font-family: 'Playfair Display', serif; /* Stylish serif font for headings */
    font-size: 1.8rem; /* Adjusted for uniformity */
    line-height: 1.6;
    opacity: 0; /* Initially hidden */
    animation: fadeInText 1s ease-in-out forwards;
}

/* Highlighted Text (Span) */
.welcome-box p span {
    font-family: 'Merriweather', serif; /* Complementary font for highlighted text */
    color: #c29d63; /* Highlight color */
    font-size: inherit; /* Match parent <p> font size */
    font-weight: bold;
}

/* Animation Delays for Each Paragraph */
.welcome-box p:nth-child(1) {
    animation-delay: 0.5s;
}

.welcome-box p:nth-child(2) {
    animation-delay: 1.5s;
}

.welcome-box p:nth-child(3) {
    animation-delay: 2.5s;
}

/* Keyframe Animations */
@keyframes fadeInBox {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    /* Hero Section Margin Adjustment for Mobile */
    .hero-section {
        margin-top: 80px; /* Add space below the header */
    }

    /* Fixed Header Styling */
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Ensure header stays on top */
        background-color: white; /* Optional background for better visibility */
    }

    /* Welcome Box Mobile Adjustments */
    .welcome-box {
        max-width: 90%; /* Reduce box width on smaller screens */
        padding: 15px 20px; /* Adjust padding for mobile */
    }

    .welcome-box p {
        font-size: 1.4rem; /* Reduce text size for better fit */
        line-height: 1.4; /* Adjust line height for readability */
    }

    .welcome-box p span {
        font-size: 1.2rem; /* Ensure highlighted text is still prominent */
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 8px;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .property-results {
    margin-top: 20px;
  }
  
  #news-container .news-item {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Add space between items */
    margin-top: 40px;
}

#news-container .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#news-container .news-item h3 a {
    color: #000000 !important; /* Force black color */
    text-decoration: none !important;
}

#news-container .news-item h3 a:hover {
    color: #000000 !important; /* Force black color */
    text-decoration: underline !important;
}

main {
    padding-top: 80px; /* Matches header height */
    padding-bottom: 60px; /* Matches footer height */
}

/* Push the news container below the header */
#news-container {
    margin-top: 5px; /* Adjust if necessary */
}

#news-title {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #f0ad4e;
    background-color: #2d4052;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* For smaller screens (mobile-friendly) */
@media (max-width: 768px) {
    #news-title {
        text-align: center; /* Center-align text on smaller screens */
        font-size: 20px; /* Slightly smaller font size */
        padding: 10px 15px; /* Reduce padding */
        border-radius: 5px; /* Adjust border radius */
    }

    #news-container {
        padding: 10px; /* Add some padding to the news container */
    }

    #news-container .news-item {
        padding: 15px; /* Reduce padding inside news cards */
        font-size: 14px; /* Adjust font size for smaller screens */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    #news-container .news-item h3 {
        font-size: 16px; /* Reduce the heading size */
    }

    #news-container .news-item p {
        font-size: 12px; /* Smaller font for descriptions */
    }
    main {
        padding-top: 300px; /* Increase padding to ensure content clears header */
        padding-bottom: 70px; /* Adjust padding for footer on mobile */
    }

    #news-container {
        margin-top: 10px; /* Add more margin to ensure spacing on mobile */
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 40px;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-intro {
    flex: 1;
    max-width: 40%;
    padding: 20px;
}

.faq-intro h2 {
    font-size: 100px;
    color: #2d4052;
    margin-bottom: 10px;
}

.faq-intro p {
    font-size: 30px;
    color: #555;
}

.faq-list {
    flex: 2;
    max-width: 55%;
    padding: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 30px;
    color: #2d4052;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.faq-item p {
    font-size: 22px;
    color: #555;
    display: none; /* Hidden by default */
    margin-top: 5px;
}
/* View More Button */
.view-more {
    text-align: left; /* Align to the left to match questions */
    margin-top: 20px; /* Add space above */
}

.view-more a {
    font-size: 16px;
    color: #f0ad4e;
    text-decoration: none;
    font-weight: bold;
}

.view-more a:hover {
    text-decoration: underline;
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 15px 5px; /* Further reduce padding on very small screens */
    }

    .faq-container {
        text-align: center; /* Center-align all content for very small screens */
    }

    .faq-intro {
        text-align: center;
    }

    .faq-intro h2 {
        font-size: 20px;
    }

    .faq-intro p {
        font-size: 13px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 13px;
    }

    .view-more {
        margin-top: 15px;
    }
}


/* Experience Section Styles */
.experience-section {
    padding: 40px 20px;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ddd;
}

.experience-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
}

.experience-title {
    flex: 1;
    max-width: 40%;
    padding: 20px;
}

.experience-title h2 {
    font-size: 60px;
    color: #000000;
    font-weight: bold;
}

.experience-content {
    flex: 2;
    max-width: 55%;
    padding: 20px;
}

.experience-content p {
    font-size: 25px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.experience-links {
    display: flex;
    gap: 20px; /* Space between links */
}

.experience-link {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #000000;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.experience-link:hover {
    color: #2d4052;
    border-color: #2d4052;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .experience-container {
        flex-direction: column;
        text-align: center;
    }

    .experience-title,
    .experience-content {
        max-width: 100%;
    }

    .experience-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* career-section */

        .hero-career-section {
            position: relative;
            background: url('/Photos/C2.jpg') no-repeat center center/cover;
            height: 1000px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .hero-career-content {
            max-width: 800px;
        }

        .hero-career-content h1 {
            font-size: 54px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            animation: fallingText 2s ease-out;
        }

        .hero-career-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            animation: fallingText 2.5s ease-out;
        }

        .hero-career-content p {
            font-size: 20px;
            line-height: 1.8;
            color: #f0f0f0;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            animation: fallingText 3s ease-out;
        }

        @keyframes fallingText {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-career-content h1 {
                font-size: 32px;
            }

            .hero-career-content h2 {
                font-size: 18px;
            }

            .hero-career-content p {
                font-size: 14px;
            }
        }

        .next-section {
            padding: 50px 20px;
            text-align: center;
            height: 300px;
        }

        .next-section h2 {
            font-size: 34px;
            color: #2d4052;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .next-section p {
            font-size: 22px;
            color: #555;
            margin-bottom: 40px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .next-section h2, .next-section p {
            animation: fadeIn 2s ease-out;
        }

        .familiarity-section {
            position: relative;
            background: url('/Photos/C1.jpg') no-repeat center center/cover;
            padding: 50px 20px;
            color: white;
            height: 650px;
            margin-bottom: 30px;
        }
        
        .familiarity-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        
        .familiarity-header h2 {
            font-size: 60px;
            color: #66410c;
            margin: 60px;
        }
        
        .c-swiper-buttons {
            display: flex;
            gap: 10px;
        }
        
        .c-swiper-button-prev,
        .c-swiper-button-next {
            color: rgb(0, 0, 0);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: transparent;
            border: 1px solid #2b2580;
            border-radius: 5px;
            padding: 5px 10px;
            margin-right: 30px;
        }
        
        .c-swiper-button-prev:hover,
        .c-swiper-button-next:hover {
            background-color: #f0ad4e;
            color: rgb(255, 255, 255);
        }
        
        .swiper {
            width: 100%;
            overflow: hidden;
        }
        
        .swiper-wrapper {
            display: flex;
            align-items: center;
        }
        .swiper-slide {
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            min-height: 250px; /* Ensure consistent box size */
            padding: 20px;
            text-align: center;
            color: #fff;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            
        }
        
        .swiper-slide h3 {
            font-size: 20px;
            color: #f0ad4e;
            margin-bottom: 10px;
        }
        
        .swiper-slide p {
            font-size: 16px;
            color: #f0f0f0;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .familiarity-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        
            .familiarity-header h2 {
                text-align: left;
                font-size: 28px;
            }
        
            .swiper-slide {
                padding: 20px;
            }
        
            .swiper-slide h3 {
                font-size: 18px;
            }
        
            .swiper-slide p {
                font-size: 14px;
            }
        }

        .work-life-balance-section {
            padding: 50px 20px;
            background-color: #ffffff;
        }
        
        .work-life-balance-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .balance-content {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }
        
        .balance-content h2 {
            font-size: 38px;
            margin-bottom: 10px;
            color: #2d4052;
            font-weight: bold;
        }
        
        .balance-content blockquote {
            font-size: 24px;
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .balance-content p {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
        }
        
        .contact-us-btn {
            background-color: #f0ad4e;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-us-btn:hover {
            background-color: #d9923a;
        }
        
        .balance-image {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            text-align: center;
        }
        
        .balance-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .work-life-balance-container {
                flex-direction: column;
            }
        
            .balance-content, .balance-image {
                max-width: 100%;
                text-align: center;
            }
        
            .balance-content blockquote {
                text-align: center;
            }
        
            .balance-content h2 {
                text-align: center;
            }
        }



        .advantage-content {
            padding: 40px 20px;
            max-width: 1600px;
            margin: 0 auto;
            text-align: center;
        }

        .advantage-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2d4052;
        }

        .advantage-content p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        .advantage-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
        }

        .advantage-point {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #000000;
        }

        .advantage-point:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .advantage-point h3 {
            font-size: 22px;
            color: #2d4052;
            margin-bottom: 10px;
        }

        .advantage-point p {
            font-size: 16px;
            color: #555;
        }
        
    

        /* Advantage Section Styling */
.advantage-stats {
    padding: 70px 30px;
    background-color: #000000;
    text-align: center;
}

.stats-container h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
    color: #ffffff;
}

.stats-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-in-out;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    padding: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
    height: 300px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 40px;
    font-weight: bold;
    color: #f0ad4e;
}

.stat-label {
    font-size: 20px;
    color: #2d4052;
}

/* Keyframes for Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    color: #f0ad4e;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section a:hover {
    text-decoration: underline;
    color: #f0ad4e;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-logo h4 {
    font-size: 20px;
    margin: 5px 0;
}

.footer-logo h5 {
    font-size: 16px;
    color: #f0ad4e;
    margin: 0;
}

.footer-note {
    font-size: 12px;
    color: #ccc;
    margin: 15px 0;
}

.footer-note a {
    color: #f0ad4e;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

.footer-logos img {
    width: 50px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }
}


.owners-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.owner-box {
    background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
    transition: transform 0.3s ease;
}

.owner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.owner-box img {
    width: 230px; /* Increase the size of the circle */
    height: 230px;
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the entire circle */
    margin-bottom: 10px;
    border: 3px solid #f0ad4e; /* Optional border for styling */
}


.owner-box h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #f0ad4e; /* Gold color */
}

.owner-box p {
    font-size: 16px;
    margin: 5px 0;
}

.owner-box a {
    color: #f0f0f0;
    text-decoration: none;
}

.owner-box a:hover {
    color: #f0ad4e;
}

@media (max-width: 768px) {
    .owners-section {
        flex-direction: column;
    }

    .owner-box {
        max-width: 90%;
    }
}
