/* Container styling */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;

}

/* Heading styling */
h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #6C40C1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Card layout */
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    min-height: 180px; /* Ensure all cards have the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Card content */
.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
}

.card-text {
    font-size: 0.95rem;
    color: #444;
    margin-top: 5px;
    flex-grow: 1; /* Allows text to fill space evenly */
}

/* Buttons */
.btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}