/* ===== Board of Directors: hero title (force single line) ===== */
.bod-hero-title-oneline {
    white-space: nowrap;
    font-size: 40px;   /* width kam karne ke liye font-size chhota kiya, zaroorat ho to aur adjust kar lena */
}
.bod-hero-title-oneline .orange {
    display: inline;   /* default span shayad block hoga jo line break kar raha tha */
}
@media (max-width: 480px) {
    .bod-hero-title-oneline {
        white-space: normal;   /* chhoti screens pe wapas wrap hone do warna text overflow hoga */
        font-size: 30px;
    }
}

/* ===== Board of Directors: hero image (no badge, plain diagonal clip) ===== */
.bod-hero-clip { position: relative; }

/* Override the shared .au-hero-clip shape for THIS page only:
   sample has the cut reversed (narrow at top-left, full width at
   bottom-left) and a shorter overall height than the default hero. */
.au-hero-clip.bod-hero-clip {
    height: 220px;
    clip-path: polygon(20% 20px, calc(20% + 20px) 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 0 20px;
}
@media (max-width: 991px) {
    .au-hero-clip.bod-hero-clip { clip-path: none; height: auto; margin-top: 40px; border-radius: 0; }
}

/* ===== Board of Directors: dark leaders section ===== */
.bod-leaders-section {
    position: relative;
    background: var(--brand-dark);
    padding: 70px 0 80px;
    overflow: hidden;
}
.bod-map-decor-dots {
    position: absolute;
    top: 8%;
    right: 4%;
    width: 140px;
    height: 100px;
    background-image: radial-gradient(rgba(255,255,255,.12) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    z-index: 0;
}
.bod-eyebrow-row { display: flex; justify-content: center; margin-bottom: 10px; }
.bod-eyebrow-row .label { color: var(--brand-orange); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.bod-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.bod-heading .line-side {
    width: 70px;
    height: 1px;
    background: rgba(229,90,37,.5);
    display: inline-block;
    position: relative;
}
.bod-heading .line-side::after {
    content: "";
    position: absolute;
    top: 50%; right: -4px;
    width: 6px; height: 6px;
    background: var(--brand-orange);
    border-radius: 50%;
    transform: translateY(-50%);
}
.bod-heading .line-side:first-child::after { left: -4px; right: auto; }

.bod-carousel { position: relative; z-index: 1; }

/* ===== Card (icon-based, no photo) ===== */
.bod-leaders-section .bod-card {
    position: relative !important;
    background: #2a3242 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.5) !important;
    padding: 44px 24px 32px !important;
    text-align: center !important;
    display: block !important;
}

/* Circular icon ring replacing the photo */
.bod-leaders-section .bod-card-icon-wrap {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    margin: 0 auto 24px !important;
    border-radius: 50% !important;
    border: 2px solid var(--brand-orange) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    background: transparent !important;
}
.bod-leaders-section .bod-card-icon-wrap i {
    color: #fff !important;
    font-size: 46px !important;
    line-height: 1 !important;
}
.bod-leaders-section .bod-card-icon-wrap::after {
    content: "" !important;
    position: absolute !important;
    bottom: 6px !important;
    right: 4px !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: var(--brand-orange) !important;
}

.bod-leaders-section .bod-card-body { background: transparent !important; padding: 0 !important; text-align: center !important; }
.bod-leaders-section .bod-card-body h4 { font-weight: 800 !important; color: #fff !important; font-size: 18px !important; margin: 0 0 4px !important; letter-spacing: .3px !important; text-transform: uppercase !important; }
.bod-leaders-section .bod-card-title { color: var(--brand-orange) !important; font-weight: 700 !important; font-size: 13.5px !important; margin-bottom: 16px !important; }
.bod-leaders-section .bod-card-divider { width: 40px !important; height: 2px !important; background: var(--brand-orange) !important; margin: 0 auto 16px !important; }
.bod-leaders-section .bod-card-social { display: flex !important; justify-content: center !important; gap: 10px !important; }
.bod-leaders-section .bod-card-social a {
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1.5px solid rgba(229,90,37,.5) !important;
    color: var(--brand-orange) !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    text-decoration: none !important;
    transition: .2s !important;
    font-size: 14px !important;
}
.bod-leaders-section .bod-card-social a:hover { background: var(--brand-orange) !important; color: #fff !important; }

/* ===== Prev/Next arrows ===== */
.bod-arrow {
    position: absolute;
    top: 42%;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: .2s;
}
.bod-arrow:hover { background: var(--brand-orange); color: #fff; }
.bod-arrow-prev { left: -10px; }
.bod-arrow-next { right: -10px; }
@media (min-width: 992px) {
    .bod-arrow-prev { left: -60px; }
    .bod-arrow-next { right: -60px; }
}

/* ===== Dot indicators ===== */
.bod-indicators { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.bod-indicators button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.25);
    padding: 0;
    transition: .2s;
}
.bod-indicators button.active { background: var(--brand-orange); width: 24px; border-radius: 5px; }

@media (max-width: 767.98px) {
    .bod-heading { font-size: 26px; flex-direction: column; gap: 10px; }
    .bod-heading .line-side { display: none; }
}


/* ===== Who We Are: Business Partners and Employees ===== */
.bod-who-section {
    position: relative;
    background: #fff;
    padding: 40px 0 50px;
    overflow: hidden;
}

.bod-who-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}
.bod-who-text-col { flex: 1 1 460px; min-width: 300px; }
.bod-who-img-col { flex: 1 1 400px; min-width: 300px; position: relative; }

.bod-who-eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.bod-who-eyebrow-row .label { color: var(--brand-orange); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.bod-who-eyebrow-row .line { width: 60px; height: 2px; background: var(--brand-orange); display: inline-block; }

.bod-who-heading {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 12px;
}
.bod-who-heading .orange { color: var(--brand-orange); }

.bod-who-text { color: #5c6470; font-size: 13.5px; line-height: 1.65; margin-bottom: 10px; }
.bod-who-text .orange-text, .bod-who-text strong { color: var(--brand-dark); }
.bod-who-text .orange-text { color: var(--brand-orange); font-weight: 700; }
.bod-who-text strong { font-weight: 800; }

.bod-who-divider { display: flex; align-items: center; gap: 8px; margin: 12px 0; }
.bod-who-divider .short { width: 40px; height: 3px; background: var(--brand-orange); border-radius: 3px; display: inline-block; }
.bod-who-divider .long { flex: 1; height: 1px; background: #e6e6e6; display: inline-block; }

.bod-who-features { margin: 8px 0 14px; }
.bod-who-feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 14px 14px;
    height: 100%;
    box-shadow: 0 12px 30px -18px rgba(0,0,0,.25);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.bod-who-feature-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.bod-who-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    font-size: 10px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.bod-who-icon {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-orange);
    font-size: 16px;
}
.bod-who-feature-card p { margin: 0; font-size: 12.5px; color: var(--brand-dark); font-weight: 700; line-height: 1.4; align-self: center; }

.bod-who-highlight-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px -18px rgba(0,0,0,.25);
    margin-top: 6px;
}
.bod-who-highlight-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 19px;
    display: flex; align-items: center; justify-content: center;
}
.bod-who-highlight-card p { margin: 0; font-weight: 700; color: var(--brand-dark); font-size: 12.5px; line-height: 1.45; }
.bod-who-highlight-card .orange-text { color: var(--brand-orange); }

/* ----- Image collage side: top photo starts at column top, bottom photo ends at column bottom ----- */
.bod-who-visual { position: relative; width: 100%; height: 100%; min-height: 380px; }

.bod-who-dots {
    position: absolute;
    top: 6%;
    left: -4%;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(rgba(229,90,37,.18) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    z-index: 0;
}

.bod-who-wave {
    position: absolute;
    right: -8%;
    bottom: -6%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, rgba(229,90,37,.08) 0%, rgba(229,90,37,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bod-who-img-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 76%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -25px rgba(0,0,0,.35);
    background: #e9ecef;
}
.bod-who-img-top::before {
    content: "";
    position: absolute;
    top: -10px; left: -10px;
    width: 70px; height: 70px;
    border-top: 3px solid var(--brand-orange);
    border-left: 3px solid var(--brand-orange);
    border-radius: 20px 0 0 0;
    z-index: 2;
}
.bod-who-img-top img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bod-who-img-bottom {
    position: absolute;
    bottom: 0;
    right: 4%;
    width: 75%;
    height: 46%;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(0,0,0,.4);
    border: 6px solid #fff;
    background: #e9ecef;
}
.bod-who-img-bottom img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 767px) {
    .bod-who-row { gap: 24px; }
    .bod-who-visual { min-height: 340px; }
}

@media (max-width: 991px) {
    .bod-who-section { padding: 60px 0; }
    .bod-who-heading { font-size: 32px; }
    .bod-who-img-top { height: 260px; margin-top: 20px; }
    .bod-who-img-bottom { height: 200px; margin-top: -50px; }
}
@media (max-width: 575px) {
    .bod-who-features .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
}

/* ===== Combined Board Message + Directors ===== */
.bod-combined-section {
    position: relative;
    background: var(--brand-dark);
    padding: 70px 0 80px;
    overflow: hidden;
}

.bod-combined-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/boardroom.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.bod-combined-section .container {
    position: relative;
    z-index: 1;
}

.bod-combined-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.bod-combined-eyebrow .dash {
    width: 22px;
    height: 2px;
    background: var(--brand-orange);
    display: inline-block;
}
.bod-combined-eyebrow .label {
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12.5px;
}

.bod-combined-heading {
    color: #fff;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 14px;
}
.bod-combined-heading .orange { color: var(--brand-orange); }

.bod-combined-underline {
    width: 46px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 3px;
    margin-bottom: 26px;
}

.bod-combined-text {
    border-left: 1px solid rgba(255,255,255,.12);
    padding-left: 40px;
}
.bod-combined-body { position: relative; padding-left: 34px; }
.bod-combined-quote-icon {
    position: absolute;
    left: -4px;
    top: -6px;
    color: var(--brand-orange);
    font-size: 30px;
    opacity: .9;
}
.bod-combined-body p {
    color: #c7cbd3;
    font-size: 12.5px;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
}
.bod-combined-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 14px 0 16px;
}

.bod-combined-sign {
    margin-top: 18px;
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.5;
    padding-left: 34px;
}
.bod-combined-sign .orange { color: var(--brand-orange); }



/* ----- Director cards column (left side, stacked) ----- */
.bod-dir-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
}

.bod-dir-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.bod-dir-icon-wrap {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bod-dir-icon-wrap i {
    color: #fff;
    font-size: 28px;
}

.bod-dir-card h4 {
    color: #fff;
    font-weight: 800;
    font-size: 14.5px;
    margin: 0 0 3px;
    text-transform: uppercase;
    letter-spacing: .3px;
    line-height: 1.3;
}
.bod-dir-title {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 11.5px;
    margin: 0 0 8px;
}
.bod-dir-underline {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .bod-combined-heading { font-size: 26px; }
}


