/* ============================================================
   MARCUS SCIENCE GROUP
   PREMIUM CENTER NAVIGATION
============================================================ */


/* ------------------------------------------------------------
   VARIABLES
------------------------------------------------------------ */

:root {

    --premium-bg: #f5efe3;
    --premium-surface: rgba(255, 255, 255, 0.82);

    --premium-border: rgba(255, 255, 255, 0.95);

    --premium-dark: #1f2937;
    --premium-dark-2: #27384a;

    --premium-text: #171717;
    --premium-muted: #667085;

    --premium-orange: #ff6b21;
    --premium-orange-dark: #e95712;

    --premium-shadow:
        0 18px 45px rgba(32, 24, 15, 0.14);

    --premium-radius: 24px;

}


/* ------------------------------------------------------------
   HEADER
------------------------------------------------------------ */

.premium-header {

    position: fixed;

    top: 22px;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 9999;

    pointer-events: none;

}


/* ------------------------------------------------------------
   MAIN NAV
------------------------------------------------------------ */

.premium-nav {

    position: relative;

    width: min(1100px, calc(100% - 40px));

    min-height: 76px;

    margin: 0 auto;

    padding: 10px 18px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    background:
        rgba(255, 255, 255, 0.82);

    border: 2px solid var(--premium-border);

    border-radius: var(--premium-radius);

    box-shadow:
        0 14px 35px rgba(25, 20, 15, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.9);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    pointer-events: auto;

}


/* ------------------------------------------------------------
   LEFT + RIGHT NAV
------------------------------------------------------------ */

.premium-nav-left,
.premium-nav-right {

    display: flex;

    align-items: center;

    gap: 8px;

}


.premium-nav-left {

    justify-content: flex-end;

}


.premium-nav-right {

    justify-content: flex-start;

}


/* ------------------------------------------------------------
   NORMAL LINKS
------------------------------------------------------------ */

.premium-link,
.premium-dropdown-toggle {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    height: 42px;

    padding: 0 15px;

    border: 0;

    border-radius: 12px;

    background: transparent;

    color: var(--premium-text);

    font-family:
        Inter,
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 650;

    letter-spacing: -0.01em;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;

}


.premium-link:hover,
.premium-dropdown-toggle:hover {

    color: var(--premium-orange);

    background: rgba(255, 107, 33, 0.07);

    transform: translateY(-1px);

}


/* ------------------------------------------------------------
   CENTER BRAND
------------------------------------------------------------ */

.premium-brand {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-width: 260px;

    color: var(--premium-text);

    text-decoration: none;

    white-space: nowrap;

}


.premium-brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #26394c,
            #182535
        );

    border: 1px solid rgba(255,255,255,0.55);

    box-shadow:
        0 5px 15px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.15);

}


.premium-brand-mark span {

    color: var(--premium-orange);

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 850;

    letter-spacing: -0.04em;

}


.premium-brand-text {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1;

}


.premium-brand-text strong {

    color: #17202b;

    font-family:
        Inter,
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: -0.035em;

}


.premium-brand-text small {

    margin-top: 5px;

    color: #7b8490;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 7px;

    font-weight: 750;

    letter-spacing: 0.16em;

}


/* ------------------------------------------------------------
   DROPDOWN
------------------------------------------------------------ */

.premium-dropdown {

    position: relative;

}


.dropdown-arrow {

    display: inline-block;

    font-size: 14px;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


.premium-dropdown:hover .dropdown-arrow {

    transform: rotate(180deg);

}


/* ------------------------------------------------------------
   DROPDOWN PANEL
------------------------------------------------------------ */

.premium-dropdown-menu {

    position: absolute;

    top: calc(100% + 10px);

    left: 50%;

    min-width: 210px;

    padding: 8px;

    transform:
        translateX(-50%)
        translateY(8px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    background:
        rgba(255,255,255,0.97);

    border: 1px solid rgba(255,255,255,0.95);

    border-radius: 16px;

    box-shadow:
        0 18px 40px rgba(25,20,15,0.16);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

}


.premium-dropdown:hover .premium-dropdown-menu,
.premium-dropdown:focus-within .premium-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);

}


.premium-dropdown-menu a {

    display: flex;

    align-items: center;

    min-height: 42px;

    padding: 0 13px;

    border-radius: 10px;

    color: #30343b;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding 0.2s ease;

}


.premium-dropdown-menu a:hover {

    background:
        rgba(255, 107, 33, 0.09);

    color:
        var(--premium-orange);

    padding-left: 17px;

}


/* ------------------------------------------------------------
   MOBILE BUTTON
------------------------------------------------------------ */

.premium-mobile-toggle {

    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.9);

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.premium-mobile-toggle span {

    display: block;

    width: 19px;
    height: 2px;

    border-radius: 10px;

    background:
        var(--premium-dark);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

}


/* ------------------------------------------------------------
   MOBILE MENU
------------------------------------------------------------ */

.premium-mobile-menu {

    display: none;

    width: min(1100px, calc(100% - 40px));

    margin: 8px auto 0;

    padding: 12px;

    background:
        rgba(255,255,255,0.96);

    border: 2px solid rgba(255,255,255,0.95);

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(25,20,15,0.16);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

}


.premium-mobile-menu > a,
.mobile-dropdown-toggle {

    width: 100%;

    min-height: 48px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    border-radius: 12px;

    background: transparent;

    color: var(--premium-text);

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 650;

    text-decoration: none;

    cursor: pointer;

}


.premium-mobile-menu > a:hover,
.mobile-dropdown-toggle:hover {

    background:
        rgba(255,107,33,0.08);

    color:
        var(--premium-orange);

}


.mobile-dropdown-content {

    display: none;

    padding: 4px 8px 8px;

}


.mobile-dropdown-content.active {

    display: block;

}


.mobile-dropdown-content a {

    display: block;

    padding: 11px 14px;

    color: #69717c;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 13px;

    text-decoration: none;

    border-radius: 9px;

}


.mobile-dropdown-content a:hover {

    background:
        rgba(255,107,33,0.08);

    color:
        var(--premium-orange);

}


/* ------------------------------------------------------------
   MOBILE RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 850px) {

    .premium-header {

        top: 12px;

    }


    .premium-nav {

        width:
            calc(100% - 24px);

        min-height: 64px;

        padding:
            8px 10px;

        display: flex;

        justify-content: center;

    }


    .premium-nav-left,
    .premium-nav-right {

        display: none;

    }


    .premium-brand {

        min-width: 0;

    }


    .premium-brand-mark {

        width: 38px;
        height: 38px;

    }


    .premium-brand-text strong {

        font-size: 14px;

    }


    .premium-brand-text small {

        font-size: 6px;

    }


    .premium-mobile-toggle {

        display: flex;

        position: absolute;

        right: 10px;

        top: 50%;

        transform: translateY(-50%);

    }


    .premium-mobile-menu {

        display: block;

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transform: translateY(-8px);

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease;

    }


    .premium-mobile-menu.active {

        max-height: 700px;

        opacity: 1;

        transform: translateY(0);

    }

}


@media (max-width: 480px) {

    .premium-brand-mark {

        width: 36px;
        height: 36px;

    }


    .premium-brand-text strong {

        font-size: 13px;

    }


    .premium-brand-text small {

        display: none;

    }

}


/* ------------------------------------------------------------
   REDUCED MOTION
------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

    .premium-nav *,
    .premium-mobile-menu *,
    .premium-dropdown-menu {

        transition: none !important;

    }

}
/* ============================================================
   MARCUS SCIENCE GROUP — LIGHT PREMIUM THEME
   NAVBAR WHITE = PAGE BACKGROUND WHITE
============================================================ */

/* MAIN PAGE */
html,
body {
    background: #ffffff !important;
    color: #151515 !important;
}

/* ALL MAIN SECTIONS */
body,
main,
.site-main,
.page,
.home,
.hero,
.hero-section,
section {
    background: #ffffff !important;
}

/* HERO */
.hero {
    background: #ffffff !important;
    color: #151515 !important;
}

/* REMOVE DARK HERO OVERLAYS */
.hero::before,
.hero::after,
.hero-section::before,
.hero-section::after {
    background: transparent !important;
    opacity: 0 !important;
}

/* HERO HEADLINE */
.hero h1,
.hero-title,
.big-results {
    color: #151515 !important;
}

/* TURQUOISE HIGHLIGHT */
.hero h1 span,
.hero-title span,
.big-results span {
    color: #20c7c3 !important;
}

/* HERO PARAGRAPH */
.hero p,
.hero-subtitle,
#subline {
    color: #667085 !important;
}

/* SMALL LABEL */
.eyebrow,
.hero-eyebrow {
    color: #ff6b21 !important;

    background: #fff7f2 !important;

    border: 1px solid #ffd7c2 !important;
}


/* ============================================================
   FLOATING WHITE NAVIGATION
============================================================ */

.premium-header {
    background: transparent !important;
}

.premium-nav {
    background: #ffffff !important;

    border: 2px solid #ffffff !important;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06) !important;
}


/* NAV TEXT */

.premium-link,
.premium-dropdown-toggle {
    color: #171717 !important;
}

.premium-link:hover,
.premium-dropdown-toggle:hover {
    color: #ff6b21 !important;
    background: #fff5ef !important;
}


/* CENTER BRAND */

.premium-brand-text strong {
    color: #151515 !important;
}

.premium-brand-text small {
    color: #8a8f98 !important;
}


/* ============================================================
   CTA ORANGE
============================================================ */

.nav-cta,
.premium-cta,
.explore-btn {
    background: #ff6b21 !important;
    color: #ffffff !important;

    border: none !important;
}

.nav-cta:hover,
.premium-cta:hover,
.explore-btn:hover {
    background: #f45d12 !important;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.hero .btn-primary,
.hero .primary-btn {
    background: #20c7c3 !important;
    color: #ffffff !important;
}

.hero .btn-secondary,
.hero .secondary-btn {
    background: #ffffff !important;
    color: #151515 !important;

    border: 1px solid #d9dee5 !important;
}


/* ============================================================
   IMAGE / CARD AREA
============================================================ */

.card,
.hero-card,
.t-card {
    background: #ffffff !important;

    border: 1px solid #e8eaed !important;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08) !important;
}


/* ============================================================
   STATS
============================================================ */

.stats,
.stats-section {
    background: #ffffff !important;
    color: #151515 !important;
}

.stats-inner {
    background: #ffffff !important;
}


/* ============================================================
   TEAM SECTION
============================================================ */

.team,
.team-section {
    background: #ffffff !important;
    color: #151515 !important;
}

.team-head h2,
.team-head p {
    color: #151515 !important;
}


/* ============================================================
   DROPDOWNS
============================================================ */

.premium-dropdown-menu,
.nav-dropdown,
.dropdown-menu {
    background: #ffffff !important;

    border: 1px solid #eeeeee !important;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12) !important;
}

.premium-dropdown-menu a,
.nav-dropdown a,
.dropdown-menu a {
    color: #151515 !important;
}

.premium-dropdown-menu a:hover,
.nav-dropdown a:hover,
.dropdown-menu a:hover {
    background: #fff5ef !important;
    color: #ff6b21 !important;
}


/* ============================================================
   FOOTER
============================================================ */

footer,
.site-footer {
    background: #151515 !important;
    color: #ffffff !important;
}


/* ============================================================
   REMOVE OLD DARK GRADIENTS
============================================================ */

.hero,
.hero-section,
.home-hero {
    background-image: none !important;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 850px) {

    body,
    main,
    .hero,
    .hero-section,
    section {
        background: #ffffff !important;
    }

    .premium-nav {
        background: #ffffff !important;
    }
}
/* HERO TEXT READABILITY */
.hero p,
.hero-subtitle,
#subline {
    color: #475467 !important;
    opacity: 1 !important;
}

/* HERO CARD — PREMIUM LIGHT */
.hero-card,
.hero-visual,
.hero-media,
.card.hero-card {
    background:
        radial-gradient(circle at 20% 20%, rgba(32,199,195,.14), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255,107,33,.10), transparent 35%),
        #f8fafc !important;

    border: 1px solid #e5e7eb !important;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255,255,255,.9) !important;
}

/* REMOVE BROKEN IMAGE SPACE */

/* =========================================================
   PREMIUM HERO FRAME — DESIGN ONLY
   Content / Text / Menu ko touch nahi karta
   ========================================================= */

/* Hero ko framed banner banana */
.hero {
    position: relative;
    width: calc(100% - 28px);
    max-width: 1600px;
    margin: 0 auto;

    border: 10px solid #ffffff;
    border-top: 0;

    border-radius: 0 0 32px 32px;

    box-sizing: border-box;

    overflow: visible;

    background: transparent;
}

/* White outer frame effect */
.hero::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    border: 2px solid rgba(255, 255, 255, 0.95);

    border-radius: 0 0 28px 28px;

    pointer-events: none;

    z-index: 5;
}

/* =========================================================
   NAVBAR ATTACHED TO TOP OF HERO
   ========================================================= */

.site-header {
    position: absolute !important;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 1000;

    padding: 0 !important;

    pointer-events: none;
}

/* Existing navigation wrapper */
.site-header .nav-wrapper {
    pointer-events: auto;

    position: relative;

    width: calc(100% - 40px);
    max-width: 980px;

    margin: 0 auto;

    min-height: 68px;

    background: #ffffff !important;

    border: 0 !important;

    border-radius: 0 0 24px 24px;

    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.16),
        0 4px 10px rgba(15, 23, 42, 0.08);

    display: flex;
    align-items: center;
}

/* White frame joins navbar to hero */
.site-header .nav-wrapper::after {
    content: "";

    position: absolute;

    left: -10px;
    right: -10px;

    bottom: -10px;

    height: 10px;

    background: #ffffff;

    pointer-events: none;
}

/* =========================================================
   OUTER SIDE FRAME
   ========================================================= */

.hero {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.95),
        0 30px 80px rgba(15,23,42,0.10);
}

/* =========================================================
   TOP CORNER CONNECTIONS
   ========================================================= */

.hero::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 28px;

    border-left: 2px solid rgba(255,255,255,0.95);
    border-right: 2px solid rgba(255,255,255,0.95);

    border-radius: 28px 28px 0 0;

    pointer-events: none;

    z-index: 4;
}

/* =========================================================
   KEEP HERO CONTENT EXACTLY AS IT IS
   ========================================================= */

.hero h1,
.hero h2,
.hero p,
.hero .eyebrow,
.hero .hero-content,
.hero .hero-inner,
.hero .hero-grid,
.hero .card {
    position: relative;
    z-index: 10;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        width: calc(100% - 16px);
        border-width: 7px;
        border-radius: 0 0 22px 22px;
    }

    .site-header .nav-wrapper {
        width: calc(100% - 24px);
        min-height: 58px;
        border-radius: 0 0 18px 18px;
    }

    .site-header .nav-wrapper::after {
        left: -7px;
        right: -7px;
        bottom: -7px;
        height: 7px;
    }
}
/* =========================================================
   HERO VISUAL — RESTORE PROPER SIZE
   ========================================================= */

.hero .hero-visual,
.hero .hero-media,
.hero .hero-card,
.hero .hero-image,
.hero .visual-card {
    min-height: 420px !important;
    height: 420px !important;
    width: 100% !important;

    display: block !important;

    border-radius: 24px !important;
    box-sizing: border-box !important;
}

/* Hero two-column layout */
.hero .hero-grid,
.hero .hero-inner,
.hero .hero-content-wrap {
    min-height: 560px;
}

/* Right side should not collapse */
.hero > div {
    box-sizing: border-box;
}

/* Keep hero visual visible */
.hero img {
    max-width: 100%;
}

/* Don't let previous CSS collapse empty visual */
.hero .hero-visual:empty,
.hero .hero-media:empty,
.hero .hero-card:empty {
    min-height: 420px !important;
}
/* ============================================================
   SOLIDROAD-STYLE HERO FRAME
   DESIGN ONLY — CONTENT IS NOT CHANGED
   ============================================================ */

.hero {
    position: relative !important;
    width: min(1200px, calc(100% - 40px)) !important;
    margin: 0 auto !important;

    background: #ffffff !important;

    border: 4px solid #ffffff !important;
    border-radius: 28px !important;

    overflow: visible !important;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.12),
        0 8px 25px rgba(15, 23, 42, 0.06) !important;

    isolation: isolate;
}

/* White outer frame */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255,255,255,0.95);
    border-radius: 28px;
    pointer-events: none;
    z-index: 20;
}

/* Hero background stays clean */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================================
   NAVBAR — ATTACHED TO TOP OF HERO
   ============================================================ */

.site-header {
    position: relative !important;
    z-index: 50 !important;

    width: min(980px, calc(100% - 80px)) !important;
    margin: -32px auto 0 !important;

    background: #ffffff !important;

    border: 3px solid #ffffff !important;
    border-radius: 22px !important;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 5px 15px rgba(15, 23, 42, 0.08) !important;
}

/* navbar inner */
.nav-wrapper,
.nav-wrapper > * {
    border-radius: inherit;
}

/* ============================================================
   HERO TOP SPACING
   ============================================================ */

.hero {
    padding-top: 70px !important;
}

/* Navbar overlaps the hero just like reference */
.site-header {
    transform: translateY(0);
}

/* ============================================================
   DESKTOP
   ============================================================ */

@media (min-width: 900px) {

    .hero {
        min-height: 720px;
    }

    .site-header {
        margin-top: -32px !important;
    }
}

/* ============================================================
   TABLET / MOBILE
   ============================================================ */

@media (max-width: 899px) {

    .hero {
        width: calc(100% - 24px) !important;
        border-radius: 22px !important;
    }

    .site-header {
        width: calc(100% - 36px) !important;
        margin-top: -24px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 600px) {

    .hero {
        width: calc(100% - 16px) !important;
        border-width: 3px !important;
        border-radius: 18px !important;
    }

    .site-header {
        width: calc(100% - 24px) !important;
        margin-top: -18px !important;
        border-radius: 16px !important;
    }
}
/* ============================================================
   MARCUS SCIENCE GROUP
   SOLIDROAD-STYLE FLOATING HERO FRAME
   DESIGN ONLY
   CONTENT IS NOT CHANGED
   ============================================================ */


/* ------------------------------------------------------------
   1. PAGE BACKGROUND
   ------------------------------------------------------------ */

html,
body {
    background: #f7f7f5 !important;
}


/* ------------------------------------------------------------
   2. HERO — MAIN FLOATING FRAME
   ------------------------------------------------------------ */

.hero {
    position: relative !important;

    width: min(1220px, calc(100% - 48px)) !important;
    min-height: 720px;

    margin: 70px auto 80px !important;

    padding: 120px 60px 70px !important;

    background: #ffffff !important;

    border: 4px solid #ffffff !important;

    border-radius: 30px !important;

    box-sizing: border-box !important;

    overflow: visible !important;

    box-shadow:
        0 30px 80px rgba(20, 30, 40, 0.14),
        0 12px 35px rgba(20, 30, 40, 0.08) !important;

    isolation: isolate !important;
}


/* ------------------------------------------------------------
   3. OUTER WHITE FRAME
   ------------------------------------------------------------ */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid rgba(255, 255, 255, 0.98);

    border-radius: 26px;

    pointer-events: none;

    z-index: 30;
}


/* ------------------------------------------------------------
   4. VERY SUBTLE INNER FRAME
   ------------------------------------------------------------ */

.hero::after {
    content: "";

    position: absolute;

    inset: 6px;

    border: 1px solid rgba(20, 30, 40, 0.06);

    border-radius: 23px;

    pointer-events: none;

    z-index: 29;
}


/* ------------------------------------------------------------
   5. NAVBAR
   FLOATING / ATTACHED TO HERO TOP
   ------------------------------------------------------------ */

.site-header {
    position: absolute !important;

    top: -38px !important;

    left: 50% !important;

    transform: translateX(-50%) !important;

    z-index: 100 !important;

    width: min(980px, calc(100% - 100px)) !important;

    margin: 0 !important;

    padding: 0 !important;

    background: #ffffff !important;

    border: 3px solid #ffffff !important;

    border-radius: 24px !important;

    box-sizing: border-box !important;

    box-shadow:
        0 22px 50px rgba(20, 30, 40, 0.16),
        0 8px 20px rgba(20, 30, 40, 0.08) !important;
}


/* ------------------------------------------------------------
   6. NAVBAR INNER WRAPPER
   ------------------------------------------------------------ */

.site-header .nav-wrapper {
    min-height: 64px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    padding: 8px 18px !important;

    border-radius: 21px !important;

    background: #ffffff !important;

    box-sizing: border-box !important;
}


/* ------------------------------------------------------------
   7. NAVIGATION LINKS
   ------------------------------------------------------------ */

.site-header a,
.site-header button {
    font-family: inherit !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    color: #171717 !important;

    text-decoration: none !important;
}


/* ------------------------------------------------------------
   8. NAV HOVER
   ------------------------------------------------------------ */

.site-header a:hover,
.site-header button:hover {
    color: #171717 !important;
}


/* ------------------------------------------------------------
   9. BRAND / COMPANY NAME
   ------------------------------------------------------------ */

.site-header .brand {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    text-decoration: none !important;
}


/* ------------------------------------------------------------
   10. LOGO
   ------------------------------------------------------------ */

.site-header .brand-logo {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 10px !important;
}


/* ------------------------------------------------------------
   11. HERO CONTENT
   KEEP CONTENT INTACT
   ------------------------------------------------------------ */

.hero > * {
    position: relative;

    z-index: 10;
}


/* ------------------------------------------------------------
   12. HERO TEXT
   NO CONTENT CHANGE
   ------------------------------------------------------------ */

.hero h1,
.hero h2,
.hero h3,
.hero p {
    position: relative;

    z-index: 10;
}


/* ------------------------------------------------------------
   13. HERO IMAGE / MEDIA CARD
   ------------------------------------------------------------ */

.hero img,
.hero .hero-media,
.hero .hero-card {
    position: relative;

    z-index: 10;

    border-radius: 24px;
}


/* ------------------------------------------------------------
   14. HERO BUTTONS
   ------------------------------------------------------------ */

.hero a,
.hero button {
    position: relative;

    z-index: 15;
}


/* ------------------------------------------------------------
   15. PREMIUM SOFT EDGE
   ------------------------------------------------------------ */

.hero .hero-content,
.hero .hero-inner {
    position: relative;

    z-index: 10;
}


/* ------------------------------------------------------------
   16. DESKTOP SPACING
   ------------------------------------------------------------ */

@media (min-width: 1100px) {

    .hero {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

}


/* ------------------------------------------------------------
   17. TABLET
   ------------------------------------------------------------ */

@media (max-width: 900px) {

    .hero {
        width: calc(100% - 30px) !important;

        margin-top: 60px !important;

        padding:
            105px 35px 55px !important;

        border-radius: 26px !important;
    }

    .site-header {
        width: calc(100% - 60px) !important;

        top: -32px !important;

        border-radius: 21px !important;
    }

}


/* ------------------------------------------------------------
   18. MOBILE
   ------------------------------------------------------------ */

@media (max-width: 600px) {

    .hero {
        width: calc(100% - 18px) !important;

        min-height: 650px;

        margin-top: 48px !important;

        padding:
            90px 20px 45px !important;

        border-width: 3px !important;

        border-radius: 20px !important;
    }

    .hero::before {
        border-radius: 17px;
    }

    .hero::after {
        border-radius: 15px;
    }

    .site-header {
        width: calc(100% - 30px) !important;

        top: -25px !important;

        border-width: 2px !important;

        border-radius: 18px !important;
    }

    .site-header .nav-wrapper {
        min-height: 58px !important;

        padding: 6px 12px !important;
    }

}


/* ------------------------------------------------------------
   19. PREVENT HORIZONTAL SCROLL
   ------------------------------------------------------------ */

html,
body {
    overflow-x: hidden !important;
}


/* ------------------------------------------------------------
   20. SMOOTH VISUAL EDGE
   ------------------------------------------------------------ */

.hero,
.site-header {
    -webkit-backdrop-filter: blur(12px);

    backdrop-filter: blur(12px);
}


/* ------------------------------------------------------------
   END
   ------------------------------------------------------------ */
   /* ============================================================
   /* ============================================================
   MARCUS SCIENCE GROUP
   SOLIDROAD-INSPIRED HERO FRAME
   DESIGN / SHAPE ONLY
   CONTENT + TEXT + FONT + MENU UNCHANGED
   ============================================================ */

/* ------------------------------------------------------------
   PAGE BASE
   ------------------------------------------------------------ */

html,
body {
    background: #ffffff !important;
    overflow-x: hidden !important;
}


/* ------------------------------------------------------------
   HERO OUTER FRAME
   ------------------------------------------------------------ */

.hero-section {
    position: relative !important;

    width: min(1280px, calc(100% - 40px)) !important;
    margin: 110px auto 0 !important;

    background: #ffffff !important;

    border-left: 5px solid #ffffff !important;
    border-right: 5px solid #ffffff !important;
    border-bottom: 5px solid #ffffff !important;

    border-top: 0 !important;

    border-radius: 0 0 30px 30px !important;

    box-sizing: border-box !important;

    overflow: visible !important;

    isolation: isolate !important;

    box-shadow:
        0 25px 70px rgba(20, 25, 30, 0.08),
        0 8px 25px rgba(20, 25, 30, 0.04) !important;
}


/* ------------------------------------------------------------
   INNER WHITE FRAME
   ------------------------------------------------------------ */

.hero-section::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    border-left: 1px solid rgba(255,255,255,0.95);
    border-right: 1px solid rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.95);

    border-radius: 0 0 26px 26px;

    pointer-events: none;

    z-index: 20;
}


/* ------------------------------------------------------------
   KEEP HERO CONTENT ABOVE FRAME
   ------------------------------------------------------------ */

.hero-section > *,
.hero-section .hero-container,
.hero-section .hero-content,
.hero-section .hero-left,
.hero-section .hero-right,
.hero-section h1,
.hero-section h2,
.hero-section p,
.hero-section a,
.hero-section button {
    position: relative;
    z-index: 30;
}


/* ------------------------------------------------------------
   NAVBAR
   ATTACHED / HANGING FROM HERO TOP
   ------------------------------------------------------------ */

.premium-header {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;

    z-index: 9999 !important;

    pointer-events: none !important;

    background: transparent !important;

    padding: 0 !important;
}


/* ------------------------------------------------------------
   NAVBAR FRAME
   ------------------------------------------------------------ */

.premium-nav {
    position: relative !important;

    width: min(1100px, calc(100% - 80px)) !important;

    min-height: 76px !important;

    margin: 0 auto !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 2px solid #ffffff !important;

    border-radius: 0 0 24px 24px !important;

    box-shadow:
        0 18px 45px rgba(20, 25, 30, 0.13),
        0 5px 16px rgba(20, 25, 30, 0.06) !important;

    pointer-events: auto !important;

    z-index: 10000 !important;
}


/* ------------------------------------------------------------
   NAVBAR BOTTOM ATTACHMENT
   Gives the "hanging from top" appearance
   ------------------------------------------------------------ */

.premium-nav::after {
    content: "";

    position: absolute;

    left: -7px;
    right: -7px;

    bottom: -7px;

    height: 7px;

    background: #ffffff;

    border-radius: 0 0 8px 8px;

    pointer-events: none;

    z-index: -1;
}


/* ------------------------------------------------------------
   NAV TEXT
   DO NOT CHANGE FONT STYLE
   ------------------------------------------------------------ */

.premium-link,
.premium-dropdown-toggle {
    color: #171717 !important;
}


/* ------------------------------------------------------------
   CENTER BRAND
   ------------------------------------------------------------ */

.premium-brand {
    position: relative;
    z-index: 5;
}


/* ------------------------------------------------------------
   DROPDOWNS
   ------------------------------------------------------------ */

.premium-dropdown-menu {
    z-index: 10001 !important;

    background: #ffffff !important;

    border: 1px solid #eeeeee !important;

    border-radius: 16px !important;

    box-shadow:
        0 18px 45px rgba(20, 25, 30, 0.14) !important;
}


/* ------------------------------------------------------------
   HERO VISUAL
   KEEP EXISTING CONTENT / IMAGE
   ------------------------------------------------------------ */

.hero-section .hero-card,
.hero-section .hero-visual,
.hero-section .hero-media,
.hero-section .hero-image,
.hero-section .visual-card {
    position: relative !important;

    z-index: 30 !important;

    border-radius: 24px !important;

    overflow: hidden !important;
}


/* ------------------------------------------------------------
   DESKTOP
   ------------------------------------------------------------ */

@media (min-width: 1101px) {

    .hero-section {
        padding-top: 105px !important;
        padding-bottom: 55px !important;
    }

}


/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 1100px) {

    .hero-section {
        width: calc(100% - 30px) !important;

        margin-top: 95px !important;

        border-left-width: 4px !important;
        border-right-width: 4px !important;
        border-bottom-width: 4px !important;

        border-radius: 0 0 26px 26px !important;
    }

    .premium-nav {
        width: calc(100% - 50px) !important;
    }

}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 850px) {

    .hero-section {
        width: calc(100% - 16px) !important;

        margin-top: 78px !important;

        border-left-width: 3px !important;
        border-right-width: 3px !important;
        border-bottom-width: 3px !important;

        border-radius: 0 0 22px 22px !important;
    }

    .premium-header {
        top: 0 !important;
    }

    .premium-nav {
        width: calc(100% - 24px) !important;

        min-height: 64px !important;

        border-radius: 0 0 18px 18px !important;
    }

}


/* ------------------------------------------------------------
   SMALL MOBILE
   ------------------------------------------------------------ */

@media (max-width: 480px) {

    .hero-section {
        width: calc(100% - 10px) !important;

        margin-top: 72px !important;

        border-left-width: 2px !important;
        border-right-width: 2px !important;
        border-bottom-width: 2px !important;

        border-radius: 0 0 18px 18px !important;
    }

    .premium-nav {
        width: calc(100% - 16px) !important;

        min-height: 58px !important;

        border-radius: 0 0 16px 16px !important;
    }

}


/* ------------------------------------------------------------
   PREVENT OLD HERO FRAME RULES FROM INTERFERING
   ------------------------------------------------------------ */

.hero {
    border: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    margin: 0 !important;
}


/* ------------------------------------------------------------
   IMPORTANT:
   Do NOT change hero text/content
   ------------------------------------------------------------ */

.hero-section h1,
.hero-section h2,
.hero-section p,
.hero-section .hero-description,
.hero-section .eyebrow,
.hero-section .hero-eyebrow {
    transform: none;
}


/* ============================================================
   END — SOLIDROAD STYLE FRAME
   ============================================================ */
   
   .premium-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}