.owner_info {
    padding: 50px 0px 10px 50px;
    text-align: left;
    display: none; 
}
.owner-details, .owner-details-desk {
    max-width: 600px;
    /* margin: 0 auto; */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* margin-left: 12rem; */
    /* margin-top: -22rem; */
    text-align: justify;
}
.owner-details-desk h2{
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    font-family: "Syne", sans-serif;
    font-weight: 800;
}
.owner-details-desk .owner-desk{
    font-size: 20px;
    font-weight: bold;
    color: #07124D;
    font-family: "poppins", sans-serif;
    /* margin-top: 4rem; */

}



.owner-details h2 {
    font-size: 22px;
    color: #333;
    margin-top: 20px;
    font-family: "Syne", sans-serif;
    font-weight: 800;
}

.owner-details .owner{
    font-size: 20px;
    font-weight: bold;
    color: #07124D;
    font-family: "poppins", sans-serif;
    margin-top: -27rem;
}

.owner-details p, .owner-details-desk p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

@media screen and (min-width:2000px) and (max-width: 2560px) {
    .owner-details{
        margin-top: -25rem;
        margin-left: 41rem;
        max-width: 25%;
    }

}
@media screen and (max-width: 1024px) {
    .owner-details-desk{
        display: none;
    }

    .owner_info {
        display: block;
        margin-top: -6rem;
    }

    .owner-details{
        margin-top: -18rem;
        margin-left: 0.3rem;
        max-width: 50%;
    }

}

/* Mobile Specific Adjustments */

@media screen and (max-width: 768px) {
   
    .owner-details{
        margin-top: -5rem;
        margin-left: -2rem;
        max-width: 100%;
        
    }
    
    .owner-details .owner {
        font-size: 1rem;
        margin-top: 4rem;
    }
    
        .owner-info h2 {
            font-size: 0.7rem;
        }
    
        .owner-details p {
            font-size: 0.8rem;
        }

}

@media screen and (max-width: 480px) {
   
.owner-details{
    margin-top: -5rem;
    margin-left: -2rem;
    
}

.owner-details .owner {
    font-size: 0.8rem;
}

    .owner-info h2 {
        font-size: 0.7rem;
    }

    .owner-details p {
        font-size: 0.8rem;
    }

}
/* image modal zzom */
.image-modal {
    display: none; /* Default hidden */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
  }

.image-modal .modal-content {
  width: 100vw;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.image-modal .close {
  position: absolute;
  top: 0.5rem;
  right: 5rem;
  color: #0c0c0c;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

