.banner-pop{
    background-image: url("../img/pop-new-image.jpeg");/* Replace with your image path */
    width: 100%;
     background-position: center;
      height: 67vh;
}
.banner-pop-text {
    padding-top: 142px;
   
}
.banner-pop-text h3{
    color:black;
}
.content h2{
    font-size: 24px;
}

.cooler-air-text{
    list-style: none;
    line-height: 30px;
    color: #949494;
    font-size: 16px;
}
.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(50px);
    margin-bottom: 20px;
    background-color: #fff;
}

.property-card img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.property-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.property-info {
    background-color: #000;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-details {
    display: flex;
    justify-content: space-around;
    padding: 4px;
    background-color: #f8f9fa;
    font-size: 13px;
    text-align: center;
}

.property-details div {
    flex: 1;
    padding: 5px;
    border-right: 1px solid #ddd;
}

.property-details div:last-child {
    border-right: none;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.pop-text-recent {
    font-size: 12px;
    text-align: center;
    padding: 1px;
}

section {
    
    display: flex;
    justify-content: center;
    align-items: center;
    
   
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    
  }

  section.visible {
    opacity: 1;
    transform: translateY(0);
    padding: 0px;
  }

  @media (max-width: 768px) {
    section {
      padding: 15px;
    }
    .content h2{
        font-size: 21px;
        line-height: 1.5;
    }
    .banner-pop-text {
        padding-top: 75px;
    }
    
  }
  
  @media (max-width: 425px) {
    .banner-pop {
        background-image: url(../img/mobile-banner.jpeg);
        background-repeat: no-repeat;
        width: 100%;
        /* background-position: right; */
        background-size: cover;
         height: 226px;
    }
}

@media (max-width: 375px) {
    .banner-pop {
        background-image: url(../img/mobile-banner.jpeg);
        background-repeat: no-repeat;
        width: 100%;
        /* background-position: right; */
        background-size: cover;
        height: 226px;
    }
}