:root {
    --highlight-color: #f6b707;
    --htext: #fff;
    --hmuted: #6b7280;
    --hborder: #e5e7eb;
    --hpDark: #001a23;
    --hpDark2: #002935;
    --topBg: #f6f7f8;
    --menuBg: #ffffff;
    --hpGold: #f6b707;
    --hpRed: #cd2029;
    --ink: #071b25;
    --ink2: #0e2a38;
    --maxH: 90px;
    /* total header height normal */
    --compactH: 70px;
    /* total header height compact */
    /* --topH: 38px; */
    /* top micro row height */
    --navH: 90px;
    /* nav row height (normal) */
    --radius: 10px;
    /* NEW base blues derived from #44bce8 */
    --mfDark1: #005e80;
    /* slightly deeper */
    --mfDark2: #046689;
    /* main brand blue */

    --mfAccent: #f6b707;
    --mfRed: #cd2029;
    --mfText: rgba(255, 255, 255, .95);
    --mfMuted: rgba(255, 255, 255, .75);
    --mfBorder: rgba(255, 255, 255, .22);
    --mfCard: #ffffff;
    --mfCardText: #0f172a;
    --mfShadow: 0 22px 70px rgba(0, 0, 0, .22);
}


body {
     font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
     font-family: "Montserrat", sans-serif;
}


/* Spacer keeps page content from jumping when header is fixed */
.hcHeaderSpacer {
    height: var(--maxH);
}

/* Fixed header (no jitter) */
.hcHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;

    background: var(--menuBg);
    /* border-bottom: 1px solid var(--hborder); */

    height: var(--maxH);
    transition: height .22s ease, box-shadow .22s ease;
    will-change: height;
}

/* shadow after scroll */
.hcHeader.isCompact {
    height: var(--compactH);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
}

/* container */
.hcWrap {
    /* max-width: 1320px; */
    margin: 0 auto;
    /* padding: 0 18px; */
}

/* two rows inside header */
.hcInner {
    height: 100%;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    grid-template-rows: var(--topH) 1fr;
    /* column-gap: 18px; */
    align-items: center;
    position: relative;
}

/* left logo spans both rows (NORMAL) */
.hcLogo {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0px auto;
}

.hcLogo img {
    height: 60px;
    width: auto;
    display: block;
}

/* top micro bar (row 1, right side) */
.hcTopRow {
    grid-column: 2 / span 2;
    grid-row: 1;
    background:
        radial-gradient(1200px 480px at 0% 0%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(1000px 480px at 100% 0%, rgba(0, 0, 0, .18), transparent 55%),
        linear-gradient(180deg, var(--mfDark1), var(--mfDark2));
    height: var(--topH);

    border: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 14px;

    transition: opacity .18s ease;
    will-change: opacity;
}


/* Contact details (left side) */
.hcContact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.hcContact li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    /* font-weight: 600; */
    color: var(--htext);
    text-decoration: none;
}

.hcContact li a i {
    font-size: 14px;
    color: var(--highlight-color);
}

.hcContact li a:hover {
    color: var(--highlight-color);
}


/* micro right */
.hcTopRight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hcSocial {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 6px;
}

.hcSocial a {
    font-size: 14px;
    color: var(--htext);
    transition: color .15s ease;
}

.hcSocial a:hover {
    color: var(--highlight-color);
}

/* actions/buttons */
.hcBtn {
    height: 30px;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 11px;
    /* font-weight: 900; */
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}



.hcBtnSolid {
    background: var(--highlight-color);
    color: #fff;
    /* border-color: var(--hpDark2); */
}

.hcBtnSolid:hover {
    filter: brightness(.96);
}

/* nav row (row 2 center) */
.hcNavRow {
    grid-column: 2;
    grid-row: 2;

    height: var(--navH);

    /* background:
        radial-gradient(1200px 500px at 0% 0%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 0, 0, .18), transparent 55%),
        linear-gradient(180deg, var(--mfDark1), var(--mfDark2)); */

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 0px;
    white-space: nowrap;
}


/* right actions row 2 */
.hcRightRow {
    grid-column: 4;
    grid-row: 2;

    height: var(--navH);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* nav link */
.hcLink {
    position: relative;
    text-decoration: none;
    color: #001a23;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 2px;
    transition: color .15s ease;
}

.hcLink:hover {
    color: var(--highlight-color);
}

.hcLink.isActive {
    color: var(--highlight-color);
}

.hcLink.isActive::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 3px;
    border-radius: 3px;
    background: var(--highlight-color);
}

/* ======================
   ✅ COMPACT FIX (LOGO + NAV ALIGN PERFECT)
   ====================== */

/* collapse top row to 0 (NO translate needed) */
.hcHeader.isCompact .hcInner {
    grid-template-rows: 0 1fr;
    column-gap: 18px;
}

/* hide top row cleanly */
.hcHeader.isCompact .hcTopRow {
    height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* logo should NOT span two rows in compact */
.hcHeader.isCompact .hcLogo {
    grid-row: 2;
    /* only main row */
    align-self: center;
}

/* keep nav and right actions aligned */
.hcHeader.isCompact .hcNavRow,
.hcHeader.isCompact .hcRightRow {
    height: 100%;
    align-items: center;
}

/* optional: slightly smaller logo in compact */
.hcHeader.isCompact .hcLogo img {
    height: 60px;
}

.hcHeader.isCompact .hcRightRow .hcBtnSolid {
    background:
        radial-gradient(1200px 480px at 0% 0%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(1000px 480px at 100% 0%, rgba(0, 0, 0, .18), transparent 55%),
        linear-gradient(180deg, var(--mfDark1), var(--mfDark2));
}

/* ======================
   DESKTOP DROPDOWN
   ====================== */


.hcDrop {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hcDropBtn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px 2px;
    font-weight: 600;
    font-size: 15px;
    color: #001a23;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hcDropBtn:hover {
    color: var(--highlight-color);
}

.hcChevron {
    font-size: 12px;
    opacity: .7;
    transition: transform .15s ease;
}

.hcDrop.isOpen .hcChevron {
    transform: rotate(180deg);
}

/* base dropdown panel */
.hcDropMenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    background: #fff;
    border: 1px solid var(--hborder);
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(17, 24, 39, .10);

    display: none;
    overflow: visible;
    padding: 10px;
}

/* open by click */
.hcDrop.isOpen .hcDropMenu {
    display: grid;
}

/* open by hover also (works with click too) */
.hcDrop:hover .hcDropMenu {
    display: grid;
}

/* mega sizing + grid */
/* .hcDropMenuMega {
  width: min(1100px, calc(100vw - 40px));
  padding: 14px;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 12px;
} */

.hcDropItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #002935;
    /* font-weight: 650; */
    font-size: 15px;
}

.hcDropItem:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

/* each column */
.hcDropCol {
    position: relative;
    border-radius: 14px;
    padding: 6px;
}

.hcDropCol:hover {
    background: rgba(0, 0, 0, .03);
}

/* third-level flyout */
.hcDropSub {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;

    background: #fff;
    border: 1px solid var(--hborder);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, .10);

    padding: 10px;
    display: none;
    z-index: 9999;

    min-width: 320px;
    /* ✅ not fixed width, only minimum */
    max-width: 460px;
    /* ✅ prevent too huge */
    white-space: normal;
    /* ✅ allow wrap */
    overflow: visible;
    /* ✅ no clipping */
}


.hcDropCol:hover .hcDropSub,
.hcDropSub:hover {
    display: grid;
    /* gap: 8px; */
}

.hcDropLeaf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* pushes arrow to right */
    gap: 14px;
    /* space between text & arrow */
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #002935;
    font-size: 15px;
    /* font-weight: 650; */
    line-height: 1.35;
    white-space: normal;
}

.hcDropLeaf:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

.hcDropLeafChild {
    margin-top: 6px;
    display: grid;
    gap: 6px;
    padding-left: 10px;
    border-left: 2px solid rgba(0, 0, 0, .08);
}

.hcDropLeafChildLink {
    text-decoration: none;
    color: #002935;
    /* font-weight: 600; */
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
}

.hcDropLeafChildLink:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

/* ======================
   MOBILE
   ====================== */
.hcMenuBtn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 208, 0.14), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.20), transparent 55%),
        linear-gradient(180deg, #001a23, #002935);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .16);
    color: #fff;

    display: none;
    /* stays desktop hidden */
    align-items: center;
    justify-content: center;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.hcMenuBtn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.hcMenuBtn:active {
    transform: translateY(0);
}

/* The 3 lines */
.hcMenuBtn span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: .95;
}

/* top / middle / bottom */
.hcMenuBtn span:nth-child(1) {
    top: 14px;
}

.hcMenuBtn span:nth-child(2) {
    top: 21px;
    width: 16px;
    opacity: .85;
}

.hcMenuBtn span:nth-child(3) {
    top: 28px;
}




/* bottom sheet */
.hcSheetWrap {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease;
}

.hcSheetWrap.open {
    pointer-events: auto;
    opacity: 1;
}

.hcBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.hcSheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    background: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -18px 40px rgba(17, 24, 39, .12);

    transform: translateY(102%);
    transition: transform .22s ease;
    padding: 14px 14px 18px;
}

.hcSheetWrap.open .hcSheet {
    transform: translateY(0);
}

.hcSheetHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 12px;
}

.hcSheetTitle {
    /* font-weight: 900; */
    color: var(--htext);
}

.hcClose {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--hborder);
    background: #fff;
    cursor: pointer;
}

/* mobile list */
.hcMList {
    display: grid;
    gap: 10px;
}

.hcMItem {
    border: 1px solid var(--hborder);
    border-radius: 14px;
    overflow: hidden;
}

.hcMBtn {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /* font-weight: 850; */
    color: var(--htext);
}

.hcMSub {
    display: none;
    padding: 0 10px 10px;
}

.hcMItem.open .hcMSub {
    display: grid;
    gap: 8px;
}

.hcMSub a {
    text-decoration: none;
    color: var(--htext);
    /* font-weight: 650; */
    padding: 10px 10px;
    border-radius: 12px;
    background: #f9fafb;
}

.hcMSub a:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

.hcSheetBottom {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.hcSheetCTA {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    background: var(--highlight-color);
    color: #fff;
    text-decoration: none;
    /* font-weight: 900; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 26px rgba(31, 143, 90, .18);
}

.hcMiniContact {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hcMiniContact a {
    color: var(--hmuted);
    text-decoration: none;
    /* font-weight: 650; */
    font-size: 14px;
}

/* breakpoints */
@media (max-width: 999px) {
    .hcInner {
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr;
    }

    .hcLogo {
        align-items: left;
        margin-left: 20px;
    }

    .hcTopRow {
        display: none;
    }

    .hcNavRow {
        display: none;
    }

    .hcRightRow {
        grid-column: 2;
        grid-row: 1;
        height: 100%;
    }

    .hcHeader {
        height: 72px;
    }

    .hcHeaderSpacer {
        height: 72px;
    }

    .hcMenuBtn {
        display: inline-flex;
    }
}


/* ===== Mobile full screen sheet (like your screenshot) ===== */
/* ===== Mobile full screen sheet ===== */
.hcSheetFull {
    height: 90vh;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Mobile top bar */
.hcMobileTopBar {
    height: 64px;
    background: #003d49;
    color: #fff;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    padding: 0 8px;
}

.hcMobileTitle {
    /* font-weight: 900; */
    font-size: 18px;
    text-align: left;
}

.hcBackBtn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.hcCloseWhite {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

/* Sliding panels */
.hcPanels {
    position: relative;
    flex: 1;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%),
        linear-gradient(180deg, #001a23, #002935);
}

.hcPanel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    transition: transform .22s ease;
}

.hcPanelMain {
    transform: translateX(0);
}

.hcPanelSub {
    transform: translateX(100%);
}

.hcPanels.isSub .hcPanelMain {
    transform: translateX(-100%);
}

.hcPanels.isSub .hcPanelSub {
    transform: translateX(0);
}

/* Menu row */
.hcMobileList {
    display: grid;
}

.hcMobileRow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 18px 18px;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;

    font-size: 18px;
    /* font-weight: 800; */
    color: #fff;

    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hcMobileBottom {
    padding: 14px;
    background: #fff;
    border-top: 1px solid var(--hborder, #e5e7eb);
}

/* Make sure old accordion styles don't break slide menu */
@media (max-width: 999px) {
    .hcMList {
        display: none;
    }

    .hcSheetHead {
        display: none;
    }
}

/* Compact apply for DESKTOP only */
.hcCompactApply {
    display: none;
}

.hcCompactApply.show {
    display: inline-flex;
}

/* Hide compact apply on mobile (because sheet button exists) */
@media (max-width: 999px) {
    .hcCompactApply {
        display: none !important;
    }
}




/* each column */
.hcDropCol {
    position: relative;
    border-radius: 10px;
    padding: 6px;
}

.hcDropCol:hover {
    background: rgba(0, 0, 0, .03);
}

/* third-level flyout */
.hcDropSub {
    position: absolute;
    top: 6px;
    left: calc(100% + 0px);
    width: 100%;
    background: #fff;
    border: 1px solid var(--hborder);
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
    display: none;
    z-index: 50;
    text-align: left;
}

.hcDropCol:hover .hcDropSub,
.hcDropCol:focus-within .hcDropSub,
.hcDropSub:hover {
    display: grid;
    /* gap: 8px; */
}

.hcLeafWrap:hover .hcLeafSub,
.hcLeafSub:hover {
    display: grid;
}

.hcDropLeaf {
    display: flex;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #002935;
    font-size: 15px;
    /* font-weight: 650; */
    line-height: 1.35;
    white-space: normal;
    /* ✅ wrap */
    word-break: break-word;
    /* ✅ long words */
}


.hcDropLeaf:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

.hcDropLeafChild {
    margin-top: 6px;
    display: grid;
    gap: 6px;
    padding-left: 10px;
    border-left: 2px solid rgba(0, 0, 0, .08);
}

.hcDropLeafChildLink {
    text-decoration: none;
    color: #002935;
    /* font-weight: 600; */
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
}

.hcDropLeafChildLink:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}

/* leaf wrapper inside the 2nd-level flyout */
.hcLeafWrap {
    position: relative;
}

/* 4th level flyout (Doctorate -> ED/DBA) */
.hcLeafSub {
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--hborder);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
    padding: 10px;
    display: none;
    z-index: 99999;
}

.hcLeafWrap.hasLeafSub:hover .hcLeafSub {
    display: grid;
    gap: 8px;
}

.hcLeafSubLink {
    text-decoration: none;
    color: #002935;
    /* font-weight: 650; */
    padding: 10px 10px;
    border-radius: 10px;
}

.hcLeafSubLink:hover {
    background: rgba(31, 143, 90, .08);
    color: var(--highlight-color);
}


.hcDropMenu {
    top: 100%;
    margin-top: 0;
}

.hcDropSub {
    margin-left: 0;
}

.hcLeafSub {
    left: 100%;
}


@media (max-width: 999px) {

    .hcInner {
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr;
        align-items: center;
    }

    /* ✅ stop desktop spanning + auto centering */
    .hcLogo {
        grid-column: 1;
        grid-row: 1;
        margin: 0 !important;
        justify-self: start;
        padding-left: 16px;
    }

    .hcRightRow {
        grid-column: 2;
        grid-row: 1;
        height: 100%;
        padding-right: 16px;
        /* ✅ gives nice right space */
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* ✅ keep same behavior after scroll */
    .hcHeader.isCompact .hcLogo {
        grid-row: 1;
    }

    .hcHeader.isCompact .hcRightRow {
        height: 100%;
        align-items: center;
    }
}

@media (max-width: 999px) {

    /* force single-row layout always on mobile (even compact) */
    .hcInner,
    .hcHeader.isCompact .hcInner {
        grid-template-columns: 1fr auto !important;
        grid-template-rows: 1fr !important;
        align-items: center !important;
    }

    /* logo always in row 1 */
    .hcLogo,
    .hcHeader.isCompact .hcLogo {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        justify-self: start;
        align-self: center;
        padding-left: 16px;
    }

    /* right row always in row 1 */
    .hcRightRow,
    .hcHeader.isCompact .hcRightRow {
        grid-column: 2 !important;
        grid-row: 1 !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding-right: 16px;
    }

    /* optional: prevent logo from being too tall */
    .hcLogo img {
        height: 50px;
        object-fit: contain;
    }

    .hcHeader.isCompact .hcLogo img {
        height: 50px;
    }
}




.mf {
    color: var(--mfText);
    background: radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%), radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%), linear-gradient(180deg, #001a23, #002935);

    position: relative;
    overflow: hidden;
}


/* subtle pattern */
/* .mf::before {
  content: "";
  position: absolute;
  inset: -160px -120px auto -120px;
  height: 380px;
  background:
    radial-gradient(circle at 15% 35%, rgba(246, 183, 7, .14), transparent 60%),
    radial-gradient(circle at 80% 15%, rgba(205, 32, 41, .10), transparent 60%);
  pointer-events: none;
} */

/* ===== Trust strip ===== */
.mfTrust {
    background: radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%), radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%), linear-gradient(180deg, #001a23, #002935);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.mfTrustRow {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.mfTrustItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
}

.mfTrustItem i {
    font-size: 18px;
    color: var(--mfAccent);
}

.mfTrustTitle {
    margin: 0;
    /* font-weight: 900; */
    font-size: 13px;
    letter-spacing: .2px;
    color: #fff;
}

.mfTrustSub {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

/* CTA button in trust strip */
.mfTrustCTA {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background:
        radial-gradient(1000px 400px at 0% 0%, rgba(0, 255, 209, .16), transparent 60%),
        radial-gradient(900px 400px at 100% 0%, rgba(0, 163, 255, .18), transparent 55%),
        linear-gradient(180deg, #001a23, #002935);
    color: #fff;
    text-decoration: none;
    /* font-weight: 900; */
    border: 1px solid rgba(246, 183, 7, .55);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
    white-space: nowrap;
}

.mfTrustCTA:hover {
    filter: brightness(1.05);
}

/* ===== Main content ===== */
.mfMain {
    position: relative;
    padding: 44px 0 26px;
}

.mfTitle {
    margin: 0 0 12px;
    font-size: 14px;
    /* font-weight: 950; */
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

/* Brand */
.mfLogo img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, .22));
}

.mfTag {
    margin: 14px 0 0;
    color: var(--mfMuted);
    line-height: 1.65;
}

.mfBadges {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mfBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    /* font-weight: 800; */
    font-size: 12px;
    color: rgba(255, 255, 255, .86);
}

.mfBadge i {
    color: var(--mfAccent);
}

/* Links */
.mfLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.mfLinks a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    /* font-weight: 650; */
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mfLinks a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(246, 183, 7, .35);
    box-shadow: 0 0 0 4px rgba(246, 183, 7, 1);
}

.mfLinks a:hover {
    color: #fff;
}

.mfLinks a:hover::before {
    background: var(--mfAccent);
    box-shadow: 0 0 0 5px rgba(246, 183, 7, .14);
}

/* Contact card */
.mfCard {
    background: rgba(255, 255, 255, .92);
    border-radius: 10px;
    box-shadow: var(--mfShadow);
    border: 1px solid rgba(15, 23, 42, .10);
    padding: 14px;
    color: var(--mfCardText);
}

.mfContact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--mfCardText);
    border: 1px solid rgba(15, 23, 42, .06);
    background: rgba(255, 255, 255, .70);
    margin-bottom: 10px;
}

.mfContact:hover {
    background: rgba(246, 183, 7, .10);
    border-color: rgba(246, 183, 7, .25);
}

.mfContact i {
    font-size: 16px;
    color: var(--mfRed);
    margin-top: 2px;
}

.mfCLabel {
    display: block;
    font-size: 11px;
    /* font-weight: 900; */
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--highlight-color);
}

.mfCValue {
    display: block;
    /* font-weight: 800; */
    color: #daf2fb;
    line-height: 1.2;
}

.mfAddress {
    cursor: default;
}

/* Buttons */
.mfActions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.mfBtn {
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* font-weight: 950; */
    text-decoration: none;
    letter-spacing: .2px;
}

.mfBtnPrimary {
    background:
        radial-gradient(1200px 500px at 0% 0%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 0, 0, .18), transparent 55%),
        linear-gradient(180deg, var(--mfDark1), var(--mfDark2));
    color: #fff;
    border: 1px solid rgba(246, 183, 7, .55);
}

.mfBtnPrimary:hover {
    filter: brightness(1.05);
}

.mfBtnGhost {
    background: #fff;
    color: #001a23;
    border: 1px solid rgba(15, 23, 42, .12);
}

.mfBtnGhost:hover {
    background: rgba(246, 183, 7, .10);
    border-color: rgba(246, 183, 7, .35);
}

/* Social */
.mfSocial {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: start;
}

.mfSocial a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbc00;
    background: rgb(90 208 252 / 23%);
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, .08);
}

.mfSocial a:hover {
    background: rgba(246, 183, 7, .16);
    border-color: rgba(246, 183, 7, .35);
}

/* Map */
.mfMap {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}

.mfMap iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
}

/* ===== Bottom bar ===== */
.mfBottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 14px 0;
}

.mfBottomRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mfCopy {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    /* font-weight: 650; */
    font-size: 14px;
}

.mfMiniLinks {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mfMiniLinks a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    /* font-weight: 700; */
    font-size: 14px;
}

.mfMiniLinks a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .mfTrustCTA {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 591px) {
    .mfTrustItem {
        width: 100%;
    }

    .mfTrustRow {
        gap: 10px;
    }
}

/* ==========================
   Footer Clinic Contact
   ========================== */

.mfClinic {
    display: grid;
    gap: 12px;
}

.mfClinicRow {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}

.mfClinicRow i {
    font-size: 16px;
    color: var(--mfAccent);
    margin-top: 2px;
}

.mfClinicLink:hover {
    background: rgba(246, 183, 7, .14);
    border-color: rgba(246, 183, 7, .45);
}

.mfClinicCTA {
    margin-top: 6px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* font-weight: 950; */
    text-decoration: none;
    color: #fff;
    background:
        radial-gradient(900px 360px at 0% 0%, rgba(0, 255, 209, .16), transparent 60%),
        radial-gradient(800px 360px at 100% 0%, rgba(0, 163, 255, .18), transparent 55%),
        linear-gradient(180deg, #001a23, #002935);
    border: 1px solid rgba(246, 183, 7, .55);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.mfClinicCTA:hover {
    filter: brightness(1.05);
}

/* Clinic blocks for equal height */
.mfClinicBlock {
    /* height: 100%; */
    display: grid;
    gap: 12px;
}

/* Taller map to balance columns */
.mfMapTall iframe {
    height: 150px;
}

/* Align items visually */
@media (max-width: 991px) {
    .mfMapTall iframe {
        height: 150px;
    }
}

/* =========================
   FINAL CTA
   ========================= */
/* =========================
   FINAL CTA
   ========================= */
.hpFinalCTA {
    padding: 70px 0 90px;
    background:
        radial-gradient(1200px 520px at 0% 0%, rgba(0, 255, 209, .14), transparent 60%),
        radial-gradient(1000px 520px at 100% 0%, rgba(0, 163, 255, .16), transparent 55%),
        linear-gradient(180deg, #f7fbfb, #ffffff);
}

.hpFinalCard {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
    padding: 34px;
}

.hpFinalCard::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 49, 88, 0.12), transparent 70%);
    pointer-events: none;
}

.hpFinalContent {
    position: relative;
    z-index: 1;
}

.hpFinalBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 49, 88, 0.08);
    color: var(--hpRed);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 49, 88, 0.14);
}

.hpFinalBadge i {
    font-size: 14px;
}

.hpFinalCard h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -.02em;
}

.hpFinalCard p {
    margin: 14px 0 0;
    color: var(--hpMuted);
    line-height: 1.8;
    /* max-width: 560px; */
}

.hpFinalBtns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hpBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 700;
    transition: all .3s ease;
}

.hpBtnPrimary {
    background: var(--hpRed);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 49, 88, 0.22);
}

.hpBtnPrimary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.hpBtnOutline {
    border: 1px solid rgba(15, 23, 42, .12);
    color: #0f172a;
    background: #fff;
}

.hpBtnOutline:hover {
    transform: translateY(-2px);
    color: var(--hpRed);
    border-color: rgba(255, 49, 88, .28);
}

.hpLocationCard {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, .08);
    padding: 24px 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    transition: all .3s ease;
}

.hpLocationCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .12);
    border-color: rgba(255, 49, 88, .16);
}

.hpLocationIcon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff3158, #ff6a88);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 25px rgba(255, 49, 88, .22);
    margin-bottom: 16px;
}

.hpLocationCard h4 {
    margin: 0 0 14px;
    font-size: 20px;
    color: #0f172a;
}

.hpLocationList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hpLocationList li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #334155;
    line-height: 1.6;
}

.hpLocationList li i {
    color: var(--hpRed);
    font-size: 15px;
    margin-top: 4px;
    min-width: 16px;
}

@media (max-width: 991px) {
    .hpFinalCard {
        padding: 24px;
    }

    .hpFinalBtns {
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .hpFinalCTA {
        padding: 55px 0 70px;
    }

    .hpFinalCard {
        border-radius: 18px;
        padding: 20px;
    }

    .hpFinalCard h2 {
        font-size: 28px;
    }

    .hpLocationCard {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .hpLocationIcon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 18px;
    }

    .hpBtn {
        width: 100%;
        justify-content: center;
    }
}

/* responsive */
@media (max-width: 991px) {
    .hpSlide {
        padding: 22px 16px;
    }

    .hpSplitGrid {
        grid-template-columns: 1fr;
    }

    .hpAboutGrid {
        grid-template-columns: 1fr;
    }

    .hpSteps {
        grid-template-columns: 1fr 1fr;
    }

    .hpGrid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .hpG1 {
        grid-row: span 1;
    }

    .hpG4 {
        grid-column: span 2;
    }

    .hpAboutMedia img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .hpSteps {
        grid-template-columns: 1fr;
    }

    .hpGrid {
        grid-template-columns: 1fr;
    }

    .hpG4 {
        grid-column: span 1;
    }
}



/* buttons */
.hpBtn {
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* font-weight: 900; */
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.hpBtnPrimary {
    background:
        radial-gradient(1000px 420px at 0% 0%, rgba(0, 255, 209, .16), transparent 60%),
        radial-gradient(900px 420px at 100% 0%, rgba(0, 163, 255, .18), transparent 55%),
        linear-gradient(180deg, var(--hpDark), var(--hpDark2));
    color: #fff;
    border-color: rgba(246, 183, 7, .55);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.hpBtnPrimary:hover {
    filter: brightness(1.05);
    color: #fff;
}

.hpBtnGhost {
    background: #fff;
    color: var(--hpDark2);
    border-color: rgba(15, 23, 42, .14);
}

.hpBtnGhost:hover {
    background: rgba(246, 183, 7, .10);
    border-color: rgba(246, 183, 7, .35);
    color: var(--hpDark2);
}

.hpBtnSoft {
    background: rgba(246, 183, 7, .12);
    color: var(--hpDark2);
    border-color: rgba(246, 183, 7, .30);
}

.hpBtnSoft:hover {
    background: rgba(246, 183, 7, .18);
    color: var(--hpDark2);
}




/* ===== DOCTOR HERO ===== */
:root {
    --mfDark1: #005e80;
    --mfDark2: #046689;
    --drAccent: #00b4d8;
    --drAccent2: #90e0ef;
    --drGold: #f6b707;
    --drRed: #cd2029;
    --drTextDark: #0c2732;
    --drWhiteSoft: rgba(255, 255, 255, 0.88);
}

/* ===== DOCTOR HERO ===== */
.drHero {
    padding: 0px 0 0;
    background: linear-gradient(180deg, #f4fbfe 0%, #edf8fc 100%);
}

.drHeroBox {
    position: relative;
    overflow: hidden;
    padding: 28px;
    color: #fff;
    isolation: isolate;

    background:

        radial-gradient(700px 320px at -5% -10%, rgba(255, 255, 255, .24), transparent 60%),
        radial-gradient(520px 280px at 100% 0%, rgba(255, 255, 255, .12), transparent 58%),
        radial-gradient(420px 220px at 80% 100%, rgba(0, 180, 216, .18), transparent 62%),
        linear-gradient(135deg, var(--mfDark1) 0%, #0a7192 45%, var(--mfDark2) 100%);

    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow:
        0 20px 50px rgba(0, 94, 128, 0.18),
        0 8px 22px rgba(6, 36, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

/* soft light overlay */
.drHeroBox::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 28%),
        linear-gradient(315deg, rgba(255, 255, 255, .06), transparent 26%);
}

/* top-left big glow */
.drHeroBox::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(81, 213, 236, 0.75), rgba(142, 212, 240, 0.75)),
        /* 👈 white overlay */
        url("../../assets/images/bredcrumb-bg.webp") center/cover no-repeat;

    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

/* decorative shapes */
.drHeroBox .drShape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
}

.drHeroBox .drShape.shapeA {
    width: 180px;
    height: 180px;
    right: -50px;
    top: 70px;
    border-radius: 36px;
    transform: rotate(32deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
}

.drHeroBox .drShape.shapeB {
    width: 120px;
    height: 120px;
    left: 42%;
    bottom: -34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 224, 239, .28), rgba(255, 255, 255, 0) 68%);
    filter: blur(6px);
}

.drHeroBox .drShape.shapeC {
    width: 220px;
    height: 220px;
    right: 18%;
    bottom: -120px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .16);
}

.drHeroBox>* {
    position: relative;
    z-index: 1;
}

/* ===== TOP ROW ===== */
.drHeroTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BREADCRUMB ===== */
.drBreadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 7px;
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(12px);
    box-shadow:
        0 10px 26px rgba(7, 47, 62, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, .72);
}

.drBCLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #085f7d;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    transition: all .25s ease;
    flex: 0 0 auto;
}

.drBCLink i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
    color: #085f7d;
    background: linear-gradient(180deg, rgba(0, 180, 216, .15), rgba(0, 180, 216, .08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
    transition: all .25s ease;
}

.drBCLink:hover {
    color: #043f53;
}

.drBCLink:hover i {
    transform: translateY(-1px) scale(1.04);
    background: linear-gradient(180deg, rgba(0, 180, 216, .22), rgba(0, 180, 216, .12));
}

.drBCSep {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    position: relative;
}

.drBCSep::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    color: rgba(6, 49, 66, 0.42);
}

.drBCActive {
    color: var(--drRed);
    font-weight: 800;
    line-height: 1.4;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ===== MAIN ===== */
.drHeroMain {
    position: relative;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 22px;
    align-items: end;
}

/* subtle pattern */
.drHeroMain::before {
    content: "";
    position: absolute;
    inset: -10px 0 0 0;
    z-index: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 86%);
}

.drHeroText {
    position: relative;
    z-index: 1;
}

.drHeroText h1 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #011a22;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.drHeroText p {
    margin: 14px 0 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: #01202a;
}

/* ===== RIGHT SIDE ===== */
.drHeroStats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.drHeroActions {
    margin-bottom: 2px;
    display: flex;
    justify-content: flex-end;
    /* move button to right */
}

.drBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: .1px;
    background: linear-gradient(180deg, #e3323b 0%, #be1e27 100%);
    border: 1px solid rgba(255, 255, 255, .14);
    /* box-shadow:
        0 16px 34px rgba(205, 32, 41, 0.28),
        inset 0 1px 0 rgba(255,255,255,.22); */
    transition: all .28s ease;
}

.drBtn i {
    font-size: 15px;
}

.drBtn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 20px 42px rgba(205, 32, 41, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

/* ===== STAT CARDS ===== */
.drStat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 18px;
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgba(255, 255, 255, .46);
    box-shadow:
        0 14px 32px rgba(5, 40, 53, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: transform .28s ease, box-shadow .28s ease;
}

.drStat:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 36px rgba(5, 40, 53, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, .84);
}

.drStatIcon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #0a2630;
    font-size: 18px;
    background:
        linear-gradient(180deg, #ffd35a 0%, var(--drGold) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .46),
        0 8px 18px rgba(246, 183, 7, 0.22);
}

.drStatMeta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.drStatMeta .k {
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hpRed);
    font-weight: 800;
    margin-bottom: 4px;
}

.drStatMeta .v {
    font-size: 20px;
    line-height: 1.2;
    color: var(--drTextDark);
    font-weight: 800;
}

/* ===== BOTTOM LINE ===== */
.drHeroLine {
    position: relative;
    margin-top: 22px;
    height: 5px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
    display: none;
}

.drHeroLine::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffffff, #90e0ef, #f6b707, #ffffff);
    background-size: 250% 100%;
    animation: drLineFlow 6s linear infinite;
}

@keyframes drLineFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 250% 50%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .drHeroText h1 {
        max-width: 680px;
    }
}

@media (max-width: 992px) {
    .drHeroBox {
        padding: 24px;
    }

    .drHeroMain {
        grid-template-columns: 1fr;
    }

    .drHeroStats {
        max-width: 420px;
    }

    .drHeroBox .drShape.shapeA {
        right: -70px;
        top: 40px;
    }
}

@media (max-width: 767.98px) {
    .drHero {
        padding-top: 6px;
    }

    .drHeroBox {
        padding: 18px;
        /* border-radius: 22px; */
    }

    .drHeroTop {
        justify-content: flex-start;
    }

    .drBreadcrumb {
        width: 100%;
        padding: 12px 14px;
        gap: 8px;
        border-radius: 16px;
    }

    .drBCLink,
    .drBCActive {
        font-size: 14px;
    }

    .drBCLink i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .drBCSep {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .drHeroMain {
        margin-top: 18px;
        gap: 16px;
    }

    .drHeroText h1 {
        font-size: clamp(20px, 8vw, 30px);
        line-height: 1.15;
    }

    .drHeroText p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.7;
    }

    .drHeroActions {
        width: 100%;
    }

    .drBtn {
        width: 100%;
        min-height: 48px;
        border-radius: 12px;
    }

    .drStat {
        padding: 10px;
        border-radius: 10px;
    }

    .drStatIcon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 10px;
        font-size: 16px;
    }

    .drStatMeta .k {
        font-size: 10px;
    }

    .drStatMeta .v {
        font-size: 16px;
    }

    .drHeroBox .drShape.shapeA {
        width: 120px;
        height: 120px;
        right: -40px;
        top: 70px;
        border-radius: 24px;
    }

    .drHeroBox .drShape.shapeB {
        width: 90px;
        height: 90px;
        left: auto;
        right: 20px;
        bottom: 90px;
    }

    .drHeroBox .drShape.shapeC {
        width: 150px;
        height: 150px;
        right: -40px;
        bottom: -70px;
    }
}

.drHeroStats {
    position: relative;
    z-index: 1;
    display: grid;

    /* 2 column layout */
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Button full width */
.drHeroActions {
    grid-column: span 2;
}

/* Make both stat cards equal height */
.drStat {
    height: 100%;
}

/* Mobile fix */
/* @media (max-width: 576px) {
    .drHeroStats {
        grid-template-columns: 1fr;
    }

    .drHeroActions {
        grid-column: span 1;
    }
} */


/* CTA strip */
.abStrip {
    margin-top: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: var(--shadow2);
    overflow: hidden;
    background:
        radial-gradient(900px 380px at 0% 0%, rgba(0, 255, 209, .14), transparent 60%),
        radial-gradient(900px 380px at 100% 0%, rgba(0, 163, 255, .16), transparent 55%),
        linear-gradient(180deg, var(--ink), var(--ink2));
    color: #fff;
    padding: 18px;
}

.abStrip h2 {
    margin: 0;
    /* font-weight: 1000; */
    letter-spacing: -.02em;
}

.abStrip p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .86);
    /* font-weight: 650; */
    line-height: 1.85;
}

.abStripActions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.abStripBtn {
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* font-weight: 950; */
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    text-decoration: none;
}

.abStripBtn:hover {
    filter: brightness(1.06);
    color: #fff;
}

.abStripBtnGold {
    background: linear-gradient(180deg, #f6b707, #f4b000);
    border-color: rgba(246, 183, 7, .35);
    color: #0b1f2a;
}

.abStripBtnGold:hover {
    color: #0b1f2a;
}


/* container spacing */
.abWrap {
    padding: 35px 0 40px;
}


:root {
    --fxInk: #071b25;
    --fxDeep: #06161f;
    --fxGlass: rgba(255, 255, 255, .10);
    --fxBorder: rgba(255, 255, 255, .16);
    --fxShadow: 0 18px 42px rgba(0, 0, 0, .38);

    --fxWa1: #25d366;
    --fxWa2: #128c7e;

    --fxCall1: #f6b707;
    --fxCall2: #ffde7a;

    --fxRing: #f6b707;
}

.fxDock {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}


/* =========================
   Scroll-to-top (ring)
========================= */
.fxMain {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(0, 255, 209, .14), transparent 55%),
        radial-gradient(700px 420px at 100% 20%, rgba(0, 163, 255, .18), transparent 60%),
        linear-gradient(180deg, #071b25, #0e2a38);
    /* box-shadow: var(--fxShadow); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.fxMain:hover {
    transform: translateY(-3px) scale(1.03);
    /* box-shadow: 0 22px 55px rgba(0, 0, 0, .45); */
}

.fxMainIcon {
    position: absolute;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    transform: translateY(-1px);
}

/* ring */
.fxRing {
    position: absolute;
    inset: 5px;
    transform: rotate(-90deg);
}

.fxRingBg {
    fill: none;
    stroke: rgba(255, 255, 255, .12);
    stroke-width: 3.6;
}

.fxRingProg {
    fill: none;
    stroke: var(--fxRing);
    stroke-width: 3.6;
    stroke-linecap: round;
    stroke-dasharray: 113.097;
    /* 2*pi*18 */
    stroke-dashoffset: 113.097;
    filter: drop-shadow(0 10px 18px rgba(246, 183, 7, .22));
}

/* show/hide top based on scroll */
.fxMain.isHidden {
    opacity: 0;
    transform: translateY(10px) scale(.96);
    pointer-events: none;
}

/* mobile */
@media (max-width:480px) {
    .fxDock {
        right: 14px;
        bottom: 14px;
        gap: 12px;
    }

    .fxBtn {
        padding: 11px 12px;
        border-radius: 10px;
    }

    .fxText {
        display: none;
    }

    /* icon-only for small screens */
    .fxMain {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
}



:root {
    --fxGlass: rgba(255, 255, 255, .08);
    --fxBorder: rgba(255, 255, 255, .16);
    --fxShadow: 0 20px 50px rgba(0, 0, 0, .42);

    --wa: #25d366;
    --call: #f6b707;
}

/* Dock */
.fxPremiumDock {
    position: fixed;
    right: 10px;
    bottom: 80px;
    /* keep space for your scroll-top ring */
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* Base icon button */
.fxIconBtn {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
        rgba(10, 20, 30, .55);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--fxBorder);
    /* box-shadow: var(--fxShadow); */

    isolation: isolate;
    overflow: hidden;
    transform: translateZ(0);
}

/* =================================
   WHATSAPP – LIQUID HALO (PREMIUM)
================================= */
.fxWa .fxHalo {
    position: absolute;
    inset: -18px;
    background:
        radial-gradient(circle at 35% 30%,
            rgba(37, 211, 102, .75),
            rgba(18, 140, 126, .35),
            transparent 65%);
    filter: blur(8px);
    z-index: -1;

    border-radius: 48% 52% 60% 40% / 42% 48% 52% 58%;
    animation: waMorph 4.2s ease-in-out infinite;
}

@keyframes waMorph {
    0% {
        transform: scale(1) rotate(0deg);
        border-radius: 48% 52% 60% 40% / 42% 48% 52% 58%;
        opacity: .85;
    }

    50% {
        transform: scale(1.08) rotate(8deg);
        border-radius: 60% 40% 46% 54% / 56% 40% 60% 44%;
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        border-radius: 48% 52% 60% 40% / 42% 48% 52% 58%;
        opacity: .85;
    }
}


/* =================================
   CALL – SONAR / SIGNAL PULSE
================================= */
.fxCall {
    color: #071b25;
}

.fxCall i {
    color: #071b25;
}

.fxCall {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)),
        rgba(246, 183, 7, .55);
}

/* signal rings */
.fxPulse {
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 2px solid rgba(246, 183, 7, .6);
    opacity: 0;
    animation: callPulse 2.4s ease-out infinite;
}

.fxPulse2 {
    animation-delay: .9s;
}

@keyframes callPulse {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    20% {
        opacity: .8;
    }

    70% {
        opacity: .25;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}


/* Mobile polish */
@media(max-width:480px) {
    .fxPremiumDock {
        right: 14px;
        bottom: 100px;
    }

    .fxIconBtn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}


/* Modal polish */
.apModalContent {
    border-radius: 10px;
    border: 0;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .15);
}

.apLbl {
    /* font-weight:600; */
    font-size: 14px;
    margin-bottom: 6px;
    color: #0f172a;
}

.apInput {
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, .15);
    padding: 12px 14px;
    transition: all .2s ease;
}

.apInput:focus {
    border-color: #0ea5a5;
    box-shadow: 0 0 0 3px rgba(14, 165, 165, .15);
}

.apSelect {
    background-color: #f9fbfb;
}

.apConsentWrap {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #475569;
}

.apSubmit {
    background: #0ea5a5;
    border: none;
    padding: 14px;
    border-radius: 10px;
    /* font-weight:600; */
    color: #fff;
    transition: .25s ease;
}

.apSubmit:hover {
    background: #0f766e;
    transform: translateY(-1px);
}





.nfWrap {
    padding: 10px 0 50px;
}

.nfCard {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(196, 31, 44, .08), transparent 30%),
        radial-gradient(circle at top right, rgba(212, 175, 55, .12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff9f9 100%);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
    padding: 38px;
}

.nfCard::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(196, 31, 44, .12), transparent 65%);
    pointer-events: none;
}

.nfGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: stretch;
}

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

.nfKicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff3f4;
    color: #b91c1c;
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 18px;
    width: max-content;
}

.nfCode {
    font-size: clamp(4.2rem, 10vw, 7.5rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #0f172a;
    margin: 0 0 14px;
}

.nfTitle {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: #0f172a;
    font-weight: 800;
    margin: 0 0 14px;
}

.nfText {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 24px;
    max-width: 760px;
}

.nfPoints {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 26px;
}

.nfPoint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: .92rem;
    font-weight: 600;
}

.nfActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nfBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 700;
    transition: .25s ease;
}

.nfBtnPrimary {
    background: #c41f2c;
    color: #fff;
    box-shadow: 0 16px 36px rgba(196, 31, 44, .22);
}

.nfBtnPrimary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.nfBtnGhost {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .09);
}

.nfBtnGhost:hover {
    transform: translateY(-2px);
    color: #0f172a;
}

.nfRight {
    display: grid;
    gap: 18px;
}

.nfMiniCard {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .05);
}

.nfMiniTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 800;
    margin: 0 0 14px;
}

.nfQuickLinks {
    display: grid;
    gap: 10px;
}

.nfQuickLinks a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    padding: 13px 14px;
    font-weight: 600;
    transition: .25s ease;
}

.nfQuickLinks a:hover {
    background: #fff3f4;
    border-color: rgba(196, 31, 44, .18);
    color: #b91c1c;
    transform: translateY(-1px);
}

.nfStatList {
    display: grid;
    gap: 12px;
}

.nfStatItem {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    background: #fcfcfd;
    border: 1px solid rgba(15, 23, 42, .06);
}

.nfStatIcon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #c41f2c, #8f1721);
    color: #fff;
    flex: 0 0 48px;
}

.nfStatMeta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nfStatMeta .k {
    font-size: .8rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nfStatMeta .v {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.nfSearchHint {
    color: #64748b;
    margin-top: 10px;
    font-size: .92rem;
}

@media (max-width: 991px) {
    .nfGrid {
        grid-template-columns: 1fr;
    }

    .nfCard {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .nfActions {
        flex-direction: column;
    }

    .nfBtn {
        width: 100%;
    }

    .nfCode {
        font-size: 4rem;
    }
}

.tyWrap {
    padding: 60px 0;
}

.tyCard {

    background:
        radial-gradient(circle at top left, rgba(196, 31, 44, .08), transparent 30%),
        linear-gradient(135deg, #ffffff, #fff8f8);

    border-radius: 10px;
    padding: 50px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .05);

    text-align: center;
}

.tyIcon {

    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #c41f2c, #8f1721);

    color: white;
    font-size: 36px;
}

.tyTitle {

    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.tyText {

    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

.tyActions {

    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tyBtn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    border-radius: 10px;

    font-weight: 700;

    text-decoration: none;
}

.tyPrimary {

    background: #c41f2c;
    color: white;
}

.tyGhost {

    background: white;
    border: 1px solid #ddd;
    color: #0f172a;
}

.tyPrimary:hover {
    color: white;
    transform: translateY(-2px);
}

.tyGhost:hover {
    color: #0f172a;
    transform: translateY(-2px);
}






/* Floating Complaint Tab */


.complaint-tab {
    position: fixed;
    right: 23px;
    top: 50%;
    transform: translateY(-50%) translateX(50%) rotate(-90deg);
    z-index: 9999;
    border: none;
    background: linear-gradient(135deg, #0e5aa7, #0a7bc2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 14px 30px rgba(14, 90, 167, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .2px;
    transition: all .3s ease;
}

.complaint-tab:hover {
    background: linear-gradient(135deg, #094b8b, #066ba9);
    box-shadow: 0 18px 34px rgba(14, 90, 167, 0.35);
}

.complaint-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.complaint-icon img {
    width: 70%;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
    text-align: center;
    align-items: center;
    align-content: center;
    display: flex;
    justify-content: center;
}

.complaint-text {
    white-space: nowrap;
}

/* Modal */
.complaintModal .modal-dialog {
    max-width: 560px;
}

.complaint-modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    background: #fff;
}

.complaint-modal-header {
    position: relative;
    padding: 28px 28px 18px;
    background:
        radial-gradient(circle at top right, rgba(14, 90, 167, 0.14), transparent 32%),
        linear-gradient(135deg, #f8fbff, #eef6ff);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.complaint-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0e5aa7, #0a7bc2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 22px rgba(14, 90, 167, 0.22);
}

.complaint-modal-header h5 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.complaint-modal-header p {
    margin: 0;
    font-size: 14px;
    color: #475569;
    max-width: 420px;
    line-height: 1.6;
}

.complaint-close {
    position: absolute;
    top: 20px;
    right: 20px;
    box-shadow: none !important;
}

.complaint-form {
    padding: 10px;
}

.complaint-form-group {
    margin-bottom: 18px;
}

.complaint-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.complaint-input-wrap {
    position: relative;
}

.complaint-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e5aa7;
    font-size: 15px;
}

.complaint-input-wrap.textarea-wrap i {
    top: 18px;
    transform: none;
}

.complaint-input-wrap .form-control {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid #dbe7f3;
    background: #f9fcff;
    padding-left: 46px;
    padding-right: 16px;
    box-shadow: none;
    font-size: 15px;
}

.complaint-input-wrap textarea.form-control {
    min-height: 140px;
    padding-top: 14px;
    resize: vertical;
}

.complaint-input-wrap .form-control:focus {
    border-color: #0e5aa7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 90, 167, 0.08);
}

.complaint-submit-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    min-height: 54px;
    background: linear-gradient(135deg, #0e5aa7, #0a7bc2);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s ease;
    box-shadow: 0 14px 26px rgba(14, 90, 167, 0.2);
}

.complaint-submit-btn:hover {
    background: linear-gradient(135deg, #094b8b, #066ba9);
    transform: translateY(-1px);
}



::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #eaf8ff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19bdf5, #0ea5d9);
    border-radius: 10px;
    border: 2px solid #eaf8ff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0ea5d9, #0284c7);
}


.hcLogo {
  text-decoration: none;
  display: inline-block;
}

.hcLogoText {
   font-family: 'Yeseva One', serif; /* premium heading font */
  font-size: 30px;
  font-weight: 700;
  color: #5bb3d1; /* soft blue like screenshot */
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

/* underline effect */
/* .hcLogoText::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: #5bb3d1;
  opacity: 0.4;
  border-radius: 6px;
} */

/* hover effect (optional premium touch) */
.hcLogoText:hover {
  color: #3aa3c7;
}

.hcLogoText:hover::after {
  opacity: 0.6;
}