/* Explore Section */
.explore-section {
    background: #F9D084;
    padding: 3rem 0;
}

.explore-section h4 {
    font-size: 1rem;
    color: #0D2C54;
    margin-bottom: 1rem;
    margin-left: 4rem;
    font-weight: 100;
}

.explore-section h2 {
    font-size: 1.95rem;
    color: #0D2C54;
    margin-bottom: 2rem;
    margin-left: 4rem;
}

.explore-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Add this to your CSS */
.explore-card {
    display: block;
    text-decoration: none;
    color: #0D2C54; /* Adjust text color */
    background: #eef3fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    min-width: 200px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.explore-card p {
    font-size: 1rem;
    color: #333333;
    margin-top: 0.5rem;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Add styles for the card images */
.explore-card-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
    object-fit: cover;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/FontAwesome.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.fa {
    /* pick up the font you just defined */
    font-family: "FontAwesome" !important;
    /* prevent browsers from trying to ligature or substitute characters */
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* better smoothing for WebKit and Firefox */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-size {
    font-size: 150px;
}