/*
    Custom CSS for the VB.NET Project Page
    Colors:
    - Primary Blue (Header): #0a3d62 (Approximate dark blue)
    - Accent Yellow (openIMIS): #ffc107 (Bootstrap warning color)
    - Card Background: Light gray/white
*/

body {
    /* Set a neutral background color if needed */
    background-image: linear-gradient(to right top, #f3dba4, #eedfb4, #eae3c5, #e8e6d5, #e8e8e5);
    font-family: Arial, sans-serif;
}

/* Header Styling */
.header-banner {
    background-image: linear-gradient(to right top, #0575e6, #0c69d4, #0f5dc3, #0f52b2, #0d47a1);
    padding: 20px 0;
    border-bottom: 5px inset #0056b3; /* A slight accent line */
}

.header-banner h1 {
    font-size: 1.5rem; /* Adjust size for mobile/desktop */
    line-height: 1.4;
}

.header-icon-left,
.header-icon-right {
    /* These styles are placeholders for the corner images */
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    /* You would replace the background properties with actual image URLs */
}

/* Feature Card Styling */
.card-feature {
    background-image: linear-gradient(to right top, #ffffff, #fbfbfb, #f6f6f6, #f2f2f2, #eeeeee);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* Ensure all cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-feature:hover {
    background-image: linear-gradient(to right top, #ffffff, #f2f3fe, #e1e8fd, #ccdffc, #b3d6fa);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-feature img {
    /* Adjust image size to fit the card visually */
    max-width: 200px;
    height: 150px;
    margin-bottom: 15px;
    /* Circular border for the placeholder images if desired */
    /* border-radius: 50%; */
}

.card-feature p {
    color: #333; /* Dark gray text for better readability */
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-banner h1 {
        font-size: 1.2rem;
    }
    .header-icon-left,
    .header-icon-right {
        width: 40px;
        height: 40px;
    }
}