

/*---------------------------------------
     MEMBERSHIP PAGE STYLES
-----------------------------------------*/
.benefit-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    margin: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #147bd7;
}

.benefit-card i {
    font-size: 35px;
    color: #147bd7;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Member Table Styling */
.directory-list-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.member-table thead {
    background: #147bd7;
    color: #ffffff;
}

.member-table thead th {
    border: none !important;
    text-align: center;
}

.member-table tbody td {
    padding: 15px !important;
    vertical-align: middle !important;
}

/* CTA Box */
.cta-box {
    background: #f9f9f9;
    padding: 60px;
    border-radius: 20px;
    border: 2px dashed #147bd7;
}

.cta-box h2 {
    margin-bottom: 20px;
}



.section-btn.btn-primary {
    background: #147bd7; /* NCN-SR Blue */
    border: 2px solid #147bd7;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px; /* Makes it a pill shape */
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none !important;
}

.section-btn.btn-primary:hover {
    background: transparent;
    color: #147bd7;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 123, 215, 0.2);
}

.section-btn.btn-primary i {
    margin-right: 8px; /* Adds space for the plane icon */
}