
/* ==========================================================================
   SBH UNIFIED SEARCH DROPDOWNS & AUTOCOMPLETE
   Targeted for both Home and Search Jobs views
   ========================================================================== */

/* Unified Search Bar LAYOUT (Horizontal Bar) */
.sbh-search-bar-unified {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 65px;
    align-items: stretch;
    position: relative;
    z-index: 1000;
    font-family: "Gilroy Regular", sans-serif !important;
}

@media (max-width: 991px) {
    .sbh-search-bar-unified {
        flex-direction: column;
        height: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 12px;
        margin-bottom: 30px;
    }
}
.sbh-search-bar-unified * {
    font-family: "Gilroy Regular", sans-serif !important;
}
.sbh-search-cell {
    flex: 1;
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid #eee;
    position: relative;
    /* Removed z-index to avoid creating stacking contexts that trap dropdowns */
}
@media (max-width: 991px) {
    .sbh-search-cell {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 18px;
        width: 100%;
        height: auto;
        min-height: 70px;
    }
}
/* Ensure cell with open dropdown or active focus is on top */
.sbh-search-cell:hover, 
.sbh-search-cell:focus-within,
.sbh-search-cell:has(.open) {
    z-index: 1002 !important; 
}
.sbh-search-cell:nth-child(3) {
    border-right: 1px solid #eee;
}
@media (max-width: 991px) {
    .sbh-search-cell:nth-child(3) {
        border-right: 1px solid #ddd;
    }
    .sbh-search-cell .sbh-dropdown-trigger {
        height: 35px !important;
        line-height: 35px;
    }
    .sbh-dropdown-options {
        width: 100%; 
        box-sizing: border-box;
    }
}
.sbh-search-cell > label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    pointer-events: none;
}
.sbh-search-cell input, 
.sbh-search-cell select,
.sbh-dropdown-trigger span {
    border: none !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #333;
    width: 100%;
    background: transparent !important;
    outline: none;
    height: 24px;
    line-height: 24px;
    box-shadow: none !important;
    font-family: inherit;
    cursor: pointer;
}
.sbh-search-cell input {
    cursor: text !important;
}

/* Button Cell */
.sbh-search-button-cell {
    width: 160px;
    background: #6fcf97;
    display: flex;
}
@media (max-width: 991px) {
    .sbh-search-button-cell {
        width: 100%;
        height: 55px;
        border-radius: 8px;
        margin-top: 5px;
    }
}
.sbh-search-button-cell button {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background .2s;
}
.sbh-search-button-cell button:hover {
    background: #5dbd86;
}

/* Dropdown Wrapper */
.sbh-dropdown-wrapper {
    position: relative;
    width: 100%;
    font-family: 'Gilroy Regular', sans-serif !important;
}

/* Trigger / Selected Value */
.sbh-dropdown-trigger {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
    height: 42px;
    box-sizing: border-box;
}

/* Fix for Search Cell context to match layout height */
.sbh-search-cell .sbh-dropdown-trigger {
    height: 24px;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    min-height: 24px;
}

/* Specific styling for Home inputs to ensure consistency */
.form-group .sbh-dropdown-trigger {
    height: 38px; /* Classic input height in Home */
    background: #fff !important;
    border: none !important;
    padding: 6px 0px !important;
}

/* Ensure Home hero area doesn't clip the dropdown */
.hero-area, .job-search-form {
    overflow: visible !important;
}
.job-search-form {
    z-index: 9999 !important;
}

/* Home page cells (form-group) need to handle the dropdown without clipping */
.form-group {
    overflow: visible !important;
    position: relative;
}

.sbh-dropdown-trigger:hover {
    border-color: #aaa;
}

/* Arrow indicator */
.sbh-dropdown-trigger:after {
    content: '\25BC';
    font-size: 10px;
    color: #333;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.sbh-dropdown-wrapper.open .sbh-dropdown-trigger:after {
    transform: rotate(180deg);
}

/* Options Container */
.sbh-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9995 !important;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    margin-top: 0;
    text-align: left;
}

/* Open state */
.sbh-dropdown-wrapper.open .sbh-dropdown-options {
    display: block;
}

/* Options Heading */
.sbh-dropdown-header {
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    background: #fcfcfc;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f0f0f0;
}

/* Single Option Row */
.sbh-dropdown-option {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.sbh-dropdown-option:hover {
    background: #f5fcf9;
}

/* Checkbox alignment */
.sbh-dropdown-option input[type="checkbox"] {
    margin: 0 12px 0 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #6fcf97;
}

/* Label styling */
.sbh-dropdown-option label {
    flex: 1;
    margin: 0 !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #444 !important;
    white-space: normal; /* Allow wrapping */
    word-break: break-word; /* Ensure it stays in box */
    overflow: visible;
    text-overflow: unset;
    display: block;
    text-transform: none !important;
    line-height: 1.4;
    padding: 2px 0;
}

/* Count badge */
.sbh-dropdown-option .count {
    color: #888;
    font-size: 13px;
    margin-left: 10px;
}

/* ==========================================================================
   TOP CONTROLS (Save Alert Button & Sort)
   ========================================================================== */
.top-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 25px;
}
.top-controls > button {
    background-color: #6fcf97 !important;
    color: white !important;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Gilroy Regular', sans-serif !important;
    transition: background 0.2s;
}
.top-controls > button:hover {
    background-color: #5dbd86 !important;
}

/* ==========================================================================
   LOCATION AUTOCOMPLETE
   ========================================================================== */

.sbh-location-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 9995 !important;
    margin-top: 0;
    text-align: left;
}

.sbh-location-options.open {
    display: block;
}

.sbh-location-option {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease;
}

.sbh-location-option:hover {
    background: #f5fcf9;
    color: #000;
}

/* Clear icon for location */
#location-clear {
    transition: color 0.2s ease;
}
#location-clear:hover {
    color: #333 !important;
}

/* Scrollbar Styling */
.sbh-dropdown-options::-webkit-scrollbar,
.sbh-location-options::-webkit-scrollbar {
    width: 10px;
}
.sbh-dropdown-options::-webkit-scrollbar-track,
.sbh-location-options::-webkit-scrollbar-track {
    background: #f9f9f9;
}
.sbh-dropdown-options::-webkit-scrollbar-thumb,
.sbh-location-options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
    border: 2px solid #f9f9f9;
}
.sbh-dropdown-options::-webkit-scrollbar-thumb:hover,
.sbh-location-options::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ==========================================================================
   MODAL ALERTS (Job Alerts)
   ========================================================================== */
#jobAlertModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-content-alert {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header-alert h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.freq-btn {
    flex: 1;
    background: #fff;
    border: 2px solid #6fcf97;
    color: #6fcf97;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
}

.freq-btn.active {
    background: #6fcf97;
    color: #fff;
}

/* ==========================================================================
   LATEST JOBS TICKER (Full Card Ticker)
   ========================================================================== */
.sbh-ticker-container {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    z-index: 1;
}

.sbh-ticker {
    display: flex;
    white-space: nowrap;
    animation: sbh-ticker-scroll 100s linear infinite;
    width: max-content;
    padding-left: 140px; /* Offset for label */
    align-items: center;
}

.sbh-ticker:hover {
    animation-play-state: paused;
}

.sbh-ticker .job-entry-card {
    margin-bottom: 0 !important;
    margin-right: 60px; /* Gap between cards in ticker */
    min-width: 450px;
    max-width: 500px;
    white-space: normal; /* Allow text wrapping inside cards */
}

.sbh-ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #6fcf97;
    color: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    z-index: 10;
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes sbh-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LATEST JOBS CARDS (Home Page)
   ========================================================================== */
.latest-jobs-section {
    padding: 40px 0;
}

.job-entry-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.job-entry-card:hover {
    transform: translateX(5px);
}

.job-date-box {
    width: 60px;
    height: 60px;
    border: 1px solid #6fcf97;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.job-date-day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.job-date-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
}

.job-entry-content {
    flex: 1;
}

.job-entry-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    font-weight: 600;
}

.job-entry-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 5px;
}

.job-entry-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Titles with lines */
.title-with-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.title-with-line:before,
.title-with-line:after {
    content: "";
    height: 1px;
    background: #6fcf97;
    flex: 1;
    margin: 0 15px;
}

.title-with-line span {
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
}

/* Home Cards Premium Styling */
.card-custom {
    display: block;
    background: #fff;
    border: 1.5px solid #6fcf97;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    height: 100%;
    text-decoration: none;
}

.card-custom:hover {
    box-shadow: 0 10px 25px rgba(111,207,151,0.15);
    transform: translateY(-5px);
}

.card-custom .icon {
    font-size: 26px;
    color: #333;
    margin: 0 auto 20px auto;
    width: 70px;
    height: 70px;
    border: 1.5px solid #6fcf97;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s;
}

.card-custom:hover .icon {
    background: #6fcf97;
    color: #fff;
}

.card-custom h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}
/* ==========================================================================
   HOME PAGE SEARCH FORM (Hero Area)
   ========================================================================== */
.job-search-form {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 5;
}

.job-search-form .sbh-search-bar-unified {
    margin-bottom: 0px !important;
}

/* RESPONSIVE SEARCH FORM (Hero) */
@media (max-width: 991px) {
    .job-search-form {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 30px 15px;
        background: #ffffff;
        border-bottom: 2px solid #6fcf97;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    }
    .hero-area {
        height: auto !important;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Improve visibility of slide content on mobile */
    .slide-content {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 85% !important;
        background: rgba(0, 0, 0, 0.45) !important;
        color: #fff !important;
        padding: 15px !important;
        border-radius: 12px;
        backdrop-filter: blur(4px);
    }
}

/* RESPONSIVE TICKER */
@media (max-width: 768px) {
    .sbh-ticker-container {
        padding: 15px 0;
    }
    .sbh-ticker .job-entry-card {
        min-width: 280px;
        max-width: 300px;
        margin-right: 25px;
        padding: 10px;
    }
    .job-date-box {
        width: 50px;
        height: 50px;
    }
    .job-date-day {
        font-size: 16px;
    }
    .job-date-month {
        font-size: 10px;
    }
    .job-entry-title {
        font-size: 14px;
        line-height: 1.3;
    }
    .job-entry-desc {
        font-size: 12px;
    }
    .sbh-ticker-label {
        display: none;
    }
    .sbh-ticker {
        padding-left: 15px;
    }
}

/* RESPONSIVE CARDS & LINES */
@media (max-width: 768px) {
    .title-with-line {
        margin: 20px 0;
    }
    .title-with-line span {
        font-size: 14px;
    }
    .title-with-line:before,
    .title-with-line:after {
        margin: 0 10px;
    }
    .card-custom {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    .card-custom .icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    .card-custom h6 {
        font-size: 15px;
    }
    .section {
        padding: 0px 0;
    }
}

/* Mobile Nav Fixes */
@media (max-width: 991px) {
    .navbar-brand {
        max-width: 180px;
    }
    .navbar-toggler {
        border-color: transparent !important;
        outline: none !important;
    }
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
}
/* ==========================================================================
   SITE NAVIGATION & GENERAL LAYOUT (from header2)
   ========================================================================== */
.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu {
        display: block;
        text-align: center;
        padding: 10px 0;
    }
    .mobile-menu img {
        width: 120px;
        height: auto;
    }
}

.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease;
    margin-top: 10px;
}

.slide-content {
    position: inherit;
    bottom: 37%;
    left: 59%;
    z-index: 2;
    background: #231f20cf;
    padding: 15px 20px 5px 30px;
    text-align: right;
    width: 365px;
}

@media (max-width: 991px) {
    .slide-content {
        position: inherit;
        bottom: 53%;
        left: 10%;
        z-index: 2;
        background: rgba(255, 255, 255, 0.87);
        padding: 15px 20px 5px 30px;
        text-align: right;
        width: 365px;
    }
    .slider-dots {
        position: absolute;
        right: 398px;
        top: 32%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 2;
    }
}

.nav-item.active > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #61dca3;
}

.navbar-nav .nav-link {
    padding-bottom: 0.25rem !important;
    position: relative;
}

.nav-item.active > .nav-link {
    border-bottom: none !important;
}

label i.lni {
    color: black;
    margin-right: 6px;
    vertical-align: middle;
    font-size: 1rem;
}
/* ==========================================================================
   SEARCH FILTERS & TAGS
   ========================================================================== */
#selected-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.filter-tag {
    background-color: #6fcf97;
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.filter-tag::first-letter, #trigger-text::first-letter {
    text-transform: uppercase;
}

/* ==========================================================================
   SORT DROPDOWN (Search Jobs Page)
   ========================================================================== */
.sort-dropdown-container {
    position: relative;
    display: inline-block;
}
.sort-dropdown-container button {
    background-color: #6fcf97 !important;
    color: white !important;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Gilroy Regular", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.sort-dropdown-container button .arrow {
    font-size: 10px;
    transition: transform 0.2s;
    margin-left: 5px;
    display: inline-block;
}
.sort-dropdown-container.open button .arrow {
    transform: rotate(180deg);
}
.sort-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 140px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    margin-top: 2px;
}
.sort-dropdown-container.open .sort-options {
    display: block;
}
.sort-option {
    padding: 12px 15px;
    cursor: pointer;
    color: #004d80;
    font-size: 15px;
    font-family: "Gilroy Regular", sans-serif;
    transition: background 0.15s;
}
.sort-option:hover, .sort-option.active {
    background: #f1f1f1;
}

/* ==========================================================================
   MODAL ALERTS ADDITIONAL STYLES
   ========================================================================== */
.modal-header-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.form-group-alert {
    margin-bottom: 20px;
}
.form-group-alert label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}
.form-group-alert input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}
.freq-buttons {
    display: flex;
    gap: 10px;
}
.modal-footer-alert {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}
.modal-footer-alert button {
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.modal-footer-alert button[onclick="closeModal()"] {
    background: #f1f1f1;
    border: 1px solid #ddd;
    color: #666;
}
.modal-footer-alert button#btn-save-alert {
    background: #6fcf97;
    border: none;
    color: #fff;
}
.close-modal {
    cursor: pointer;
    font-size: 24px;
    color: #aaa;
}
.close-modal:hover {
    color: #333;
}


/* ==========================================================================
   SIDEBAR NAVIGATION (Refined Premium Style)
   ========================================================================== */
.sbh-sidebar-menu {
    background: #fff !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.sbh-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sbh-sidebar-item {
    border-top: 1px solid #f2f2f2;
    margin: 0;
}

.sbh-sidebar-item:last-child {
    border-bottom: 1px solid #f2f2f2;
}

.sbh-sidebar-link {
    display: block;
    padding: 7px 0;
    color: #444;
    font-size: 15px;
    font-weight: 300; /* Lighter weight for premium feel */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', 'Gilroy Regular', sans-serif !important;
    letter-spacing: 0.3px;
}

.sbh-sidebar-link:hover {
    color: #6fcf97;
    padding-left: 5px;
}

.sbh-sidebar-link.active {
    color: #6fcf97;
    font-weight: 500;
}

/* About Content Refinement */
.about-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}



.about-content h3 {
    font-weight: 700;
    color: #444;
    margin-top: 40px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

/* ==========================================================================
   PROGRAMS VIEW STYLES
   ========================================================================== */
.section-title {
    font-size: 40px;
    font-weight: bold;
}
.section-subtitle {
    font-size: 30px;
    margin-bottom: 2rem;
}
.program-card {
    border: 2px solid #6fcf97; /* updated to brand green */
    padding: 24px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.program-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.bold-title {
    font-weight: bold;
}
.program-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.btn-green {
    background-color: #6fcf97;
    color: white !important;
    padding: 12px 25px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    border: none;
    transition: background 0.2s;
}
.btn-green:hover {
    background-color: #5dbd86;
}

/* ==========================================================================
   OUR TEAM VIEW STYLES
   ========================================================================== */
.team-section {
    max-width: 100%;
    margin: 0 auto;
}
.team-card {
    display: flex;
    border: 1px solid #6fcf97;
    padding: 20px;
    margin: 20px 0;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.2s;
}
.team-card:hover {
    transform: translateX(5px);
}
.team-card img {
    width: 120px;
    height: auto;
    margin-right: 20px;
    border: 2px solid #e0f7ea;
    padding: 5px;
    border-radius: 4px;
}
.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}
.team-info .position {
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}
.team-info a {
    color: #6fcf97;
    text-decoration: none;
    font-weight: 600;
}
.team-info a:hover {
    text-decoration: underline;
}


