
/*=====================================
proerty-th
======================================*/

.property-th {
    margin-left: -9px;
}
.property-th .property-item{
    background-color: #FFF;
    margin: 10px;
}
.property-th .property-item .item-thumb{
    position: relative;
}
.property-th .property-item:hover  .item-thumb img{
    opacity: 1;
}
.property-th .property-item .item-thumb:hover .tm_mask {
    opacity: 1;
}
.property-th .property-item  .item-thumb img{
    height: 256px;
    width: 100%;           /* Let it stretch */
    object-fit: cover;     /* Cover area, crop overflow */
    object-position: center; /* Center the crop */
    transition: all 0.2s linear;
    display: block;        /* Prevent inline gap issues */
}
.property-th .property-item  .item-entry{
    padding: 8px;

}
.properties-page .property-th .proerty-price{
    font-weight: 600;
    color: #FDC600;
}
.property-th .property-item  .item-entry h5{
    text-transform: uppercase;
    font-weight: 600;
    color: #090f41;
    position: relative;
}
.property-th .property-item  .item-entry h5::after {
    width: 15px;
    left: 20px;
    height: 7px;
    content: "";
    position: absolute;
    bottom: -16px;
    display: block;
}

.property-status{
    font-weight: 600;
}
.tm_mask {
    opacity: 0;
    background-color: transparent;
    transition: all 0.4s ease-in-out 0s;
    width: 100%;
    overflow: hidden;
    height: 45px;
    position: absolute;
    padding: 5px;
    bottom: 0px;
    color: #FFF;

}


.p0{
    padding: 0px;
}
.overflow{
    overflow: hidden;
}
.mar-l-20{
    margin-left: 20px;
}
.mar-r-20{
    margin-right: 20px;
}
.box {
    background: #FFF none repeat scroll 0% 0%;
    margin: 0px 0px 30px;
    border: 1px solid #E6E6E6;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.box-two {
    background: #FFF none repeat scroll 0% 0%;

    border: 1px solid #E6E6E6;
    box-sizing: border-box;

    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}


/* Hover shine effect with gold background */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        
        rgba(249, 253, 1, 0.932),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.hover-shine:hover::before {
    left: 100%;
}

.hover-shine:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fffffd 50%, #ffef10f5 100%);
    box-shadow: 0 8px 20px rgba(228, 10, 46, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-shine .item-thumb,
.hover-shine .item-entry {
    position: relative;
    z-index: 2;
}

/* Diagonal red ribbon */
.ribbon {
    position: absolute;
    top: 0px;
    right: -5px;
    z-index: 3;
    overflow: hidden;
    width: 100px;
    height: 100px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 120px;
    display: block;
    background: linear-gradient(#dc143c 0%, #c41230 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -25px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #c41230;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #c41230;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #c41230;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #c41230;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    transform: translateY(-100%);
}

.logo-container {
    animation: logoAppear 1.5s ease-in-out;
}

.loading-logo {
    max-width: 200px;
    width: 80%;
    height: auto;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive image height for smaller screens */
@media (max-width: 767px) {
    
    .ribbon {
        width: 75px;
        height: 75px;
        top: 10px;
    }
    
    .ribbon span {
        font-size: 8px;
        line-height: 15px;
        width: 90px;
        top: 14px;
        right: -20px;
    }
}

/* Team Section Styles */
.team-member {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #2d465e;
}

.team-member span {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

/* Contact Section Styles */
.contact .info-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
    font-size: 32px;
    color: #5a3fb8;
    margin-right: 20px;
}

.contact .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d465e;
}

.contact .info-item p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

/* Hero About Section Styles */
.hero-about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.hero-about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 63, 184, 0.2) !important;
}

.hero-about-section h4 {
    color: #35039a;
    font-size: 28px;
    font-weight: 700;
}

.hero-about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

@media (max-width: 768px) {
    .hero-about-section h4 {
        font-size: 22px;
    }
    
    .hero-about-section p {
        font-size: 16px;
    }
}

/* Browse More Button Styles */
.browse-more-btn {
    background: linear-gradient(135deg, #35039a 0%, #5a3fb8 100%);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(53, 3, 154, 0.3);
    transition: all 0.3s ease;
    min-width: 280px;
}

.browse-more-btn:hover {
    background: linear-gradient(135deg, #5a3fb8 0%, #35039a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(53, 3, 154, 0.5);
}

.browse-more-btn:active {
    transform: translateY(-1px);
}

.browse-more-btn i {
    transition: transform 0.3s ease;
}

.browse-more-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .browse-more-btn {
        font-size: 16px;
        min-width: 240px;
        padding: 12px 30px !important;
    }
}

/* Property Section Border */
.property-section-border {
    border: 2px solid #35039a !important;
    border-radius: 10px;
    padding: 20px;
}
