﻿.container {
    width: 90%;
    margin: auto;
}

.custom-submenu li {
    background-color: orange;
    padding-left: 10px;
}

    .custom-submenu li a:hover {
        color: #000;
    }

.rupee::before {
    content: "₹ ";
}

.btn-close {
    padding: 2px 14px;
    background-color: #e7dcef;
}

input.form-control {
    border-radius: 10px;
    padding: 10px 15px;
}

button.btn-primary {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
}

    button.btn-primary:hover {
        color: #fff;
    }

.in-control {
    height: 40px !important;
    padding: 0px 6px !important;
    min-height: 40px !important;
    border-radius: 5px !important;
    border: 1px solid #63aaef99 !important;
}
/*
h2 {
    text-align: center;
    margin-bottom: 20px;
}*/
.text-primary {
    color: #f4952f;
}

.text-success {
    color: #56ca00;
}

.text-danger {
    color: #ff4c51;
}

.text-secondary {
    color: #8a8d93;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-1 {
    margin-top: 5px !important;
}

.mt-2 {
    margin-top: 10px !important;
}

.mt-3 {
    margin-top: 15px !important;
}

.mt-4 {
    margin-top: 20px !important;
}

.mt-5 {
    margin-top: 25px !important;
}

.mt-6 {
    margin-top: 30px !important;
}

.mt-7 {
    margin-top: 35px !important;
}

.mt-8 {
    margin-top: 40px !important;
}

.mt-9 {
    margin-top: 45px !important;
}

.mt-10 {
    margin-top: 50px !important;
}

.message-alert {
    color: #f4952f;
    font-weight: 800;
}

.home-content-wrapper {
    margin-top: 20px;
}

.home-content-more {
    display: none;
    font-size: 16px;
    color: #555;
}

/*Video related css -- START*/
/* Video grid styling */

.filter-bar-control {
    border: 1px solid #63aaef99;
}

.filter-bar {
    background: #fff;
    border-radius: 6px;
    /*background-color: #f5f5f5 !important;*/
}

    .filter-bar label {
        font-weight: 600;
        font-size: 0.9rem;
        padding-top: 8px;
    }

    .filter-bar select {
        padding: 8px 0px 8px 5px;
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 15px;
    }

    .filter-bar button {
        padding: 9px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
        font-weight: bold;
    }

        .filter-bar button:hover {
            background-color: #0056b3;
        }

.video-detail {
    width: 100%;
    height: auto; /* keeps aspect ratio */
    display: block;
    object-fit: cover; /* makes image/video fill container without stretching */
    background-color: #000; /* in case of black bars */
    border-radius: 8px; /* optional rounded corners */
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.video-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    position: relative;
}

    .video-card:hover {
        transform: translateY(-5px);
    }

    .video-card a {
        display: block;
        position: relative;
        cursor: pointer;
        color: #46424d;
        text-align: center;
    }

    .video-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.85);
    color: #000;
    font-size: 1.5rem;
    padding: 8px 12px;
    border-radius: 50%;
}

.video-card h1 {
    font-size: 18px;
    margin: 15px;
    color: #333;
}

    .video-card h1 a {
        color: #f4952f;
    }

.video-card p {
    font-size: 14px;
    color: #666;
    margin: 0 15px 10px;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    font-size: 14px;
    color: #888;
}

    .video-stats span {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: default;
        min-width: 100px;
        font-size: 12px;
        font-weight: bold;
    }

.video-property-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    max-height: 2.8em; /* 2 lines */
    min-height: 2.8em; /* 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

.video-property-unit-type {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
}

.video-property-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    color: #fff;
    padding: 6px 12px;
    font-size: 1rem;
    font-weight: bold;
    border-top-left-radius: 6px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /*margin-top: 6px;*/
}

.property-meta {
    font-size: 15px;
    color: #666;
}

    .property-meta span {
        padding-right: 10px;
        font-size: 13px;
    }

.action-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

    .action-icons span {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #555;
    }

.like-btn {
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

    .like-btn.liked {
        color: red;
    }

.btn-enquiry {
    /*background: linear-gradient(135deg, #ff6a00, #ff8c1a);*/
    color: white;
    padding: 9px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 70%;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-enquiry:hover {
        background: linear-gradient(135deg, #e65c00, #ff751a);
        transform: translateY(-2px);
    }

.enquiry-btn {
    background-color: #e50914;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

    .enquiry-btn:hover {
        background-color: #c30710;
        color: #fff;
    }
/* Modal Styles */
#videoModal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

    #videoModal .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        width: 640px;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    #videoModal video {
        width: 100%;
        height: auto;
        display: block;
    }

    #videoModal .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 25px;
        color: white;
        cursor: pointer;
        z-index: 1000;
    }
/* Loading spinner */
#loading {
    text-align: center;
    padding: 20px;
    display: none;
}

/*Video related css -- END*/
.single-property-details {
    border: 1px solid #e1e1e1;
}

.single-property-details-option {
    background: #f5f5f5;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px;
}

.single-property-details-title {
    background: #ffffff;
    -webkit-box-shadow: -1px 5px 5px rgba(20, 14, 5, 0.1);
    box-shadow: -1px 5px 5px rgba(20, 14, 5, 0.1);
    padding: 15px 10px;
    position: relative;
    margin-bottom: 8px;
}

.property-highlight-right {
    height: 225px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .property-highlight-right:after {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        content: "";
        opacity: 0.6;
        z-index: -1;
    }

    .property-highlight-right .property-highlight-right-text ul {
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .property-highlight-right .property-highlight-right-text h3 a {
        color: #ffffff;
    }

.property-highlight-right-text-background {
    background: rgba(0, 0, 0, 0.4);
    padding-left: 5px;
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 25px;
}

.single-post-title-text h1 {
    font-size: 20px;
}

.portfolio-right-text h2 {
    text-transform: uppercase;
}

.portfolio-right-text p {
    font-size: 15px;
    margin-bottom: 5px;
}

.portfolio-right-text ul ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.portfolio-right-text li {
    line-height: 26px;
}

.profile-image {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.badge-deal {
    margin-right: 5px;
}

.cp-profile-img {
    height: 340px;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 12px !important;
}

.cp-subheader-text {
    padding-bottom: 10px;
    margin-top: -12px !important;
}

.cp-subheading {
    font-weight: 600;
    color: #343a40;
    margin-top: 2.0rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

.cp-testimonial {
    background-color: #f8f9fa;
    border-left: 4px solid #17a2b8;
    padding: 15px;
    border-radius: 6px;
    font-style: italic;
}

.badge-custom {
    font-size: 0.875rem;
    padding: 0.5em 0.75em;
    border-radius: 20px;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.6rem;
}

.cp-ab {
    margin: 8px;
}

.cp-card-height {
    min-height: 178px;
}

.cp-search-filter {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.toggle-view-btn {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-left: 8px;
    background-color: #f8f9fa;
}

.toggle-view-container {
    text-align: right;
    margin-bottom: 20px;
}

.cp-card {
    border: 1px solid #e0e0e0;
    /*border-radius: 12px;*/
    padding: 16px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .cp-card:hover {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .cp-card h5 {
        font-size: 1.1rem;
        color: #333;
    }

    .cp-card p {
        font-size: 0.9rem;
        color: #555;
    }

    .cp-card .btn-view-profile {
        background-color: #007bff;
        color: white;
        border: none;
    }

        .cp-card .btn-view-profile:hover {
            background-color: #0056b3;
        }

/* Grid view */
.grid-view .cp-item {
    display: flex;
}

/* List view styling */
.list-view .cp-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-view .cp-header {
    margin-bottom: 0;
}

.list-view .cp-card img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.list-view .cp-card > div {
    flex: 1;
}

.list-view .cp-card p {
    margin-bottom: 4px;
}

.btn-view-profile {
    background-color: #004aad;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}

    .btn-view-profile:hover {
        background-color: #004aad;
        color: #fff;
    }

.btn-view-website {
    background-color: #f4952f;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}

    .btn-view-website:hover {
        background-color: #f4952f;
        color: #fff;
    }

@media (max-width: 768px) {
    .filter-bar {
        padding: 10px;
    }

        .filter-bar .col-12 {
            max-width: 50%;
        }

        .filter-bar .form-floating {
            width: 100%;
        }

        .filter-bar button {
            margin-top: 5px;
        }

    .single-post .container {
        width: 100%;
        margin: auto;
    }

    .single-property-details {
        margin-left: -15px;
        margin-right: -15px;
    }

    .single-property-details-option {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media(min-aspect-ratio:9/16) {
    .video-detail {
        height: 300px;
    }

    #videoModal video {
        height: 300px;
    }
}

@media(min-aspect-ratio:16/9) {
    .video-detail {
        height: 395px;
    }

    #videoModal video {
        height: 395px;
    }
}



/*Market Place*/
.carousel-bg {
    height: 75vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    color: #fff;
}

    .carousel-caption h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

.carousel .btn-light {
    background: #fff;
    color: #000;
    border: none;
}

.carousel .btn-primary {
    background: linear-gradient(to right, #0d6efd, #2563eb);
    border: none;
}

.marketplace-home .hero-inside-item {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px !important;
    height: 500px !important;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .marketplace-home .hero-inside-item:hover {
        transform: scale(1.02);
    }

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
    z-index: 1;
}

.marketplace-home .hero-inside-item-text {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
    bottom: 0px;
}

.marketplace-home .hero-inside-item--text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.marketplace-home .hero-inside-item--text .btn {
    font-size: 0.875rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.marketplace-home .btn-outline-light:hover {
    color: #000 !important;
}

.marketplace-home h1 {
    font-size:34px;
}

.marketplace-home h2 {
    font-size: 33px;
}
.marketplace-home h2,
.marketplace-home h3,
.marketplace-home h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.marketplace-home .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px 25px;
}

.marketplace-home ul li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.marketplace-home .card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .marketplace-home .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

.marketplace-home .card-body {
    padding: 20px;
}

.marketplace-home .btn-primary {
    background: linear-gradient(to right, #0d6efd, #0b5ed7);
    border: none;
}

.marketplace-home .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

.marketplace-home .launch-timers li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.marketplace-home .subscription-plan .card {
    border-radius: 10px;
    transition: transform 0.3s;
}

    .marketplace-home .subscription-plan .card:hover {
        transform: scale(1.05);
    }

.marketplace-home .map {
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.marketplace-home .blog-section .card-title {
    font-size: 1.1rem;
}

.marketplace-home .stretched-link::after {
    transition: transform 0.2s ease;
}


.featured-properties .section-title {
    font-weight: 700;
    color: #333;
}

.property-card {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.price-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    color: #fff;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-top-left-radius: 6px;
}

.property-info {
    padding: 12px 8px 0px 8px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    max-height: 3.4em;
    min-height: 3.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    padding: 7px;
}

.property-meta {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* View All Button */
.btn-view-all {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(90deg, #007bff, #00b4d8);
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        background: linear-gradient(90deg, #00b4d8, #007bff);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color: #fff;
    }


/* Marketing Section Styling */
.marketing-section {
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
}

.promo-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .promo-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .promo-card h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

        .promo-card h2 span {
            color: #0d6efd; /* Bootstrap primary blue */
        }

    .promo-card p.lead {
        font-size: 1rem;
        color: #555;
        margin-bottom: 1rem;
    }

.feature-list {
    list-style-type: disc; /* default filled circle */
    margin: 0;
}

    .feature-list li {
        margin: 0.5rem 0;
        font-size: 1rem;
        color: #333;
    }

/* Builder card accent */
.builder-card {
    border-top: 5px solid #0d6efd; /* Blue */
}

/* CP card accent */
.cp-card {
    border-top: 5px solid #198754; /* Green */
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
}


@media (max-width: 768px) {
    .property-title {
        font-size: 0.9rem;
    }

    .property-meta {
        font-size: 0.8rem;
    }
}



.property-list-body {
    width: 525px;
    overflow: hidden;
}

.property-list-card {
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
}

    .property-list-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

/* Image */
.property-list-img {
    flex: 0 0 230px;
    padding: 16px;
}

.img-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgb(215 67 67 / 97%);
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.img-overlay-prop-code {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgb(77 141 44 / 97%);
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.img-overlay-update {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #fff;
    color: #333;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Highlights */
.property-highlights .highlight-item {
    min-width: 135px;
    font-size: 0.8rem;
}

.property-highlights i {
    font-size: 1.2rem;
}
/* Actions (Right column) */
.property-list-actions {
    width: 175px;
    border-left: 1px solid #eee;
    text-align: center;
    background-color: #f6f6f7;
}

/* Responsive */
@media (max-width: 768px) {
    .property-list-card {
        flex-direction: column;
    }

    .property-list-img img {
        width: 100% !important;
        height: auto !important;
    }

    .property-list-actions {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }
}

/* Proeprty Video List Page Start*/
.video-gallery-header {
    margin-top: 0.8rem;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 1rem;
    position: relative;
}

    .search-bar input {
        padding-left: 3.2rem !important;
        border-radius: 50px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .search-bar i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        font-size: 1.2rem;
        pointer-events: none;
    }

.tags-bar {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: .5rem 0;
    scrollbar-width: none;
}

    .tags-bar::-webkit-scrollbar {
        display: none; /* hide scrollbar in Chrome/Safari */
    }

.tag-chip {
    padding: .3rem .9rem;
    border-radius: 20px;
    background-color: #e9ecef;
    cursor: pointer;
    font-size: .9rem;
    transition: all .2s;
    white-space: nowrap;
}

    .tag-chip:hover, .tag-chip.active {
        background-color: #007bff;
        color: #fff;
    }

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid #63aaef99 !important;
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 2px 6px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    pointer-events: none;
}

    .play-icon-overlay i {
        font-size: 4.5rem !important;
    }

.video-info {
    padding: 1rem;
}

.property-video-header {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.property-video-title {
    margin: 2px 0 8px !important;
    font-size: 0.9rem !important;
    color: #6c757d !important;
    line-height: 1.3 !important;
    text-align: center;
}

    .property-video-title i {
        vertical-align: top;
        margin-top: 2px;
        margin-left: -18px;
        position: absolute;
        font-size: 1rem;
        color: #555;
    }

.video-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: #222;
}

.video-meta {
    font-size: .9rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

    .video-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.video-detail-title {
    margin-bottom: 8px !important;
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
}

.video-detail-meta {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.video-stats i {
    color: #888;
}

.video-actions .btn {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 4px 12px;
}

.video-actions .btn-primary {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.video-detail-highlight-box {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.video-detail-highlight-item {
    flex: 1;
    background: #e9eef7;
    padding: .8rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .video-detail-highlight-item i {
        font-size: 1.4rem;
        color: #007bff;
        margin-bottom: .4rem;
    }

    .video-detail-highlight-item strong {
        display: block;
        color: #222;
    }

.video-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-btn-enquiry {
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.85rem;
    width: 115px;
}

.video-detail-btn-enquiry {
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.85rem;
    width: 140px;
}

.related-video-right-sidebar {
    max-height: 600px; /* Fixed height for sidebar */
    overflow-y: auto; /* Scroll if content exceeds height */
    padding-right: 10px; /* Optional padding for scrollbar */
}

.related-video {
    max-height: 100px; /* Set the desired max height */
    overflow: hidden; /* Hide overflow content */
    flex-wrap: nowrap; /* Keep thumb and info aligned */
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
}

.related-video-thumb {
    width: 120px; /* fixed width */
    height: 80px; /* fixed height */
    flex-shrink: 0; /* prevent shrinking */
    overflow: hidden;
    border-radius: 6px;
    background: #f8f9fa;
}

    .related-video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* keeps image proportional */
        display: block;
    }

.related-video-info {
    overflow: hidden;
}

    .related-video-info p {
        font-size: 0.9rem;
        line-height: 1.2;
        max-width: 260px; /* prevents long titles breaking layout */
    }

.related-video-title {
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* show ... */
    word-break: break-word; /* break long words nicely */
    white-space: normal; /* allow wrapping */
    max-width: calc(100% - 130px);
}

    .related-video-title a {
        color: #000;
    }

.video-detail-stats {
    font-size: 0.9rem;
    color: #555;
}

    .video-detail-stats span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #666;
    }

    .video-detail-stats i {
        color: #888;
    }

.like-btn {
    cursor: pointer;
    transition: color 0.2s ease;
}

    .like-btn:hover i {
        color: #0d6efd; /* highlight on hover */
    }

.like-count {
    font-weight: 600;
    margin-right: 2px;
}
/* Proeprty Video List Page End*/

/*Promotion Start*/
.promotion-section {
    background: #fff;
    color: #333;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 5px solid #f2f2f2;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(255, 76, 81, 0.15);
    }

.feature-header {
    display: flex;
    align-items: center;
}

.icon-badge-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4c51, #ff6b81);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 76, 81, 0.3);
}

    .icon-badge-large i {
        font-size: 32px;
        line-height: 1;
    }

.feature-card:hover .icon-badge-large {
    transform: scale(1.05);
}

/* Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, #8c57ff, #8c57ff);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4cd964, #76e39c);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #00bcd4, #5ad9e6);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #ffd966);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ff4c51, #ff6b81);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #9ca3af, #c1c5ca);
}

/* Text */
h1, h2, h5 {
    color: #222;
}

p {
    color: #555;
}

/* Buttons */
.btn-gradient {
    /*background: linear-gradient(135deg, #ff4c51, #ff6b81);*/
    color: #ff4c51;
    border: 2px solid #ff4c51;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box {
    background: linear-gradient(135deg, #6c4c4d, #ff6b81);
}

.btn-light:hover {
    background: #fff;
    color: #ff4c51 !important;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff4c51, #ff6b81);
    color: #fff;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 76, 81, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

    .btn-call-now i {
        font-size: 24px;
        background: #fff;
        color: #ff4c51;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-call-now small {
        font-size: 13px;
        opacity: 0.85;
        margin-left: 4px;
    }

    .btn-call-now:hover {
        background: #fff;
        color: #ff4c51;
        box-shadow: 0 0 25px rgba(255, 76, 81, 0.3);
    }

        .btn-call-now:hover i {
            background: #ff4c51;
            color: #fff;
        }

.btn-call-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff4c51, #ff6b81);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-call-pulse::before {
        content: "";
        position: absolute;
        top: -10%;
        left: -10%;
        width: 120%;
        height: 120%;
        border-radius: inherit;
        background: rgba(255, 76, 81, 0.4);
        animation: pulseRing 1.6s infinite ease-out;
        z-index: 0;
    }

    .btn-call-pulse i {
        background: #fff;
        color: #ff4c51;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        z-index: 1;
    }

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-call-pulse:hover {
    background: #fff;
    color: #ff4c51 !important;
}

/*Promotion End*/


/* ======= PREMIUM PROPERTY MEDIA UI ======= */

/* front-property.css
   Premium UI for property detail media hero
*/
.property-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.property-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.property-header-left {
    flex: 1;
}

.property-detail-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

    .property-detail-title span {
        font-size: 18px;
        font-weight: 400;
        color: #666;
    }

.property-code {
    font-size: 13px;
    font-weight: 700;
    color: #6c757d;
    margin-top: 4px;
}

    .property-code strong {
        color: #212529;
        font-weight: 600;
        letter-spacing: .8px;
        color: #fd7e14;
    }

.property-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #666;
}

.property-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    font-size: 14px;
    color: #495057;
}

    .property-info-row .info-item {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .property-info-row i {
        font-size: 16px;
        color: #6c757d;
    }

.info-separator {
    color: #adb5bd;
}

.info-item i {
    color: #6c757d;
}

.info-item:nth-child(1) i {
    color: #0d6efd;
}
/* location */
.info-item:nth-child(3) i {
    color: #198754;
}
/* property */
.info-item:nth-child(5) i {
    color: #fd7e14;
}
/* listing */


@media (max-width: 768px) {
    .property-info-row {
        gap: 6px;
        font-size: 13px;
    }
}

.property-header-right {
    min-width: 130px;
    text-align: center;
}

.price-box {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #d19e01;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #ff6b00;
}

    .price-amount .dash {
        margin: 0 4px;
    }

@media (max-width: 768px) {
    .property-header-row {
        flex-direction: column;
    }

    .property-header-right {
        text-align: left;
        width: 100%;
    }

    .price-box {
        margin-top: 10px;
    }
}
/* expand button */
.btn-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    cursor: pointer;
}

.btn-expand--images {
    right: 74px;
}

.cta-btn {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.cta-call {
    background: linear-gradient(90deg,#111827,#0f172a);
}

.cta-whatsapp {
    background: linear-gradient(90deg,#12b01f,#07a331);
}

.cta-schedule {
    background: linear-gradient(90deg,#ff6b6b,#ff3850);
}

/* small screens: show sticky CTA and compact UI */
@media (max-width: 767px) {
    .sticky-cta {
        display: flex;
    }

    .media-video, .slide-img {
        height: 260px;
    }

    .media-card__head {
        padding: 10px;
    }

    .btn-icon {
        bottom: 12px;
        right: 12px;
    }
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* accessibility tweaks */
.thumb:focus {
    outline: 2px solid rgba(255,107,107,0.2);
    outline-offset: 2px;
}

/* small helpers */
.sr-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/*New Detail Page End*/
