/* footer start */

.realty-footer {
    background-color: #0a2647;
    color: white;
    padding-top: 60px;
    position: relative;
}

.realty-footer-logo span {
    display: block;
    color: #8d9aa6;
    font-size: 12px;
    margin-top: -5px;
}

.realty-about-text {
    color: #a9b3bc;
}

.realty-section-heading {
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.realty-section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #00c897;
}

.realty-footer-links {
    padding-left: 0;
}

.realty-footer-links li {
    margin-bottom: 15px;
}

.realty-footer-links a {
    color: #a9b3bc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.realty-footer-links a:hover {
    color: #00c897;
    padding-left: 5px;
}

.realty-footer-links i {
    margin-right: 10px;
    font-size: 12px;
}

.realty-contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a9b3bc;
}

.realty-contact-info i {
    margin-right: 15px;
    color: white;
}

.realty-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #153a62;
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
}

.realty-social-icon:hover {
    background-color: #00c897;
    color: white;
}

.realty-subscribe-btn {
    background-color: #00c897;
    border-color: #00c897;
}

.realty-subscribe-btn:hover {
    background-color: #00a67c;
    border-color: #00a67c;
}

.realty-footer-bottom {
    background-color: #071d36;
    padding: 20px 0;
    margin-top: 30px;
    color: #8d9aa6;
}

.realty-footer-bottom a {
    color: #8d9aa6;
    text-decoration: none;
}

.realty-footer-bottom a:hover {
    color: #00c897;
}

/* contact page css start */


.contact-box {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}



.contact-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}



.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    font-size: 28px;
    color: #00C194;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.contact-info h5 {
    margin: 0 0 5px;
    font-size: 18px;
}

.contact-info p {
    margin: 0;
    color: #555;
}

.contact-heading {
    margin-bottom: 15px;
}



.contact-section {
    padding: 60px 0;
}

.contact-heading h4 {
    font-weight: 700;
}

.contact-heading p {
    color: #6c757d;
}

.contact-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-label i {
    margin-right: 6px;
    color: #00C194;
}

.form-control {
    border-radius: 8px;
    padding: 10px 15px;
}

.btn-custom {
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
}

@media (max-width: 576px) {
    .contact-heading h4 {
        font-size: 1.5rem;
    }
}

/* contact page css end  */


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: visible;

}

/* Icon hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Wave Animation */
.whatsapp-float .wave {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: wave-pulse 1.5s infinite ease-out;
    z-index: -1;
}

@keyframes wave-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.upload-item {
    text-align: center;
    margin-bottom: 20px;
}

.icon-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 2px dashed #aaa;
    border-radius: 12px;
    font-size: 48px;
    color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.icon-label:hover {
    background-color: #e0e0e0;
}

.file-input {
    display: none;
}

.image-preview img {
    margin-top: 10px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 576px) {
    .upload-item {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .upload-item {
        width: 120px;
    }
}


.filter-container {

    padding: 25px;

}

.filter-section {
    margin-bottom: 20px;
}

.filter-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.option-btn {
    border-radius: 20px;
    padding: 6px 15px;
    margin-right: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    transition: all 0.2s;
}

.option-btn.selected {
    background-color: #33b5e5;
    color: white;
    border-color: #33b5e5;
}

.option-btn:hover:not(.selected) {
    background-color: #f0f0f0;
}

.form-control {
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}

.custom-select::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
    font-size: 12px;
}

.checkbox-container {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
}

.checkbox-item label {
    font-size: 14px;
    color: #666;
}

.textarea-container textarea {
    min-height: 120px;
    resize: vertical;
}



@media (max-width: 768px) {
    .filter-container {
        padding: 15px;
    }

    .option-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    .checkbox-container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .option-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .option-btn {
        flex: 0 0 calc(33.333% - 10px);
        margin-right: 5px;
        margin-left: 5px;
        text-align: center;
        padding: 5px 8px;
        font-size: 12px;
    }
}

.gold-btn {
    background: linear-gradient(145deg, #948635, #FFA500);
    /* Gold Gradient */
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background: linear-gradient(145deg, #FFA500, #FFD700);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
    transform: translateY(-2px);
}

/* property detail page css start */
.main-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.thumb-img {
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid transparent;
}

.thumb-img:hover {
    transform: scale(1.05);
    border-color: #0d6efd;
}

.thumbnail-row {
    margin-top: 15px;
}

.thumb-img.active {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.thumb-container {
    padding: 5px;
}

.info-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.detail-item {
    text-align: center;
    padding: 10px;
    flex: 1 0 120px;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.detail-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.detail-value {
    font-weight: 600;
    font-size: 1rem;
    color: #0d6efd;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #e6f2ff;
    color: #0066cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.feature-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.form-container {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.form-container h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-container h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.other-features .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 10px;
}

.other-features .feature-icon {
    margin-right: 10px;
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .form-container {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .thumb-container {
        padding: 3px;
    }

    .thumb-img {
        height: 60px;
    }

    .main-img {
        max-height: 350px;
    }

    .detail-item {
        flex: 1 0 45%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main-img {
        max-height: 300px;
    }

    .detail-item {
        flex: 1 0 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .other-features .col-6 {
        width: 100%;
    }
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

/* property list page css */
.property-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 20px auto;
    max-width: 1200px;
}

.property-image-container {
    height: 100%;
    position: relative;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
    display: block;
}

.property-details {
    padding: 20px;
}

.property-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.property-location {
    color: #6c757d;
    margin-bottom: 15px;
}

.property-table {
    background-color: #e9ecf9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.property-table th,
.property-table td {
    padding: 12px 15px;
    text-align: center;
    border: none;
}

.property-table th {
    background-color: #e9ecf9;
    font-weight: 600;
}

.property-price {
    font-weight: bold;
}

.property-description {
    margin-bottom: 20px;
}

.property-tags {
    margin-bottom: 20px;
}

.property-tag {
    background-color: #f0f0f0;
    border-radius: 50px;
    padding: 6px 15px;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 0.9rem;
    color: #555;
}

.btn-buy {
    background-color: #dcd6f7;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-contact {
    background-color: #424874;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-buy:hover {
    background-color: #cec6e6;
}

.btn-contact:hover {
    background-color: #363b61;
}

/* Ensure image container has proper height on all screens */
@media (min-width: 768px) {
    .col-md-4.position-relative {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .property-card {
        margin: 10px;
    }

    .property-image-container {
        height: 300px;
        /* Fixed height for mobile */
        overflow: hidden;
    }

    .property-details {
        padding: 15px;
    }

    .property-title {
        font-size: 1.3rem;
    }

    /* Make table responsive on small screens */
    .property-table th,
    .property-table td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .property-image-container {
        height: 250px;
    }

    .property-tag {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

/* search option css start  */


:root {
    --primary-color: #00C194;
    --primary-dark: #00C194;
    --accent-color: #ff6b35;
    --light-bg: #f3f4f6;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-bg {
    background-color: #E9F6F3;
    padding: 10px;
}

.header-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    background-color: var(--white);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin: 20px auto;
    max-width: 1200px;
    transition: transform 0.3s ease;
}

.search-container:hover {
    transform: translateY(-5px);
}


.property-type {
    position: relative;
}

.tab-container {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 5px;
    display: flex;
    margin-bottom: 20px;
}

.property-tab {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.property-tab.active {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.property-tab:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--primary-dark);
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    height: 50px;
    background-color: var(--light-bg);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-group {
    margin-bottom: 0;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    transition: color 0.3s ease;
}

.input-icon input:focus+i,
.input-icon:hover i {
    color: var(--primary-color);
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--light-text);
}

.advanced-search {
    text-align: center;
    margin-top: 20px;
}

.advanced-search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.advanced-search-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}



/* Advanced search section styles */
.advanced-options {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.advanced-options.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.range-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.range-label span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.range-value {
    font-weight: 600;
    color: var(--primary-color);
}

.filter-badge {
    display: inline-block;
    background-color: var(--light-bg);
    border-radius: 20px;
    padding: 6px 12px;
    margin: 0 4px 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-badge:hover,
.filter-badge.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.switch-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.switch-label {
    margin-left: 10px;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.form-switch .form-check-input {
    width: 45px;
    height: 22px;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.clear-filters {
    color: var(--light-text);
    background: none;
    border: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.clear-filters:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.badge-group-title {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 991.98px) {
    .header-title {
        font-size: 2rem;
    }

    .search-container {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {


    .header-title {
        font-size: 1.8rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .search-container {
        padding: 15px;
        margin: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .property-tab {
        padding: 10px;
        font-size: 0.9rem;
    }

    .advanced-options .col-md-4 {
        margin-bottom: 15px;
    }
}

/* running img css start */


.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    padding: 10px 0;
    box-sizing: border-box;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.marquee img {
    height: 100px;
    margin: 0 20px;
    vertical-align: middle;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* property card start */



.property-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: white;
    margin-bottom: 30px;
    height: 100%;
    border: none;
}

.property-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-img:hover {
    transform: scale(1.05);
}

.property-card-body {
    padding: 20px;
}

.property-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #333;
}

.property-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 5px;
    color: #777;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    width: calc(50% - 15px);
}

.feature-item i {
    margin-right: 8px;
    color: #888;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.property-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.property-actions {
    display: flex;
    align-items: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background-color: #f5f5f5;
    color: #555;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background-color: #e5e5e5;
}

.action-btn.favorite:hover {
    color: #ff3366;
}

.tag {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 8px 15px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.tag.featured {
    background-color: #ff3366;
}

.tag.for-sale {
    background-color: rgba(0, 0, 0, 0.6);
    left: auto;
    right: 0;
}

.tag.for-rent {
    background-color: rgba(0, 0, 0, 0.6);
    left: auto;
    right: 0;
}

.bottom-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
}

.bottom-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.bottom-action-btn:hover {
    background-color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-item {
        width: 100%;
    }
}

/* parllax css start */
main {

    margin: 0 auto;
    height: 73vh;
    /*margin-bottom: -100px;*/


}

.parallax {

    background-image: url("https://auramodernhome.com/cdn/shop/articles/img-1707349210324.jpg?v=1707349267&width=1100");
    min-height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-content {
    min-height: 60vh;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3em;
    text-align: center;
}


.video-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C194;
    font-size: 24px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.video-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #00C194;
    border-radius: 50%;
    animation: wave 2s infinite;
    opacity: 0.6;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* why choose-us  */

.why-bg {
    background-image: url("assets/img/why-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 15px;


}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00C194;
}



.btn-custom {
    background-color: #00C194;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background-color: #009e7e;
    color: #fff;
}

@media (max-width: 768px) {


    .info-section {
        padding: 30px 10px;
    }
}

/* about page css start */


.horizon-section-title {
    color: #00b67a;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.horizon-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.horizon-btn-primary {
    background-color: #00b67a;
    border-color: #00b67a;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.horizon-btn-primary:hover {
    background-color: #009d69;
    border-color: #009d69;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
}

.horizon-btn-outline-primary {
    color: #00b67a;
    border-color: #00b67a;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.horizon-btn-outline-primary:hover {
    background-color: #00b67a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
}

.horizon-feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #f8f9fa;
}

.horizon-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, rgba(0, 182, 122, 0.05) 0%, rgba(0, 182, 122, 0.15) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.horizon-feature-box:hover::before {
    height: 100%;
}

.horizon-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.horizon-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b67a;
    font-size: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.15);
    transition: all 0.5s ease;
}

.horizon-feature-box:hover .horizon-feature-icon {
    transform: rotateY(180deg);
    background: #00b67a;
    color: white;
}

.horizon-feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.horizon-feature-box:hover .horizon-feature-title {
    color: #00b67a;
}

.horizon-about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.horizon-about-image:hover {
    transform: scale(1.03);
}

.horizon-about-content {
    padding: 30px;
}

.horizon-value-progress {
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: #e9ecef;
    margin-bottom: 25px;
}

.horizon-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00b67a 0%, #00d48e 100%);
    border-radius: 5px;
    position: relative;
    width: 0;
    transition: width 1.5s ease;
}

.horizon-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.horizon-video-container:hover {
    transform: translateY(-10px);
}

.horizon-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b67a;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.horizon-video-play-button:hover {
    background-color: #00b67a;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.horizon-testimonial-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.horizon-mission-box {
    border-left: 4px solid #00b67a;
    padding-left: 25px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.horizon-mission-box:hover {
    transform: translateX(10px);
}

.horizon-mission-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.horizon-mission-list {
    padding-left: 20px;
}

.horizon-mission-list li {
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.horizon-mission-list li:hover {
    transform: translateX(5px);
}

.horizon-mission-list li:before {
    content: "•";
    color: #00b67a;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.horizon-why-choose-box {
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: white;
    height: 100%;
    transition: all 0.5s ease;
    border-bottom: 3px solid transparent;
}

.horizon-why-choose-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #00b67a;
}

.horizon-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00b67a 0%, #00d48e 100%);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.horizon-why-choose-box:hover .horizon-separator {
    width: 100px;
}

.horizon-highlight-text {
    font-weight: 600;
    color: #00b67a;
    position: relative;
    display: inline-block;
}

.horizon-highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00b67a;
    transition: width 0.5s ease;
}

.horizon-highlight-text:hover::after {
    width: 100%;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* slider card css start */

