.hero-gradient {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Add this class to disable scrolling on the body when the modal is open */
.body-no-scroll {
    overflow: hidden;
    height: 100vh; /* Ensures the body stays full height */
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 20px;
    width: 90%; /* Default width for mobile */
    max-width: 800px; /* Maximum width for desktop */
    border-radius: 8px;
    position: relative; /* Ensures it stays within the modal */
    /* Responsive adjustments */
    @media (max-width: 640px) {
        padding: 1rem; /* Reduced padding on mobile */
        width: 85%; /* Slightly narrower on mobile to avoid edge crowding */
    }
}

/* Removed .modal-grid since it's no longer used in HTML */