.realestate-main-wrapper {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 40px;
}

.realestate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.realestate-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.realestate-section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.realestate-properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.realestate-property-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realestate-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.realestate-property-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.realestate-property-content {
    padding: 20px;
}

.realestate-property-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.realestate-property-description {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.realestate-property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.realestate-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #888888;
}

.realestate-detail-icon {
    width: 16px;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.realestate-property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #888888;
    margin-bottom: 15px;
}

.realestate-location-icon {
    width: 16px;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.realestate-property-price {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

@media (max-width: 1200px) {
    .realestate-properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .realestate-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .realestate-properties-grid {
        grid-template-columns: 1fr;
    }

    .realestate-page-title {
        font-size: 20px;
    }

    .realestate-section-subtitle {
        font-size: 14px;
    }
}

.navbar-custom{
    padding: 10px 20px !important;
    background-color: #1e3883;
    width: 100%;
    position: fixed;
    top: 0; /* make sure it stays at the top */
    left: 0;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    z-index: 99999;
  }

  .nav-item .nav-link {
    color:white;
    text-decoration:none;
  }

  .nav-custom .logo{
    color:white !important;
    text-decoration: none;
  }