@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
}

.about-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/about-us-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* Sub Nav */
.subnav {
    background: #f8f9fb;
    padding: 45px 0;
    border-bottom: 1px solid #e5e7eb;
}

.subnav-title {
    font-size: 41px;
    font-weight: 500;
    margin-bottom: 15px;
}

.subnav-title a {
    text-decoration: none;
    color: #111;
    transition: opacity 0.3s;
}

.subnav-title a:hover {
    opacity: 0.7;
}

.subnav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.subnav-links li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.subnav-links li a.active {
    color: #11181C;
}

/* Hover effect */
.subnav-links li a:hover {
    color: #11181C;
}

@media (max-width: 768px) {

    .subnav {
        padding: 20px 0;
    }

    .subnav-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .subnav-links {
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 5px;
    }

    .subnav-links::-webkit-scrollbar {
        display: none;
    }

    .subnav-links li a {
        font-size: 14px;
    }
}

.text-block {
    padding: 60px 0;
    background: #fff;
}

.text-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left heading */
.text-left h2 {
    font-family: "Working Sans", sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: #11181C;
}

/* Right content */
.text-right p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-left h2 {
        font-size: 22px;
    }

    .text-right p {
        font-size: 15px;
    }
}

/* Link Cards */

.link-cards {
    padding: 60px 0;
    background: #f8f9fb;
}

/* Grid layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.card {
    display: block;
    position: relative;
    background: #3a3a3a;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Image */
.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Content */
.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    /* color: #d1d5db; */
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
}

/* Hover effect */
.card:hover .card-image img {
    transform: scale(1.05);
}

.card:hover {
    background: #1e3a8a;
}

@media (max-width: 768px) {

    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image {
        height: 180px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 13px;
    }
}

/* Who we are CTA */
.cta {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background image */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

/* Dark overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 29px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e5e7eb;
}

/* Buttons */
.cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #30A46C;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    opacity: 0.85;
}


/* Company Overview */
.company-overview-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/about-us-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* ===== Company Overview Intro ===== */

.co-intro {
    padding: 60px 0;
    background: #fff;
}

.co-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left side */
.co-intro-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.co-intro-left p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* Right side */
.co-intro-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .co-intro {
        padding: 40px 0;
    }

    .co-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .co-intro-left h2 {
        font-size: 22px;
    }

    .co-intro-left p,
    .co-intro-right p {
        font-size: 14px;
    }
}

/* ===== Company Overview - Business Strategy ===== */

.co-strategy {
    padding: 60px 0;
    background: #f8f9fb;
    /* light filled section */
}

.co-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left */
.co-strategy-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.co-strategy-left p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Right */
.co-strategy-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* List styling */
.co-strategy-right ul {
    padding-left: 20px;
}

.co-strategy-right li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .co-strategy {
        padding: 40px 0;
    }

    .co-strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .co-strategy-left h2 {
        font-size: 22px;
    }

    .co-strategy-left p,
    .co-strategy-right p,
    .co-strategy-right li {
        font-size: 14px;
    }
}

/* ===== Company Overview - Competitive Advantage ===== */

.co-advantage {
    padding: 60px 0;
    background: #fff;
}

.co-advantage-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left */
.co-advantage-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.co-advantage-left p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Right */
.co-advantage-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* List */
.co-advantage-right ul {
    padding-left: 20px;
}

.co-advantage-right li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}


@media (max-width: 768px) {

    .co-advantage {
        padding: 40px 0;
    }

    .co-advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .co-advantage-left h2 {
        font-size: 22px;
    }

    .co-advantage-left p,
    .co-advantage-right p,
    .co-advantage-right li {
        font-size: 14px;
    }
}


/* Directors */
.directors-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/about-us-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* ===== Directors Page - Profile ===== */

.dir-profile {
    padding: 60px 0;
    background: #fff;
}

.dir-profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left */
.dir-profile-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.dir-location {
    font-size: 14px;
    color: #6b7280;
}

/* Right */
.dir-role {
    font-size: 16px;
    margin-bottom: 15px;
    color: #111;
}

.dir-profile-right p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .dir-profile {
        padding: 40px 0;
    }

    .dir-profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dir-profile-left h2 {
        font-size: 20px;
    }

    .dir-profile-right p {
        font-size: 14px;
    }
}

/* Alternate background for variation */
.dir-profile-alt {
    background: #f8f9fb;
}

/* Secondary role (committee, etc.) */
.dir-subrole {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-top: 4px;
}

/* Roles stacked tightly (no spacing at all) */
.dir-roles {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.dir-roles span {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

/* Officers */
.officers-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/about-us-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* Strategy */
.strategy-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/about-us-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* Strategy Page - Intro */

.strat-intro {
    padding: 60px 0;
    background: #fff;
}

.strat-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left */
.strat-intro-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* Right */
.strat-intro-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

@media (max-width: 768px) {

    .strat-intro {
        padding: 40px 0;
    }

    .strat-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strat-intro-left h2 {
        font-size: 22px;
    }

    .strat-intro-right p {
        font-size: 14px;
    }
}



/* ===== Strategy Features ===== */

.strat-features {
    padding: 70px 0;
    background: #f8f9fb;
}


.strat-features-inner {
    width: 66.66%;
    margin-left: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

/* Feature Item */
.strat-feature-item {
    display: flex;
    flex-direction: column;
}

/* Icon */
.strat-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0a7d3b;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.strat-feature-icon .material-icons {
    color: #fff;
    font-size: 34px;
}

.strat-feature-icon i {
    color: #fff;
    font-size: 30px;
}

/* Special Dollar Icon */
.dollar-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0a7d3b;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dollar-inner {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dollar-inner i {
    color: #0a7d3b;
    font-size: 18px;
}

/* Title */
.strat-feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Text */
.strat-feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 992px) {

    .strat-features-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .strat-features {
        padding: 50px 0;
    }

    .strat-feature-item h3 {
        font-size: 18px;
    }

    .strat-feature-item p {
        font-size: 14px;
    }

    .strat-feature-icon {
        width: 60px;
        height: 60px;
    }

    .strat-feature-icon .material-icons {
        font-size: 28px;
    }
}