body {
    background-color: white;
    /* Change to a light gray background */
}





.homepage .nav-item {
    margin-left: 15px;
}

.homepage .nav-item .nav-link {
    font-weight: bold;
    /* Make text bold */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.homepage .nav-item .nav-link:hover {
    color: #4ca04a !important;
    /* Change color on hover */
}

.sign-in {
    padding: 10px 10px;
    /* Adjust padding */
    margin-right: 70px;
    cursor: pointer;
    /* Pointer on hover */
    transition: background-color 0.3s, color 0.3s;
    /* Transition effects */
}

.sign-in a {
    color: #4ca04a;
    /* Text and icon color */
    font-size: 16px;
    /* Font size */
    text-decoration: none;
    font-weight: 600;
}

.sign-in i {
    margin-right: 5px;
    /* Space between icon and text */
}

.section {
    position: relative;
    margin: 0 7px;

}

.features {
    position: relative;
    padding-top: 90px;
    padding-bottom: 200px;
    margin-top: 10px;
    margin-bottom: 0;
}

.section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section .content p {
    color: #6c757d;
    margin-bottom: 40px;
}

.content {
    position: absolute;
}

.search-bar {
    background: white;
    /* Solid background for the search bar */
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    /* Adjust width as needed */
    max-width: 600px;
    /* Limit max width */
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.search-bar .input-group {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 1;
    border-right: 1px solid #ccc;
}

.search-bar select,
.search-bar input {
    border: 1px solid #ccc;
    outline: none !important;
    padding: 10px;
    font-size: 1rem;
    color: #333;
    margin-right: 10px;
    border: none;
    background-color: transparent;
    width: 100%;
    /* Spacing between inputs */
}

.form-select {
    background-image: none !important;
}

.search-bar .input-group i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    color: #999;
}

.search-bar .input-group:first-child {
    border-right: none !important;
    margin-right: 0;
}


.search-bar button {
    background-color: #4ca04a;
    /* Color for the search button */
    color: white;
    border: none;
    border-radius: 50px;
    /* Rounded edges */
    padding: 10px 15px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #4ca04a;
    /* Darker shade on hover */
}

.building-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 65px;
}

@media (min-width: 768px) {
    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero .text-content {
        max-width: 50%;
    }

    .hero img {
        max-width: 50%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.pricing-card {
    margin: auto;
    display: flex;
    justify-content: center;
    border: 1px solid #4ca04a;
    /* Border color */
    border-radius: 8px;
    /* Rounded corners */
    text-align: center;
    /* Center align text */
    transition: transform 0.3s;
    /* Animation on hover */
    width: 300px;
    height: auto;
}

.pricing-card:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.pricing-card-header {
    border-bottom: 1px solid #4ca04a;
    margin-bottom: 40px;
    color: #4ca04a;
}

.pricing-card-header {}

.btn-buy {
    color: black;
    /* Button text color */
    background-color: #4ca04a;
    /* Button border color */
    padding: 10px 30px;
    font-weight: 500;
}

.btn-buy:hover {
    background-color: white;
    /* Button background on hover */
    border: 1px solid #4ca04a;
    /* Border color */
}

.disabled-button {
    background-color: grey !important;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.disabled-button:hover {
    background-color: #d9534f !important;
    cursor: not-allowed;
}

.disabled-button:hover::before {
    content: '\f05e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
}


.login-form {
    margin: 0 auto;
}


.login-h1 {
    font-weight: bold;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.login-form a {
    color: #6c757d;
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}

.login-form .form-control {
    border-radius: 5px;
}

.bg-light {
    background-color: #f5f5f5 !important;
}

.image-side {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Shadow for the image container */
    height: 80vh;
}

.image-section {
    margin-top: 30%;
}

button.btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px;
    font-size: 16px;
}

button.btn-success:hover {
    background-color: #218838;
}