/* Home Page Styles */

/* Main container for left and right sections */
.home-container {
    display: flex;
    flex-direction: row;
  gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

/* Left container for image */
.left-container {
    flex: 1;
    min-width: 0;
}

/* Right container for KPIs */
.right-container {
    flex: 1;
    min-width: 0;
}

/* Home image container aligned with main content */
.home-image-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.home-image {
    width: 100%;
 height: auto;
    display: block;
  object-fit: cover;
}

/* Optional: Add overlay for better text visibility if needed */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none; /* Set to 'block' if you want to add text over the image */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .home-container {
  flex-direction: column;
    }
    
    .home-image {
        width: 100%;
    }
}
