@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400..700&display=swap');

/* ==========================================================================
   Shrey Education — brand refinement layer
   Loaded last on every page. Palette is taken straight from the logo:
   navy #12244E, teal #103FA3, gold #B28D47.
   ========================================================================== */

:root {
    /* Navy — the dominant voice, same family as the cap and the "Shrey" wordmark */
    --sg-navy-950: #070E1D;
    --sg-navy-900: #0A142B;
    --sg-navy-800: #0E1C3C;
    --sg-navy-700: #12244E;
    --sg-navy-600: #183067;
    --sg-navy-500: #1F3D82;
    --sg-navy-400: #2C56BA;
    --sg-navy-200: #A6BAEA;
    --sg-navy-100: #DAE2F2;
    --sg-navy-50:  #F1F4FA;

    /* Teal — the globe, the swoosh, and every action on the site */
    --sg-teal-900: #0A2664;
    --sg-teal-800: #0C2E78;
    --sg-teal-700: #0E368D;
    --sg-teal-600: #103FA3;
    --sg-teal-500: #134BC3;
    --sg-teal-400: #2E69EA;
    --sg-teal-300: #779EF2;
    --sg-teal-100: #F1F5FE;
    --sg-teal-50:  #E9EFFD;

    /* Gold — the tassel and the runway. Accent only, never a surface. */
    --sg-gold-700: #8C6E36;
    --sg-gold-600: #B28D47;
    --sg-gold-400: #DBBC80;
    --sg-gold-200: #F1E4C9;
    --sg-gold-100: #F8F1E2;

    --sg-ink:    #0E1C3C;
    --sg-body:   #47546E;
    --sg-muted:  #505F7E;
    --sg-line:   #DDE1EA;
    --sg-soft:   #F2F5FB;
    --sg-white:  #FFFFFF;

    --sg-display: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
    --sg-text: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

    --sg-r-sm: 6px;
    --sg-r-md: 10px;
    --sg-r-lg: 16px;
    --sg-r-pill: 999px;

    /* One shadow family, three depths. Tinted navy so it never reads grey. */
    --sg-shadow-1: 0 1px 2px rgba(14, 28, 60, .05), 0 2px 8px rgba(14, 28, 60, .04);
    --sg-shadow-2: 0 2px 4px rgba(14, 28, 60, .05), 0 10px 26px rgba(14, 28, 60, .07);
    --sg-shadow-3: 0 4px 8px rgba(14, 28, 60, .06), 0 22px 48px rgba(14, 28, 60, .10);

    --sg-ease: cubic-bezier(.2, .7, .3, 1);

    /* Re-point the legacy theme variables at the logo palette. */
    --base-bodyfont: var(--sg-text);
    --base-headingfont: var(--sg-text);
    --base-headingfont-main: var(--sg-text);
    --base-bodyfont-color: var(--sg-body);
    --base-headingfont-color: var(--sg-ink);
    --base-skin: var(--sg-teal-600);
    --base-dark: var(--sg-navy-900);
    --shrey-red: var(--sg-teal-600);
    --shrey-red-dark: var(--sg-teal-800);
    --shrey-ink: var(--sg-ink);
    --shrey-navy: var(--sg-navy-900);
    --shrey-muted: var(--sg-muted);
    --shrey-line: var(--sg-line);
    --shrey-copy: var(--sg-body);
}

/* --------------------------------------------------------------------------
   Typography
   One clear sans-serif family keeps every heading easy to scan.
   -------------------------------------------------------------------------- */

body {
    font-family: var(--sg-text);
    font-size: 17px;
    line-height: 1.65;
    color: var(--sg-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--sg-ink);
    font-family: var(--sg-text);
    letter-spacing: -.012em;
}

h1,
h2,
.section-title .title-header h2,
.shrey-hero-heading,
.page-title-heading .title,
.prt-fid-inner {
    font-family: var(--sg-display);
    font-weight: 500;
    font-optical-sizing: auto;
    letter-spacing: -.005em;
    line-height: 1.08;
}

h1, .shrey-hero-heading, .page-title-heading .title {
    font-size: clamp(34px, 3.5vw, 58px);
}

h2, .section-title .title-header h2 {
    font-size: clamp(30px, 3.1vw, 46px);
}

h3 { font-size: clamp(20px, 1.5vw, 24px); font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 600; }
h6 { font-size: 15px; font-weight: 600; }

p { color: var(--sg-body); }

/* Keep highlighted words clear while retaining the brand teal. */
h1 span, h2 span,
.shrey-hero-heading span,
.section-title .title-header h2 span {
    color: var(--sg-teal-600);
    font-style: normal;
    font-weight: 700;
}

/* Kickers / eyebrows: one treatment, used everywhere. */
.section-title .title-header h5,
.shrey-destination-kicker,
.shrey-eyebrow,
.prt-featured-heading .prt-custom-heading {
    color: var(--sg-teal-600);
    font-family: var(--sg-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Links & focus
   -------------------------------------------------------------------------- */

a { color: var(--sg-teal-700); text-decoration: none; }
a:hover { color: var(--sg-teal-600); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--sg-teal-500);
    outline-offset: 3px;
    border-radius: var(--sg-r-sm);
}

::selection { background: var(--sg-teal-100); color: var(--sg-navy-900); }

/* --------------------------------------------------------------------------
   Buttons — two of them. Solid teal for the ask, outlined navy for the rest.
   -------------------------------------------------------------------------- */

.prt-btn,
.shrey-hero-primary,
.sc-submit,
.ct-submit,
.rev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: var(--sg-r-md);
    background: var(--sg-teal-600);
    box-shadow: none;
    color: var(--sg-white);
    font-family: var(--sg-text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: none;
    transition: background .2s var(--sg-ease), transform .2s var(--sg-ease), box-shadow .2s var(--sg-ease);
}

.prt-btn:hover,
.shrey-hero-primary:hover,
.sc-submit:hover,
.ct-submit:hover,
.rev-btn:hover {
    background: var(--sg-teal-700);
    box-shadow: var(--sg-shadow-2);
    color: var(--sg-white);
    transform: translateY(-1px);
}

.shrey-hero-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--sg-r-md);
    background: transparent;
    color: var(--sg-white);
    font-weight: 600;
    transition: border-color .2s var(--sg-ease), background .2s var(--sg-ease);
}

.shrey-hero-secondary:hover {
    border-color: var(--sg-teal-300);
    background: rgba(255, 255, 255, .06);
    color: var(--sg-white);
}

/* Keep the official full-colour mark on a quiet, crafted carrier panel. */
.prt-header-style-01 .site-navigation > div:first-child {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-color: #e1e8ea !important;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfe 68%, #EBF1FD 100%) !important;
    box-shadow: 0 12px 30px rgba(7, 13, 28, .15), inset 0 1px 0 #ffffff !important;
    transition: border-color .24s ease, box-shadow .28s var(--sg-ease);
}
.prt-header-style-01 .site-navigation > div:first-child::after {
    content: "" !important;
    position: absolute !important;
    top: 15px !important;
    right: 0 !important;
    bottom: 15px !important;
    left: auto !important;
    display: block !important;
    width: 3px !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 999px 0 0 999px;
    background: linear-gradient(180deg, var(--sg-gold-600), var(--sg-teal-600)) !important;
    opacity: .88;
    transform: none !important;
}
.prt-header-style-01 .site-navigation .home-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.prt-header-style-01 .site-navigation .home-link:focus-visible {
    outline: 2px solid var(--sg-gold-600);
    outline-offset: -4px;
    border-radius: 10px;
}
.prt-header-style-01 .site-branding-home { border: 0 !important; background: transparent !important; }

.prt-header-style-01 .site-header-menu-inner,
.prt-header-style-01 .site-header-menu-inner.prt-stickable-header.fixed-header {
    background: var(--sg-navy-900) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
    box-shadow: none !important;
}

.prt-header-style-01 .site-header-menu-inner.prt-stickable-header.fixed-header {
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 14px 34px rgba(7, 14, 29, .30) !important;
}

#site-header-menu .site-navigation ul.menu > li > a {
    font-family: var(--sg-text);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

@media (min-width: 1200px) {
    #site-header-menu nav.main-menu > ul.menu {
        gap: 4px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu {
        display: flex;
        align-items: center;
    }

    html body #site-header-menu nav.main-menu > ul.menu > li > a {
        isolation: isolate;
        padding-inline: 10px !important;
        border-radius: 12px !important;
        transition: color .22s ease, transform .22s var(--sg-ease), box-shadow .22s ease;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a::before {
        content: "" !important;
        position: absolute;
        inset: 17px 2px;
        width: auto !important;
        height: auto !important;
        z-index: -1;
        display: block !important;
        border: 1px solid rgba(147, 178, 244, .14);
        border-radius: 11px;
        background: linear-gradient(135deg, rgba(147, 178, 244, .13), rgba(255, 255, 255, .035)) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
        opacity: 0;
        transform: scale(.94);
        transition: opacity .2s ease, transform .24s var(--sg-ease), border-color .2s ease;
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a {
        color: #ffffff !important;
        transform: translateY(-1px);
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a::before,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a::before,
    #site-header-menu nav.main-menu > ul.menu > li.active > a::before {
        opacity: 1;
        transform: scale(1);
    }

    #site-header-menu nav.main-menu > ul.menu > li.active > a {
        color: #93B2F4 !important;
        box-shadow: inset 0 -2px 0 #144CC6;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a[href="#"]::after {
        opacity: .7;
        transform-origin: center;
        transition: opacity .2s ease, transform .24s var(--sg-ease);
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a[href="#"]::after,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a[href="#"]::after {
        opacity: 1;
        transform: rotate(180deg);
    }

    #site-header-menu nav.main-menu > ul.menu > li > a:focus-visible {
        outline: 2px solid #e7c57f !important;
        outline-offset: -7px;
    }

    #site-header-menu nav.main-menu li.mega-menu-item > ul.mega-submenu {
        top: calc(100% - 2px) !important;
        padding: 8px !important;
        border: 1px solid #d8e0e2;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--sg-teal-100), #D2DFFB) !important;
        box-shadow: 0 20px 48px rgba(8, 15, 33, .18), 0 2px 8px rgba(8, 15, 33, .06);
        transform: translateY(10px) scale(.985) !important;
        transform-origin: top center;
        transition: opacity .18s ease, transform .24s var(--sg-ease), visibility .18s ease;
    }

    #site-header-menu nav.main-menu li.mega-menu-item:hover > ul.mega-submenu,
    #site-header-menu nav.main-menu li.mega-menu-item:focus-within > ul.mega-submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1) !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li + li { margin-top: 2px; }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 10px 12px !important;
        border: 0 !important;
        border-radius: 10px !important;
        color: #51607E !important;
        font-weight: 600;
        visibility: visible !important;
        opacity: 1 !important;
        transition: color .18s ease, background-color .18s ease, transform .2s var(--sg-ease);
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a:hover,
    #site-header-menu nav.main-menu ul.mega-submenu > li > a:focus-visible {
        color: #0E1B3B !important;
        background: #E6EDFC !important;
        transform: translateX(3px);
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a:focus-visible {
        outline: 2px solid #144CC6;
        outline-offset: -2px;
    }

    .header_search .search_btn,
    .header_login a,
    .prt-header-style-01 .header_btn .prt-btn {
        transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .24s ease, transform .24s var(--sg-ease);
    }

    .header_search .search_btn:hover,
    .header_search .search_btn:focus-visible,
    .header_login a:hover,
    .header_login a:focus-visible,
    .prt-header-style-01 .header_btn .prt-btn:hover,
    .prt-header-style-01 .header_btn .prt-btn:focus-visible {
        transform: translateY(-2px);
    }

    .prt-header-style-01 .site-navigation > div:first-child:hover,
    .prt-header-style-01 .site-navigation > div:first-child:focus-within {
        border-color: #cfdddf !important;
        box-shadow: 0 14px 34px rgba(7, 13, 28, .19), inset 0 1px 0 #ffffff !important;
    }
}

@media (max-width: 767px) {
    .prt-header-style-01 .site-header-menu-inner > .container-fluid { padding-inline: 12px !important; }

    .prt-header-style-01 .site-navigation > div:first-child {
        width: 164px !important;
        height: 60px !important;
        margin: 5px 0 !important;
        padding: 6px 14px 6px 12px !important;
        flex: 0 0 164px !important;
        border: 1px solid #e1e8ea !important;
        border-left: 0 !important;
        border-radius: 0 16px 16px 0 !important;
        box-shadow: 0 8px 22px rgba(7, 13, 28, .14), inset 0 1px 0 #ffffff !important;
    }
    .prt-header-style-01 .site-navigation > div:first-child::after {
        top: 13px !important;
        bottom: 13px !important;
        width: 2px !important;
    }
    .prt-header-style-01 .site-navigation #logo-img {
        width: 136px !important;
        max-width: 100% !important;
        max-height: 47px !important;
        transform: none !important;
    }

    /* The five-item tray is the primary phone navigation. */
    body:not(.visa-detail-page) .prt-header-style-01 .btn-show-menu-mobile { display: none !important; }
    body.visa-detail-page .prt-header-style-01 .btn-show-menu-mobile { display: flex !important; }

    .shrey-mobile-nav {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        width: auto !important;
        max-width: none !important;
    }
    .shrey-mobile-nav a,
    .shrey-mobile-nav button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 50px;
        padding-inline: 1px !important;
        touch-action: manipulation;
    }
    .shrey-mobile-nav a span,
    .shrey-mobile-nav button span {
        display: block;
        width: 100%;
        overflow: hidden;
        font-size: 9px;
        line-height: 1.15;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .shrey-hero-content { min-width: 0; }
    .shrey-premium-hero .shrey-hero-heading {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: break-word;
    }
}

@media (max-width: 360px) {
    .prt-header-style-01 .site-header-menu-inner > .container-fluid { padding-inline: 8px !important; }
    .prt-header-style-01 .site-navigation > div:first-child {
        width: 154px !important;
        flex-basis: 154px !important;
        padding-inline: 10px 12px !important;
    }
    .prt-header-style-01 .site-navigation #logo-img { width: 130px !important; }
    .shrey-premium-hero .shrey-hero-heading { font-size: 27px !important; }
}

@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
    body { padding-bottom: 0 !important; }
    .shrey-mobile-nav { display: none !important; }
    body:not(.visa-detail-page) .prt-header-style-01 .btn-show-menu-mobile,
    body.visa-detail-page .prt-header-style-01 .btn-show-menu-mobile { display: flex !important; }
    #site-header-menu nav.main-menu.menu-mobile { max-height: calc(100dvh - 136px) !important; }
}

.top_bar.prt-topbar-wrapper {
    background: var(--sg-navy-950);
    font-size: 13px;
}

.top_bar .top_bar_contact_item .text-base-skin { color: var(--sg-teal-300); }

/* --------------------------------------------------------------------------
   Surfaces — three of them: white, a cool tint, and navy. The old warm cream
   fought the mark, so it now reads as the faintest gold wash instead.
   -------------------------------------------------------------------------- */

.bg-base-grey,
.bg-base-grey.prt-bg { background-color: var(--sg-soft) !important; }

/* Cards: one radius, one border, one shadow, one lift. */
.featured-imagebox,
.shrey-visa-card,
.shrey-story-card,
.client-box,
.shrey-managed-card {
    border-radius: var(--sg-r-lg);
    transition: transform .3s var(--sg-ease), box-shadow .3s var(--sg-ease), border-color .3s var(--sg-ease);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.widget-footer,
.shrey-editorial-footer {
    background: var(--sg-navy-950);
    color: var(--sg-navy-200);
}

.shrey-footer-column h3,
.widget-footer .widget-title {
    color: var(--sg-white);
    font-family: var(--sg-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Motion — respect the setting.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --------------------------------------------------------------------------
   Heading typography
   Use the same visible, strong treatment on every public page.
   -------------------------------------------------------------------------- */

h1, h2,
.section-title .title-header h2,
.shrey-hero-heading,
.page-title-heading .title,
.prt-fid-inner {
    letter-spacing: -.012em !important;
    font-family: var(--sg-display) !important;
    font-style: normal !important;
    font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   Buttons — every page had grown its own. One shape, two roles.
   -------------------------------------------------------------------------- */

.prt-btn,
.au-btn, .au-btn-primary, .au-btn-secondary,
.career-primary-btn, .career-secondary-btn,
.visa-primary-action, .visa-secondary-action,
.shrey-hero-primary, .shrey-hero-secondary,
.shrey-about-cta, .director-contact-cta,
.ep-cta, .ep-guide-cta,
.sc-submit, .ct-submit, .test-prep-submit, .form-submit {
    border-radius: var(--sg-r-md) !important;
    font-family: var(--sg-text) !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .005em !important;
    text-transform: none !important;
}

.prt-btn.prt-btn-color-skincolor,
.au-btn-primary,
.career-primary-btn,
.visa-primary-action,
.shrey-hero-primary,
.shrey-about-cta,
.sc-submit, .ct-submit, .test-prep-submit {
    border-color: transparent;
    background: var(--sg-teal-600) !important;
    color: var(--sg-white) !important;
}

.prt-btn.prt-btn-color-skincolor:hover,
.au-btn-primary:hover,
.career-primary-btn:hover,
.visa-primary-action:hover,
.shrey-hero-primary:hover,
.shrey-about-cta:hover,
.sc-submit:hover, .ct-submit:hover, .test-prep-submit:hover {
    background: var(--sg-teal-700) !important;
}

/* --------------------------------------------------------------------------
   A single gold hairline is the only place the third brand colour appears in
   the chrome — enough to register, not enough to compete with the teal.
   -------------------------------------------------------------------------- */

.top_bar.prt-topbar-wrapper { border-bottom: 1px solid rgba(178, 141, 71, .38); }

/* --------------------------------------------------------------------------
   Corrections
   -------------------------------------------------------------------------- */

/* Footer and widget column headings are labels, not display type: a Didone
   at 15px has nothing to show. Send them back to the sans. */
.shrey-footer-column h2,
.shrey-footer-column h3,
.widget-footer .widget-title,
footer h2, footer h3 {
    color: var(--sg-white);
    font-family: var(--sg-text) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase;
}

/* The dark button is the second-tier action on light panels: navy, and it
   warms to teal on hover so both buttons resolve to the same colour. */
.prt-btn.prt-btn-color-dark {
    background: var(--sg-navy-800) !important;
    color: var(--sg-white) !important;
}

.prt-btn.prt-btn-color-dark:hover {
    background: var(--sg-teal-700) !important;
    color: var(--sg-white) !important;
}

/* A call to action is a button, not a banner: never let one inherit the
   full width of a flex or grid track. */
.prt-btn,
.au-btn, .au-btn-primary, .au-btn-secondary,
.career-primary-btn, .career-secondary-btn,
.visa-primary-action, .visa-secondary-action,
.shrey-hero-primary, .shrey-hero-secondary,
.shrey-about-cta, .director-contact-cta,
.ep-cta, .ep-guide-cta {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Header navigation polish — the official logo carrier above is untouched.
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {
    #site-header-menu nav.main-menu > ul.menu {
        gap: 2px;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a {
        min-height: 46px;
        padding-inline: 12px !important;
        border: 0 !important;
        border-radius: 10px !important;
        background: transparent !important;
        box-shadow: none !important;
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 600;
        transition: color .18s ease, background-color .18s ease !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a {
        color: #ffffff !important;
        background: rgba(255, 255, 255, .065) !important;
        transform: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.active > a {
        color: #A3BDF6 !important;
        background: transparent !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a::before {
        content: "" !important;
        position: absolute !important;
        right: auto !important;
        bottom: 3px !important;
        left: 50% !important;
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: var(--sg-teal-400) !important;
        box-shadow: none !important;
        opacity: 0 !important;
        transform: translateX(-50%) scaleX(.35) !important;
        transition: opacity .18s ease, transform .2s var(--sg-ease) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.active > a::before,
    #site-header-menu nav.main-menu > ul.menu > li:hover > a::before,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a::before {
        opacity: 1 !important;
        transform: translateX(-50%) scaleX(1) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a[href="#"]::after {
        margin-left: 7px !important;
        color: var(--sg-teal-200) !important;
        font-size: 10px !important;
        opacity: .72 !important;
        transition: opacity .18s ease, transform .2s var(--sg-ease) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a[href="#"]::after,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a[href="#"]::after {
        opacity: 1 !important;
        transform: rotate(180deg) !important;
    }

    #site-header-menu nav.main-menu li.mega-menu-item > ul.mega-submenu {
        top: calc(100% - 3px) !important;
        right: auto !important;
        left: 50% !important;
        width: 260px !important;
        min-width: 260px !important;
        padding: 9px !important;
        border: 1px solid rgba(147, 178, 244, .22) !important;
        border-top: 3px solid var(--sg-teal-500) !important;
        border-radius: 14px !important;
        background: linear-gradient(145deg, var(--sg-navy-800), var(--sg-navy-900)) !important;
        box-shadow: 0 20px 48px rgba(5, 9, 19, .34), inset 0 1px 0 rgba(255, 255, 255, .045) !important;
        transform: translate(-50%, 8px) !important;
        transform-origin: top center !important;
        transition: opacity .16s ease, transform .2s var(--sg-ease), visibility .16s ease !important;
    }

    #site-header-menu nav.main-menu li.mega-menu-item > ul.mega-submenu::before,
    #site-header-menu nav.main-menu li.mega-menu-item > ul.mega-submenu::after {
        content: none !important;
        display: none !important;
    }

    #site-header-menu nav.main-menu li.mega-menu-item:hover > ul.mega-submenu,
    #site-header-menu nav.main-menu li.mega-menu-item:focus-within > ul.mega-submenu {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translate(-50%, 0) !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li + li {
        margin-top: 1px;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a {
        min-height: 43px;
        padding: 10px 12px !important;
        border: 0 !important;
        border-radius: 9px !important;
        background: transparent !important;
        color: rgba(255, 255, 255, .82) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        transition: color .16s ease, background-color .16s ease, padding-left .18s var(--sg-ease) !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a::before,
    #site-header-menu nav.main-menu ul.mega-submenu > li > a::after {
        content: none !important;
        display: none !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a:hover,
    #site-header-menu nav.main-menu ul.mega-submenu > li > a:focus-visible {
        padding-left: 16px !important;
        color: #ffffff !important;
        background: rgba(20, 76, 198, .25) !important;
        transform: none !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a:focus-visible {
        outline-color: var(--sg-gold-400) !important;
    }

    .prt-header-style-01 .header_extra {
        gap: 10px;
        padding-left: 20px;
    }

    .header_search .search_btn,
    .header_login a,
    .prt-header-style-01 .header_btn .prt-btn {
        height: 46px;
        border-radius: 11px !important;
        transform: none !important;
    }

    .header_search .search_btn {
        width: 46px !important;
        height: 46px !important;
        border-color: rgba(255, 255, 255, .17) !important;
        background: rgba(255, 255, 255, .045) !important;
        font-size: 17px;
    }

    .header_login a {
        padding-inline: 18px;
        border-color: rgba(147, 178, 244, .72) !important;
        background: rgba(255, 255, 255, .025) !important;
    }

    .prt-header-style-01 .header_btn .prt-btn {
        padding-inline: 22px;
        border-color: transparent !important;
        box-shadow: 0 8px 20px rgba(16, 63, 163, .20) !important;
    }

    .header_search .search_btn:hover,
    .header_search .search_btn:focus-visible,
    .header_login a:hover,
    .header_login a:focus-visible {
        border-color: rgba(147, 178, 244, .92) !important;
        background: rgba(147, 178, 244, .13) !important;
        color: #ffffff !important;
        box-shadow: 0 8px 20px rgba(7, 13, 28, .16) !important;
    }

    .prt-header-style-01 .header_btn .prt-btn:hover,
    .prt-header-style-01 .header_btn .prt-btn:focus-visible {
        border-color: transparent !important;
        background: var(--sg-teal-700) !important;
        box-shadow: 0 10px 24px rgba(16, 63, 163, .28) !important;
    }

    .header_search .search_btn:focus-visible,
    .header_login a:focus-visible,
    .prt-header-style-01 .header_btn .prt-btn:focus-visible {
        outline: 2px solid var(--sg-gold-400) !important;
        outline-offset: 3px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #site-header-menu nav.main-menu > ul.menu > li > a {
        padding-inline: 8px !important;
        font-size: 14px;
    }

    .prt-header-style-01 .header_extra {
        gap: 7px;
        padding-left: 10px;
    }

    .header_login a { padding-inline: 14px; }
    .prt-header-style-01 .header_btn .prt-btn { padding-inline: 17px; }
}

/* Tools is moved to <body> by the legacy script; mirror the same menu surface. */
@media (min-width: 1200px) {
    body > ul.tools-floating-submenu {
        width: 260px !important;
        min-width: 260px !important;
        padding: 9px !important;
        border: 1px solid rgba(147, 178, 244, .22) !important;
        border-top: 3px solid var(--sg-teal-500) !important;
        border-radius: 14px !important;
        background: linear-gradient(145deg, var(--sg-navy-800), var(--sg-navy-900)) !important;
        box-shadow: 0 20px 48px rgba(5, 9, 19, .34), inset 0 1px 0 rgba(255, 255, 255, .045) !important;
    }

    body > ul.tools-floating-submenu li + li { margin-top: 1px; }

    body > ul.tools-floating-submenu li a {
        min-height: 43px;
        display: flex;
        align-items: center;
        padding: 10px 12px !important;
        border-radius: 9px !important;
        color: rgba(255, 255, 255, .82) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        transition: color .16s ease, background-color .16s ease, padding-left .18s var(--sg-ease) !important;
    }

    body > ul.tools-floating-submenu li a:hover,
    body > ul.tools-floating-submenu li a:focus-visible,
    body > ul.tools-floating-submenu li.active > a {
        padding-left: 16px !important;
        color: #ffffff !important;
        background: rgba(20, 76, 198, .25) !important;
        box-shadow: none !important;
    }

    body > ul.tools-floating-submenu li a:focus-visible {
        outline: 2px solid var(--sg-gold-400) !important;
        outline-offset: -2px !important;
    }
}
/* Premium hero pagination: compact visuals with full-size accessible targets. */
.shrey-hero-controls {
    bottom: 24px;
    padding: 5px 9px;
    border: 1px solid rgba(171, 195, 247, .22);
    background: linear-gradient(180deg, rgba(12, 23, 50, .88), rgba(8, 16, 34, .78));
    box-shadow: 0 14px 34px rgba(4, 9, 19, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px) saturate(120%);
}

.shrey-hero-dots { gap: 2px; }

.shrey-hero-dots button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 999px;
    background: transparent;
    transition: background-color .2s ease;
}

.shrey-hero-dots button:hover { background: rgba(255, 255, 255, .055); }

.shrey-hero-dots button span {
    width: 7px;
    height: 7px;
    background: rgba(214, 226, 251, .5);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05);
    transition: width .24s ease, height .24s ease, background-color .2s ease, box-shadow .2s ease;
}

.shrey-hero-dots button:hover span { background: rgba(255, 255, 255, .82); }
.shrey-hero-dots button.is-active { background: transparent; }
.shrey-hero-dots button.is-active span {
    width: 28px;
    height: 6px;
    background: linear-gradient(90deg, #7CA1F2, #BDD0F8);
    box-shadow: 0 0 14px rgba(132, 167, 243, .28);
}

.shrey-hero-dots button:focus-visible {
    outline: 2px solid #d3a94d;
    outline-offset: -3px;
}

@media (max-width: 575px) {
    .shrey-hero-controls {
        bottom: 8px;
        padding: 3px 7px;
        border: 1px solid rgba(171, 195, 247, .2);
        background: rgba(8, 16, 34, .82);
        box-shadow: 0 10px 26px rgba(4, 9, 19, .24), inset 0 1px 0 rgba(255, 255, 255, .07);
        backdrop-filter: blur(12px);
    }
    .shrey-hero-dots { gap: 0; }
    .shrey-hero-dots button {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }
    .shrey-hero-dots button span { width: 7px; height: 7px; }
    .shrey-hero-dots button.is-active span { width: 26px; height: 6px; }
    .shrey-hero-dots button:focus-visible {
        outline: 2px solid #d3a94d;
        outline-offset: -3px;
    }
}

/* Keep every semantic heading and its highlighted text consistently legible. */
html body :is(h1, h2, h3, h4, h5, h6),
html body :is(h1, h2, h3, h4, h5, h6) :is(a, span, em, strong) {
    font-family: var(--sg-text) !important;
    font-style: normal !important;
}

/* Compact desktop navigation with click-controlled dropdowns. */
@media (min-width: 1200px) {
    .prt-header-style-01 .site-navigation > div:first-child {
        flex: 0 0 245px !important;
        height: 72px !important;
        margin: 7px 0 !important;
        padding: 0 46px 0 22px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 8px 22px rgba(7, 13, 28, .12) !important;
        clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%) !important;
    }

    .prt-header-style-01 .site-navigation > div:first-child::after {
        display: none !important;
    }

    .prt-header-style-01 .site-navigation #logo-img {
        width: 156px !important;
        max-height: 52px !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li {
        height: 86px !important;
        display: flex;
        align-items: center;
    }

    #site-header-menu nav.main-menu > ul.menu > li,
    #site-header-menu nav.main-menu > ul.menu > li.active {
        background: transparent !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a {
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 11px !important;
        border: 0 !important;
        border-radius: 7px !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        box-shadow: none !important;
        transform: none !important;
        transition: color .16s ease, background-color .16s ease !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li:hover > a,
    #site-header-menu nav.main-menu > ul.menu > li:focus-within > a {
        background: rgba(119, 158, 242, .09) !important;
        color: #ffffff !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a:focus-visible {
        outline: 1px solid var(--sg-teal-300) !important;
        outline-offset: -2px !important;
    }

    html body #site-header-menu nav.main-menu > ul.menu > li > a[aria-current] {
        background: transparent !important;
        color: #ffffff !important;
        box-shadow: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.is-menu-open > a {
        background: rgba(119, 158, 242, .16) !important;
        color: #ffffff !important;
        box-shadow: inset 0 0 0 1px rgba(119, 158, 242, .24) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a::before {
        content: none !important;
        display: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a[aria-current]::before {
        content: "" !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 50% !important;
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: var(--sg-teal-300) !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a[href="#"]::after {
        transform: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li:is(:hover, :focus-within, .is-menu-open) > a[href="#"]::after {
        transform: rotate(180deg) !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.mega-menu-item > ul.mega-submenu {
        top: calc(100% - 3px) !important;
        width: 240px !important;
        min-width: 240px !important;
        padding: 8px !important;
        border: 1px solid rgba(119, 158, 242, .24) !important;
        border-top: 2px solid var(--sg-teal-400) !important;
        border-radius: 0 0 12px 12px !important;
        background: var(--sg-navy-900) !important;
        box-shadow: 0 18px 38px rgba(5, 9, 19, .28) !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate(-50%, 6px) !important;
        transition: opacity .14s ease, transform .16s var(--sg-ease), visibility 0s linear .16s !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.mega-menu-item:not(.is-menu-open) > ul.mega-submenu {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li.mega-menu-item:is(:hover, :focus-within) > ul.mega-submenu,
    #site-header-menu nav.main-menu > ul.menu > li.mega-menu-item.is-menu-open > ul.mega-submenu {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
        transition-delay: .08s !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li {
        width: 100% !important;
        margin: 0 !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a {
        min-height: 40px !important;
        padding: 9px 11px !important;
        border-radius: 7px !important;
        color: rgba(255, 255, 255, .80) !important;
        background: transparent !important;
        transform: none !important;
    }

    #site-header-menu nav.main-menu ul.mega-submenu > li > a:hover,
    #site-header-menu nav.main-menu ul.mega-submenu > li > a:focus-visible,
    #site-header-menu nav.main-menu ul.mega-submenu > li.active > a {
        padding-left: 11px !important;
        color: #ffffff !important;
        background: rgba(119, 158, 242, .14) !important;
        transform: none !important;
    }
}

@media (max-width: 1199px) {
    .prt-header-style-01 .site-header-menu-inner > .container-fluid {
        padding-left: 0 !important;
    }

    .prt-header-style-01 .site-navigation > div:first-child {
        border: 0 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 6px 18px rgba(7, 13, 28, .10) !important;
        clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%) !important;
    }

    .prt-header-style-01 .site-navigation > div:first-child::after {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .prt-header-style-01 .site-navigation > div:first-child {
        flex-basis: 210px !important;
        padding: 0 38px 0 16px !important;
    }

    .prt-header-style-01 .site-navigation #logo-img {
        width: 145px !important;
    }

    #site-header-menu nav.main-menu {
        margin-left: 14px !important;
    }

    #site-header-menu nav.main-menu > ul.menu > li > a {
        padding-inline: 7px !important;
        font-size: 13px !important;
    }

    .prt-header-style-01 .header_extra {
        gap: 7px !important;
        padding-left: 8px !important;
    }

    .prt-header-style-01 .header_btn {
        display: none !important;
    }
}

/* Shared section tabs: destinations, visas, test preparation, and blog. */
.shrey-section-tabs {
    position: relative !important;
    z-index: 20 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--sg-line) !important;
    background: #ffffff !important;
}

.shrey-section-tabs__inner,
.shrey-section-tabs.blog-discovery .blog-discovery-inner {
    width: min(1180px, calc(100% - 48px)) !important;
    min-height: 62px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

.shrey-section-tabs__label,
.shrey-section-tabs.blog-discovery .blog-discovery-label {
    flex: 0 0 auto !important;
    color: #505F7E !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
}

.shrey-section-tabs__links,
.shrey-section-tabs.blog-discovery .ep-filter {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    overflow-x: auto !important;
    scrollbar-width: none;
}

.shrey-section-tabs__links a,
.shrey-section-tabs.blog-discovery .ep-filter button {
    flex: 0 0 auto !important;
    min-height: 62px !important;
    padding: 20px 15px 17px !important;
    border: 0 !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--sg-navy-800) !important;
    font-size: .84rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

.shrey-section-tabs__links a:hover,
.shrey-section-tabs.blog-discovery .ep-filter button:hover {
    color: var(--sg-teal-600) !important;
}

.shrey-section-tabs__links a.is-active,
.shrey-section-tabs.blog-discovery .ep-filter button.is-active {
    color: var(--sg-teal-700) !important;
    border-bottom-color: var(--sg-teal-600) !important;
}

@media (max-width: 767px) {
    .shrey-section-tabs__inner,
    .shrey-section-tabs.blog-discovery .blog-discovery-inner {
        width: 100% !important;
        min-height: 52px !important;
        padding-left: 10px !important;
    }

    .shrey-section-tabs__label,
    .shrey-section-tabs.blog-discovery .blog-discovery-label {
        display: none !important;
    }

    .shrey-section-tabs__links,
    .shrey-section-tabs.blog-discovery .ep-filter {
        justify-content: flex-start !important;
    }

    .shrey-section-tabs__links a,
    .shrey-section-tabs.blog-discovery .ep-filter button {
        min-height: 52px !important;
        padding: 17px 11px 14px !important;
        font-size: .76rem !important;
    }
}

/* Visa pages: shared premium rhythm and readable content. */
body.visa-detail-page .visa-detail-hero {
    padding-block: 28px 56px !important;
}

body.visa-detail-page .visa-detail-hero-grid,
body.visa-detail-page .student-process-shell,
body.visa-detail-page .partner-process-shell,
body.visa-detail-page .student-support-panel,
body.visa-detail-page .partner-support-panel,
body.visa-detail-page .student-trust-grid,
body.visa-detail-page .partner-trust-grid {
    border: 1px solid rgba(18, 36, 78, .12) !important;
    border-radius: 22px !important;
    box-shadow: var(--sg-shadow-2) !important;
    overflow: hidden !important;
}

body.visa-detail-page .visa-detail-hero h1 {
    font-size: clamp(46px, 4.5vw, 64px) !important;
    font-weight: 700 !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
}

body.visa-detail-page .visa-detail-hero h1 em {
    color: var(--sg-teal-600) !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

body.parent-visa-page .visa-detail-hero h1 em {
    color: var(--sg-gold-400) !important;
}

body.visa-detail-page .visa-detail-hero-copy > p {
    max-width: 620px !important;
    color: var(--sg-navy-600) !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

body.parent-visa-page .visa-detail-hero-copy > p {
    color: rgba(255, 255, 255, .84) !important;
}

body.visa-detail-page .visa-detail-actions a {
    min-height: 50px !important;
    padding-inline: 24px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
}

body.visa-detail-page .visa-primary-action {
    border-color: var(--sg-teal-700) !important;
    background: var(--sg-teal-700) !important;
    color: #ffffff !important;
}

body.visa-detail-page .visa-detail-facts span {
    font-size: 14px !important;
    line-height: 1.45 !important;
}

body.visa-detail-page .partner-process-section,
body.visa-detail-page #visa-process {
    padding-block: 48px 64px !important;
    background: linear-gradient(180deg, #fff 0%, var(--sg-teal-50) 100%) !important;
}

body.visa-detail-page .partner-process-title h2,
body.visa-detail-page .partner-support-intro h2,
body.visa-detail-page .partner-trust-heading h2,
body.visa-detail-page .student-process-heading h2,
body.visa-detail-page .student-support-intro h2,
body.visa-detail-page .student-trust-heading h2 {
    font-size: clamp(34px, 3.2vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
}

body.visa-detail-page .partner-process-summary p,
body.visa-detail-page .partner-roadmap-list p,
body.visa-detail-page .partner-support-intro p,
body.visa-detail-page .partner-support-list p,
body.visa-detail-page .partner-trust-heading > p,
body.visa-detail-page .partner-trust-points p,
body.visa-detail-page .student-process-heading p,
body.visa-detail-page .student-roadmap-list p,
body.visa-detail-page .student-support-intro p,
body.visa-detail-page .student-support-list p,
body.visa-detail-page .student-trust-heading > p,
body.visa-detail-page .student-trust-points p,
body.visa-detail-page .parent-country-card p,
body.visa-detail-page .parent-country-card li,
body.visa-detail-page .partner-enquiry-copy,
body.visa-detail-page .student-enquiry-copy {
    color: var(--sg-navy-600) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

body.parent-visa-page .parent-country-card--primary p,
body.parent-visa-page .parent-country-card--primary li {
    color: rgba(255, 255, 255, .88) !important;
}

body.parent-visa-page .parent-country-card--primary li {
    border-color: rgba(255, 255, 255, .16) !important;
}

body.parent-visa-page .parent-country-card--primary h3,
body.parent-visa-page .parent-country-card--primary a {
    color: #ffffff !important;
}

body.visa-detail-page .partner-roadmap-list h3,
body.visa-detail-page .partner-support-list h3,
body.visa-detail-page .partner-trust-points h3,
body.visa-detail-page .student-roadmap-list h3,
body.visa-detail-page .student-support-list h3,
body.visa-detail-page .student-trust-points h3 {
    color: var(--sg-navy-800) !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
}

body.visa-detail-page .partner-section-label,
body.visa-detail-page .student-section-label {
    color: var(--sg-teal-700) !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
}

body.visa-detail-page .partner-process-note,
body.visa-detail-page .visa-process-note,
body.visa-detail-page .visa-process-note p,
body.visa-detail-page .parent-country-note {
    color: var(--sg-navy-700) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}

body.visa-detail-page .contact-us-contact-form-section input,
body.visa-detail-page .contact-us-contact-form-section select,
body.visa-detail-page .contact-us-contact-form-section textarea {
    font-size: 16px !important;
}

@media (max-width: 767px) {
    body.visa-detail-page .visa-detail-hero {
        padding-block: 20px 40px !important;
    }

    body.visa-detail-page .visa-detail-hero-grid,
    body.visa-detail-page .student-process-shell,
    body.visa-detail-page .partner-process-shell,
    body.visa-detail-page .student-support-panel,
    body.visa-detail-page .partner-support-panel,
    body.visa-detail-page .student-trust-grid,
    body.visa-detail-page .partner-trust-grid {
        border-radius: 16px !important;
    }

    body.visa-detail-page .visa-detail-hero h1 {
        font-size: clamp(38px, 11vw, 48px) !important;
    }

    body.visa-detail-page .visa-detail-hero-copy > p,
    body.visa-detail-page .partner-process-summary p,
    body.visa-detail-page .partner-roadmap-list p,
    body.visa-detail-page .partner-support-intro p,
    body.visa-detail-page .partner-support-list p,
    body.visa-detail-page .partner-trust-heading > p,
    body.visa-detail-page .partner-trust-points p,
    body.visa-detail-page .student-process-heading p,
    body.visa-detail-page .student-roadmap-list p,
    body.visa-detail-page .student-support-intro p,
    body.visa-detail-page .student-support-list p,
    body.visa-detail-page .student-trust-heading > p,
    body.visa-detail-page .student-trust-points p {
        font-size: 15px !important;
    }

    body.visa-detail-page .partner-process-section,
    body.visa-detail-page #visa-process {
        padding-block: 36px 48px !important;
    }
}

/* Country menu: keep every destination readable in a compact desktop panel. */
@media (min-width: 1200px) {
    #site-header-menu nav.main-menu > ul.menu > li:nth-child(5) > ul.mega-submenu {
        width: 396px !important;
        min-width: 396px !important;
        padding: 10px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 4px !important;
    }

}

/* ------------------------------------------------------------------
 * Mobile navigation, 2026-09-10.
 *
 * It was eight near-identical dark slabs floating over undimmed live
 * content, with a flat "+" that never changed when a section opened.
 * One surface, hairline dividers, a chevron that turns, and a single
 * primary action at the end.
 * ------------------------------------------------------------------ */
@media (max-width: 1024px) {

    /*
     * Keyed off the .show class the theme already toggles on the nav, so
     * this needs no JavaScript. It has to live inside .page: the header is
     * z-index 10080 but sits inside .page at z-index 10, so a scrim on
     * <body> would paint over the whole .page subtree - header and open
     * menu included.
     */
    .page:has(nav.main-menu.menu-mobile.show)::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(7, 14, 29, .58);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    #site-header-menu nav.main-menu.menu-mobile {
        z-index: 99 !important;
        padding: 8px !important;
        border: 1px solid rgba(255, 255, 255, .09) !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, #12244E, #0A142B) !important;
        box-shadow: 0 26px 60px rgba(7, 14, 29, .5) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch;
    }

    /* One surface with hairlines, rather than eight stacked cards. */
    #site-header-menu nav.main-menu.menu-mobile > ul > li {
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: none !important;
    }
    #site-header-menu nav.main-menu.menu-mobile > ul > li + li {
        border-top: 1px solid rgba(255, 255, 255, .07) !important;
    }
    #site-header-menu nav.main-menu.menu-mobile > ul > li > a {
        display: flex !important;
        align-items: center !important;
        min-height: 52px !important;
        padding: 0 14px !important;
        border: 0 !important;
        border-radius: 10px !important;
        background: none !important;
        color: #EAEFF8 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    #site-header-menu nav.main-menu.menu-mobile > ul > li > a:active {
        background: rgba(255, 255, 255, .06) !important;
    }

    /* Current page: one teal rule, not a filled slab. */
    #site-header-menu nav.main-menu.menu-mobile > ul > li.current-menu-item > a,
    #site-header-menu nav.main-menu.menu-mobile > ul > li.active > a {
        background: rgba(255, 255, 255, .06) !important;
        box-shadow: inset 3px 0 0 #2E69EA !important;
        color: #fff !important;
    }

    /*
     * A chevron that turns when the section opens, keyed off the
     * aria-expanded the markup already sets. The theme sized this
     * pseudo-element 25x9 with borders on all four sides, which drew a
     * slash - hence the explicit box and the two cleared borders.
     */
    #site-header-menu nav.main-menu.menu-mobile > ul > li.has-mobile-submenu > a::after {
        content: "" !important;
        display: block !important;
        box-sizing: border-box !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        width: 9px !important;
        min-width: 9px !important;
        max-width: 9px !important;
        height: 9px !important;
        min-height: 9px !important;
        border-top: 0 !important;
        border-left: 0 !important;
        border-right: 2px solid rgba(234, 239, 248, .72) !important;
        border-bottom: 2px solid rgba(234, 239, 248, .72) !important;
        border-radius: 1px !important;
        background: none !important;
        transform: rotate(45deg) translateY(-2px) !important;
        transition: transform .22s cubic-bezier(.2, .7, .3, 1) !important;
    }
    #site-header-menu nav.main-menu.menu-mobile > ul > li.has-mobile-submenu > a[aria-expanded="true"]::after {
        transform: rotate(225deg) translateY(-2px) !important;
    }

    /* A submenu should read as nested, not as more top-level rows. */
    #site-header-menu nav.main-menu.menu-mobile .mega-submenu {
        margin: 0 0 6px !important;
        padding: 2px 0 !important;
        border-radius: 10px !important;
        background: rgba(7, 14, 29, .35) !important;
    }
    #site-header-menu nav.main-menu.menu-mobile .mega-submenu a {
        display: flex !important;
        align-items: center !important;
        min-height: 44px !important;
        padding: 0 14px 0 26px !important;
        color: #C0C7D6 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    /* The one primary action. */
    #site-header-menu nav.main-menu.menu-mobile > ul > li:last-child {
        margin-top: 6px !important;
        border-top: 0 !important;
    }
    #site-header-menu nav.main-menu.menu-mobile > ul > li:last-child > a {
        justify-content: center !important;
        min-height: 50px !important;
        border-radius: 12px !important;
        background: linear-gradient(120deg, #103FA3, #134BC3) !important;
        color: #fff !important;
        font-weight: 700 !important;
        box-shadow: 0 8px 20px rgba(14, 54, 141, .32) !important;
    }

    @media (prefers-reduced-motion: reduce) {
        #site-header-menu nav.main-menu.menu-mobile > ul > li.has-mobile-submenu > a::after {
            transition: none !important;
        }
    }
}

/* ------------------------------------------------------------------
 * Country pages, 2026-09-10.
 *
 * Ten pages in two markup variants - sg-country-page (Canada, Denmark,
 * England, France, Italy, New Zealand, United States) and
 * country-guide-page (Australia, Cyprus, Malta) - but both share the
 * country switcher, the section quicknav and the facts panel, so these
 * rules cover all ten.
 *
 * The layout itself measured sound at 768 and 1280. The problem was
 * only on phones, and it was hidden content rather than ugly content.
 * ------------------------------------------------------------------ */

@media (max-width: 900px) {
    /*
     * Both nav strips were nowrap inside a scrolling container, so on a
     * 390px screen two of six countries (Cyprus, Malta) and three of six
     * sections sat past the right edge with nothing to indicate they
     * existed. Wrapping shows every destination at once - no horizontal
     * gesture, no hidden items.
     *
     * The inner div needs an explicit width: its parent scrolls, so it
     * was sizing to its content (686px) rather than to the viewport, and
     * flex-wrap alone had nothing to wrap against.
     */
    .sg-country-nav-links,
    .sg-country-quicknav { overflow-x: visible !important; }

    .sg-country-nav-links,
    .sg-country-quicknav > div {
        box-sizing: border-box !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 6px 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .sg-country-nav-links > a,
    .sg-country-quicknav a {
        flex: 0 0 auto !important;
        display: inline-flex !important;
        align-items: center !important;
        min-height: 36px !important;
    }
}

/* At-a-glance labels (Capital, Language, Currency…) were 11px. */
.sg-country-fact span { font-size: 11.5px !important; }

/* ------------------------------------------------------------------
 * Site chrome, fixed here because it fails on every page, not just
 * these ten: the top-bar contact links and the footer address links
 * were 17-20px tall, under the 24x24 minimum.
 * ------------------------------------------------------------------ */
.top_bar_contact_item a,
address p a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
}

/* Social links in the footer sat at 11px. */
[class*="prt-social-"] a { font-size: 11.5px !important; }

/*
 * Bottom tab-bar labels were 9px. 11px is the deliberate floor for an
 * icon-plus-label tab bar - the same value the CRM's bar uses - rather
 * than the 11.5px body minimum.
 */
.shrey-mobile-nav :is(a, button) span { font-size: 11px !important; }

/* ------------------------------------------------------------------
 * Visa pages, 2026-09-10.
 *
 * Four pages, all carrying .visa-detail-page: student, partner
 * (spouse), parent and visitor. Layout measured sound at 390, 768 and
 * 1280 - the faults were legibility, and they were the same faults the
 * CRM and portal had: teal-500 on white, and 9-11px labels.
 * ------------------------------------------------------------------ */

/*
 * Site-wide, not visa-only: the breadcrumb's current-page span is
 * #1552D6 on white - 4.16:1. Written to match the theme's own
 * `.prt-titlebar-wrapper .breadcrumb-wrapper span:last-child`, because
 * that rule carries !important and a shorter selector loses to it.
 */
.prt-titlebar-wrapper .breadcrumb-wrapper span:last-child { color: #0E368D !important; }
.prt-titlebar-wrapper .breadcrumb-wrapper a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
}

/* Section kicker was teal-500 at 10px - 3.55:1 and under the size floor. */
.visa-detail-page .service-desc strong {
    color: #0E368D !important;
    font-size: 11.5px !important;
}
.visa-detail-page .visa-process-note strong { font-size: 11.5px !important; }

/*
 * The office-location card is .student-map-card on the student page and
 * .partner-map-card on the other three. Scoped to .g-map, the wrapper
 * they share, so a fifth visa page inherits the fix rather than
 * repeating the 9px address.
 */
.visa-detail-page .g-map span { font-size: 11.5px !important; }
.visa-detail-page .g-map strong { font-size: 12px !important; }
.visa-detail-page .g-map a { font-size: 12.5px !important; }

/* ------------------------------------------------------------------
 * Hall of Fame, 2026-09-10 (was "Gallery").
 *
 * The page opened straight into a three-card grid on a cream ground,
 * with no statement of what the wall actually is and the destination
 * and institution compressed into one 10px line. It is a proof page -
 * granted visas - so it now leads with that claim, and each card
 * carries the destination as a flagged chip above the institution.
 * ------------------------------------------------------------------ */

.visa-success-gallery .hof-hero {
    padding: clamp(44px, 7vw, 84px) 0 clamp(30px, 4vw, 46px);
    background:
        radial-gradient(120% 140% at 12% 0%, rgba(16, 63, 163, .30), transparent 58%),
        linear-gradient(160deg, #12244E 0%, #0A142B 100%);
    color: #fff;
}
.visa-success-gallery .hof-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #BED1F9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.visa-success-gallery .hof-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 5.2vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.02em;
}
.visa-success-gallery .hof-lede {
    max-width: 60ch;
    margin: 0;
    color: #DAE2F2;
    font-size: clamp(14px, 1.5vw, 16.5px);
    line-height: 1.6;
}

/* Proof, stated as numbers rather than implied by the card count. */
.visa-success-gallery .hof-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin: clamp(24px, 3.5vw, 38px) 0 0;
    padding: clamp(18px, 2.4vw, 24px) 0 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.visa-success-gallery .hof-stats > div { margin: 0; }
.visa-success-gallery .hof-stats dt {
    margin: 0 0 2px;
    color: #BED1F9;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.visa-success-gallery .hof-stats dd {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.visa-success-gallery .visa-gallery-wall { padding-top: clamp(34px, 5vw, 58px); }
.visa-success-gallery .visa-gallery-heading { margin-bottom: clamp(20px, 3vw, 30px); }
.visa-success-gallery .visa-gallery-heading h2 {
    margin: 0 0 6px;
    color: #0E1C3C;
    font-size: clamp(21px, 2.6vw, 27px);
    font-weight: 700;
    letter-spacing: -.01em;
}
.visa-success-gallery .hof-wall-note {
    margin: 0;
    color: #505F7E;
    font-size: 13px;
}

/*
 * One card width across every breakpoint, so three approvals and thirty
 * both look deliberate: auto-fill rather than auto-fit means a short
 * wall keeps its card size instead of stretching to fill the row.
 */
.visa-success-gallery .visa-frame-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)) !important;
    gap: clamp(18px, 2.4vw, 26px) !important;
}
.visa-success-gallery .visa-frame {
    margin: 0 !important;
    /* editorial-pages.css puts a 4.8px gold box round the whole card; the
       gold reads better as a single rule under the photo. */
    border: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(14, 28, 60, .06), 0 14px 34px rgba(14, 28, 60, .08);
    transition: transform .22s cubic-bezier(.2, .7, .3, 1), box-shadow .22s cubic-bezier(.2, .7, .3, 1);
}
@media (hover: hover) {
    .visa-success-gallery .visa-frame:hover {
        transform: translateY(-3px);
        box-shadow: 0 1px 2px rgba(14, 28, 60, .06), 0 20px 44px rgba(14, 28, 60, .14);
    }
}

/*
 * Portrait snapshots arrive at whatever aspect the student sent. A fixed
 * 4:5 box with object-fit keeps the wall even without re-cropping any
 * of them by hand.
 */
.visa-success-gallery .visa-frame-mat {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
    background: #F1F4FA;
}
.visa-success-gallery .visa-frame-mat img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
}

.visa-success-gallery .visa-frame figcaption {
    padding: 14px 16px 16px !important;
    border-top: 2px solid #B28D47;
    text-align: left !important;
}
.visa-success-gallery .visa-frame figcaption strong {
    display: block;
    margin: 0 0 8px;
    color: #0E1C3C;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.visa-success-gallery .hof-dest {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 7px;
    padding: 4px 10px;
    border: 1px solid #F1F5FE;
    border-radius: 999px;
    background: #E9EFFD;
    color: #0E3790;
    font-size: 12.5px;
    font-weight: 600;
}
.visa-success-gallery .hof-dest img {
    display: block;
    width: 18px;
    height: auto;
    border-radius: 2px;
}
/* Was 10px, and it carries the institution - the detail people read for. */
.visa-success-gallery .visa-student-meta {
    margin: 0 !important;
    color: #505F7E !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
}

@media (prefers-reduced-motion: reduce) {
    .visa-success-gallery .visa-frame { transition: none; }
    .visa-success-gallery .visa-frame:hover { transform: none; }
}

/* ------------------------------------------------------------------
 * About / Services / Our team / Message from director / FAQ.
 *
 * These five are the last pages still on the purchased theme's markup
 * (prt-row, about01-*, home02-*), and they shared one fault: every
 * kicker, role line and step label sat at 9-11px in teal-500 or
 * #7D8DAC - 3.14 to 3.30:1. The layouts themselves measured sound.
 * ------------------------------------------------------------------ */

/* Kickers and step labels: 9-11px, teal-500 on white is 3.30:1. */
.editorial-label,
.service-page-eyebrow,
.team-eyebrow,
.faq-eyebrow,
.title-header h3,
.faq-content-heading span,
.faq-help-card span,
.director-contact-heading span,
.service-journey-steps span,
.principle-row span,
.principles-intro .editorial-label {
    color: #0E368D !important;
    font-size: 11.5px !important;
}

/* Accent words set inside headings carried the same teal-500. */
.principles-intro h2 em,
.title-header .title span,
.section-title .title span { color: #0E368D !important; }

/* Role and contact lines: #7D8DAC is 3.14:1. */
.team-position,
.prt-team-member-single-position,
.director-contact-item span {
    color: #505F7E !important;
    font-size: 12.5px !important;
}
/*
 * The team card's own sheet reaches it with three classes and
 * !important, so this has to match that weight to win.
 */
.team-page .featured-imagebox-team .featured-title .team-position,
.about01-team-section .featured-imagebox-team .featured-title .team-position {
    color: #505F7E !important;
    font-size: 12.5px !important;
}

/* Testimonial attribution line was 11px. */
.testimonial-caption label { font-size: 12px !important; }

/* A 17px-tall contact link in the director panel. */
.director-contact-item a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
}

/* ------------------------------------------------------------------
 * Our team, rebuilt 2026-09-10.
 *
 * Was ten identical full-size cards in one flat grid - 5,232px, or
 * fourteen phone screens, with no indication of who does what. Now:
 * leadership as full cards, everyone else as a compact list grouped by
 * the work they handle, so a visitor can find the right person rather
 * than scroll past all ten.
 * ------------------------------------------------------------------ */

.sg-people-shell {
    box-sizing: border-box;
    width: min(1160px, 100% - 40px);
    margin-inline: auto;
}

.sg-people-hero {
    padding: clamp(40px, 6vw, 76px) 0 clamp(30px, 4vw, 44px);
    background:
        radial-gradient(120% 140% at 10% 0%, rgba(16, 63, 163, .28), transparent 58%),
        linear-gradient(160deg, #12244E 0%, #0A142B 100%);
    color: #fff;
}
.sg-people-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #BED1F9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.sg-people-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 4.8vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.sg-people-lede {
    max-width: 62ch;
    margin: 0;
    color: #DAE2F2;
    font-size: clamp(14px, 1.5vw, 16.5px);
    line-height: 1.6;
}

.sg-people-section { padding: clamp(34px, 5vw, 62px) 0; }
.sg-people-section--soft { background: #F2F5FB; }
.sg-people-head { margin-bottom: clamp(18px, 2.6vw, 28px); }
.sg-people-head h2 {
    margin: 0 0 6px;
    color: #0E1C3C;
    font-size: clamp(21px, 2.6vw, 28px);
    font-weight: 700;
    letter-spacing: -.01em;
}
.sg-people-head p { margin: 0; color: #505F7E; font-size: 13.5px; }

/* Leadership: three full cards. */
.sg-lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2.2vw, 24px);
}
.sg-lead-card {
    overflow: hidden;
    border: 1px solid #DDE1EA;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(14, 28, 60, .05), 0 12px 30px rgba(14, 28, 60, .07);
}
.sg-lead-photo { aspect-ratio: 1 / 1; overflow: hidden; background: #F1F4FA; }
.sg-lead-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.sg-lead-body { padding: 14px 16px 16px; border-top: 2px solid #B28D47; }
.sg-lead-body h3 {
    margin: 0 0 3px;
    color: #0E1C3C;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.sg-lead-role { margin: 0 0 8px; color: #0E368D; font-size: 12.5px; font-weight: 600; }
.sg-lead-mail {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: #505F7E;
    font-size: 12.5px;
    overflow-wrap: anywhere;
}

/* Everyone else: grouped, compact, still with a photo and a contact. */
.sg-team-group + .sg-team-group { margin-top: clamp(20px, 3vw, 30px); }
.sg-team-group-title {
    margin: 0 0 10px;
    color: #505F7E;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.sg-team-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sg-team-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid #DDE1EA;
    border-radius: 12px;
    background: #fff;
}
.sg-team-list li img {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: #F1F4FA;
}
.sg-team-list li > div { flex: 1 1 auto; min-width: 0; }
.sg-team-list li strong {
    display: block;
    color: #0E1C3C;
    font-size: 14px;
    font-weight: 600;
}
.sg-team-list li span { display: block; color: #505F7E; font-size: 12.5px; }
.sg-team-list li > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #DDE1EA;
    border-radius: 999px;
    color: #0E368D;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}

/* ------------------------------------------------------------------
 * Site footer, 2026-09-11.
 *
 * A short brand block, then five link columns: Destinations, Services,
 * Free tools, Company, Resources. Every column points at a page that
 * exists; the tool pages and the careers page had no footer link at all.
 *
 * No address block: phone and email are already in the top bar on every
 * page, and Contact us is one click away in the Company column.
 * ------------------------------------------------------------------ */

.shrey-editorial-footer .shrey-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(5, minmax(0, 1fr));
    gap: 34px 28px;
    align-items: start;
}
/* The old sheet gave footer columns 34px side padding and dividers, and
   on phones 26px vertical padding plus a bottom rule. The grid gap does
   all the spacing now. */
.shrey-editorial-footer .shrey-footer-grid > * {
    padding: 0 !important;
    border: 0 !important;
}
.shrey-editorial-footer .shrey-footer-destinations li a img { margin: 0 !important; }

.shrey-footer-brand { max-width: 34ch; }
.shrey-footer-brand-title {
    margin: 0 0 14px;
    padding: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.2;
}
.shrey-footer-pitch {
    margin: 0 0 22px;
    color: #BACAEF;
    font-size: 14.5px;
    line-height: 1.6;
}

/*
 * Column headings: sentence case at a readable size, no rule. The theme
 * adds a teal accent bar under every footer h2 via ::after; with the
 * headings carrying their own weight it only added noise.
 */
.shrey-editorial-footer .shrey-footer-column h2 {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
/* The theme's footer h2 rule sets 13px, tracked caps; it outranks the above. */
.shrey-editorial-footer .shrey-footer-column h2,
.shrey-editorial-footer .shrey-footer-brand-title {
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.shrey-editorial-footer .shrey-footer-column h2 { font-size: 15.5px !important; }
.shrey-editorial-footer .shrey-footer-brand-title { font-size: 21px !important; }
.shrey-editorial-footer .shrey-footer-column h2::after,
.shrey-footer-brand-title::after { display: none !important; content: none !important; }

.shrey-editorial-footer .shrey-footer-column ul {
    display: grid;
    grid-template-columns: 1fr !important;
    column-count: auto !important;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.shrey-editorial-footer .shrey-footer-column li { margin: 0; }
.shrey-editorial-footer .shrey-footer-column li a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    padding: 2px 0;
    color: #A6BAEA;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color .18s ease;
}
.shrey-editorial-footer .shrey-footer-column li a:hover { color: #fff; }
.shrey-editorial-footer .shrey-footer-destinations li a img {
    flex: 0 0 18px;
    width: 18px;
    height: auto;
    border-radius: 2px;
}

.shrey-footer-social { display: flex; gap: 10px; }
.shrey-footer-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-size: 16px;
    transition: background .18s ease;
}
.shrey-footer-social a:hover { background: rgba(16, 63, 163, .55); }

.shrey-footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    justify-content: space-between;
    align-items: center;
}
.shrey-footer-bottom span { color: #95A2BC; font-size: 12.5px; }

/* Brand block takes its own row, five columns stay on one line. */
@media (max-width: 1180px) {
    .shrey-editorial-footer .shrey-footer-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .shrey-editorial-footer .shrey-footer-brand { grid-column: 1 / -1; max-width: 52ch; }
}
@media (max-width: 900px) {
    .shrey-editorial-footer .shrey-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .shrey-editorial-footer .shrey-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shrey-editorial-footer .shrey-footer-column li a,
    .shrey-footer-social a { transition: none; }
}

/* ------------------------------------------------------------------
 * Palette, 2026-09-11: navy + blue.
 *
 * Every teal in the theme was remapped to one blue family and the cool
 * greys and navies retuned to match (script: recolor.py, same mapping
 * as the preview switcher). Vendor sheets were left alone.
 *
 * The short decorative rules drawn beside section labels and under
 * headings are removed site-wide; they were the "line in the heading".
 * ------------------------------------------------------------------ */
.ct-kicker::before,
.faq-eyebrow::before,
.faq-content-heading > span::before,
.shrey-destination-kicker::before,
.shrey-section-kicker::before,
.shrey-stories-head > p::before,
.ep-eyebrow::before,
.service-page-eyebrow::before,
.editorial-label::before,
.featured-title::before,
.partner-section-label::before,
.student-section-label::before,
.prt-team-member-single-position::before,
.sc-kicker::before,
.team-eyebrow::before,
.visa-detail-eyebrow::before,
.title-header h3::before,
.shrey-editorial-footer h2::after {
    display: none !important;
    content: none !important;
}

/* ------------------------------------------------------------------
 * About us, redesigned 2026-09-15.
 *
 * CSS only: the page body comes from the WordPress editor, so the
 * existing markup is kept. Same visual language as the rebuilt team,
 * director and FAQ pages: a navy story hero, number-chip principle
 * cards, team portraits with the name on a navy fade, an icon stats
 * band and quiet testimonial cards. The rules before the kickers are
 * gone, and the hero kicker - which the site-wide kicker colour left
 * at 1.3:1 on navy - is readable again.
 * ------------------------------------------------------------------ */
body.about-page .about01-about-section > .container,
body.about-page .about01-why-us-section > .container,
body.about-page .about01-team-section > .container,
body.about-page .about01-testimonial-section > .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

/* Kickers and accent words */
body.about-page .editorial-label::before,
body.about-page .editorial-label::after,
body.about-page .title-header h3::before,
body.about-page .title-header h3::after { display: none !important; content: none !important; }
body.about-page .editorial-label,
body.about-page .title-header h3 {
    display: inline-flex !important;
    align-items: center;
    margin: 0 0 14px !important;
    color: #134BC3 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
body.about-page .title-header .title span,
body.about-page .principles-intro h2 em { color: #134BC3 !important; font-style: normal !important; }

/* Story hero */
body.about-page .about01-about-section {
    padding: clamp(28px, 4vw, 56px) 0 clamp(48px, 6vw, 80px) !important;
    background: linear-gradient(180deg, #F2F5FB, #fff) !important;
}
body.about-page .about-story-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) !important;
    min-height: 540px;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .45), transparent 55%),
        linear-gradient(150deg, #12244E, #0A142B) !important;
    box-shadow: 0 30px 70px -30px rgba(10, 20, 43, .55) !important;
}
body.about-page .about-story-copy {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: auto !important;
    padding: clamp(36px, 5vw, 64px) !important;
    background: none !important;
}
body.about-page .about-story-copy .editorial-label {
    align-self: flex-start;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #C9D8FB !important;
}
body.about-page .about-story-copy h1 {
    margin: 0 0 20px !important;
    color: #fff !important;
    font-size: clamp(36px, 4.3vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.04 !important;
    letter-spacing: -.025em !important;
}
body.about-page .about-story-copy h1 em { color: #8FB0F7 !important; font-style: normal !important; }
body.about-page .about-story-copy > p {
    max-width: 46ch !important;
    margin: 0 0 14px !important;
    color: #D5DDEC !important;
    font-size: 16.5px !important;
    line-height: 1.7 !important;
}
body.about-page .story-actions { gap: 14px 24px !important; margin-top: 18px !important; }
body.about-page .story-primary-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    min-height: 50px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #12244E !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
body.about-page .story-primary-link::after { content: "→"; transition: transform .2s ease; }
body.about-page .story-primary-link:hover { background: #E9EFFD !important; color: #12244E !important; }
body.about-page .story-primary-link:hover::after { transform: translateX(3px); }
body.about-page .story-secondary-link {
    padding: 4px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .4) !important;
    color: #fff !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
body.about-page .story-secondary-link:hover { border-color: #8FB0F7 !important; color: #8FB0F7 !important; }
body.about-page .about-story-photo {
    position: relative !important;
    height: auto !important;
    min-height: 100% !important;
    margin: 0 !important;
}
body.about-page .about-story-photo img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: 50% 40% !important;
}

/* How we work: sticky intro beside number-chip cards */
body.about-page .about01-why-us-section { padding: clamp(56px, 7vw, 96px) 0 !important; background: #fff !important; }
body.about-page .principles-shell {
    display: grid !important;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) !important;
    gap: clamp(32px, 5vw, 72px) !important;
    align-items: start !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
body.about-page .principles-intro { position: sticky; top: 118px; padding: 0 !important; background: none !important; }
body.about-page .principles-intro h2 {
    max-width: 14ch !important;
    margin: 0 0 16px !important;
    color: #0E1C3C !important;
    font-size: clamp(32px, 3.6vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
}
body.about-page .principles-intro > p { max-width: 40ch !important; margin: 0 !important; color: #44516B !important; font-size: 17px !important; line-height: 1.7 !important; }
body.about-page .principles-list { display: grid !important; gap: 14px !important; padding: 0 !important; background: none !important; }
body.about-page .principle-row,
body.about-page .principle-row:last-child {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: start !important;
    padding: 24px 26px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 18px !important;
    background: #fff !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.about-page .principle-row:hover { border-color: #C9D6F6 !important; box-shadow: 0 16px 36px rgba(14, 28, 60, .08); transform: translateY(-2px); }
body.about-page .principle-row > span {
    display: grid !important;
    place-items: center !important;
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(150deg, #12244E, #134BC3) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}
body.about-page .principle-row h3 { margin: 2px 0 6px !important; color: #0E1C3C !important; font-size: 19px !important; font-weight: 800 !important; line-height: 1.3 !important; }
body.about-page .principle-row p { max-width: 56ch !important; margin: 0 !important; color: #44516B !important; font-size: 16px !important; line-height: 1.65 !important; }

/* Team */
body.about-page .about01-team-section { padding: clamp(56px, 7vw, 96px) 0 !important; background: #F2F5FB !important; }
body.about-page .about01-team-section .section-title h2,
body.about-page .about01-testimonial-section .section-title h2 {
    color: #0E1C3C !important;
    font-size: clamp(30px, 3.6vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -.02em !important;
}
body.about-page .about01-team-section .team-all-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    border: 1px solid #C9D6F6 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #12244E !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
body.about-page .about01-team-section .team-all-link:hover { border-color: #134BC3 !important; background: #134BC3 !important; color: #fff !important; }
body.about-page .about01-team-section .team-all-link span { color: inherit !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 {
    position: relative !important;
    isolation: isolate;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 20px !important;
    background: #12244E !important;
    box-shadow: 0 14px 34px -16px rgba(14, 28, 60, .4) !important;
    transition: transform .35s ease, box-shadow .35s ease;
}
body.about-page .about01-team-section .featured-imagebox-team.style1:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -20px rgba(14, 28, 60, .5) !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-imagebox-inner { position: relative !important; margin: 0 !important; padding: 0 !important; border: 0 !important; background: none !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-imagebox-inner::after {
    display: block !important;
    position: absolute !important;
    inset: 45% 0 0 0 !important;
    z-index: 1 !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(180deg, rgba(10, 20, 43, 0), rgba(10, 20, 43, .6) 48%, rgba(10, 20, 43, .94)) !important;
    pointer-events: none;
    content: "" !important;
}
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-thumbnail { height: auto !important; min-height: 0 !important; max-height: none !important; margin: 0 !important; overflow: hidden !important; border-radius: 0 !important; background: #E9EFFD !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
    transition: transform .6s ease;
}
body.about-page .about01-team-section .featured-imagebox-team.style1:hover .featured-thumbnail img { transform: scale(1.05) !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-content {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 2 !important;
    margin: 0 !important;
    padding: 20px 20px 22px !important;
    border: 0 !important;
    background: none !important;
    text-align: left !important;
}
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-title h3 { margin: 0 0 6px !important; line-height: 1.25 !important; }
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-title h3 a,
body.about-page .about01-team-section .featured-imagebox-team.style1:hover .featured-title h3 a {
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
body.about-page .about01-team-section .featured-imagebox-team.style1 .featured-title .team-position,
body.about-page .about01-team-section .featured-imagebox-team.style1:hover .featured-title .team-position {
    color: #C9D8FB !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}
body.about-page .about01-team-section .prt-media-link { display: none !important; }

/* Stats band */
body.about-page .home01-fid-section {
    padding: clamp(40px, 5vw, 64px) 24px !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(19, 75, 195, .35), transparent 50%),
        linear-gradient(150deg, #12244E, #0A142B) !important;
}
body.about-page .home01-fid-section .container-fliud { max-width: 1180px !important; margin-inline: auto !important; padding: 0 !important; }
body.about-page .home01-fid-section .spacing-13 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 0 !important;
}
body.about-page .home01-fid-section .spacing-13 > div {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
body.about-page .home01-fid-section .spacing-13 > div::before,
body.about-page .home01-fid-section .spacing-13 > div::after,
body.about-page .home01-fid-section .prt-fid.style2::before,
body.about-page .home01-fid-section .prt-fid.style2::after { display: none !important; }
body.about-page .home01-fid-section .prt-fid.style2,
body.about-page .home01-fid-section .row > div:last-child .prt-fid.style2 {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    align-items: center !important;
    height: 100%;
    margin: 0 !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .05) !important;
    text-align: left !important;
}
body.about-page .home01-fid-section .prt-fid-icon-wrapper {
    display: grid !important;
    grid-row: 1 / span 2;
    place-items: center;
    width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: rgba(143, 176, 247, .14) !important;
    color: #8FB0F7 !important;
    font-size: 22px !important;
}
body.about-page .home01-fid-section .prt-fid-icon-wrapper i { color: inherit !important; font-size: inherit !important; }
body.about-page .home01-fid-section .prt-fid-contents { align-self: end; margin: 0 !important; padding: 0 !important; }
body.about-page .home01-fid-section .prt-fid-inner { margin: 0 !important; color: #fff !important; font-size: clamp(30px, 3vw, 38px) !important; font-weight: 800 !important; line-height: 1 !important; }
body.about-page .home01-fid-section .fid-prefix { color: #8FB0F7 !important; }
body.about-page .home01-fid-section .prt-fid-title {
    align-self: start;
    margin: 6px 0 0 !important;
    color: #C9D3E6 !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Testimonials */
body.about-page .about01-testimonial-section { padding: clamp(56px, 7vw, 96px) 0 !important; background: #fff !important; }
body.about-page .about01-testimonial-section .testimonials.style2 {
    height: 100%;
    padding: 30px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 20px !important;
    background: #F7F9FD !important;
    box-shadow: none !important;
}
body.about-page .about01-testimonial-section .testimonial-text { color: #2A3957 !important; font-size: 17px !important; font-style: normal !important; line-height: 1.7 !important; }
body.about-page .about01-testimonial-section .testimonial-img img { border: 3px solid #fff !important; border-radius: 50% !important; box-shadow: 0 0 0 2px #C9D6F6 !important; }
body.about-page .about01-testimonial-section .testimonial-caption h3 { color: #0E1C3C !important; font-size: 17px !important; font-weight: 800 !important; }
body.about-page .about01-testimonial-section .slick-arrow {
    width: 46px !important;
    height: 46px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #12244E !important;
}
body.about-page .about01-testimonial-section .slick-arrow:hover { border-color: #12244E !important; background: #12244E !important; color: #fff !important; }

@media (max-width: 980px) {
    body.about-page .about-story-shell { grid-template-columns: 1fr !important; min-height: 0; }
    body.about-page .about-story-photo { min-height: 340px !important; }
    body.about-page .principles-shell { grid-template-columns: 1fr !important; }
    body.about-page .principles-intro { position: static; }
    body.about-page .principles-intro h2 { max-width: 20ch !important; }
    body.about-page .home01-fid-section .spacing-13 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
    body.about-page .about01-about-section > .container,
    body.about-page .about01-why-us-section > .container,
    body.about-page .about01-team-section > .container,
    body.about-page .about01-testimonial-section > .container { width: calc(100% - 32px) !important; }
    body.about-page .about-story-shell { border-radius: 22px !important; }
    body.about-page .about-story-copy { padding: 30px 22px !important; }
    body.about-page .about-story-copy h1 { font-size: 34px !important; }
    body.about-page .about-story-copy > p { font-size: 16px !important; }
    body.about-page .story-actions { flex-direction: column; align-items: stretch !important; }
    body.about-page .story-primary-link { justify-content: center; }
    body.about-page .story-secondary-link { align-self: center; }
    body.about-page .about-story-photo { min-height: 280px !important; }
    body.about-page .principle-row,
    body.about-page .principle-row:last-child { grid-template-columns: 44px minmax(0, 1fr) !important; gap: 14px !important; padding: 20px 18px !important; }
    body.about-page .principle-row > span { width: 44px !important; height: 44px !important; border-radius: 12px !important; font-size: 14px !important; }
    body.about-page .principle-row h3 { font-size: 17.5px !important; }
    body.about-page .principle-row p { font-size: 15.5px !important; }
    body.about-page .about01-team-section .featured-imagebox-team.style1 { max-width: 320px; margin-inline: auto !important; }
    body.about-page .home01-fid-section { padding: 40px 16px !important; }
    body.about-page .home01-fid-section .spacing-13 { gap: 12px !important; }
    body.about-page .home01-fid-section .prt-fid.style2,
    body.about-page .home01-fid-section .row > div:last-child .prt-fid.style2 { grid-template-columns: 1fr !important; row-gap: 12px; padding: 18px !important; }
    body.about-page .home01-fid-section .prt-fid-icon-wrapper { grid-row: auto; width: 44px !important; height: 44px !important; font-size: 19px !important; }
    body.about-page .home01-fid-section .prt-fid-title { margin-top: 0 !important; font-size: 13.5px !important; }
    body.about-page .about01-testimonial-section .testimonials.style2 { padding: 22px !important; }
    body.about-page .about01-testimonial-section .testimonial-text { font-size: 16px !important; }
}
@media (prefers-reduced-motion: reduce) {
    body.about-page .principle-row,
    body.about-page .about01-team-section .featured-imagebox-team.style1,
    body.about-page .about01-team-section .featured-imagebox-team.style1 img { transition: none; }
    body.about-page .principle-row:hover,
    body.about-page .about01-team-section .featured-imagebox-team.style1:hover,
    body.about-page .about01-team-section .featured-imagebox-team.style1:hover .featured-thumbnail img { transform: none !important; }
}

/* ------------------------------------------------------------------
 * Services, redesigned 2026-09-15.
 *
 * CSS only on the existing markup, in the same language as the About,
 * team, director and FAQ pages. The visa cards become an even grid
 * with larger type and a clear call to action; "Why Shrey Education"
 * and "Build your plan" become two rounded panels with icon tiles and
 * number-chip steps. Also fixes the navy panel's kicker and accent
 * words, which the site-wide kicker colour left dark blue on navy,
 * and drops the rules under the intro and above each card title.
 * ------------------------------------------------------------------ */
body.service-page .service01-services-section {
    padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px) !important;
    background: linear-gradient(180deg, #F2F5FB 0, #fff 460px) !important;
}
body.service-page .service01-services-section > .container,
body.service-page .service01-consulting-section > .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

/* Intro */
body.service-page .service-page-intro {
    display: block !important;
    max-width: 760px;
    margin: 0 0 clamp(32px, 4vw, 48px) !important;
    padding: 0 !important;
    border: 0 !important;
}
body.service-page .service-page-eyebrow {
    display: inline-flex !important;
    align-items: center;
    margin: 0 0 16px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: #E9EFFD !important;
    color: #134BC3 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
body.service-page .service-page-eyebrow::before,
body.service-page .service-page-eyebrow::after { display: none !important; content: none !important; }
body.service-page .service-page-intro h1 {
    max-width: 18ch !important;
    margin: 0 !important;
    color: #0E1C3C !important;
    font-size: clamp(36px, 4.6vw, 58px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -.03em !important;
}
body.service-page .service-page-intro h1 em { color: #134BC3 !important; font-family: inherit !important; font-style: normal !important; font-weight: 800 !important; }

/* Visa cards */
body.service-page .service01-services-section .row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
}
body.service-page .service01-services-section .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
}
body.service-page .featured-imagebox-services.style1 {
    min-height: 0 !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 22px !important;
    box-shadow: 0 1px 2px rgba(14, 28, 60, .05) !important;
}
body.service-page .featured-imagebox-services.style1:hover {
    border-color: #C9D6F6 !important;
    box-shadow: 0 24px 50px -18px rgba(14, 28, 60, .3) !important;
    transform: translateY(-6px);
}
body.service-page .featured-imagebox-services.style1 .featured-thumbnail { height: auto !important; aspect-ratio: 4 / 3; margin: 0 !important; border-radius: 0 !important; }
body.service-page .featured-imagebox-services.style1 .featured-thumbnail::after { height: 40% !important; background: linear-gradient(180deg, transparent, rgba(10, 20, 43, .28)) !important; }
body.service-page .featured-imagebox-services.style1 .featured-content { padding: 22px 24px 8px !important; background: none !important; }
body.service-page .featured-imagebox-services.style1 .featured-content::before { display: none !important; content: none !important; }
body.service-page .featured-imagebox-services.style1 .featured-title h3 {
    margin: 0 0 8px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: -.015em !important;
}
body.service-page .featured-imagebox-services.style1 .featured-title h3 a { color: #0E1C3C !important; text-decoration: none !important; }
body.service-page .featured-imagebox-services.style1:hover .featured-title h3 a { color: #134BC3 !important; }
body.service-page .featured-imagebox-services.style1 .featured-content p { color: #44516B !important; font-size: 15.5px !important; line-height: 1.65 !important; }
body.service-page .featured-imagebox-services.style1 .featured-explore-more { margin: auto 24px 0 !important; padding: 12px 0 22px !important; }
body.service-page .featured-imagebox-services.style1 .featured-explore-more a {
    min-height: 48px !important;
    padding: 0 6px 0 16px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #F2F5FB !important;
    color: #12244E !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: background-color .2s ease, color .2s ease;
}
body.service-page .featured-imagebox-services.style1 .featured-explore-more a::after {
    width: 36px !important;
    height: 36px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #12244E !important;
    color: #fff !important;
}
body.service-page .featured-imagebox-services.style1:hover .featured-explore-more a { background: #12244E !important; color: #fff !important; }
body.service-page .featured-imagebox-services.style1:hover .featured-explore-more a::after { background: #fff !important; color: #12244E !important; }

/* Why Shrey Education + Build your plan: two rounded panels */
body.service-page .service01-consulting-section { padding: 0 0 clamp(56px, 7vw, 96px) !important; background: #fff !important; }
body.service-page .service01-consulting-section > .container > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body.service-page .service01-consulting-section > .container > .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
}
body.service-page .service01-consulting-section .prt-left-span {
    height: 100% !important;
    margin: 0 !important;
    padding: clamp(32px, 4vw, 52px) !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .45), transparent 55%),
        linear-gradient(150deg, #12244E, #0A142B) !important;
}
body.service-page .service01-consulting-section .prt-left-span::before,
body.service-page .service01-consulting-section .prt-left-span::after { display: none !important; }
body.service-page .service01-consulting-section .section-title.style2 { margin: 0 0 28px !important; }
body.service-page .service01-consulting-section .section-title .title-header > h3 {
    display: inline-flex !important;
    margin: 0 0 14px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #C9D8FB !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
body.service-page .service01-consulting-section .section-title .title-header > h3::before,
body.service-page .service01-consulting-section .section-title .title-header > h3::after { display: none !important; content: none !important; }
body.service-page .service01-consulting-section .section-title.style2 h2 {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(32px, 3.4vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
}
body.service-page .service01-consulting-section .section-title.style2 h2 span { color: #8FB0F7 !important; font-family: inherit !important; font-style: normal !important; font-weight: 800 !important; }
body.service-page .service01-consulting-section .prt-vertical_sep {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 0 !important;
}
body.service-page .service01-consulting-section .prt-vertical_sep > [class*="col-"] { width: auto !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
body.service-page .service01-consulting-section .featured-icon-box.style5 {
    display: block !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .05) !important;
    text-align: left !important;
}
body.service-page .service01-consulting-section .featured-icon-box.style5 .featured-icon { margin: 0 0 16px !important; }
body.service-page .service01-consulting-section .featured-icon-box.style5 .prt-icon {
    display: grid !important;
    place-items: center !important;
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: rgba(143, 176, 247, .14) !important;
}
body.service-page .service01-consulting-section .featured-icon-box.style5 .prt-icon i,
body.service-page .service01-consulting-section .featured-icon-box.style5 .prt-icon i::before { margin: 0 !important; color: #8FB0F7 !important; font-size: 28px !important; line-height: 1 !important; }
body.service-page .service01-consulting-section .featured-icon-box.style5 .featured-content { padding: 0 !important; text-align: left !important; }
body.service-page .service01-consulting-section .featured-icon-box.style5 .featured-title h3 {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    text-transform: none !important;
}
body.service-page .service01-consulting-section .featured-icon-box.style5 .featured-desc p { color: #D5DDEC !important; font-size: 15.5px !important; line-height: 1.65 !important; }
body.service-page .service01-consulting-section .col-bg-img-twenty {
    height: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 24px !important;
    background: #F2F5FB !important;
}
body.service-page .service01-consulting-section #background-div { height: 100% !important; margin: 0 !important; }
body.service-page .service01-consulting-section #background-div > .col-lg-8 { padding: 0 !important; }
body.service-page .service01-consulting-section .spacing-17 { gap: 24px; padding: clamp(28px, 3.6vw, 44px) !important; }
body.service-page .service01-consulting-section .section-title.style4 { margin: 0 !important; }
body.service-page .service01-consulting-section .section-title.style4 h2 {
    margin: 0 !important;
    color: #0E1C3C !important;
    font-size: clamp(28px, 2.8vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -.02em !important;
}
body.service-page .service01-consulting-section .section-title.style4 h2 span { color: #134BC3 !important; font-family: inherit !important; font-style: normal !important; font-weight: 800 !important; }
body.service-page .service-journey-steps { display: grid !important; gap: 12px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; }
body.service-page .service-journey-steps > div {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 14px !important;
    background: #fff !important;
}
body.service-page .service-journey-steps > div::before,
body.service-page .service-journey-steps > div::after { display: none !important; }
body.service-page .service-journey-steps span {
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: linear-gradient(150deg, #12244E, #134BC3) !important;
    color: #fff !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}
body.service-page .service-journey-steps p { margin: 0 !important; color: #2A3957 !important; font-size: 15.5px !important; font-weight: 600 !important; line-height: 1.45 !important; }
body.service-page .service01-consulting-section .prt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 50px !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #134BC3 !important;
    color: #fff !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    box-shadow: none !important;
}
body.service-page .service01-consulting-section .prt-btn:hover { background: #0F3C9E !important; color: #fff !important; }

@media (max-width: 1100px) {
    body.service-page .service01-services-section .row { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 980px) {
    body.service-page .service01-consulting-section > .container > .row { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    body.service-page .service01-services-section > .container,
    body.service-page .service01-consulting-section > .container { width: calc(100% - 32px) !important; }
    body.service-page .service01-services-section .row { grid-template-columns: 1fr !important; gap: 18px !important; }
    body.service-page .featured-imagebox-services.style1 .featured-content { padding: 20px 20px 6px !important; }
    body.service-page .featured-imagebox-services.style1 .featured-explore-more { margin: auto 20px 0 !important; padding-bottom: 20px !important; }
    body.service-page .featured-imagebox-services.style1 .featured-content p { font-size: 15px !important; }
    body.service-page .service01-consulting-section .prt-left-span { padding: 28px 22px !important; border-radius: 22px !important; }
    body.service-page .service01-consulting-section .prt-vertical_sep { grid-template-columns: 1fr !important; gap: 12px !important; }
    body.service-page .service01-consulting-section .featured-icon-box.style5 { padding: 20px !important; }
    body.service-page .service01-consulting-section .col-bg-img-twenty { border-radius: 22px !important; }
    body.service-page .service01-consulting-section .spacing-17 { padding: 26px 20px !important; }
    body.service-page .service01-consulting-section .prt-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    body.service-page .featured-imagebox-services.style1 { transition: none !important; }
    body.service-page .featured-imagebox-services.style1:hover { transform: none !important; }
}

/* ------------------------------------------------------------------
 * Our team, redesigned 2026-09-15.
 *
 * The whole team in one grid of identical portrait cards - every
 * photo the same size, no leadership or department split - with name
 * and role on a navy fade and an email button on the photo. A split
 * navy hero above and a consultation panel below, in the language of
 * the rebuilt About, Services, director and FAQ pages.
 * ------------------------------------------------------------------ */

/* Hero */
body.team-page .sg-people-hero {
    padding: clamp(56px, 7vw, 100px) 0;
    background:
        radial-gradient(60% 90% at 100% 0%, rgba(85, 133, 238, .28), transparent 60%),
        radial-gradient(70% 120% at 0% 100%, rgba(19, 75, 195, .35), transparent 60%),
        linear-gradient(160deg, #12244E 0%, #0A142B 100%);
}
body.team-page .sg-people-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
body.team-page .sg-people-eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #C9D8FB;
    font-size: 12.5px;
    letter-spacing: .12em;
}
body.team-page .sg-people-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.03em;
}
body.team-page .sg-people-hero h1 em { color: #8FB0F7; font-style: normal; }
body.team-page .sg-people-lede { max-width: 54ch; color: #D5DDEC; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; }
body.team-page .sg-people-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}
body.team-page .sg-people-stats li {
    min-width: 150px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
}
body.team-page .sg-people-stats strong { display: block; color: #fff; font-size: 32px; font-weight: 800; line-height: 1; }
body.team-page .sg-people-stats span { display: block; margin-top: 8px; color: #C9D3E6; font-size: 14px; font-weight: 600; }
body.team-page .sg-people-hero-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}
body.team-page .sg-people-avatars { display: flex; align-items: center; margin: 0 0 20px; }
body.team-page .sg-people-avatars img,
body.team-page .sg-people-avatars span {
    flex: none;
    width: 62px;
    height: 62px;
    margin-left: -14px;
    border: 3px solid #1A2F5E;
    border-radius: 50%;
}
body.team-page .sg-people-avatars img:first-child { margin-left: 0; }
body.team-page .sg-people-avatars img { object-fit: cover; object-position: center top; background: #E9EFFD; }
body.team-page .sg-people-avatars span { display: grid; place-items: center; background: #134BC3; color: #fff; font-size: 16px; font-weight: 800; }
body.team-page .sg-people-hero-card p { margin: 0; color: #E3E9F5; font-size: 17px; font-weight: 600; line-height: 1.55; }

/* Team grid: every card the same size */
body.team-page .sg-people-section { padding: clamp(56px, 7vw, 96px) 0; background: #fff; }
body.team-page .sg-people-head { margin-bottom: clamp(24px, 3.4vw, 40px); }
body.team-page .sg-people-head h2 { margin: 0 0 8px; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
body.team-page .sg-people-head p { color: #44516B; font-size: 17px; }
body.team-page .sg-staff-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
body.team-page .sg-staff-card {
    position: relative;
    isolation: isolate;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #12244E;
    box-shadow: 0 16px 36px -18px rgba(14, 28, 60, .45);
    transition: transform .35s ease, box-shadow .35s ease;
}
body.team-page .sg-staff-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -22px rgba(14, 28, 60, .55); }
body.team-page .sg-staff-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    background: #E9EFFD;
    transition: transform .6s ease;
}
body.team-page .sg-staff-card:hover img { transform: scale(1.05); }
body.team-page .sg-staff-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 72px 18px 18px;
    background: linear-gradient(180deg, rgba(10, 20, 43, 0) 0%, rgba(10, 20, 43, .72) 45%, rgba(10, 20, 43, .95) 100%);
}
body.team-page .sg-staff-body h3 { margin: 0 0 4px; color: #fff; font-size: 17px; font-weight: 800; line-height: 1.25; }
body.team-page .sg-staff-body p { margin: 0; color: #C9D8FB; font-size: 12px; font-weight: 700; letter-spacing: .06em; line-height: 1.4; text-transform: uppercase; }
body.team-page .sg-staff-mail {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(10, 20, 43, .6);
    color: #fff !important;
    font-size: 15px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
body.team-page .sg-staff-mail:hover,
body.team-page .sg-staff-mail:focus-visible { background: #fff; color: #12244E !important; }

/* Closing panel */
body.team-page .sg-people-cta { padding: 0 0 clamp(56px, 7vw, 96px); background: #fff; }
body.team-page .sg-people-cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px;
    background:
        radial-gradient(60% 120% at 100% 0%, rgba(85, 133, 238, .3), transparent 60%),
        linear-gradient(150deg, #12244E, #0A142B);
}
body.team-page .sg-people-cta-card h2 { margin: 0 0 8px; color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
body.team-page .sg-people-cta-card p { max-width: 52ch; margin: 0; color: #D5DDEC; font-size: 17px; line-height: 1.6; }
body.team-page .sg-people-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
body.team-page .sg-people-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    background: #fff;
    color: #12244E !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
body.team-page .sg-people-cta-primary::after { content: "\2192"; transition: transform .2s ease; }
body.team-page .sg-people-cta-primary:hover { background: #E9EFFD; }
body.team-page .sg-people-cta-primary:hover::after { transform: translateX(3px); }
body.team-page .sg-people-cta-secondary {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
body.team-page .sg-people-cta-secondary:hover { border-color: #8FB0F7; color: #8FB0F7 !important; }

@media (max-width: 1100px) {
    body.team-page .sg-staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-inline: auto; }
}
@media (max-width: 900px) {
    body.team-page .sg-people-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    body.team-page .sg-people-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    body.team-page .sg-people-stats li { min-width: 0; padding: 12px 14px; }
    body.team-page .sg-people-stats strong { font-size: 26px; }
    body.team-page .sg-people-hero-card { padding: 22px; }
    body.team-page .sg-people-avatars img,
    body.team-page .sg-people-avatars span { width: 52px; height: 52px; margin-left: -12px; }
    body.team-page .sg-staff-grid { gap: 12px; }
    body.team-page .sg-staff-card { border-radius: 16px; }
    body.team-page .sg-staff-body { padding: 48px 12px 12px; }
    body.team-page .sg-staff-body h3 { font-size: 15px; }
    body.team-page .sg-staff-body p { font-size: 10.5px; letter-spacing: .03em; }
    body.team-page .sg-staff-mail { top: 8px; right: 8px; width: 34px; height: 34px; border-radius: 10px; font-size: 14px; }
    body.team-page .sg-people-cta-card { padding: 28px 22px; border-radius: 22px; }
    body.team-page .sg-people-cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
    body.team-page .sg-people-cta-primary { justify-content: center; }
    body.team-page .sg-people-cta-secondary { align-self: center; }
}
@media (prefers-reduced-motion: reduce) {
    body.team-page .sg-staff-card,
    body.team-page .sg-staff-card img { transition: none; }
    body.team-page .sg-staff-card:hover,
    body.team-page .sg-staff-card:hover img { transform: none; }
}

/* ------------------------------------------------------------------
 * Message from the director, redesigned 2026-09-15.
 *
 * Reads as a personal letter: portrait with an offset navy panel,
 * name, pull-quote lead, message, signature and a contact card, in the
 * same language as the rebuilt About, Services and team pages. The
 * portrait's legacy fixed heights and overflow clipping are released
 * so the offset panel shows and no pale block sits under the photo.
 * ------------------------------------------------------------------ */
body.director-page .team-detail-section {
    padding: clamp(48px, 7vw, 104px) 0 !important;
    background: linear-gradient(180deg, #F2F5FB 0%, #fff 70%) !important;
}
body.director-page .team-detail-section > .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: 0 !important;
}
body.director-page .team-detail-section .row { margin: 0 !important; }
body.director-page .team-detail-section .col-lg-12 { padding: 0 !important; }
body.director-page .prt-team-member-single-content-area > .prt-bg {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
body.director-page .prt-team-member-single-content-area .prt-bg-layer { display: none !important; }
body.director-page .prt-team-member-single-content-area .layer-content > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr) !important;
    gap: clamp(40px, 6vw, 80px) !important;
    align-items: center !important;
}
body.director-page .prt-team-member-single-content-area .layer-content > .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
}

/* Portrait with an offset navy panel behind it */
body.director-page .prt-featured-wrapper {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 28px 28px 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
body.director-page .prt-featured-wrapper::before {
    position: absolute;
    inset: 28px -28px -28px 28px;
    z-index: 0;
    border-radius: 28px;
    background: linear-gradient(150deg, #12244E, #134BC3);
    content: "";
}
body.director-page .prt-featured-wrapper .featured-thumbnail {
    position: relative;
    z-index: 1;
    height: auto !important;
    max-height: none !important;
    overflow: hidden;
    border-radius: 28px !important;
    background: #E9EFFD;
    box-shadow: 0 24px 60px rgba(10, 20, 43, .22);
}
body.director-page .prt-featured-wrapper .featured-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* The letter */
body.director-page .prt-team-member-detail {
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
body.director-page .prt-team-member-single-position {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 6px 14px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #E9EFFD !important;
    color: #134BC3 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}
body.director-page .prt-team-member-single-position::before,
body.director-page .prt-team-member-single-position::after { display: none !important; }
body.director-page .prt-team-member-detail .prt-team-member-single-title {
    margin: 16px 0 22px !important;
    color: #0E1C3C !important;
    font-size: clamp(38px, 4.6vw, 58px) !important;
    font-weight: 800 !important;
    line-height: 1.04 !important;
    letter-spacing: -.025em !important;
}
body.director-page .prt-team-member-detail .prt-team-member-single-title::before,
body.director-page .prt-team-member-detail .prt-team-member-single-title::after { display: none !important; }
body.director-page .director-lead {
    position: relative !important;
    margin: 0 0 24px !important;
    padding: 0 0 0 58px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    color: #12244E !important;
    font-size: clamp(19px, 1.8vw, 23px) !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}
body.director-page .director-lead::before {
    position: absolute;
    top: -10px;
    left: 0;
    color: #134BC3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: 1;
    content: "\201C";
}
body.director-page .director-lead::after { display: none !important; }
body.director-page .prt-short-desc { margin: 0 !important; }
body.director-page .prt-short-desc p,
body.director-page .prt-short-desc p:first-child {
    max-width: 62ch;
    margin: 0 0 16px !important;
    color: #44516B !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
}
body.director-page .director-signature { margin: 22px 0 0; }
body.director-page .director-signature strong {
    display: block;
    color: #12244E;
    font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", cursive;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}
body.director-page .director-signature span {
    display: block;
    margin-top: 4px;
    color: #55627A;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Contact card */
body.director-page .director-contact-panel {
    margin: 32px 0 0 !important;
    padding: 24px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 18px 44px rgba(14, 28, 60, .08) !important;
}
body.director-page .director-contact-heading { margin: 0 0 14px !important; padding: 0 !important; border: 0 !important; }
body.director-page .director-contact-heading span {
    color: #134BC3 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}
body.director-page .director-contact-heading::before,
body.director-page .director-contact-heading::after,
body.director-page .director-contact-heading span::before,
body.director-page .director-contact-heading span::after { display: none !important; }
body.director-page .director-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}
body.director-page .director-contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #F2F5FB !important;
}
body.director-page .director-contact-item > i {
    display: grid !important;
    flex: none;
    place-items: center;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #134BC3 !important;
    font-size: 17px !important;
    line-height: 1 !important;
}
body.director-page .director-contact-item span {
    display: block !important;
    margin: 0 0 2px !important;
    color: #55627A !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}
body.director-page .director-contact-item :is(p, a) {
    margin: 0 !important;
    color: #0E1C3C !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    overflow-wrap: anywhere;
}
body.director-page .director-contact-item a:hover { color: #134BC3 !important; text-decoration: underline !important; }
body.director-page .director-contact-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 48px !important;
    margin: 18px 0 0 !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #134BC3 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
body.director-page .director-contact-cta:hover { background: #0F3C9E !important; }
body.director-page .director-contact-cta span { color: inherit !important; }
body.director-page .director-contact-cta i {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    color: inherit !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

@media (max-width: 980px) {
    body.director-page .prt-team-member-single-content-area .layer-content > .row { grid-template-columns: 1fr !important; gap: 56px !important; }
    body.director-page .prt-featured-wrapper { max-width: 420px !important; }
}
@media (max-width: 640px) {
    body.director-page .team-detail-section > .container { width: calc(100% - 32px) !important; }
    body.director-page .prt-featured-wrapper { margin: 0 18px 18px 0 !important; }
    body.director-page .prt-featured-wrapper::before { inset: 18px -18px -18px 18px; border-radius: 22px; }
    body.director-page .prt-featured-wrapper .featured-thumbnail { border-radius: 22px !important; }
    body.director-page .director-lead { padding-left: 44px !important; }
    body.director-page .director-lead::before { font-size: 56px; }
    body.director-page .prt-short-desc p { font-size: 16.5px !important; }
    body.director-page .director-signature strong { font-size: 26px; }
    body.director-page .director-contact-panel { padding: 18px !important; }
    body.director-page .director-contact-cta { width: 100%; justify-content: center; }
}

/* ------------------------------------------------------------------
 * FAQ, redesigned 2026-09-15.
 *
 * Styles the existing accordion markup (.accordion > .toggle, opened
 * by main.js, which marks the open question's link .active) rather
 * than replacing it: page bodies now come from the WordPress editor,
 * so the markup there must keep working as-is. Same visual language as
 * the destination, test preparation and visa pages: sticky intro
 * beside question cards, navy advisor card, no rules under headings.
 * ------------------------------------------------------------------ */
body.faq-page .faq-section { padding: clamp(48px, 6vw, 88px) 0 !important; background: #fff !important; }
body.faq-page .faq-section > .container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: 0 !important;
}
body.faq-page .faq-layout {
    display: grid !important;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.4fr) !important;
    gap: 56px !important;
    align-items: start !important;
}
body.faq-page .faq-intro {
    position: sticky;
    top: 118px;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
body.faq-page :is(.faq-eyebrow, .faq-content-heading > span) {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    color: #134BC3 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}
body.faq-page .faq-intro h1 {
    margin: 10px 0 14px !important;
    color: #0E1C3C !important;
    font-size: clamp(32px, 3.6vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -.02em !important;
}
body.faq-page .faq-intro h1 em { color: #134BC3 !important; font-style: normal !important; }
body.faq-page .faq-intro > p { margin: 0 !important; color: #44516B !important; font-size: 16.5px !important; line-height: 1.7 !important; }
body.faq-page .faq-topics { display: flex !important; flex-wrap: wrap; gap: 8px !important; margin: 22px 0 0 !important; }
body.faq-page .faq-topics span {
    padding: 7px 12px !important;
    border: 1px solid #DDE3EE !important;
    border-radius: 999px !important;
    background: #F2F5FB !important;
    color: #0E1C3C !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}
body.faq-page .faq-topics span::before { display: none !important; }
body.faq-page .faq-help-card {
    margin-top: 28px !important;
    padding: 26px !important;
    border: 0 !important;
    border-radius: 20px !important;
    background: linear-gradient(150deg, #12244E, #0F3C9E) !important;
    box-shadow: 0 18px 40px rgba(14, 28, 60, .16) !important;
}
body.faq-page .faq-help-card span { display: block; color: #BFD0F8 !important; font-size: 12.5px !important; font-weight: 700 !important; letter-spacing: .1em !important; text-transform: uppercase !important; }
body.faq-page .faq-help-card h3 { margin: 8px 0 16px !important; color: #fff !important; font-size: 21px !important; font-weight: 800 !important; line-height: 1.3 !important; }
body.faq-page .faq-help-card a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #12244E !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
body.faq-page .faq-help-card a:hover { background: #E9EFFD !important; }
body.faq-page .faq-content-heading h2 {
    margin: 8px 0 24px !important;
    color: #0E1C3C !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
}
body.faq-page .faq-content-heading :is(h2, span)::before,
body.faq-page .faq-content-heading :is(h2, span)::after { display: none !important; }

/* Question cards */
body.faq-page .faq-content .accordion { display: grid !important; gap: 12px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; background: none !important; }
body.faq-page .faq-content .accordion > .toggle {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #DDE3EE !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}
body.faq-page .faq-content .accordion > .toggle:has(.toggle-title a.active) {
    border-color: #C9D6F6 !important;
    background: #FAFBFE !important;
    box-shadow: 0 10px 26px rgba(14, 28, 60, .06) !important;
}
body.faq-page .faq-content .toggle-title { margin: 0 !important; padding: 0 !important; border: 0 !important; background: none !important; }
body.faq-page .faq-content .toggle-title a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 18px 70px 18px 22px !important;
    border: 0 !important;
    background: none !important;
    color: #0E1C3C !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}
body.faq-page .faq-content .toggle-title a:hover { color: #134BC3 !important; }
body.faq-page .faq-content .toggle-title a:focus-visible { border-radius: 16px; outline: 2px solid #134BC3 !important; outline-offset: -2px; }
/* Round +/- icon: ::before is the circle and the horizontal bar, ::after
   the vertical bar, which collapses when the question is open. */
body.faq-page .faq-content .toggle-title a::before,
body.faq-page .faq-content .toggle-title a::after {
    position: absolute !important;
    top: 50% !important;
    right: 22px !important;
    left: auto !important;
    display: block !important;
    margin: 0 !important;
    border: 0 !important;
    content: "" !important;
    font-size: 0 !important;
    transform: translateY(-50%) !important;
    transition: background-color .2s ease, height .2s ease;
}
body.faq-page .faq-content .toggle-title a::before {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, transparent 0, transparent 0) , linear-gradient(#12244E, #12244E) center / 12px 2px no-repeat, #E9EFFD !important;
}
body.faq-page .faq-content .toggle-title a::after {
    right: 37px !important;
    width: 2px !important;
    height: 12px !important;
    border-radius: 2px !important;
    background: #12244E !important;
}
body.faq-page .faq-content .toggle-title a.active::before { background: linear-gradient(#fff, #fff) center / 12px 2px no-repeat, #12244E !important; }
body.faq-page .faq-content .toggle-title a.active::after { height: 0 !important; }
body.faq-page .faq-content .toggle-content { margin: 0 !important; padding: 0 22px 22px !important; border: 0 !important; background: none !important; }
body.faq-page .faq-content .toggle-content p { margin: 0 !important; color: #44516B !important; font-size: 16.5px !important; line-height: 1.7 !important; }

@media (max-width: 980px) {
    body.faq-page .faq-layout { grid-template-columns: 1fr !important; gap: 36px !important; }
    body.faq-page .faq-intro { position: static; }
}
@media (max-width: 700px) {
    body.faq-page .faq-section > .container { width: calc(100% - 32px) !important; }
    body.faq-page .faq-content .toggle-title a { min-height: 56px !important; padding: 16px 62px 16px 18px !important; font-size: 16px !important; }
    body.faq-page .faq-content .toggle-title a::before { right: 18px !important; }
    body.faq-page .faq-content .toggle-title a::after { right: 33px !important; }
    body.faq-page .faq-content .toggle-content { padding: 0 18px 18px !important; }
    body.faq-page .faq-content .toggle-content p { font-size: 16px !important; }
    body.faq-page .faq-help-card { padding: 22px !important; }
}
@media (prefers-reduced-motion: reduce) {
    body.faq-page .faq-content .accordion > .toggle,
    body.faq-page .faq-content .toggle-title a::before,
    body.faq-page .faq-content .toggle-title a::after { transition: none; }
}
body.faq-page .faq-help-card a i {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    color: inherit !important;
    font-size: 14px !important;
    line-height: 1 !important;
}
body.faq-page .faq-help-card a i::before { color: inherit !important; }
body.faq-page .faq-content .toggle-title a > i,
body.faq-page .faq-content .toggle-title a > span { display: none !important; }

/* ------------------------------------------------------------------
 * Careers, redesigned 2026-09-15.
 *
 * Same language as the rebuilt About, Services, team, director and FAQ
 * pages, in navy and blue in place of the page's gold and cream: a
 * navy hero with fact chips, role cards with number badges and detail
 * pills, and an application panel with the three steps beside a form
 * with larger fields, a styled file picker and a clear submit button.
 * ------------------------------------------------------------------ */
.simple-career-page .sc-kicker {
    display: inline-flex;
    gap: 0;
    padding: 6px 14px;
    border-radius: 999px;
    background: #E9EFFD;
    color: #134BC3 !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
}
.simple-career-page .sc-kicker::before,
.simple-career-page .sc-kicker::after { display: none !important; content: none !important; }
.simple-career-page .sc-head .sc-kicker,
.simple-career-page .sc-apply-copy .sc-kicker { background: rgba(255, 255, 255, .1); color: #C9D8FB !important; }

/* Hero */
.simple-career-page .sc-head { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 5vw, 64px); background: linear-gradient(180deg, #F2F5FB, #fff); }
.simple-career-page .sc-head-panel { min-height: 460px; border-radius: 28px; box-shadow: 0 30px 70px -30px rgba(10, 20, 43, .55); }
.simple-career-page .sc-head-copy {
    padding: clamp(36px, 5vw, 64px);
    background:
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .45), transparent 55%),
        linear-gradient(150deg, #12244E, #0A142B);
}
.simple-career-page .sc-head h1 { margin: 18px 0 16px; font-size: clamp(40px, 4.8vw, 62px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; }
.simple-career-page .sc-head h1 em { color: #8FB0F7; font-style: normal; }
.simple-career-page .sc-head p { color: #D5DDEC; font-size: 17px; line-height: 1.7; }
.simple-career-page .sc-head-link {
    gap: 10px;
    min-height: 50px;
    margin-top: 26px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #12244E !important;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
}
.simple-career-page .sc-head-link::after { content: "\2193"; }
.simple-career-page .sc-head-link:hover { background: #E9EFFD; color: #12244E !important; }
.simple-career-page .sc-head-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.simple-career-page .sc-head-facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #E3E9F5;
    font-size: 14px;
    font-weight: 600;
}
.simple-career-page .sc-head-facts i { color: #8FB0F7; }
.simple-career-page .sc-head-media { position: relative; }
.simple-career-page .sc-head-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 43, .35), transparent 40%);
    pointer-events: none;
    content: "";
}

/* Open positions */
.simple-career-page .sc-section { padding: clamp(56px, 7vw, 96px) 0; }
.simple-career-page .sc-section.soft { background: #F2F5FB; }
.simple-career-page .sc-heading { margin-bottom: clamp(24px, 3.4vw, 40px); }
.simple-career-page .sc-heading h2 { margin: 14px 0 0; color: #0E1C3C; font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.simple-career-page .sc-jobs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.simple-career-page .sc-job {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 6px 18px;
    padding: 24px;
    border: 1px solid #DDE3EE;
    border-radius: 20px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.simple-career-page .sc-job::before {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(150deg, #12244E, #134BC3);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}
.simple-career-page .sc-job h3 { grid-column: 2; align-self: end; color: #0E1C3C; font-size: 20px; font-weight: 800; }
.simple-career-page .sc-job-meta { grid-column: 2; gap: 8px; }
.simple-career-page .sc-job-meta span {
    padding: 5px 11px;
    border-radius: 999px;
    background: #F2F5FB;
    color: #2A3957;
    font-size: 13.5px;
    font-weight: 600;
}
.simple-career-page .sc-job-meta i { color: #134BC3; }
.simple-career-page .sc-job a {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    gap: 10px;
    min-width: 0;
    min-height: 46px;
    margin-top: 14px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: #E9EFFD;
    color: #12244E !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
.simple-career-page .sc-job a::after { content: "\2192"; }
.simple-career-page .sc-job:hover { border-color: #C9D6F6; box-shadow: 0 18px 40px -18px rgba(14, 28, 60, .3); transform: translateY(-3px); }
.simple-career-page .sc-job:hover a,
.simple-career-page .sc-job a:hover { background: #134BC3; color: #fff !important; }

/* Apply */
.simple-career-page .sc-apply {
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.6fr);
    border: 0;
    border-radius: 28px;
    box-shadow: 0 30px 70px -34px rgba(14, 28, 60, .4);
}
.simple-career-page .sc-apply-copy {
    padding: clamp(32px, 4vw, 48px);
    background:
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .45), transparent 55%),
        linear-gradient(150deg, #12244E, #0A142B);
}
.simple-career-page .sc-apply h2 { margin: 16px 0 14px; font-size: clamp(30px, 3vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.simple-career-page .sc-apply-copy p { color: #D5DDEC; font-size: 16px; line-height: 1.65; }
.simple-career-page .sc-apply-points { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; counter-reset: sc-step; }
.simple-career-page .sc-apply-points li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #E3E9F5;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    counter-increment: sc-step;
}
.simple-career-page .sc-apply-points li::before {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(143, 176, 247, .16);
    color: #8FB0F7;
    font-size: 14px;
    font-weight: 800;
    content: counter(sc-step);
}
.simple-career-page .sc-form-grid { gap: 18px 20px; padding: clamp(28px, 4vw, 44px); }
.simple-career-page .sc-field label { margin-bottom: 8px; color: #0E1C3C; font-size: 14px; font-weight: 700; }
.simple-career-page .sc-field input,
.simple-career-page .sc-field select,
.simple-career-page .sc-field textarea {
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #DDE3EE;
    border-radius: 12px;
    background: #F7F9FD;
    color: #0E1C3C;
    font-size: 15.5px;
}
.simple-career-page .sc-field textarea { min-height: 120px; }
.simple-career-page .sc-field input:focus,
.simple-career-page .sc-field select:focus,
.simple-career-page .sc-field textarea:focus { border-color: #134BC3; outline: 0; background: #fff; box-shadow: 0 0 0 4px rgba(19, 75, 195, .14); }
.simple-career-page .sc-field input[type="file"] { padding: 7px 8px; }
.simple-career-page .sc-field input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 14px;
    border: 0;
    border-radius: 9px;
    background: #12244E;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.simple-career-page .sc-field.full { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.simple-career-page .sc-submit {
    gap: 10px;
    min-height: 52px !important;
    padding: 0 26px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #134BC3 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
.simple-career-page .sc-submit::after { content: "\2192"; }
.simple-career-page .sc-submit:hover { background: #0F3C9E !important; }
.simple-career-page .sc-note { margin: 0; color: #55627A; font-size: 13.5px; }

@media (max-width: 850px) {
    .simple-career-page .sc-head-panel { min-height: 0; }
    .simple-career-page .sc-apply { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .simple-career-page .sc-jobs { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .simple-career-page .sc-head-panel,
    .simple-career-page .sc-apply { border-radius: 22px; }
    .simple-career-page .sc-head-copy { padding: 32px 22px; }
    .simple-career-page .sc-head h1 { font-size: 38px; }
    .simple-career-page .sc-head p { font-size: 16px; }
    .simple-career-page .sc-head-facts li { padding: 7px 12px; font-size: 13px; }
    .simple-career-page .sc-job { grid-template-columns: 44px minmax(0, 1fr); gap: 6px 14px; padding: 20px; }
    .simple-career-page .sc-job::before { width: 44px; height: 44px; border-radius: 12px; font-size: 14px; }
    .simple-career-page .sc-job h3 { font-size: 18px; }
    .simple-career-page .sc-job a { justify-self: stretch; justify-content: center; }
    .simple-career-page .sc-apply-copy { padding: 28px 22px; }
    .simple-career-page .sc-form-grid { padding: 24px 20px; }
    .simple-career-page .sc-field.full { flex-direction: column; align-items: stretch; }
    .simple-career-page .sc-submit { width: 100%; justify-content: center; }
    .simple-career-page .sc-note { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    .simple-career-page .sc-job { transition: none; }
    .simple-career-page .sc-job:hover { transform: none; }
}

/* ------------------------------------------------------------------
 * Contact us, redesigned 2026-09-15.
 *
 * Same language as the rebuilt About, Services, team, director, FAQ
 * and careers pages: a navy hero with one-tap phone, email and
 * WhatsApp links; office details as a navy card of icon rows beside a
 * roomier appointment form; a rounded map; and the group businesses as
 * lifted cards. The rules before kickers and above the form are gone.
 * ------------------------------------------------------------------ */
.simple-contact-page .ct-kicker {
    display: inline-flex;
    justify-self: start;
    gap: 0;
    padding: 6px 14px;
    border-radius: 999px;
    background: #E9EFFD;
    color: #134BC3 !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
}
.simple-contact-page .ct-kicker::before,
.simple-contact-page .ct-kicker::after { display: none !important; content: none !important; }
.simple-contact-page .ct-head .ct-kicker,
.simple-contact-page .ct-details .ct-kicker { background: rgba(255, 255, 255, .1); color: #C9D8FB !important; }

/* Hero */
.simple-contact-page .ct-head { padding: clamp(24px, 4vw, 48px) 0 0; border: 0; background: linear-gradient(180deg, #F2F5FB, #fff); }
.simple-contact-page .ct-head > .ct-shell {
    padding: clamp(36px, 5vw, 64px);
    border-radius: 28px;
    background:
        radial-gradient(60% 120% at 100% 0%, rgba(85, 133, 238, .28), transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .4), transparent 55%),
        linear-gradient(150deg, #12244E, #0A142B);
    box-shadow: 0 30px 70px -30px rgba(10, 20, 43, .55);
}
.simple-contact-page .ct-head h1 { max-width: none; margin: 18px 0 14px; color: #fff; font-size: clamp(40px, 5vw, 62px); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
.simple-contact-page .ct-head h1 em { color: #8FB0F7; font-style: normal; }
.simple-contact-page .ct-head p { max-width: 62ch; color: #D5DDEC; font-size: 17px; line-height: 1.7; }
.simple-contact-page .ct-quick { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.simple-contact-page .ct-quick a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.simple-contact-page .ct-quick a i { color: #8FB0F7; font-size: 16px; }
.simple-contact-page .ct-quick a:hover { border-color: #fff; background: #fff; color: #12244E !important; }
.simple-contact-page .ct-quick a:hover i { color: #134BC3; }

/* Details + form */
.simple-contact-page .ct-section { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px); }
.simple-contact-page .ct-grid { grid-template-columns: 340px minmax(0, 1fr); gap: 24px; }
.simple-contact-page .ct-details {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 32px;
    border: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0% 100%, rgba(19, 75, 195, .4), transparent 55%),
        linear-gradient(160deg, #12244E, #0A142B);
    box-shadow: 0 24px 60px -30px rgba(10, 20, 43, .5);
}
.simple-contact-page .ct-details h2 { margin: 6px 0 10px; color: #fff; font-size: 28px; font-weight: 800; line-height: 1.15; }
.simple-contact-page .ct-detail {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    margin: 0;
    padding: 14px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
}
.simple-contact-page .ct-detail i {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(143, 176, 247, .14);
    color: #8FB0F7;
    font-size: 18px;
}
.simple-contact-page .ct-detail span { grid-column: 2; margin: 0 0 2px; color: #AFC0E4; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.simple-contact-page .ct-detail strong,
.simple-contact-page .ct-detail a { grid-column: 2; color: #fff !important; font-size: 15.5px; font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.simple-contact-page .ct-detail a:hover { color: #8FB0F7 !important; }

.simple-contact-page .ct-form {
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid #DDE3EE;
    border-radius: 24px;
    box-shadow: 0 30px 70px -34px rgba(14, 28, 60, .35);
}
.simple-contact-page .ct-form-head { margin-bottom: 22px; }
.simple-contact-page .ct-form h2 { margin: 14px 0 0; color: #0E1C3C; font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; line-height: 1.15; }
.simple-contact-page .ct-form-grid { gap: 18px 20px; }
.simple-contact-page .ct-field label { margin-bottom: 8px; color: #0E1C3C; font-size: 14px; font-weight: 700; }
.simple-contact-page .ct-field input,
.simple-contact-page .ct-field select,
.simple-contact-page .ct-field textarea {
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #DDE3EE;
    border-radius: 12px;
    background: #F7F9FD;
    font-size: 15.5px;
}
.simple-contact-page .ct-field textarea { min-height: 120px; }
.simple-contact-page .ct-field input:focus,
.simple-contact-page .ct-field select:focus,
.simple-contact-page .ct-field textarea:focus { border-color: #134BC3; outline: 0; background: #fff; box-shadow: 0 0 0 4px rgba(19, 75, 195, .14); }
.simple-contact-page .ct-consent { padding: 14px 16px; border: 1px solid #DDE3EE; border-radius: 14px; background: #F2F5FB; }
.simple-contact-page .ct-consent label { color: #2A3957; font-size: 14.5px; font-weight: 500; }
.simple-contact-page .ct-consent input { width: 20px; min-height: 20px; background: #fff; box-shadow: none; }
.simple-contact-page .ct-submit {
    min-height: 54px !important;
    border-radius: 12px !important;
    background: #134BC3 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
.simple-contact-page .ct-submit:hover { background: #0F3C9E !important; }
.simple-contact-page .ct-submit-note { margin-top: 12px; color: #55627A; font-size: 13.5px; }

/* Map */
.simple-contact-page .ct-map { height: 360px; margin-top: 28px; border: 0; border-radius: 24px; box-shadow: 0 20px 50px -30px rgba(14, 28, 60, .45); }

/* Other businesses */
.simple-contact-page .ct-businesses { margin-top: clamp(56px, 7vw, 88px); padding-top: 0; border-top: 0; }
.simple-contact-page .ct-business-heading { margin-bottom: clamp(22px, 3vw, 32px); }
.simple-contact-page .ct-business-heading h2 { margin: 14px 0 0; color: #0E1C3C; font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.simple-contact-page .ct-business-grid { gap: 20px; }
.simple-contact-page .ct-business-card { border: 1px solid #DDE3EE; border-radius: 20px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.simple-contact-page .ct-business-card:hover { border-color: #C9D6F6; box-shadow: 0 18px 40px -18px rgba(14, 28, 60, .3); transform: translateY(-3px); }
.simple-contact-page .ct-business-card > img { height: 140px; padding: 24px; border-bottom: 0; background: #F2F5FB; }
.simple-contact-page .ct-business-copy { padding: 22px; }
.simple-contact-page .ct-business-copy > span { margin-bottom: 8px; color: #134BC3; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.simple-contact-page .ct-business-copy h3 { margin: 0 0 6px; color: #0E1C3C; font-size: 20px; font-weight: 800; }
.simple-contact-page .ct-business-copy p { margin: 0; color: #44516B; font-size: 15px; }
.simple-contact-page .ct-business-contact { gap: 6px; padding: 14px 0 0; border-top: 0; }
.simple-contact-page .ct-business-contact a { color: #0E1C3C; font-size: 14.5px; }
.simple-contact-page .ct-direction {
    min-height: 42px;
    margin-top: 16px;
    padding: 0 16px;
    border-radius: 10px;
    background: #E9EFFD;
    color: #12244E !important;
    font-size: 14.5px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.simple-contact-page .ct-direction b { color: inherit; }
.simple-contact-page .ct-direction:hover { background: #134BC3; color: #fff !important; }

@media (max-width: 900px) {
    .simple-contact-page .ct-grid { grid-template-columns: 1fr; }
    .simple-contact-page .ct-details { grid-template-columns: 1fr 1fr; gap: 10px; }
    .simple-contact-page .ct-details > .ct-kicker,
    .simple-contact-page .ct-details > h2 { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .simple-contact-page .ct-head > .ct-shell { padding: 30px 22px; border-radius: 22px; }
    .simple-contact-page .ct-head h1 { font-size: 38px; }
    .simple-contact-page .ct-head p { font-size: 16px; }
    .simple-contact-page .ct-quick a { flex: 1 1 100%; justify-content: center; }
    .simple-contact-page .ct-details { grid-template-columns: 1fr; padding: 24px 20px; border-radius: 20px; }
    .simple-contact-page .ct-form { padding: 24px 18px; border-radius: 20px; }
    .simple-contact-page .ct-map { height: 280px; border-radius: 20px; }
    .simple-contact-page .ct-business-card > img { height: 100%; padding: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .simple-contact-page .ct-business-card { transition: none; }
    .simple-contact-page .ct-business-card:hover { transform: none; }
}

/* ------------------------------------------------------------------
 * Nepali tools and PDF tools, redesigned 2026-09-15.
 *
 * Both apps keep their structure and scripts; this pass carries the
 * site's navy and blue through the shell and into every working state:
 * sidebar tabs, tool titles, fields and buttons, the Nepali keyboard,
 * counter tiles, number and date results, the PDF drop zone, page
 * cards, the full-screen document headers, the sign editor and the
 * floating selection toolbar. The gold accents and the rules beside and
 * under tool titles are gone; errors read in red rather than blue.
 * ------------------------------------------------------------------ */
.shrey-managed-page:has(.shrey-tools),
.shrey-managed-page:has(.shrey-pdf-shell) { background: linear-gradient(180deg, #F2F5FB 0%, #E9EFFD 100%); }

/* Shell and sidebar (both apps) */
.shrey-tools-workspace,
.shrey-pdf-app {
    border: 0;
    border-radius: 28px;
    box-shadow: 0 40px 90px -40px rgba(10, 20, 43, .45), 0 2px 6px rgba(10, 20, 43, .05);
}
.shrey-tools-nav,
.shrey-pdf-nav {
    background:
        radial-gradient(120% 60% at 0% 0%, rgba(85, 133, 238, .22), transparent 60%),
        linear-gradient(165deg, #12244E, #0A142B);
}
.shrey-tools-nav-label,
.shrey-pdf-nav::before { color: #8FB0F7; }
.shrey-tools-nav button::before,
.shrey-pdf-nav button span { color: #8FB0F7; }
.shrey-tools-nav button,
.shrey-pdf-nav button { color: rgba(255, 255, 255, .78); }
.shrey-tools-nav button:hover,
.shrey-tools-nav button:focus-visible,
.shrey-pdf-nav button:hover,
.shrey-pdf-nav button:focus-visible {
    border-color: rgba(143, 176, 247, .22);
    color: #fff;
    background: rgba(143, 176, 247, .08);
}
.shrey-tools-nav button.is-active,
.shrey-pdf-nav button.is-active {
    border-color: rgba(143, 176, 247, .35);
    color: #fff;
    background: rgba(143, 176, 247, .16);
    box-shadow: inset 3px 0 #5585EE;
}
.shrey-tools-nav button.is-active::before,
.shrey-pdf-nav button.is-active span { color: #fff; }

/* Tool titles: no rule beside or under */
.shrey-tool-heading,
.shrey-pdf-title {
    padding: 0;
    border: 0;
}
.shrey-tool-heading { margin-bottom: 26px; }
.shrey-pdf-title { margin-bottom: 26px; }
.shrey-tool-heading h2,
.shrey-pdf-title h2 { color: #0E1C3C; font-weight: 800; letter-spacing: -.03em; }
.shrey-pdf-title > span {
    border: 0;
    color: #fff;
    background: linear-gradient(150deg, #12244E, #134BC3);
    box-shadow: 0 8px 18px -8px rgba(19, 75, 195, .6);
}
.shrey-date-heading p,
.shrey-pdf-title p { color: #44516B; font-size: 15px; }

/* Fields and buttons (Nepali tools) */
.shrey-tool-field > span,
.shrey-date-selects label > span { color: #134BC3; font-size: 12px; letter-spacing: .08em; }
.shrey-tool-field textarea,
.shrey-tool-field input,
.shrey-tool-field select,
.shrey-date-selects input {
    border: 1px solid #DDE3EE;
    border-radius: 14px;
    background: #F7F9FD;
    color: #0E1C3C;
}
#unicode-preeti .shrey-tool-field textarea { background: #F7F9FD; }
.shrey-tool-field textarea:focus,
.shrey-tool-field input:focus,
.shrey-tool-field select:focus,
.shrey-date-selects input:focus {
    border-color: #134BC3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(19, 75, 195, .14);
}
.shrey-tool-actions button {
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid #DDE3EE;
    border-radius: 12px;
    color: #12244E;
    background: #fff;
    font-size: 14px;
}
.shrey-tool-actions button:hover,
.shrey-tool-actions button:focus-visible { border-color: #C9D6F6; color: #12244E; background: #E9EFFD; }
.shrey-tool-actions .shrey-tool-primary,
.shrey-tool-primary {
    border-color: #134BC3;
    color: #fff;
    background: #134BC3;
    box-shadow: 0 10px 22px -10px rgba(19, 75, 195, .7);
}
.shrey-tool-actions .shrey-tool-primary:hover,
.shrey-tool-actions .shrey-tool-primary:focus-visible,
.shrey-tool-primary:hover,
.shrey-tool-primary:focus-visible { border-color: #0F3C9E; color: #fff; background: #0F3C9E; }
.shrey-tool-actions .shrey-keyboard-toggle[aria-expanded="true"] { border-color: #12244E; color: #fff; background: #12244E; }

/* Nepali keyboard */
.shrey-keyboard-panel { padding: 20px; border: 1px solid #DDE3EE; border-radius: 20px; background: #F2F5FB; }
.shrey-keyboard-key {
    min-width: 44px;
    height: 44px;
    border: 1px solid #DDE3EE;
    border-radius: 10px;
    color: #0E1C3C;
    background: #fff;
    box-shadow: 0 1px 0 #DDE3EE;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.shrey-keyboard-key small { color: #55627A; font-size: 9px; }
.shrey-keyboard-key:hover,
.shrey-keyboard-key:focus-visible { border-color: #134BC3; color: #fff; background: #134BC3; }
.shrey-keyboard-key:hover small,
.shrey-keyboard-key:focus-visible small { color: #DCE6FB; }

/* Counter, number and date results */
.shrey-count-results { gap: 12px; }
.shrey-count-results div {
    min-height: 100px;
    border: 1px solid #DDE3EE;
    border-top: 1px solid #DDE3EE;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px -18px rgba(14, 28, 60, .35);
}
.shrey-count-results strong { color: #134BC3; font-size: 32px; font-weight: 800; }
.shrey-count-results span { color: #55627A; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.shrey-number-output {
    min-height: 130px;
    padding: 26px 28px;
    border: 0;
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(80% 120% at 100% 0%, rgba(85, 133, 238, .3), transparent 60%),
        linear-gradient(150deg, #12244E, #0A142B);
}
.shrey-date-direction { background: #E9EFFD; }
.shrey-date-direction button { color: #12244E; }
.shrey-date-direction button.is-active { color: #fff; background: #12244E; }
.shrey-date-entry { border: 1px solid #DDE3EE; border-radius: 20px; background: #F2F5FB; }
.shrey-date-options button:hover,
.shrey-date-options button:focus-visible,
.shrey-date-options button[aria-selected="true"] { background: #134BC3; }
.shrey-date-results article {
    border: 1px solid #DDE3EE;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 34px -24px rgba(14, 28, 60, .4);
}
.shrey-date-results strong { color: #134BC3; }
.shrey-date-results > p { border-color: #F3C7C1; color: #B42318; background: #FEF3F2; }

/* PDF drop zone, options and buttons */
.shrey-pdf-drop {
    border: 2px dashed #B9C7E6;
    border-radius: 20px;
    background: #F7F9FD;
}
.shrey-pdf-drop:hover,
.shrey-pdf-drop:focus-within,
.shrey-pdf-drop.is-dragging { border-color: #134BC3; background: #E9EFFD; }
.shrey-pdf-drop-icon {
    width: 52px;
    height: 52px;
    color: #fff;
    background: linear-gradient(150deg, #12244E, #134BC3);
    box-shadow: 0 12px 24px -10px rgba(19, 75, 195, .6);
}
.shrey-pdf-drop strong { color: #0E1C3C; font-size: 17px; }
.shrey-pdf-options,
.shrey-compress-summary { border-color: #DDE3EE; border-radius: 18px; background: #F2F5FB; }
.shrey-pdf-run,
.shrey-pdf-download {
    border-radius: 12px;
    background: #134BC3;
    box-shadow: 0 12px 24px -12px rgba(19, 75, 195, .7);
}
.shrey-pdf-run:hover,
.shrey-pdf-run:focus-visible,
.shrey-pdf-download:hover,
.shrey-pdf-download:focus-visible { background: #0F3C9E; box-shadow: 0 12px 24px -12px rgba(15, 60, 158, .7); }
.shrey-pdf-minor { border-color: #DDE3EE; border-radius: 12px; background: #fff; color: #12244E; }
.shrey-pdf-result.is-error { color: #B42318; }
.shrey-pdf-drop.is-invalid { border-color: #D92D20; background: #FEF3F2; }

/* Page cards (merge, organize, JPG to PDF, PDF to JPG) */
.shrey-page-card {
    border: 1px solid #DDE3EE;
    border-radius: 18px;
    box-shadow: 0 14px 30px -22px rgba(14, 28, 60, .45);
}
.shrey-page-card:hover { border-color: #134BC3; }
.shrey-page-card.is-selected {
    border-color: #134BC3;
    background: #E9EFFD;
    box-shadow: 0 0 0 3px rgba(19, 75, 195, .2), 0 14px 30px -22px rgba(14, 28, 60, .45);
}
.shrey-page-card img { border-radius: 10px; background: #F2F5FB; }
.shrey-page-label { color: #44516B; font-size: 13px; }
.shrey-page-actions button { border-color: #DDE3EE; color: #12244E; }
.shrey-page-actions button:hover,
.shrey-page-actions button:focus-visible,
.shrey-page-actions [data-page-action="select"][aria-pressed="true"] { border-color: #134BC3; color: #fff; background: #134BC3; }

/* Full-screen document mode */
.shrey-organizer-panel.is-document-mode,
.shrey-sign-panel.is-document-mode { background: #F2F5FB; }
.shrey-organizer-panel.is-document-mode .shrey-pdf-title,
.shrey-sign-toolbar {
    background:
        radial-gradient(60% 160% at 100% 0%, rgba(85, 133, 238, .22), transparent 60%),
        linear-gradient(150deg, #12244E, #0A142B);
}
.shrey-organizer-panel.is-document-mode .shrey-pdf-title > span { color: #fff; background: rgba(143, 176, 247, .18); }
.shrey-organizer-panel.is-document-mode .shrey-pdf-title p { color: #D5DDEC; }
.shrey-organizer-panel.is-document-mode .shrey-organizer-meta { background: #12244E; }
.shrey-organizer-panel.is-document-mode .shrey-pdf-drop { background: #134BC3; box-shadow: 0 14px 30px -10px rgba(19, 75, 195, .65); }
.shrey-organizer-panel.is-document-mode .shrey-pdf-drop-icon { background: none; box-shadow: none; }
.shrey-organizer-panel.is-document-mode .shrey-page-batch-toolbar { border-color: #C9D6F6; border-radius: 14px; }
.shrey-page-batch-toolbar button { border-color: #C9D6F6; border-radius: 10px; color: #12244E; }
.shrey-page-batch-toolbar [data-page-batch="remove"] { border-color: #F3C7C1; color: #B42318; }
.shrey-sign-toolbar span { color: #C9D3E6; }
.shrey-sign-toolbar button { border-color: rgba(255, 255, 255, .3); border-radius: 12px; }
.shrey-sign-toolbar button:hover { color: #12244E; background: #fff; }
.shrey-sign-sheet { border-color: #DDE3EE; border-radius: 12px; box-shadow: 0 20px 44px -26px rgba(14, 28, 60, .45); }
.shrey-sign-editor { border: 1px solid #DDE3EE; border-radius: 22px; box-shadow: 0 24px 50px -30px rgba(14, 28, 60, .45); }
.shrey-sign-methods { border-radius: 12px; background: #E9EFFD; }
.shrey-sign-methods button { color: #12244E; }
.shrey-sign-methods button.is-active { color: #fff; background: #12244E; }

/* Document mode repeats some of these at higher specificity. */
.shrey-organizer-panel.is-document-mode .shrey-page-card { border-radius: 18px; }
.shrey-pdf-run,
.shrey-pdf-download { background-color: #134BC3 !important; }
.shrey-pdf-run:hover,
.shrey-pdf-run:focus-visible,
.shrey-pdf-download:hover,
.shrey-pdf-download:focus-visible { background-color: #0F3C9E !important; }

@media (max-width: 860px) {
    .shrey-pdf-nav button.is-active { box-shadow: inset 0 -3px #5585EE; }
    .shrey-tools-workspace,
    .shrey-pdf-app { border-radius: 20px; }
}
@media (max-width: 700px) {
    .shrey-tools-nav button.is-active { box-shadow: inset 0 -3px #5585EE; }
    .shrey-keyboard-key { min-width: 40px; height: 40px; }
    .shrey-count-results strong { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
    .shrey-keyboard-key { transition: none; }
}

/* Website forms: success panel, error notice and spam trap, updated 2026-09-16 */
.shrey-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.shrey-form-notice.error { margin: 0 0 18px; padding: 14px 16px; border: 1px solid #F4C7C3; border-radius: 12px; background: #FEF1F0; color: #8A1C12; font-size: 15px; line-height: 1.5; }
form.is-sent > :not(.shrey-form-done) { display: none !important; }
.shrey-form-done { display: grid; justify-items: center; gap: 14px; padding: clamp(32px, 6vw, 72px) clamp(8px, 3vw, 32px); text-align: center; outline: 0; }
.shrey-form-done__icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: #E9EFFD; box-shadow: 0 0 0 10px #F4F7FE; color: #134BC3; }
.shrey-form-done h3 { margin: 10px 0 0; color: #0E1C3C; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; }
.shrey-form-done p { max-width: 46ch; margin: 0; color: #44516B; font-size: 16px; line-height: 1.65; }
.shrey-form-done__ref { padding: 7px 14px; border: 1px solid #DDE3EE; border-radius: 999px; background: #F7F9FC; color: #0E1C3C; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.shrey-form-done__again { min-height: 44px; margin-top: 6px; padding: 0 20px; border: 1px solid #C9D6F6; border-radius: 10px; background: #fff; color: #134BC3; font-size: 15px; font-weight: 700; cursor: pointer; }
.shrey-form-done__again:hover { border-color: #134BC3; background: #F2F5FB; }
