/* ============================================================
   UNCODEMY — header.css
   ONLY the navbar/header and the hero section.
   Design tokens (:root) and every other block live in main.css,
   so main.css must be loaded before this file.
   ============================================================ */


/* NOTE: these two @import rules sat in the middle of the original
   complete.css, where the CSS spec makes them invalid, so the browser
   has always ignored them and the page renders with the fallback fonts.
   They are kept here, disabled, so the current design is not changed.
   Un-comment them (and keep them at the very top of the file) only if
   you actually want Roboto/Poppins to load. */
/*
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);
*/

/* =========================
   NAVBAR / HEADER
========================= */

.abhay-site-header {
    position: relative;
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid #aab8c4;
    background: var(--color-surface);
  }
  
  .abhay-top-row {
    position: relative;
    font-family: Roboto, Arial, sans-serif;
    height: 54px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 13px 0 35px;
    background: var(--color-surface-topbar);
  }
  
  .abhay-abhasu-trigger,
  .abhay-nav-row,
  .abhay-quick-btn {
    font-family: Poppins, sans-serif;
  }
  
  .abhay-brand {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 149px;
    height: 118px;
    flex: 0 0 166px;
    background-color: var(--color-surface-topbar);
  }
  
  .abhay-brand-logo {
    width: 166px;
    height: 86px;
    display: block;
    object-fit: contain;
    object-position: left top;
  }
  
  .abhay-rank {
    max-width: 192px;
    flex: 0 1 510px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding-top: 14px;
    margin-left: 141px;
  }
  
  .abhay-rank strong {
    color: var(--color-primary-alt);
    font-size: 36px;
    line-height: 31px;
    font-weight: 600;
  }
  
  .abhay-rank span {
    color: #15191f;
    font-size: 15px;
    line-height: 16px;
    font-weight: 600;
  }
  
  .abhay-contact-bar {
    height: 37px;
    gap: 7px;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: clamp(12px, 0.86vw, 18px);
    line-height: 18px;
    font-weight: 600;
  }
  
  .abhay-contact-bar.abhay-is-open,
  .abhay-popup.abhay-active {
    display: flex;
  }
  
  .abhay-sep {
    width: 3px;
    height: 12px;
    flex: 0 0 2px;
    background: var(--color-primary-alt);
  }
  
  .abhay-desktop-numbers {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .phone-dropdown {
    position: relative;
    display: none;
  }
  
  .phone-icon-btn {
    gap: 5px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
  }
  
  .phone-icon-btn svg {
    width: 19px;
    height: 19px;
    fill: #ff5f0f;
  }
  
  #abhay-gmail,
  .ab-number-sec,
  .abhay-abhasu-close,
  .abhay-phone,
  .abhay-quick-actions,
  .abhay-support {
    display: none;
  }
  .down{
    margin-top: 10px;
  }
  .ab-number {
    font-size: 12px;
    font-weight: 600;
  }
  
  .phone-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 170px;
    z-index: 999;
  }
  
  .phone-dropdown-menu.abhay-is-open {
    display: block;
  }
  
  .phone-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--color-body-strong);
    font-size: 14px;
    white-space: nowrap;
  }
  
  .phone-dropdown-menu a:hover {
    background: #f2f2f2;
  }
  
  .abhay-whatsapp {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .abhay-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .ab-img {
    width: 21px !important;
    height: 21px !important;
  }
  
  .abhay-nav-row {
    height: 64px;
    display: grid;
    grid-template-columns: 8px 1fr;
    align-items: start;
    padding: 16px 27px 0 255px;
    background: var(--color-surface);
  }
  
  .abhay-mobile-btn {
    display: none;
    height: 38px;
    padding: 0 13px;
    border-radius: 4px;
    color: var(--color-surface);
    background: var(--color-primary-alt);
    font-weight: 600;
  }
  
  .abhay-primary-nav {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 28px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .abhay-primary-nav a {
    position: relative;
    line-height: 24px;
  }
  
  .abhay-hero-content h1 span,
  .abhay-hero-content h2 span,
  .abhay-hero-kicker,
  .abhay-primary-nav a:hover {
    color: var(--color-primary-alt);
  }
  
  .abhay-career-link {
    color: #0078b6;
  }
  
  .abhay-ai-badge {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 13px;
    border-radius: 18px;
    color: var(--color-surface);
    background: #ff6133;
    font-size: 10px;
    line-height: 15px;
    font-weight: 600;
  }
  
  .abhay-ai-badge::before {
    content: "\2742";
    margin-right: 4px;
    font-size: 13px;
  }
  
  .abhay-fee-pay-btn {
    top: -5px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 7px;
    border-radius: 4px;
    color: var(--color-surface);
    background: linear-gradient(#1d9728, #116f18);
  }
  
  .abhay-abhasu-dropdown-wrap {
    position: relative;
  }
  
  .abhay-abhasu-trigger {
    display: flex;
    margin-top: -4px;
    background: 0 0;
    border: none;
    font-weight: 600;
    color: #000;
    font-size: 15px;
    cursor: pointer;
    padding-top: 8px;
    position: relative;
  }
  
  .abhay-abhasu-trigger:hover {
    color: var(--color-primary-menu-light);
  }
  
  .abhay-abhasu-trigger:focus-visible {
    outline: 2px solid var(--color-primary-menu);
    outline-offset: 3px;
    border-radius: 6px;
  }
  
  .abhay-abhasu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 28, 0.5);
    backdrop-filter: blur(2px);
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
  }
  
  .abhay-abhasu-overlay.abhay-abhasu-open {
    opacity: 1;
    visibility: visible;
  }
  
  .abhay-abhasu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
    width: min(1300px, 92vw);
    max-height: 58vh;
    background: var(--color-surface);
    border: 1px solid var(--color-border-panel);
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(18, 32, 59, 0.28), 0 0 0 1px rgba(18, 32, 59, 0.03);
    display: flex;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
    z-index: 60;
  }
  
  .abhay-abhasu-panel.abhay-abhasu-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  
  .abhay-abhasu-sidebar {
    width: 260px;
    flex: none;
    background: linear-gradient(180deg, #fafafc 0, #f5f6fa 100%);
    border-right: 1px solid var(--color-border-panel);
    padding: 18px 10px;
    overflow-y: auto;
  }
  
  .abhay-abhasu-sidebar-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9aa3b5;
    padding: 6px 14px 10px;
    font-weight: 600;
  }
  
  .abhay-abhasu-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: 0 0;
    border: none;
    color: var(--color-text-muted);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: background 0.18s, color 0.18s;
  }
  
  .abhay-abhasu-sidebar-item:hover {
    background: var(--color-primary-menu-soft);
    color: var(--color-text);
  }
  
  .abhay-abhasu-sidebar-item.abhay-abhasu-active {
    background: linear-gradient( 90deg, var(--color-primary-menu) 0, var(--color-primary-menu-light) 100% );
    color: var(--color-surface);
    box-shadow: 0 6px 16px -6px rgba(255, 106, 61, 0.55);
  }
  
  .abhay-abhasu-sidebar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c7ccd8;
    flex: none;
    transition: background 0.18s, transform 0.18s;
  }
  
  .abhay-abhasu-sidebar-item.abhay-abhasu-active .abhay-abhasu-sidebar-dot {
    background: var(--color-surface);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  }
  
  .abhay-abhasu-sidebar-count {
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    background: rgba(18, 32, 59, 0.05);
    padding: 2px 7px;
    border-radius: 20px;
  }
  
  .abhay-abhasu-sidebar-item.abhay-abhasu-active .abhay-abhasu-sidebar-count {
    color: var(--color-surface);
    background: rgba(255, 255, 255, 0.22);
  }
  
  .abhay-abhasu-content {
    flex: 1;
    padding: 22px 24px;
    overflow-y: auto;
  }
  
  .abhay-abhasu-content-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  
  .abhay-abhasu-content-title {
    font-family: Sora, sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
  }
  
  .abhay-abhasu-content-sub {
    font-size: 12.5px;
    color: var(--color-text-muted);
    margin: 2px 0 0;
  }
  
  .abhay-abhasu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .abhay-abhasu-card {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    background: var(--color-surface-card);
    color: var(--color-text);
    box-shadow: 0 1px 2px rgba(18, 32, 59, 0.04);
    transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
    animation: 0.28s both abhasuFadeIn;
  }
  
  .abhay-abhasu-card:hover,
  .abhay-training-card-container .abhay-card:hover {
    border-color: var(--color-border-card-hover);
    background: var(--color-surface-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -12px rgba(255, 106, 61, 0.35);
  }
  
  .abhay-abhasu-card-top {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .abhay-abhasu-course-img {
    width: 40px;
    height: 40px;
  }
  
  .abhay-abhasu-card-title {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
  }
  
  .abhay-abhasu-card-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin: 0;
    flex: 1;
    text-wrap: wrap;
  }
  
  .abhay-abhasu-card-cta {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-primary-menu);
    align-self: flex-start;
  }
  
  .abhay-abhasu-card-cta::after {
    content: " \2192";
  }
  
  @keyframes abhasuFadeIn {
    from {
      opacity: 0;
      transform: translateY(4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .abhay-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 96%;
    height: 100vh;
    background: rgba(10, 15, 28, 0.5);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .abhay-popup-content {
    width: min(1300px, 92vw);
    max-height: 80vh;
    overflow-y: auto;
    background: var(--color-surface);
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(18, 32, 59, 0.28), 0 0 0 1px rgba(18, 32, 59, 0.03);
    position: relative;
  }
  
  .abhay-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(18, 32, 59, 0.06);
    cursor: pointer;
  }
  
  .abhay-close:hover {
    background: rgba(18, 32, 59, 0.12);
  }
  
  .abhay-training-heading {
    text-align: center;
    margin-bottom: 22px;
  }
  
  .abhay-training-heading h2 {
    font-family: Sora, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 6px;
  }
  
  .abhay-training-heading p {
    font-family: Inter, sans-serif;
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }
  
  .abhay-training-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .abhay-training-card-container .abhay-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    background: var(--color-surface-card);
    overflow: hidden;
    text-align: left;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  }
  
  .abhay-training-card-container .abhay-card img {
    height: 50px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
  }
  
  .abhay-training-card-container .abhay-card h3 {
    font-family: Sora, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 14px 6px 6px;
  }
  
  .abhay-training-card-container .abhay-card p {
    font-family: Inter, sans-serif;
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 16px 12px;
    flex: 1;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    text-align: center;
    padding-top: 10px;
  }
  
  .abhay-training-card-container .abhay-card a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary-menu);
    margin: 0 16px 16px;
    text-align: center;
  }
  
  .abhay-training-card-container .abhay-card a:hover {
    text-decoration: underline;
  }
  
  #popupAbout .abhay-training-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #popupAbout .abhay-training-card-container .abhay-card,
  #popupFreeResources .abhay-training-card-container .abhay-card {
    text-align: center;
  }
  
  .abhay-abt-img-head,
  .abhay-image-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
  }
  
  .abhay-abt-img-head img,
  .abhay-image-heading img {
    width: 42px;
    height: 42px;
    display: block;
    margin: 0;
  }
  
  .abhay-image-heading h3 {
    font-weight: 500;
  }
  
  .abhay-abt-img-head h3 {
    font-weight: 600;
  }
  
  .abhay-hero-section {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    align-items: center;
    gap: 42px;
    overflow: hidden;
    padding: 52px 48px 46px;
    border-bottom: 1px solid #e7edf2;
    background: #f4f8fc;
  }
  
  .abhay-hero-content,
  .abhay-hero-visual {
    position: relative;
    z-index: 1;
  }
  
  .abhay-hero-content h1 {
    margin: 0;
    color: #101723;
    font-size: clamp(34px, 2.35vw, 48px);
    line-height: 1.18;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .abhay-hero-content h2 {
    max-width: 870px;
    margin: 24px 0 0;
    color: #111925;
    font-size: clamp(24px, 1.72vw, 34px);
    line-height: 1.25;
    font-weight: 600;
  }
  
  .abhay-hero-copy {
    max-width: 900px;
    margin: 14px 0 0;
    color: #4d5661;
    font-size: clamp(18px, 1.2vw, 24px);
    line-height: 1.45;
    font-weight: 500;
  }
  
  .abhay-hero-kicker {
    margin: 24px 0 0;
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 1.3;
    font-weight: 600;
  }
  
  .abhay-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 1.3vw, 24px);
    margin-top: 12px;
  }
  
  .abhay-hero-primary {
    flex: 1 1 0;
    min-width: 0;
    max-width: 263px;
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 5px;
    color: var(--color-surface);
    background: var(--color-primary-alt);
    font-size: clamp(15px, 1.05vw, 20px);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 12px 12px 0 rgba(228, 223, 223, 0.55);
  }
  
  .abhay-hero-primary:first-child::before {
    content: "\2192";
    margin-right: 7px;
    font-size: 22px;
    line-height: 1;
  }
  
  .abhay-trusted-row {
    margin-top: 54px;
  }
  
  .abhay-trusted-row > strong {
    display: block;
    margin-bottom: 26px;
    color: #101723;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
  }
  
  .abhay-trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(22px, 2.3vw, 44px);
  }
  
  .abhay-trusted-logos span {
    font-size: clamp(16px, 1.15vw, 24px);
    line-height: 1;
    font-weight: 600;
    color: #627080;
  }
  
  .abhay-bottom-cta a,
  .abhay-orbit-badge {
    color: var(--color-surface);
    font-weight: 600;
    text-align: center;
  }
  
  .abhay-trusted-logos span:nth-child(2) {
    color: #21a8e8;
  }
  
  .abhay-trusted-logos span:nth-child(3),
  .abhay-trusted-logos span:nth-child(5),
  .abhay-trusted-logos span:nth-child(7) {
    color: #e3222b;
  }
  
  .abhay-trusted-logos span:nth-child(4) {
    color: #ff6a2a;
  }
  
  .abhay-trusted-logos span:nth-child(6) {
    color: #d71920;
  }
  
  .abhay-trusted-logos span:nth-child(8) {
    color: #202733;
  }
  
  .abhay-hero-visual {
    min-height: 420px;
    display: grid;
    place-items: center;
  }
  
  .abhay-orbit-graphic {
    position: relative;
    width: min(520px, 36vw);
    aspect-ratio: 1;
  }
  
  .abhay-orbit {
    position: absolute;
    border: 5px solid var(--color-primary-alt);
    border-radius: 50%;
    inset: 0;
  }
  
  .abhay-orbit-inner {
    inset: 12.5%;
  }
  
  .abhay-laptop-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 116px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px 8px;
    border: 8px solid #10101d;
    border-bottom-width: 12px;
    border-radius: 7px 7px 3px 3px;
    background: var(--color-surface);
    box-shadow: 0 8px 0 #292f3d, 0 14px 16px rgba(0, 0, 0, 0.18);
  }
  
  .abhay-laptop-logo::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -20px;
    height: 7px;
    border-radius: 50%;
    background: #2b3240;
  }
  
  .abhay-laptop-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .abhay-orbit-badge {
    position: absolute;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-alt);
    border: 2px solid rgba(0, 119, 255, 0.5);
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(19, 79, 170, 0.34);
  }
  
  .abhay-badge-one {
    left: 6%;
    top: 16%;
    background: linear-gradient(135deg, #5046d9, var(--color-primary-alt));
  }
  
  .abhay-badge-two {
    left: 17%;
    top: 51%;
    background: linear-gradient(135deg, #6b5cff, var(--color-primary-alt));
  }
  
  .abhay-badge-three {
    left: 25%;
    bottom: 3%;
    background: linear-gradient(135deg, #ffd43b, var(--color-primary-alt));
  }
  
  .abhay-badge-four {
    right: 0;
    bottom: 18%;
    background: linear-gradient(135deg, #3059d9, #ffd13b);
  }
  
  .abhay-badge-five {
    right: 5%;
    top: 34%;
    background: linear-gradient(135deg, var(--color-primary-alt), #2f9cff);
  }
  
  .abhay-badge-six {
    right: 14%;
    top: 2%;
    background: linear-gradient(135deg, #16a5ff, var(--color-primary-alt));
  }
  
  .abhay-badge-seven {
    left: 39%;
    top: 8%;
    background: var(--color-surface);
    color: var(--color-primary-alt);
  }
  
  .abhay-badge-eight {
    left: 43%;
    bottom: 8%;
    background: linear-gradient(135deg, #101723, var(--color-primary-alt));
  }
  
  .abhay-support-float {
    position: fixed;
    right: 22px;
    bottom: 18px;
    z-index: 40;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #50e6c2;
    box-shadow: 0 8px 18px rgba(10, 74, 98, 0.2);
  }
  
  .abhay-support-float span {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 46% 46%;
    background: #ffd26a;
  }
  
  .abhay-support-float span::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 28px;
    height: 22px;
    border: 6px solid var(--color-text-dark);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
  }
  
  .abhay-support-float span::after {
    content: "";
    position: absolute;
    left: -4px;
    top: 17px;
    width: 52px;
    height: 15px;
    border-left: 8px solid var(--color-primary-alt);
    border-right: 8px solid var(--color-primary-alt);
    border-radius: 9px;
  }
  
  .abhay-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    height: 38px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--color-primary-alt);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.18);
  }
  
  .abhay-bottom-cta a {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-left: 1px solid rgba(180, 38, 10, 0.55);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
  }
  
  .abhay-bottom-cta a:hover {
    filter: brightness(0.97);
  }
  
  /* =========================
     HERO
  ========================= */
  
  .shad-wrap {
    font-family:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
    color:var(--color-heading);
    background:var(--color-surface);
    max-width:1300px;
    margin:0 auto;
    padding:14px 16px 0;
  }
  
  .shad-wrap * {
    box-sizing:border-box;
  }
  
  .shad-wrap {
    font-family:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
    color:var(--color-heading);
    background:var(--color-surface);
    max-width:1180px;
    margin:0 auto;
    padding:14px 16px 0;
  }
  
  .shad-crumb {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    font-size:13.5px;
    margin-bottom:20px;
  }
  
  .shad-crumb-left {
    display:flex;
    align-items:center;
    gap:8px;
    color:#5b6b85;
    flex-wrap:wrap;
  }
  
  .shad-crumb-left a {
    color:#5b6b85;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
  }
  
  .shad-crumb-left a:hover {
    color:var(--color-primary);
  }
  
  .shad-crumb-left svg {
    width:14px;
    height:14px;
    stroke:currentColor;
    fill:none;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  
  .shad-crumb-sep {
    color:#b8c2d4;
    font-size:14px;
  }
  
  .shad-crumb-current {
    color:var(--color-heading);
    font-weight:700;
  }
  
  .shad-crumb-right {
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#5b6b85;
  }
  
  .shad-crumb-right b {
    color:var(--color-heading);
    font-weight:700;
  }
  
  .shad-crumb-right svg {
    width:15px;
    height:15px;
    stroke:#5b6b85;
    fill:none;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  
  .shad-hero {
    display:flex;
    gap:34px;
    align-items:flex-start;
  }
  
  .shad-left {
    flex:1 1 auto;
    min-width:0;
  }
  
  .shad-right {
    flex:0 0 388px;
    max-width:388px;
    min-width:0;
  }
  
  .shad-left-card {
    padding:14px 16px 0;
  }
  
  .shad-tag {
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:#fff3ec;
    color:var(--color-primary);
    font-size:11.5px;
    font-weight:700;
    padding:6px 13px;
    border-radius:50px;
    margin-bottom:18px;
    width:fit-content;
  }
  
  .shad-h1 {
    font-size:clamp(21px,2.8vw,33px);
    font-weight:800;
    line-height:1.28;
    margin:0 0 16px;
    letter-spacing:-.5px;
    color:var(--color-heading);
  }
  
  .shad-h1 span {
    color:var(--color-primary);
    display:block;
  }
  
  .shad-desc {
    font-size:14.5px;
    color:var(--color-body);
    line-height:1.72;
    margin:0 0 18px;
    max-width:700px;
  }
  
  .shad-ratings {
    display:flex;
    flex-wrap:wrap;
    gap:9px 16px;
    align-items:center;
    margin-bottom:24px;
  }
  
  .shad-r-item {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12.5px;
    font-weight:600;
    color:#243047;
    text-decoration:none;
  }
  
  .shad-r-item:hover {
    color:var(--color-primary);
  }
  
  .shad-r-item img {
    width:17px;
    height:17px;
    object-fit:contain;
  }
  
  .shad-btns,
  .uc-placement-training {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    width:100%;
  }
  
  .uc-placement-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:11px 17px;
    border-radius:7px;
    font-size:13.5px;
    font-weight:600;
    font-family:inherit;
    cursor:pointer;
    text-decoration:none;
    line-height:1.2;
    white-space:nowrap;
    transition:background .2s,box-shadow .2s,transform .18s;
  }
  
  .uc-placement-btn img {
    width:14px;
    height:14px;
    object-fit:contain;
  }
  
  .uc-placement-btn-outline {
    border:1.5px solid var(--color-primary);
    color:var(--color-primary);
    background:var(--color-surface);
  }
  
  .uc-placement-btn-outline:hover {
    background:var(--color-surface-primary-soft);
  }
  
  .uc-placement-btn-fill {
    border:1.5px solid transparent;
    background:var(--color-primary);
    color:var(--color-surface);
  }
  
  .uc-placement-btn-fill:hover {
    background:#ec4715;
    transform:translateY(-1px);
    box-shadow:0 6px 16px rgba(255,84,33,.3);
  }
  
  .shad-card {
    background:var(--color-surface);
    border-radius:18px;
    box-shadow:0 10px 34px rgba(15,27,62,.10);
    padding:14px 15px 13px;
    width:100%;
    display:flex;
    flex-direction:column;
  }
  
  .shad-badge {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    background:linear-gradient(90deg,var(--color-primary),var(--color-primary-light));
    color:var(--color-surface);
    font-size:10px;
    font-weight:700;
    letter-spacing:.4px;
    padding:5px 14px;
    border-radius:50px;
    width:fit-content;
    margin:0 auto 11px;
  }
  
  .shad-title {
    text-align:center;
    font-size:17px;
    font-weight:800;
    color:var(--color-heading);
    line-height:1.3;
    margin:0 0 12px;
  }
  
  .shad-title span {
    color:var(--color-primary);
  }
  
  .shad-pricing {
    margin-bottom:11px;
  }
  
  .shad-now {
    border-radius:11px;
    padding:11px 8px;
    text-align:center;
    background:var(--color-success);
  }
  
  .shad-now .shad-l {
    font-size:10.5px;
    font-weight:600;
    color:rgba(255,255,255,.95);
    margin-bottom:3px;
  }
  
  .shad-now .shad-v {
    font-size:20px;
    font-weight:800;
    color:var(--color-surface);
    line-height:1.1;
    letter-spacing:-.3px;
  }
  
  .shad-now .shad-g {
    font-size:9.5px;
    color:rgba(255,255,255,.9);
    margin-top:2px;
  }
  
  .shad-feats {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:7px;
    margin-bottom:14px;
  }
  
  .shad-f {
    border-radius:11px;
    padding:9px 4px;
    text-align:center;
    border:1.5px solid;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
  }
  
  .shad-f.p {
    background:#faf6ff;
    border-color:#ead9fb;
  }
  
  .shad-f.g {
    background:#f2fdf5;
    border-color:#c3f0cf;
  }
  
  .shad-f.o {
    background:#fff8ef;
    border-color:#fbdcb4;
  }
  
  .shad-f .shad-i {
    width:23px;
    height:23px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .shad-f.p .shad-i {
    background:#f3e8ff;
    color:#9333ea;
  }
  
  .shad-f.g .shad-i {
    background:#dcfce7;
    color:#16a34a;
  }
  
  .shad-f.o .shad-i {
    background:#ffedd5;
    color:var(--color-primary);
  }
  
  .shad-f .shad-t {
    font-size:9.5px;
    letter-spacing:-.1px;
    font-weight:700;
    color:#1f2937;
    line-height:1.2;
  }
  
  .shad-f .shad-d {
    font-size:8.5px;
    color:#7b8394;
    line-height:1.3;
  }
  
  .shad-form {
    padding-top:2px;
  }
  
  .shad-fh {
    display:flex;
    align-items:center;
    gap:7px;
    margin-bottom:11px;
    font-size:14px;
    font-weight:700;
    color:var(--color-heading);
  }
  
  .shad-fh svg {
    width:15px;
    height:15px;
    color:var(--color-primary);
  }
  
  .shad-row {
    display:flex;
    gap:9px;
    margin-bottom:9px;
  }
  
  .shad-ig {
    position:relative;
    flex:1;
    min-width:0;
  }
  
  .shad-ig input,
  .shad-ig select {
    width:100%;
    height:41px;
    padding:0 10px 0 36px;
    border:1.5px solid #ffd6c4;
    border-radius:9px;
    font-size:13.5px;
    font-family:inherit;
    outline:none;
    background:#fff9f6;
    color:var(--color-heading);
    appearance:none;
    -webkit-appearance:none;
    transition:border-color .18s,box-shadow .18s,background .18s;
  }
  
  .shad-ig select {
    color:var(--color-body-cert);
    cursor:pointer;
    text-align:center;
    text-align-last:center;
    padding-right:28px;
    font-weight:500;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff5421' stroke-width='2.6'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;
    background-position:right 12px center;
  }
  
  .shad-ig input::placeholder {
    color:#b08d7c;
  }
  
  .shad-ig input:hover,
  .shad-ig select:hover {
    border-color:#ffb79c;
  }
  
  .shad-ig input:focus,
  .shad-ig select:focus {
    border-color:var(--color-primary);
    background:var(--color-surface);
    box-shadow:0 0 0 4px rgba(255,84,33,.14);
  }
  
  .shad-ig input:focus~.shad-ic,
  .shad-ig select:focus~.shad-ic {
    color:var(--color-primary);
  }
  
  .shad-ig .shad-ic {
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#ff9670;
    pointer-events:none;
    transition:color .18s;
  }
  
  .shad-ig .shad-ic svg {
    width:15px;
    height:15px;
    fill:none;
    stroke:currentColor;
  }
  
  .shad-btn {
    width:100%;
    background:var(--color-primary);
    color:var(--color-surface);
    border:none;
    border-radius:9px;
    padding:13px;
    font-size:15px;
    font-weight:700;
    font-family:inherit;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin:4px 0 9px;
    transition:background .2s,box-shadow .2s,transform .18s;
  }
  
  .shad-btn:hover {
    background:#ec4715;
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(255,84,33,.32);
  }
  
  .shad-sec {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    font-size:10.5px;
    color:#a3adbd;
  }
  
  .shad-strip {
    background:var(--color-navy);
    border-radius:12px;
    margin:34px 0 40px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    overflow:hidden;
  }
  
  .shad-strip-item {
    padding:22px 24px;
    border-right:1px solid rgba(255,255,255,.13);
  }
  
  .shad-strip-item:last-child {
    border-right:0;
  }
  
  .shad-strip-item h4 {
    font-size:13px;
    font-weight:700;
    color:var(--color-surface);
    margin:0 0 8px;
    line-height:1.35;
  }
  
  .shad-strip-item p {
    font-size:11px;
    color:#95a1ba;
    line-height:1.55;
    margin:0;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media (max-width: 1354px) {
    .abhay-top-row {
      height: 52px;
    }
  
    .abhay-brand {
      top: 8px;
      width: 140px;
      height: 95px;
    }
  
    .abhay-rank {
      margin-left: 120px;
      max-width: 119px;
      gap: 3px;
      padding-top: 17px;
    }
  
    .abhay-rank strong {
      font-size: 32px;
      margin-top: -6px;
      line-height: 28px;
      font-weight: 600;
    }
  
    .abhay-rank span {
      margin-top: -5px;
      font-size: 10px;
      width: 103px;
      line-height: 13px;
      font-weight: 600;
    }
  
    .abhay-nav-row {
      height: 52px;
      grid-template-columns: 408px 1fr;
      padding: 14px 27px 0 255px;
    }
  
    .abhay-primary-nav {
      gap: 19px;
      font-size: 14px;
    }
  
    .abhay-abhasu-trigger {
      font-size: 14px;
    }
  }
  
  @media (max-width: 1145px) {
    .abhay-contact-bar {
      height: 32px;
      gap: 5px;
      font-size: clamp(11px, 0.86vw, 18px);
    }
  
    .abhay-primary-nav {
      font-size: 12px;
    }
  
    .abhay-abhasu-trigger {
      margin-top: -3px;
      font-size: 12px;
    }
  }
  
  @media (max-width: 1075px) {
    .abhay-brand {
      width: 120px;
    }
  
    .abhay-brand-logo {
      width: 129px;
      height: 82px;
    }
  
    .abhay-rank span {
      margin-top: -6px;
    }
  
    .abhay-contact-bar {
      gap: 3px;
      font-size: clamp(10px, 0.86vw, 18px);
    }
  
    .abhay-fee-pay-btn {
      height: 32px;
      font-size: 10px;
    }
  }
  
  @media (max-width: 1025px) {
    .abhay-brand {
      width: 110px;
      height: 88px;
    }
  
    .abhay-brand-logo {
      width: 126px;
      height: 74px;
    }
  
    .abhay-rank span {
      margin-top: -5px;
      width: 98px;
    }
  
    .abhay-nav-row {
      height: 45px;
      display: flex;
      justify-content: space-between;
      padding: 11px 15px 0 255px;
    }
  
    .abhay-primary-nav {
      gap: 15px;
      font-size: 10px;
    }
  
    .abhay-abhasu-trigger {
      margin-top: -1px;
      font-size: 10px;
      font-weight: 600;
      padding-top: 6px;
    }
  
    .abhay-fee-pay-btn {
      height: 27px;
      padding: 0 6px;
    }
  }
  
  @media (max-width: 1010px) {
    .abhay-contact-bar {
      font-size: clamp(9px, 0.86vw, 18px);
      font-weight: 600;
    }
  }
  
  @media (max-width: 900px) {
    .abhay-contact-bar {
      font-size: 9px;
      font-weight: 600;
    }
  
    .abhay-primary-nav {
      gap: 17px;
      font-size: 9px;
      font-weight: 600;
    }
  
    .abhay-abhasu-trigger {
      margin-top: 1px;
      font-size: 9px;
      font-weight: 600;
    }
  }
  
  @media (max-width: 860px) {
    .abhay-top-row {
      gap: 11px;
      background: var(--color-surface);
    }
  
    .abhay-brand {
      left: 8px;
      width: 120px;
      height: 84px;
      background-color: var(--color-surface);
    }
  
    .abhay-rank {
      width: 250px;
      max-width: 176px;
      margin-left: 102px;
    }
  
    .abhay-rank strong {
      font-size: 32px;
      margin-top: -10px;
      line-height: 28px;
    }
  
    .abhay-rank span {
      margin-top: -9px;
      font-size: 11px;
      width: 100px;
      font-weight: 600;
    }
  
    .abhay-contact-bar {
      height: 40px;
      gap: 5px;
      font-weight: 500;
    }
  
    #abhay-gmail,
    .abhay-primary-nav.abhay-is-open {
      display: flex;
    }
  
    .abhay-gmail {
      flex-shrink: 0;
      width: 16px;
      height: 15px;
      transform: translateY(-1px);
    }
  
    .abhay-abhasu-sidebar-count,
    .abhay-abhasu-sidebar-eyebrow,
    .abhay-ai-badge,
    .abhay-email,
    .abhay-primary-nav #freeResourcesBtn,
    .abhay-primary-nav .abhay-mentor-link,
    .abhay-primary-nav .abhay-placement-link {
      display: none;
    }
  
    .abhay-nav-row {
      height: auto;
      min-height: 41px;
      gap: 14px;
      padding: 6px 22px 0 237px;
    }
  
    .abhay-quick-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      order: 1;
    }
  
    .abhay-quick-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      height: 26px;
      padding: 0 8px;
      border-radius: 4px;
      background: var(--color-surface);
      color: #000;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
    }
  
    .abhay-mobile-btn {
      height: 30px;
      padding: 0 8px;
      margin-top: -6px;
    }
  
    .abhay-menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      order: 2;
      margin-left: 8px;
    }
  
    .abhay-menu-icon {
      margin-right: 6px;
    }
  
    .abhay-primary-nav {
      position: absolute;
      top: 99px;
      right: 20px;
      z-index: 25;
      width: min(330px, calc(100vw - 36px));
      display: none;
      flex-direction: column;
      gap: 8px;
      padding: 14px;
      border: 1px solid #e5e5e5;
      border-radius: 5px;
      background: var(--color-surface);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
      font-size: 16px;
    }
  
    .abhay-abhasu-trigger {
      margin-top: 0;
      margin-left: -6px;
      font-size: 16px;
      font-weight: 600;
      padding-top: 0;
    }
  
    .abhay-fee-pay-btn {
      top: auto;
      width: fit-content;
    }
  
    .abhay-abhasu-panel {
      position: fixed;
      inset: 0;
      width: 100%;
      max-height: none;
      border-radius: 0;
      transform: translateY(8px);
      flex-direction: column;
    }
  
    .abhay-abhasu-panel.abhay-abhasu-open {
      transform: translateY(0);
    }
  
    .abhay-abhasu-close {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 10px 16px 0 auto;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(18, 32, 59, 0.06);
      border: none;
      color: var(--color-text);
      font-size: 16px;
      cursor: pointer;
    }
  
    .abhay-abhasu-sidebar {
      width: 100%;
      display: flex;
      gap: 8px;
      padding: 10px 12px;
      border-right: none;
      border-bottom: 1px solid var(--color-border-panel);
      overflow-x: auto;
      overflow-y: visible;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }
  
    .abhay-abhasu-sidebar-item {
      flex: none;
      width: max-content;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(18, 32, 59, 0.05);
    }
  
    .abhay-abhasu-sidebar-item.abhay-abhasu-active .abhay-abhasu-sidebar-dot {
      box-shadow: none;
    }
  
    .abhay-abhasu-content {
      padding: 16px;
    }
  
    .abhay-abhasu-content-title {
      font-size: 17px;
    }
  
    .abhay-abhasu-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
  
    .abhay-popup-content {
      width: 94vw;
      padding: 20px;
    }
  
    .abhay-training-card-container {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
  
    .abhay-hero-section {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 46px 28px;
    }
  
    .abhay-hero-content,
    .abhay-hero-content h1,
    .abhay-hero-content h2,
    .abhay-hero-copy {
      max-width: 760px;
    }
  
    .abhay-hero-content h1 {
      white-space: normal;
    }
  
    .abhay-hero-visual {
      min-height: 360px;
      place-items: start;
    }
  
    .abhay-orbit-graphic {
      width: min(430px, 86vw);
    }
  
    .abhay-orbit-badge {
      width: 64px;
      height: 64px;
      font-size: 14px;
    }
  
    .abhay-laptop-logo {
      width: 168px;
      height: 102px;
    }
  
    .abhay-bottom-cta a {
      font-size: 12px;
    }
  }
  
  @media (max-width: 780px) {
    .abhay-rank span {
      margin-top: -9px;
      font-size: 10px;
      width: 98px;
    }
  
    .abhay-contact-bar {
      height: 36px;
      gap: 14px;
    }
  
    .abhay-desktop-numbers,
    .support-no {
      display: none;
    }
  
    .phone-dropdown {
      display: inline-block;
    }
  
    .abhay-phone {
      display: block;
      width: 30px;
      height: 20px;
    }
  
    .abhay-support {
      display: block;
      width: 20px;
      height: 20px;
    }
  
    .ab-img {
      width: 17px !important;
      height: 21px !important;
    }
  }
  
  @media (max-width: 640px) {
    .abhay-top-row {
      height: 0;
      display: grid;
      grid-template-columns: 78px 1fr;
      grid-template-rows: 30px 36px;
      align-items: start;
      gap: 0 6px;
      padding: 3px 9px 0;
    }
  
    .abhay-brand {
      grid-column: 1;
      grid-row: 2;
      left: 1px;
      top: -3px;
      width: 86px;
      height: 55px;
      flex-basis: auto;
      transform: none;
      background-color: transparent;
    }
  
    .abhay-brand-logo {
      margin-top: -41px;
      width: 84px;
      height: 38px;
    }
  
    .abhay-rank {
      grid-column: 1;
      grid-row: 1;
      max-width: 300px !important;
      margin-left: -20px;
      gap: 2px;
      padding-top: 11px;
    }
  
    .abhay-rank strong {
      font-size: 25px;
      line-height: 1px;
      padding-left: 100px;
      padding-top: 32px;
      margin-top: -26px;
    }
  
    .abhay-rank span {
      font-size: 9px;
      width: 90px;
      padding-left: 3px;
      padding-top: 2px;
    }
  
    .abhay-contact-bar {
      height: 25px;
      gap: 17px;
    }
  
    .abhay-bottom-cta a,
    .abhay-contact-bar a[href^="mailto"],
    .abhay-quick-free {
      display: none;
    }
  
    .abhay-contact-bar a:first-of-type {
      max-width: 100%;
    }
  
    .ab-number {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }
  
    .phone-icon-btn svg {
      margin-right: -7px;
    }
  
    .abhay-whatsapp {
      width: 16px;
      height: 16px;
      flex-basis: 16px;
    }
  
    .abhay-whatsapp img {
      margin-right: 6px;
    }
  
    .abhay-nav-row {
      height: 76px;
      min-height: 39px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 7px;
      padding: 0 10px;
    }
  
    .abhay-quick-actions {
      margin-top: 41px;
      gap: 4px;
    }
  
    .abhay-quick-btn {
      height: 24px;
      padding: 0 7px;
      font-size: 11px;
    }
  
    .abhay-primary-nav #freeResourcesBtn {
      display: block;
    }
  
    .abhay-menu-toggle {
      justify-self: end;
      position: relative;
      width: 28px;
      height: 28px;
      padding: 0;
      border-radius: 4px;
      font-size: 0;
      margin-top: 38px;
    }
  
    .abhay-menu-icon {
      margin-right: 0;
    }
  
    .abhay-primary-nav {
      top: 59px;
      right: 9px;
      width: min(240px, calc(100vw - 18px));
      padding: 12px;
      gap: 10px;
      font-size: 14px;
    }
  
    .abhay-abhasu-trigger {
      font-size: 14px;
    }
  
    .abhay-hero-section {
      min-height: auto;
      display: block;
      padding: 24px 18px 30px;
      text-align: center;
    }
  
    .abhay-hero-content h1 {
      max-width: 100%;
      font-size: clamp(16px, 3.8vw, 20px);
      line-height: 1.15;
    }
  
    .abhay-hero-content h2 {
      margin-top: 12px;
      font-size: clamp(10px, 2.2vw, 13px);
      line-height: 1.24;
    }
  
    .abhay-hero-copy {
      max-width: 100%;
      margin-top: 10px;
      font-size: clamp(10px, 2.1vw, 11px);
      line-height: 1.4;
    }
  
    .abhay-hero-kicker {
      margin-top: 12px;
      font-size: 12px;
      line-height: 16px;
    }
  
    .abhay-hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      margin-top: 14px;
    }
  
    .abhay-hero-primary {
      flex: none;
      width: 100%;
      max-width: none;
      min-width: 0;
      min-height: 36px;
      padding: 0 14px;
      font-size: 12px;
      box-shadow: 5px 5px 0 rgba(228, 223, 223, 0.65);
    }
  
    .abhay-trusted-row {
      margin-top: 34px;
    }
  
    .abhay-trusted-row > strong {
      margin-bottom: 16px;
      font-size: 15px;
    }
  
    .abhay-trusted-logos {
      justify-content: center;
      gap: 14px 20px;
    }
  
    .abhay-trusted-logos span {
      font-size: 15px;
    }
  
    .abhay-hero-visual {
      min-height: 280px;
      margin-top: 28px;
      place-items: center;
    }
  
    .abhay-orbit-graphic {
      width: min(290px, 84vw);
    }
  
    .abhay-orbit {
      border-width: 4px;
    }
  
    .abhay-orbit-badge {
      width: 42px;
      height: 42px;
      font-size: 10px;
    }
  
    .abhay-laptop-logo {
      width: 112px;
      height: 72px;
      padding: 8px 10px 5px;
      border-width: 5px 5px 8px;
    }
  
    .abhay-support-float {
      right: 14px;
      bottom: 14px;
      width: 58px;
      height: 58px;
    }
  
    .abhay-support-float span {
      width: 36px;
      height: 36px;
    }
  
    .abhay-support-float span::before {
      left: 7px;
      top: 7px;
      width: 22px;
      height: 18px;
      border-width: 5px;
      border-bottom: 0;
    }
  
    .abhay-support-float span::after {
      left: -3px;
      top: 15px;
      width: 42px;
      height: 12px;
      border-left-width: 6px;
      border-right-width: 6px;
    }
  
    .abhay-bottom-cta {
      height: 48px;
      grid-template-columns: 1fr 1fr;
      padding: 0 34px;
      gap: 74px;
    }
  
    .abhay-bottom-cta a:nth-child(3),
    .abhay-bottom-cta a:nth-child(5) {
      display: inline-flex;
      min-width: 72px;
      height: 36px;
      align-self: center;
      border: 0;
      border-radius: 3px 3px 0 0;
      background: #15851b;
      font-size: 12px;
    }
  }
  
  @media (max-width: 520px) {
    .abhay-contact-bar {
      gap: 11px;
    }
  
    .abhay-primary-nav {
      top: 82px;
    }
  
    .abhay-hero-section {
      padding: 24px 20px 28px;
    }
  
    .abhay-hero-kicker,
    .abhay-trusted-logos span {
      font-size: 12px;
    }
  
    .abhay-trusted-row {
      margin-top: 26px;
    }
  
    .abhay-trusted-row > strong {
      margin-bottom: 12px;
      font-size: 12px;
    }
  
    .abhay-hero-visual {
      min-height: 248px;
      margin-top: 22px;
    }
  
    .abhay-orbit-graphic {
      width: min(250px, 82vw);
    }
  
    .abhay-orbit-badge {
      width: 36px;
      height: 36px;
      font-size: 9px;
    }
  
    .abhay-laptop-logo {
      width: 96px;
      height: 62px;
    }
  }
  
  @media (max-width: 480px) {
    .abhay-contact-bar {
      gap: 16px;
    }
  
    .ab-number {
      display: none;
    }
  
    .ab-number-sec {
      display: block;
    }
  
    #popupAbout .abhay-training-card-container,
    .abhay-abhasu-grid,
    .abhay-training-card-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 420px) {
    .abhay-contact-bar {
      gap: 9px;
    }
  }
  
  @media (max-width: 400px) {
    .abhay-quick-mentor {
      display: none;
    }
  
    .abhay-primary-nav .abhay-mentor-link {
      display: block;
    }
  }
  
  @media (max-width: 380px) {
    .abhay-top-row {
      grid-template-columns: 68px 1fr;
      padding-left: 6px;
      padding-right: 6px;
    }
  
    .abhay-brand,
    .abhay-brand-logo {
      width: 68px;
    }
  
    .abhay-rank strong {
      padding-left: 97px;
      padding-top: 33px;
      font-size: 20px;
      margin-top: -26px;
    }
  
    .abhay-nav-row {
      padding-left: 7px;
      padding-right: 7px;
    }
  
    .abhay-hero-section {
      padding-left: 14px;
      padding-right: 14px;
    }
  
    .abhay-hero-content h1 {
      font-size: 16px;
    }
  
    .abhay-hero-content h2 {
      font-size: 12px;
    }
  
    .abhay-hero-copy {
      font-size: 11px;
    }
  
    .abhay-hero-primary {
      min-height: 42px;
      font-size: 12px;
    }
  
    .abhay-bottom-cta {
      padding: 0 28px;
      gap: 54px;
    }
  }
  
  @media (max-width: 350px) {
    .abhay-contact-bar {
      gap: 8px;
    }
  
    .abhay-rank strong {
      padding-left: 89px;
      padding-top: 30px;
      font-size: 20px;
    }
  
    .abhay-rank span {
      font-size: 7px;
      width: 66px;
      line-height: 11px;
      padding-left: 0;
    }
  }
  
  @media (max-width: 310px) {
    .abhay-contact-bar {
      gap: 6px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .abhay-abhasu-card,
    .abhay-abhasu-overlay,
    .abhay-abhasu-panel {
      transition: none;
      animation: none;
    }
  }
  
  @media(max-width:1180px) {
    .shad-right {
      flex-basis:352px;
      max-width:352px;
    }
  
    .shad-hero {
      gap:26px;
    }
  }
  
  @media(max-width:1100px) {
    .shad-strip {
      grid-template-columns:repeat(3,1fr);
    }
  
    .shad-strip-item:nth-child(3n) {
      border-right:0;
    }
  
    .shad-strip-item:nth-child(-n+3) {
      border-bottom:1px solid rgba(255,255,255,.13);
    }
  }
  
  @media(max-width:992px) {
    .shad-hero {
      flex-direction:column;
      gap:22px;
    }
  
    .shad-left,
    .shad-right {
      flex:1 1 auto;
      width:100%;
      max-width:100%;
    }
  
    .shad-left-card {
      padding:0;
    }
  
    .shad-card {
      max-width:480px;
      margin:0 auto;
    }
  }
  
  @media(max-width:700px) {
    .shad-wrap {
      padding:12px 14px 0;
    }
  
    .shad-crumb {
      font-size:12px;
      gap:8px;
    }
  
    .shad-crumb-right {
      width:100%;
    }
  
    .shad-desc {
      font-size:13.5px;
    }
  
    .uc-placement-btn {
      flex:1 1 calc(50% - 6px);
      font-size:13px;
      padding:11px 8px;
    }
  
    .shad-strip {
      grid-template-columns:repeat(2,1fr);
      margin-top:26px;
    }
  
    .shad-strip-item {
      border-right:1px solid rgba(255,255,255,.13);
      border-bottom:1px solid rgba(255,255,255,.13);
    }
  
    .shad-strip-item:nth-child(2n) {
      border-right:0;
    }
  
    .shad-strip-item:nth-child(n+5) {
      border-bottom:0;
    }
  }
  
  @media(max-width:480px) {
    .shad-title {
      font-size:15.5px;
    }
  
    .shad-r-item {
      font-size:11.5px;
    }
  
    .shad-r-item img {
      width:15px;
      height:15px;
    }
  
    .shad-row {
      flex-direction:column;
      gap:9px;
    }
  
    .shad-strip-item {
      padding:18px 18px;
    }
  }
  
  .phone-dropdown {
    position: relative;
    display: none;
}

.phone-icon-btn {
    gap: 5px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
}

.phone-icon-btn svg {
    width: 19px;
    height: 19px;
    fill: #ff5f0f;
}

.ab-number-sec {
    display: none;
}

.down {
    margin-top: 10px;
}

.ab-number {
    font-size: 12px;
    font-weight: 600;
}

.phone-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 170px;
    z-index: 999;
}

.phone-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--color-body-strong);
    font-size: var(--fs-sm);
    white-space: nowrap;
}

.phone-dropdown-menu a:hover {
    background: #f2f2f2;
}

.ab-img {
    width: 21px !important;
    height: 21px !important;
}

.shad-wrap {
    font-family: var(--font-primary);
    color: var(--color-heading);
    background: var(--color-surface);
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 16px 0;
}

.shad-wrap * {
    box-sizing: border-box;
}

.shad-wrap {
    font-family: var(--font-primary);
    color: var(--color-heading);
    background: var(--color-surface);
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 16px 0;
}

.shad-crumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: var(--fs-sm);
    margin-bottom: 20px;
}

.shad-crumb-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5b6b85;
    flex-wrap: wrap;
}

.shad-crumb-left a {
    color: #5b6b85;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shad-crumb-left a:hover {
    color: var(--color-primary);
}

.shad-crumb-left svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shad-crumb-sep {
    color: #b8c2d4;
    font-size: var(--fs-sm);
}

.shad-crumb-current {
    color: var(--color-heading);
    font-weight: 700;
}

.shad-crumb-right {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5b6b85;
}

.shad-crumb-right b {
    color: var(--color-heading);
    font-weight: 700;
}

.shad-crumb-right svg {
    width: 15px;
    height: 15px;
    stroke: #5b6b85;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shad-hero {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}

.shad-left {
    flex: 1 1 auto;
    min-width: 0;
}

.shad-right {
    flex: 0 0 388px;
    max-width: 388px;
    min-width: 0;
}

.shad-left-card {
    padding: 14px 16px 0;
}

.shad-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff3ec;
    color: var(--color-primary);
    font-size: var(--fs-caption);
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.shad-h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.28;
    margin: 0 0 16px;
    letter-spacing: -.5px;
    color: var(--color-heading);
}

.shad-h1 span {
    color: var(--color-primary);
    display: block;
}

.shad-desc {
    font-size: var(--fs-sm);
    color: var(--color-body);
    line-height: 1.72;
    margin: 0 0 18px;
    max-width: 700px;
}

.shad-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    align-items: center;
    margin-bottom: 24px;
}

.shad-r-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-caption);
    font-weight: 600;
    color: #243047;
    text-decoration: none;
}

.shad-r-item:hover {
    color: var(--color-primary);
}

.shad-r-item img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.shad-btns,
.uc-placement-training {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.uc-placement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 17px;
    border-radius: 7px;
    font-size: var(--fs-btn);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s, transform .18s;
}

.uc-placement-btn img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.uc-placement-btn-outline {
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    background: var(--color-surface);
}

.uc-placement-btn-outline:hover {
    background: var(--color-surface-primary-soft);
}

.uc-placement-btn-fill {
    border: 1.5px solid transparent;
    background: var(--color-primary);
    color: var(--color-surface);
}

.uc-placement-btn-fill:hover {
    background: #ec4715;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 84, 33, .3);
}

.shad-card {
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(15, 27, 62, .10);
    padding: 14px 15px 13px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.shad-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-surface);
    font-size: var(--fs-caption);
    font-weight: 700;
    letter-spacing: .4px;
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 11px;
}

.shad-title {
    text-align: center;
    font-size: var(--fs-body);
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.3;
    margin: 0 0 12px;
}

.shad-title span {
    color: var(--color-primary);
}

.shad-pricing {
    margin-bottom: 11px;
}

.shad-now {
    border-radius: 11px;
    padding: 11px 8px;
    text-align: center;
    background: var(--color-success);
}

.shad-now .shad-l {
    font-size: var(--fs-caption);
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 3px;
}

.shad-now .shad-v {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--color-surface);
    line-height: 1.1;
    letter-spacing: -.3px;
}

.shad-now .shad-g {
    font-size: var(--fs-caption);
    color: rgba(255, 255, 255, .9);
    margin-top: 2px;
}

.shad-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 14px;
}

.shad-f {
    border-radius: 11px;
    padding: 9px 4px;
    text-align: center;
    border: 1.5px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.shad-f.p {
    background: #faf6ff;
    border-color: #ead9fb;
}

.shad-f.g {
    background: #f2fdf5;
    border-color: #c3f0cf;
}

.shad-f.o {
    background: #fff8ef;
    border-color: #fbdcb4;
}

.shad-f .shad-i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shad-f.p .shad-i {
    background: #f3e8ff;
    color: #9333ea;
}

.shad-f.g .shad-i {
    background: #dcfce7;
    color: #16a34a;
}

.shad-f.o .shad-i {
    background: #ffedd5;
    color: var(--color-primary);
}

.shad-f .shad-t {
    font-size: var(--fs-caption);
    letter-spacing: -.1px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.shad-f .shad-d {
    font-size: var(--fs-caption);
    color: #7b8394;
    line-height: 1.3;
}

.shad-form {
    padding-top: 2px;
}

.shad-fh {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-heading);
}

.shad-fh svg {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

.shad-row {
    display: flex;
    gap: 9px;
    margin-bottom: 9px;
}

.shad-ig {
    position: relative;
    flex: 1;
    min-width: 0;
}

.shad-ig input,
.shad-ig select {
    width: 100%;
    height: 41px;
    padding: 0 10px 0 36px;
    border: 1.5px solid #ffd6c4;
    border-radius: 9px;
    font-size: var(--fs-sm);
    font-family: inherit;
    outline: none;
    background: #fff9f6;
    color: var(--color-heading);
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

.shad-ig select {
    color: var(--color-body-cert);
    cursor: pointer;
    text-align: center;
    text-align-last: center;
    padding-right: 28px;
    font-weight: 500;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff5421' stroke-width='2.6'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.shad-ig input::placeholder {
    color: #b08d7c;
}

.shad-ig input:hover,
.shad-ig select:hover {
    border-color: #ffb79c;
}

.shad-ig input:focus,
.shad-ig select:focus {
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(255, 84, 33, .14);
}

.shad-ig input:focus~.shad-ic,
.shad-ig select:focus~.shad-ic {
    color: var(--color-primary);
}

.shad-ig .shad-ic {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9670;
    pointer-events: none;
    transition: color .18s;
}

.shad-ig .shad-ic svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
}

.shad-btn {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: 9px;
    padding: 13px;
    font-size: var(--fs-btn);
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 4px 0 9px;
    transition: background .2s, box-shadow .2s, transform .18s;
}

.shad-btn:hover {
    background: #ec4715;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 84, 33, .32);
}

.shad-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: var(--fs-caption);
    color: #a3adbd;
}

.shad-strip {
    background: var(--color-navy);
    border-radius: 12px;
    margin: 34px 0 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}

.shad-strip-item {
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.shad-strip-item:last-child {
    border-right: 0;
}

.shad-strip-item h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-surface);
    margin: 0 0 8px;
    line-height: 1.35;
}

.shad-strip-item p {
    font-size: var(--fs-caption);
    color: #95a1ba;
    line-height: 1.55;
    margin: 0;
}

@media (max-width:780px) {
    .support-no {
        display: none
    }

    .phone-dropdown {
        display: inline-block
    }

    .ab-img {
        width: 17px !important;
        height: 21px !important
    }
}

@media (max-width:640px) {
    .ab-number {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .2px
    }

    .phone-icon-btn svg {
        margin-right: -7px
    }
}

@media (max-width:480px) {
    .ab-number {
        display: none
    }

    .ab-number-sec {
        display: block
    }
}

@media(max-width:1180px) {
    .shad-right {
        flex-basis: 352px;
        max-width: 352px
    }

    .shad-hero {
        gap: 26px
    }
}

@media(max-width:1100px) {
    .shad-strip {
        grid-template-columns: repeat(3, 1fr)
    }

    .shad-strip-item:nth-child(3n) {
        border-right: 0
    }

    .shad-strip-item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, .13)
    }
}

@media(max-width:992px) {
    .shad-hero {
        flex-direction: column;
        gap: 22px
    }

    .shad-left,
    .shad-right {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%
    }

    .shad-left-card {
        padding: 0
    }

    .shad-card {
        max-width: 480px;
        margin: 0 auto
    }
}

@media(max-width:700px) {
    .shad-wrap {
        padding: 12px 14px 0
    }

    .shad-crumb {
        font-size: var(--fs-caption);
        gap: 8px
    }

    .shad-crumb-right {
        width: 100%
    }

    .shad-desc {
        font-size: var(--fs-sm)
    }

    .uc-placement-btn {
        flex: 1 1 calc(50% - 6px);
        font-size: var(--fs-btn);
        padding: 11px 8px
    }

    .shad-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 26px
    }

    .shad-strip-item {
        border-right: 1px solid rgba(255, 255, 255, .13);
        border-bottom: 1px solid rgba(255, 255, 255, .13)
    }

    .shad-strip-item:nth-child(2n) {
        border-right: 0
    }

    .shad-strip-item:nth-child(n+5) {
        border-bottom: 0
    }
}

@media(max-width:480px) {
    .shad-title {
        font-size: var(--fs-body)
    }

    .shad-r-item {
        font-size: var(--fs-caption)
    }

    .shad-r-item img {
        width: 15px;
        height: 15px
    }

    .shad-row {
        flex-direction: column;
        gap: 9px
    }

    .shad-strip-item {
        padding: 18px 18px
    }
}