.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
:root {
	--primary-color: #2c3e50;
	--secondary-color: #e74c3c;
}

.navbar {
	background-color: transparent !important;
	transition: background-color 0.3s ease;
}
.nav-link{
    cursor:pointer;
}
.navbar.scrolled {
    background-color: #000 !important;
}

.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.parallax-search {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/parallax.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
     overflow: visible;
}
.search-box {
    position: relative;
    z-index: 2;
}


.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-img-container img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-choose-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-container {
    padding:50px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideUp 0.8s ease-out;
}

.contact-info {
    background: #2c3e50;
    padding: 40px;
    color: #fff;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

.contact-info .info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out;
}

.contact-info .info-item i {
    font-size: 24px;
    margin-right: 15px;
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2c3e50;
    outline: none;
}

.contact-form button {
    background: #2c3e50;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-form button:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

.header-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
    padding: 50px 0 30px;
}
.price-tag {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center; /* Vertically align the icon and text */
    justify-content: center; /* Ensure the content is centered */
    flex-wrap: nowrap; /* Prevent wrapping */
}


.gallery-img {
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.property-features-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.amenity-item {
    margin-bottom: 15px;
}

.amenity-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.similar-property {
    margin-bottom: 30px;
}


.property-status {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.social-share a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-share a:hover {
    color: var(--secondary-color);
}



.property_description{
    font-family: 'Arial', sans-serif;  
    font-size: 16px;                   
    line-height: 1.6;                  
    color: #333;                       
    white-space: pre-wrap;             
    word-wrap: break-word;
}

