/* =========================================
   Utility Classes
========================================= */
.text-green {
    color: var(--green);
}

.text-navy {
    color: var(--navy);
}

.text-center {
    text-align: center;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.bg-light-gray {
    background: #f0f2f0;
}

/* =========================================
   Navbar & Hero
========================================= */
.nav-btn-spacing {
    margin-left: 16px;
}

.hero-bg-bank {
    background-image: url('../assets/bank.png');
}

.hero-subtitle {
    font-size: 0.6em;
    color: var(--text-dark);
    display: block;
    margin-top: 8px;
}

.hero-btns-wrap {
    align-items: center;
}

.hero-breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
}

/* =========================================
   Sector Cards (Who We Serve)
========================================= */
.card-sector {
    padding: 0;
    overflow: hidden;
}

.card-header-pad {
    padding: 32px;
}

.flex-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

/* Icons */
.icon-box-lg {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-sm {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-huge-svg {
    width: 600px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

.icon-sm-svg {
    width: 40px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

.icon-sm {
    width: 30px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

.icon-md {
    width: 25px;
    stroke: var(--green);
    fill: none;
    margin-top: 2px;
    stroke-width: 2;
}

.icon-current {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.icon-wrap-md {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: var(--green);
}

/* Typography & Layout inside Cards */
.sector-title {
    font-size: 1.6rem;
    color: var(--navy);
}

.sector-subtitle {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-left: 56px;
}

.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--gray-200);
}

.sector-col-white {
    padding: 32px;
    background: var(--white);
}

.sector-list-title {
    margin-top: 24px;
    color: var(--text-muted);
}

.sector-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sector-list-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Backgrounds for Impact Columns */
.sector-col-bg-1 {
    padding: 32px;
    background: linear-gradient(to right, rgba(240, 247, 243, 0.9), rgba(240, 247, 243, 0.7)), url('../assets/hero-laptop.png') center/cover;
}

.sector-col-bg-2 {
    padding: 32px;
    background: linear-gradient(to right, rgba(240, 247, 243, 0.9), rgba(240, 247, 243, 0.7)), url('../assets/bank.png') center/cover;
}

.impact-title {
    color: var(--green);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-list-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--navy);
    font-weight: 500;
}

/* =========================================
   Why Sectors Matter Section
========================================= */
.section-desc {
    margin: 16px auto 48px;
    max-width: 800px;
    font-size: 1.05rem;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card-flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-wrap-custom {
    height: 120px;
    padding-top: 20px;
}

.img-blend {
    opacity: 0.2;
    mix-blend-mode: multiply;
    object-fit: contain;
}

.stats-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.text-green-normal {
    color: var(--green);
    font-style: normal;
}

.stats-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.stats-desc {
    font-size: 0.9rem;
}

/* =========================================
   Call to Action
========================================= */
.btn-navy-lg {
    background: var(--navy);
    padding: 18px 36px;
    font-size: 1.05rem;
}