
:root {
    --blue: #013b82;
    --yellow: #f9d00a;
    --text-blue: rgb(23, 29, 114);
    --light-blue: #214186;    
}

.join-page-card-container {
    display: flex;
    flex-wrap: wrap; /* Allow the cards to wrap */
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: 10px;
}

.join-page-mobile-card-row{
    display: flex;
    flex-wrap: wrap; /* Allow the cards to wrap */
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.join-page-mobile-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}


.join-page-card {
    width: 160px;  
    height: 220px; 
    background: var(--yellow);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.join-page-card-heading {
    color: #013b82;
}

.join-page-card-description {
    color: #013b82;
    font-size: 16px;
}


.join-page-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.join-page-card img {
    height: 80px; 
    margin: auto;
}


.join-page-card h4 {
    margin: 0px;
    font-size: 1.2em;
}

.apply-now {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.join-page-btn-blue {
    background-color: var(--blue);
    color: white;
    padding: 15px 20px 15px 20px;
    border-radius: 30px 30px 30px 30px;
}

.join-page-h2-container{
    text-align: center;
    margin: 20px;
    padding: 2px;
}

.join-page-h2-heading {
    color: var(--blue);
    text-align: center;
    margin-top: 20px;
    padding: 10px 30px 10px 30px;
    background-color: var(--yellow);
    display: inline;
    border-radius: 30px 30px 30px 30px;

}

@media (min-width: 1001px) {
    .join-page-mobile-card-container {
        display: none;
    }
}
@media (max-width: 1000px) {
    .join-page-card-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .join-page-h2-heading {
        color: var(--blue);
        text-align: center;
        margin-top: 20px;
        font-size: 20px;
        padding: 10px 30px 10px 30px;
        background-color: var(--yellow);
        display: inline;
        border-radius: 30px 30px 30px 30px;
    
    }
}

@media(max-width: 400px){
    .join-page-h2-heading{
        font-size: 18px;
        padding: 10px 20px 10px 20px;
    }
}




