    /* style.css — DM Sans loaded locally via assets/fonts/dm-sans/dm-sans.css */
    :root {
      --bs-font-sans-serif: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --primary: #344276;
      --secondary: #5ca8ff;
      --dark: #10142f;
      --text: #5f6472;
      --white: #fff;
      --bg: #f7f7fb;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(0, 0, 0, .08);
      --mph-scrollbar-size: 6px;
      --mph-scrollbar-track: #e9edf5;
      --mph-scrollbar-thumb: #344276;
      --mph-scrollbar-thumb-hover: #5ca8ff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--mph-scrollbar-thumb) var(--mph-scrollbar-track);
    }

    /* Thin custom scrollbar (Chrome, Edge, Safari) */
    *::-webkit-scrollbar {
      width: var(--mph-scrollbar-size);
      height: var(--mph-scrollbar-size);
    }

    *::-webkit-scrollbar-track {
      background: var(--mph-scrollbar-track);
      border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--mph-scrollbar-thumb-hover) 0%, var(--mph-scrollbar-thumb) 100%);
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: inset 0 0 0 1px rgba(52, 66, 118, 0.12);
    }

    *::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #7ec0ff 0%, var(--mph-scrollbar-thumb) 100%);
    }

    *::-webkit-scrollbar-thumb:active {
      background: var(--mph-scrollbar-thumb);
    }

    *::-webkit-scrollbar-corner {
      background: var(--mph-scrollbar-track);
    }

    .mph-hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    body {
      font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      font-optical-sizing: auto;
      background: #fff;
      color: #111;
      line-height: 1.6;
    }

    /* Headings & copy: same family as body (explicit for clarity / overrides) */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    li,
    a,
    button,
    input,
    textarea,
    select {
      font-family: inherit;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    /* Brand-standard content width (~1280px) + responsive side gutters */
    .mph-site-container {
      width: 100%;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .section {
      padding: 90px 0;
    }

    .light {
      background: var(--bg);
    }

    .center {
      text-align: center;
    }

    h1 {
      font-size: 54px;
      line-height: 1.1;
      margin: 18px 0;
    }

    h2 {
      font-size: 38px;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .main_books_carousel_section .section-text {
      font-style: normal;
      font-weight: 200;
      font-size: 18px;
      line-height: 1.7rem;
      text-align: center;
      color: #000000;
      margin-bottom: 50px;
    }

    p {
      color: var(--text);
    }

    /* ----- Global CTA pill pair: same metrics site-wide (light = blue fill, dark = white fill) ----- */
    .btn_main_white,
    .btn_main_blue {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: auto;
      min-width: 200px;
      height: 48px;
      padding: 6px 8px 6px 22px;
      gap: 14px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.25;
      letter-spacing: 0.1em;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
      transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
    }

    .btn_main_white {
      background: #fff;
      color: #344276;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .btn_main_white:hover {
      transform: translate3d(0, -2px, 0);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    }

    .btn_main_white:active {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    }

    .btn_main_blue {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 16px rgba(52, 66, 118, 0.22);
    }

    .btn_main_blue:hover:not(.hero-form-submit) {
      background: #2b3865;
      transform: translate3d(0, -2px, 0);
      box-shadow: 0 8px 22px rgba(52, 66, 118, 0.28);
    }

    .btn_main_blue:active:not(.hero-form-submit) {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 2px 10px rgba(52, 66, 118, 0.2);
    }

    .btn_main_white .hero-btn-label,
    .btn_main_blue .hero-btn-label {
      flex: 1;
      text-align: left;
      white-space: nowrap;
    }

    .btn_main_white i {
      background: var(--primary);
      width: 34px;
      height: 34px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
      font-size: 12px;
    }

    .btn_main_blue i {
      background: #fff;
      width: 34px;
      height: 34px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      font-size: 12px;
    }

    .btn_seccond_white,
    .btn_seccond_blue {
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      min-width: 168px;
      height: 48px;
      padding: 0 22px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.25;
      letter-spacing: 0.1em;
      box-sizing: border-box;
      cursor: pointer;
      transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
    }

    .btn_seccond_white {
      color: #fff;
      border: 2px solid #fff;
      background: transparent;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .btn_seccond_white:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translate3d(0, -2px, 0);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    .btn_seccond_white:active {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    }

    .btn_seccond_blue {
      color: var(--primary);
      border: 2px solid var(--primary);
      background: transparent;
      box-shadow: 0 4px 16px rgba(52, 66, 118, 0.12);
    }

    .btn_seccond_blue:hover {
      background: rgba(52, 66, 118, 0.06);
      transform: translate3d(0, -2px, 0);
      box-shadow: 0 8px 22px rgba(52, 66, 118, 0.16);
    }

    .btn_seccond_blue:active {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 2px 10px rgba(52, 66, 118, 0.12);
    }

    .btn {
      background: var(--primary);
      color: #fff;
      padding: 14px 28px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      transition: .3s;
      border: 2px solid transparent;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .outline {
      background: transparent;
      border-color: #fff;
    }

    .small {
      padding: 10px 22px;
    }

    .medium {
      padding: 10px 32px;
    }

    .large {
      padding: 10px 42px;
    }

    /* ================= HEADER (compact + centered nav) ================= */

    .header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: #fff;
      box-shadow: 0 1px 0 rgba(16, 20, 47, 0.08);
    }

    .header .nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      column-gap: clamp(12px, 2vw, 28px);
      padding-block: 8px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .logo a {
      display: flex;
      align-items: center;
      line-height: 0;
      text-decoration: none;
    }

    .logo img {
      width: 170px;
      height: auto;
      display: block;
    }

    .header-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 0;
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
      perspective: 900px;
    }

    .menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 22px;
      list-style: none;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .menu li {
      display: flex;
      align-items: center;
    }

    .menu > li > a,
    .menu .NMP_dropdown_toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 2px 0;
      border-radius: 0;
      color: #3a3f4d;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.25;
      text-decoration: none;
      background: transparent;
      box-shadow: none;
      border: none;
      transition: color 0.25s ease;
    }

    .menu > li > a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      margin: 0 auto;
      background: var(--primary);
      transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .NMP_dropdown_toggle .NMP_nav_text {
      position: relative;
      display: inline-block;
    }

    .NMP_dropdown_toggle .NMP_nav_text::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .menu > li > a:hover,
    .menu .NMP_dropdown_toggle:hover,
    .menu > li > a.is-active,
    .menu .NMP_dropdown_toggle.is-active {
      color: var(--primary);
      background: transparent;
      box-shadow: none;
    }

    .menu > li > a.is-active,
    .menu .NMP_dropdown_toggle.is-active {
      font-weight: 600;
    }

    .menu > li > a:hover::after,
    .menu > li > a.is-active::after {
      width: 100%;
    }

    .NMP_dropdown_toggle:hover .NMP_nav_text::after,
    .NMP_dropdown_toggle.is-active .NMP_nav_text::after {
      width: 100%;
    }

    .menu > li > a:focus-visible,
    .menu .NMP_dropdown_toggle:focus-visible {
      outline: 2px solid var(--secondary);
      outline-offset: 2px;
    }

    @media (min-width: 768px) {
      .NMP_has_dropdown:hover > .NMP_dropdown_toggle {
        color: var(--primary);
        background: transparent;
        box-shadow: none;
      }

      .NMP_has_dropdown:hover > .NMP_dropdown_toggle .NMP_nav_text::after {
        width: 100%;
      }
    }

    .NMP_dropdown_toggle {
      letter-spacing: 0.04em;
      cursor: pointer;
      gap: 6px;
    }

    .NMP_dropdown_toggle::after {
      content: "\f107";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 10px;
      position: static;
      width: auto;
      height: auto;
      margin: 0;
      background: none;
      opacity: 0.65;
      flex-shrink: 0;
      transition: transform 0.28s ease, opacity 0.28s ease, color 0.25s ease;
    }

    @media (min-width: 768px) {
      .NMP_has_dropdown:hover .NMP_dropdown_toggle::after {
        transform: rotate(180deg);
        opacity: 1;
      }
    }

    .NMP_has_dropdown.active > .NMP_dropdown_toggle::after {
      transform: rotate(180deg);
      opacity: 1;
    }

    .header .btn {
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.25;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      transition:
        transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
        background-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.38s ease,
        border-color 0.28s ease;
    }

    .header .btn.large {
      padding: 10px 24px;
      min-height: 40px;
      border-radius: 999px;
    }

    .header .btn:hover {
      background: #868a8d !important;
      color: #fff !important;
      border-color: transparent !important;
      transform: translateY(-4px) rotateX(9deg) scale(1.04);
      box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18),
        0 6px 0 rgba(0, 0, 0, 0.07);
    }

    .header .btn:active {
      transform: translateY(0) rotateX(0deg) scale(0.97);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .NPH_bred-crumb a {
      color: #fff;
    }

    /* ================= HERO (Figma: full-width bar + gradient; header/hero same gutter) ================= */

    .hero {
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      min-height: 0;
      padding: 170px 0;
      box-sizing: border-box;
      background:
        linear-gradient(
          284.5deg,
          rgba(255, 255, 255, 0) -78.12%,
          rgba(166, 172, 195, 0.39375) -40.63%,
          rgba(97, 108, 151, 0.642621) -31.03%,
          rgba(72, 82, 120, 0.717512) -6.43%,
          rgba(57, 66, 102, 0.762221) 8.26%,
          rgba(40, 49, 82, 0.811378) 24.41%,
          rgba(10, 18, 45, 0.9) 53.52%
        ),
        #0a122d url("../images/hero-bg.webp") center / cover no-repeat;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    /* Service / inner pages — page-banner-bg.webp + Figma gradient */
    .hero.hero--page-banner {
      background:
        linear-gradient(
          284.5deg,
          rgba(255, 255, 255, 0) -78.12%,
          rgba(166, 172, 195, 0.39375) -40.63%,
          rgba(97, 108, 151, 0.642621) -31.03%,
          rgba(72, 82, 120, 0.717512) -6.43%,
          rgba(57, 66, 102, 0.762221) 8.26%,
          rgba(40, 49, 82, 0.811378) 24.41%,
          rgba(10, 18, 45, 0.9) 53.52%
        ),
        #0a122d url("../images/page-banner-bg.webp") center / cover no-repeat;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    .hero.hero--page-banner .hero-content h1 {
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }

    .hero.hero--page-banner .NPH_bred-crumb {
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.04em;
    }

    .hero-wrap {
      position: relative;
      z-index: 2;
      flex: 0 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr minmax(280px, 42%);
      gap: clamp(32px, 5vw, 80px);
      align-items: center;
    }

    .hero-content {
      color: #fff;
      min-width: 0;
      text-align: left;
    }

    .hero-content h1,
    .hero-content p {
      color: #fff;
    }

    .hero-content h1 {
      margin: 0 0 14px;
      font-weight: 700;
      font-size: clamp(34px, 3.6vw, 52px);
      line-height: 1.18;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    }

    .hero-content p {
      margin: 0 0 8px;
      text-align: left;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.95);
      max-width: 56ch;
    }

    .hero-content .tag {
      display: block;
      margin: 0 0 10px;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: #fff;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .hero-form {
      background: #7ec0ff;
      padding: 28px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      justify-self: stretch;
      min-width: 0;
    }

    .hero-form form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hero-form input:not(.mph-phone__input),
    .hero-form textarea {
      border: none;
      padding: 14px 16px;
      border-radius: 10px;
      outline: none;
      font-size: 15px;
    }

    .hero-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .hero-form .hero-form-submit.btn_main_blue {
      align-self: center;
      margin: 6px auto 0;
      width: auto;
      min-width: 0;
      max-width: 100%;
      height: 40px;
      padding: 0 18px 0 20px;
      gap: 10px;
      justify-content: center;
      align-items: center;
      border: none !important;
      border-radius: 10px !important;
      background: #344276 !important;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
    }

    .hero-form .hero-form-submit-label {
      display: inline-block;
      line-height: 1;
    }

    .hero-form .hero-form-submit-arrow {
      display: block;
      flex-shrink: 0;
      width: 7px;
      height: 12px;
      transition: transform 0.22s ease;
    }

    .hero-form .hero-form-submit.btn_main_blue:hover {
      background: #2b3865 !important;
      transform: translate3d(0, -2px, 0);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }

    .hero-form .hero-form-submit.btn_main_blue:hover .hero-form-submit-arrow {
      transform: translate3d(4px, 0, 0);
    }

    .hero-form .hero-form-submit.btn_main_blue:active {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
    }

    .hero-form .hero-form-submit.btn_main_blue:active .hero-form-submit-arrow {
      transform: translate3d(0, 0, 0);
    }

    .full {
      width: 100%;
    }

    /* ================= BOOKS ================= */

    .books {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .book-card {
      overflow: hidden;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 0px 10px;
    }

    .book-card img {
      /* aspect-ratio: 3/4; */
      object-fit: cover;
      transition: .4s;
    }

    .book-card:hover img {
      transform: scale(1.05);
    }

    .center-btn {
      justify-content: center;
    }

    /* ================= CTA ================= */

    .cta {
      padding: 80px 0;
      color: #fff;
      text-align: center;
    }

    .cta.main_cta_section {
      isolation: isolate;
      background:
        linear-gradient(0deg, rgba(52, 66, 118, 0.92), rgba(52, 66, 118, 0.92)),
        #344276 url("../images/cta_bg.webp") center / cover no-repeat;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    .cta h2,
    .cta p {
      color: #fff;
    }

    /* ================= FEATURES ================= */

    .feature_content_section {
      background: #fff;
    }

    .feature_content_section .feature-grid {
      background: var(--primary);
      display: grid;
      grid-template-columns: minmax(0, 45%) minmax(0, 55%);
      gap: clamp(28px, 4vw, 52px);
      align-items: stretch;
      border-radius: 20px;
      padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
      box-shadow: 0 12px 40px rgba(16, 20, 47, 0.14);
    }

    .feature_content_section .feature-content {
      min-width: 0;
    }

    .feature_content_section .feature-content h2 {
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: clamp(26px, 2.8vw, 38px);
      line-height: 1.25;
      letter-spacing: -0.02em;
      color: #fff;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
      margin: 0 0 20px;
      text-align: left;
    }

    .feature_content_section .feature-content p {
      font-style: normal;
      font-weight: 400;
      font-size: clamp(13px, 1.05vw, 14px);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.95);
      margin: 0 0 24px;
      text-align: left;
    }

    .feature_content_section .feature-services-cta,
    .feature_content_section .special_white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #344276;
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.25;
      letter-spacing: 0.02em;
      text-decoration: none;
      border: none;
      border-radius: 10px;
      padding: 12px 26px;
      margin: 0 0 28px;
      cursor: pointer;
      box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.18);
      transform-style: preserve-3d;
      backface-visibility: hidden;
      transition:
        transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
        box-shadow 0.38s ease,
        background-color 0.28s ease;
    }

    .feature_content_section .feature-services-cta:hover,
    .feature_content_section .special_white:hover {
      transform: translateY(-4px) rotateX(9deg) scale(1.02);
      box-shadow:
        0 10px 0 rgba(0, 0, 0, 0.1),
        0 16px 28px rgba(0, 0, 0, 0.22);
    }

    .feature_content_section .feature-services-cta:active,
    .feature_content_section .special_white:active {
      transform: translateY(0) rotateX(0deg) scale(0.98);
      box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.14);
    }

    .feature_content_section .JM__wrapper {
      margin-top: 0;
      width: 100%;
      max-width: 100%;
    }

    .feature_content_section .JM__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px clamp(10px, 2.5vw, 15px);
    }

    .feature_content_section .JM__list li {
      color: #fff;
      font-size: 12px;
      font-weight: 300;
      line-height: 1.35;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: normal;
    }

    .feature_content_section .JM__list li::before {
      content: "✓";
      width: 15px;
      height: 15px;
      min-width: 15px;
      border-radius: 50%;
      background: #fff;
      color: #344276;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .feature_content_section .feature-image {
      display: flex;
      align-items: stretch;
      justify-content: center;
      min-width: 0;
      min-height: 0;
      height: 100%;
      align-self: stretch;
    }

    .feature_content_section .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      border-radius: 20px;
      display: block;
    }

    .features {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      list-style: none;
    }

    .features li {
      background: #f1f4ff;
      padding: 14px;
      border-radius: 10px;
    }

    /* ================= TESTIMONIALS ================= */

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
    }

    .testimonial {
      background: #fff;
      padding: 35px;
      border-radius: 20px;
      box-shadow: var(--shadow);
    }

    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: auto auto 20px;
    }

    /* ================= GALLERY ================= */

    .gallery {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 12px;
    }

    .gallery img {
      height: 300px;
      object-fit: contain;

    }

    /* ================= FAQ ================= */

    .faq {
      margin-top: 50px;
      display: grid;
      gap: 18px;
    }

    details {
      background: #fff;
      padding: 22px;
      border-radius: 14px;
      box-shadow: var(--shadow);
    }

    summary {
      cursor: pointer;
      font-weight: 700;
    }

    /* ================= FOOTER ================= */

    .footer {
      background: #1b2460;
      color: #fff;
      padding: 80px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }

    .footer p,
    .footer a {
      color: #d8ddff;
    }

    .footer ul {
      list-style: none;
    }

    .footer-logo {
      width: 190px;
      margin-bottom: 20px;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:992px) {

      h1 {
        font-size: 42px;
      }

      h2 {
        font-size: 32px;
      }

      .hero-wrap,
      .feature_content_section .feature-grid,
      .testimonials,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .feature_content_section .feature-image {
        height: auto;
        min-height: 280px;
      }

      .feature_content_section .feature-image img {
        height: auto;
        max-height: 420px;
        object-fit: contain;
      }

      .books {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery {
        grid-template-columns: repeat(5, 1fr);
      }
      .gallery img{
            height: 145px;
      }
          .hero-content h1 {
            font-size: clamp(28px, 6vw, 36px);
          }
           .hero {
        padding: 100px 0;
      }
    }

    @media(max-width:768px) {

      .hero {
        padding: 56px 0;
      }

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

      .gallery {
        grid-template-columns: repeat(5, 1fr);
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 28px;
      }

    }



    /* 
    main_books_carousel_section css */
    .main_books_carousel_section {
      overflow-x: hidden;
    }

    .main_books_carousel_section .hero-btns {
      gap: 14px;
      margin-top: 60px;
    }

    .main_books_carousel_section h2 {
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 64px;
      line-height: 1.125;
      text-align: center;
      color: #344276;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    }

    .main_books_carousel_section .JM_slider_arrow {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background: var(--primary);
      color: #000;
      font-size: 22px;
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
      z-index: 2;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .main_books_carousel_section .JM_slider_arrow i {
      color: #fff;
    }

    .main_books_carousel_section .JM_slider_arrow:hover {
      transform: scale(1.08);
    }

    .main_books_carousel_section .JM_slider_arrow.swiper-button-disabled {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* Wider than .mph-site-container so arrows sit outside the 1280 content column */
    .main_books_carousel_section .main-books-carousel-row {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: min(100vw - 32px, calc(1280px + 124px));
      margin-left: 50%;
      transform: translateX(-50%);
      box-sizing: border-box;
    }

    .main_books_carousel_section .main-books-carousel-track {
      flex: 0 1 1280px;
      width: 100%;
      max-width: 1280px;
      min-width: 0;
      overflow: hidden;
      position: relative;
      isolation: isolate;
    }

    .main_books_carousel_section .main-books-swiper {
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      margin: 0;
      padding: 0;
    }

    .main_books_carousel_section .main-books-swiper .swiper-slide {
      height: auto;
      box-sizing: border-box;
    }

    .main_books_carousel_section .main-books-swiper .book-card {
      margin: 0 auto;
      max-width: 100%;
      padding: 0;
      border-radius: 0;
    }

    .main_books_carousel_section .main-books-pagination {
      position: relative;
      margin-top: 16px;
      bottom: auto !important;
    }

    .main_books_carousel_section .main-books-pagination.swiper-pagination-lock {
      display: none;
      margin: 0;
    }

    .main_books_carousel_section .main-books-pagination .swiper-pagination-bullet {
      background: var(--primary);
      opacity: 0.35;
    }

    .main_books_carousel_section .main-books-pagination .swiper-pagination-bullet-active {
      opacity: 1;
    }

    .main_books_carousel_section .main_books_slider {
      margin: 30px 0 0;
    }

    .main_cta_section h2 {
      font-style: normal;
      font-weight: 700;
      font-size: 50px;
      line-height: 1;
      text-align: center;
      color: #fff;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }

    .main_cta_section p {
      font-weight: 400;
      font-size: 14px;
      line-height: 200%;
      text-align: center;
      color: #fff;
    }

    .JM__sectionExpert {
      background: #f5f5f5;
      padding: clamp(64px, 8vw, 90px) 0;
      overflow: hidden;
    }

    .JM__sectionExpertWrap {
      display: grid;
      grid-template-columns: minmax(0, 45%) minmax(0, 55%);
      gap: clamp(32px, 4vw, 56px);
      align-items: stretch;
    }

  /* Stacked zigzag rows (service pages) — content 60% / image 40% */
    .JM__sectionExpert--stack {
      background: #fff;
      padding: clamp(48px, 6vw, 72px) 0;
    }

    .JM__sectionExpertRows {
      display: flex;
      flex-direction: column;
      gap: clamp(40px, 7vw, 55px);
    }

    .JM__sectionExpert--stack .JM__sectionExpertWrap {
      grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    }

    .JM__sectionExpert--stack .JM__sectionExpertWrap.MPH_row_reverse {
      grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    }

    @media (max-width: 969px) {
      .JM__sectionExpert--stack {
        padding: 32px 0;
      }

      .JM__sectionExpertRows {
        gap: 40px;
      }
    }

    .JM__sectionExpertWrap.MPH_row_reverse .JM__sectionExpertContent {
      order: 2;
    }

    .JM__sectionExpertWrap.MPH_row_reverse .JM__sectionExpertImageArea {
      order: 1;
    }

    .JM__sectionExpertContent {
      width: auto;
      min-width: 0;
      align-self: center;
    }

    .JM__sectionExpertTitle {
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.2;
      color: #344276;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
      margin: 0 0 24px;
      text-align: left;
    }

    .JM__sectionExpertText {
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.65;
      color: #5f6472;
      margin: 0 0 16px;
      text-align: left;
    }

    .JM__sectionExpertText:last-of-type {
      margin-bottom: 24px;
    }

    .JM__sectionExpertList {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .JM__sectionExpertItem {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 0;
      padding: 0;
      color: #5f6472;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.5;
      text-align: left;
    }

    .JM__sectionExpertItem::before {
      content: "✓";
      position: static;
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 50%;
      background: #344276;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .JM__sectionExpertImageArea {
      width: auto;
      min-width: 0;
      min-height: 320px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: stretch;
    }

    .JM__sectionExpertImageArea:not(:has(.JM__sectionExpertCircle))::before {
      content: "";
      width: min(92%, 420px);
      aspect-ratio: 1;
      max-height: min(100%, 420px);
      background: #10c4eb;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .JM__sectionExpertCircle {
      width: min(92%, 420px);
      aspect-ratio: 1;
      max-height: min(100%, 420px);
      background: #10c4eb;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      display: none;
    }

    .JM__sectionExpertBook{
      width: 100%;
    }
    .JM__sectionExpertImageArea > img {
      width: auto;
      max-width: 100%;
      max-height: 100%;
      height: auto;
      position: relative;
      z-index: 2;
      /* transform: rotate(-12deg); */
      object-fit: contain;
      filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
      width: 100%;
    }

    /* Responsive */

    @media (max-width:991px) {

      .JM__sectionExpertWrap,
      .JM__sectionExpertWrap.MPH_row_reverse,
      .JM__sectionExpert--stack .JM__sectionExpertWrap,
      .JM__sectionExpert--stack .JM__sectionExpertWrap.MPH_row_reverse {
        grid-template-columns: 1fr;
      }

      .JM__sectionExpertWrap.MPH_row_reverse .JM__sectionExpertContent,
      .JM__sectionExpertWrap.MPH_row_reverse .JM__sectionExpertImageArea {
        order: unset;
      }

      .JM__sectionExpertImageArea,
      .feature_content_section .feature-image {
        order: -1;
        max-width: min(100%, 400px);
        margin-inline: auto;
      }

      .JM__sectionExpertContent,
      .feature_content_section .feature-content {
        order: 0;
        width: 100%;
      }

      .JM__sectionExpertContent,
      .JM__sectionExpertImageArea {
        width: 100%;
      }

      .JM__sectionExpertTitle {
        font-size: clamp(26px, 5vw, 38px);
        text-align: left;
      }

      .JM__sectionExpertImageArea {
        min-height: 280px;
      }

      .JM__sectionExpertCircle {
        width: min(72vw, 320px);
        max-height: min(72vw, 320px);
      }

      .JM__sectionExpertBook,
      .JM__sectionExpertImageArea > img {
        max-width: min(70%, 260px);
      }
       .main_books_carousel_section h2 {
            font-size: 48px;
            line-height: 1.125;
          }
            .main_cta_section h2 {
                font-size:40px;
            }
    }

    @media (max-width:576px) {

      .JM__sectionExpert {
        padding: 56px 0;
      }

      .JM__sectionExpertTitle {
        font-size: 28px;
      }

      .JM__sectionExpertText,
      .JM__sectionExpertItem {
        font-size: 14px;
      }

      .JM__sectionExpertCircle {
        width: min(68vw, 250px);
        max-height: min(68vw, 250px);
      }

      .JM__sectionExpertBook,
      .JM__sectionExpertImageArea > img {
        max-width: min(75%, 210px);
      }
      .feature_content_section .JM__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
          .main_books_carousel_section h2 {
            font-size: 30px;
            line-height: 1.2;
          }
             .main_cta_section h2 {
                font-size:30px;
            }
    }


    .JM__ctaSection {
      position: relative;
      isolation: isolate;
      padding: 60px 0;
      overflow: hidden;
      background-color: #344276;
    }

    .JM__ctaSection::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url("../images/d-sec-bg.webp") center / cover no-repeat;
      opacity: 0.2;
      pointer-events: none;
    }

    .JM__ctaSection::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(
        0deg,
        rgba(52, 66, 118, 0.65),
        rgba(52, 66, 118, 0.65)
      );
      pointer-events: none;
    }

    .JM__ctaWrapper {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .JM__ctaContent {
      width: 55%;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      position: relative;
      z-index: 2;
      padding-left: 25px;
    }

    .JM__ctaLine {
      width: 6px;
      min-height: 65%;
      background: #fff;
      margin-top: 5px;
      display: flex;
      position: absolute;
      left: 0;
    }

    .JM__ctaTextArea {
      flex: 1;
    }

    .JM__ctaSmallText {
      display: block;
      color: #fff;
      font-size: 20px;
      font-weight: 300;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }

    .JM__ctaTitle {
      color: #fff;
      font-size: 42px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 30px;
      text-transform: uppercase;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }

    .JM__ctaButtons {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .JM__ctaBtnPrimary,
    .JM__ctaBtnSecondary {
      text-decoration: none;
      height: 52px;
      padding: 0 28px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      transition: 0.3s ease;
    }

    .JM__ctaBtnPrimary {
      background: #dfe3ff;
      color: #344584;
      gap: 18px;
    }

    .JM__ctaBtnPrimary:hover {
      background: #fff;
    }

    .JM__ctaArrow {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #344584;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .JM__ctaBtnSecondary {
      border: 1px solid rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    .JM__ctaBtnSecondary:hover {
      background: #fff;
      color: #344584;
    }

    .JM__ctaImageArea {
      width: 45%;
      position: relative;
      display: flex;
      justify-content: flex-end;
    }

    .JM__ctaImage {
      width: 100%;
      max-width: 500px;
      opacity: 0.35;
      object-fit: cover;
    }

    /* Responsive */

    @media (max-width:991px) {

      .JM__ctaWrapper {
        flex-direction: column;
        text-align: center;
      }

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

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

      .JM__ctaLine {
        display: none;
      }

      .JM__ctaTitle {
        font-size: 34px;
      }

      .JM__ctaButtons {
        justify-content: center;
      }
    }

    @media (max-width:576px) {

      .JM__ctaSection {
        padding: 50px 0;
      }

      .JM__ctaTitle {
        font-size: 26px;
      }

      .JM__ctaSmallText {
        font-size: 16px;
      }

      .JM__ctaBtnPrimary,
      .JM__ctaBtnSecondary {
        width: 100%;
      }

      .JM__ctaButtons {
        flex-direction: row;
      }
    }


    .JM_____testimonials {
      padding: clamp(64px, 8vw, 90px) 0;
      background: #f7f7f7;
      overflow: hidden;
    }

    .JM_____container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }

    .JM_____heading {
      text-align: center;
      max-width: 900px;
      margin: 0 auto clamp(48px, 6vw, 70px);
    }

    .JM_____heading h2 {
      margin: 0 0 20px;
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: clamp(30px, 3.2vw, 42px);
      line-height: 1.15;
      color: #344276;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }

    .JM_____heading h2 span {
      font-weight: 700;
    }

    .JM_____heading p {
      margin: 0;
      color: #5f6472;
      font-size: 14px;
      line-height: 1.75;
    }

    .JM_____testimonialSwiper {
      position: relative;
      overflow: hidden;
      padding-top: 12px;
      padding-bottom: 48px;
    }

    .JM_____testimonialSwiper .swiper-slide {
      height: auto;
      box-sizing: border-box;
      padding: 100px 12px 24px;
      overflow: visible;
    }

    .JM_____card {
      position: relative;
      overflow: visible;
      background: #d9d9d9;
      border-radius: 26px;
      padding: 55px 32px 45px;
      text-align: right;
      min-height: 250px;
      height: 100%;
    }

    .JM_____quoteTop,
    .JM_____quoteBottom {
      position: absolute;
      line-height: 1;
      pointer-events: none;
    }

    .JM_____quoteTop svg,
    .JM_____quoteBottom svg {
      display: block;
    }

    .JM_____quoteTop {
      top: -20px;
      right: 25px;
    }

    .JM_____quoteBottom {
      left: 20px;
      bottom: -20px;
    }

    /* Avatar: ~75% above card; 10px white gap; offset blue ring behind (Figma) */
    .JM_____imgWrap {
      position: absolute;
      top: -60px;
      left: 22px;
      width: 126px;
      height: 126px;
      z-index: 4;
      pointer-events: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .JM_____imgRing {
      position: absolute;
      width: 126px;
      height: 126px;
      top: 0;
      border: 3px solid #8ea0ea;
      border-radius: 50%;
      background: transparent;
      box-sizing: border-box;
      z-index: 1;
    }
    .JM_____imgRing::after {
      content: "";
      width: 65px;
      height: 65px;
      background: #d9d9d9;
      display: inline-flex;
      position: absolute;
      bottom: -3px;
      right: -3px;
  }
    .JM_____imgAvatar {
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      padding: 10px;
      box-sizing: border-box;
      /* background: #fff; */
      border-radius: 50%;
      overflow: hidden;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
    }

    .JM_____imgAvatar img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
    }

    .JM_____content {
      position: relative;
      z-index: 2;
      padding-top: 4px;
    }

    .JM_____content h3 {
      margin: 0 0 4px;
      font-size: 22px;
      color: #344276;
      font-weight: 700;
    }

    .JM_____stars {
      color: #344276;
      letter-spacing: 3px;
      font-size: 18px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .JM_____content p {
      margin: 0;
      color: #344276;
      line-height: 1.65;
      font-size: 14px;
    }

    .JM_____testimonials-pagination {
      position: absolute;
      left: auto !important;
      right: 0;
      bottom: 0 !important;
      width: auto !important;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
    }

    .JM_____testimonials-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      margin: 0 !important;
      background: #344276;
      opacity: 0.3;
      transition: opacity 0.25s ease;
    }

    .JM_____testimonials-pagination .swiper-pagination-bullet-active {
      opacity: 1;
    }

    @media (max-width: 991px) {
      .JM_____heading h2 {
        font-size: 40px;
      }
    }

    @media (max-width: 767px) {
      .JM_____testimonials {
        padding: 60px 0;
      }

      .JM_____heading {
        margin-bottom: 40px;
      }

      .JM_____heading h2 {
        font-size: 30px;
      }

      .JM_____card {
        padding: 90px 25px 40px;
      }

  

      .JM_____quoteTop {
        right: 15px;
      }
    }

    .my_portfolio_design_section_two {
      background: #fff;
      overflow: hidden;
    }

    .my_portfolio_design_section_two .portfolio-two-intro {
      margin-bottom: clamp(40px, 5vw, 56px);
    }

    .my_portfolio_design_section_two h2 {
      margin: 0 0 20px;
      font-family: "DM Sans", sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.15;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #344276;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }

    .my_portfolio_design_section_two .portfolio-two-intro p {
      width: 85%;
      max-width: 900px;
      margin: 0 auto;
      color: #5f6472;
      font-size: 14px;
      line-height: 1.75;
    }

    .portfolio-two-marquee {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      overflow: hidden;
      padding: 25px 0;
    }

    .portfolio-two-swiper {
      overflow: hidden;
      --portfolio-visible: 10;
      --portfolio-slide-gap: 14px;
      --portfolio-slide-width: calc(
        (100vw - (var(--portfolio-slide-gap) * (var(--portfolio-visible) - 1))) /
          var(--portfolio-visible)
      );
    }

    .portfolio-two-swiper .swiper-wrapper {
      transition-timing-function: linear !important;
      padding-top: 25px;
    }

    .portfolio-two-swiper .swiper-slide {
      width: var(--portfolio-slide-width);
      height: 495px;
      flex-shrink: 0;
      box-sizing: border-box;
      z-index: 1;
    }

    @media (max-width: 991px) {
      .portfolio-two-swiper .swiper-slide {
        height: 440px;
      }
    }

    @media (max-width: 767px) {
      .portfolio-two-swiper .swiper-slide {
        height: 280px;
      }

      .portfolio-two-marquee {
        padding: 16px 0;
      }
    }

    .portfolio-two-swiper .swiper-slide:hover {
      z-index: 8;
    }

    .portfolio-two-item {
      position: relative;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      cursor: pointer;
      transform: translateZ(0);
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 0 0 0 rgba(52, 66, 118, 0);
    }

    .portfolio-two-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(52, 66, 118, 0.05) 0%,
        rgba(52, 66, 118, 0.15) 45%,
        rgba(52, 66, 118, 0.72) 100%
      );
      opacity: 0;
      transition: opacity 0.45s ease;
      pointer-events: none;
    }

    .portfolio-two-item::after {
      content: "";
      position: absolute;
      left: 0;
      top: 10%;
      bottom: 10%;
      width: 3px;
      z-index: 3;
      border-radius: 0 3px 3px 0;
      background: linear-gradient(180deg, #8ea0ea 0%, #344276 100%);
      transform: scaleY(0);
      transform-origin: center bottom;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .portfolio-two-item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
    }

    .portfolio-two-label {
      position: absolute;
      right: 10px;
      bottom: 16px;
      z-index: 2;
      color: #fff;
      font-family: "DM Sans", sans-serif;
      font-weight: 400;
      font-size: clamp(12px, 1vw, 18px);
      line-height: 1.2;
      letter-spacing: 0.03em;
      white-space: nowrap;
      pointer-events: none;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        font-weight 0.35s ease,
        letter-spacing 0.45s ease,
        text-shadow 0.45s ease;
    }

    .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item {
      transform: scale(1.05) translateY(-6px);
      box-shadow:
        0 20px 36px rgba(52, 66, 118, 0.32),
        0 0 0 1px rgba(142, 160, 234, 0.45);
    }

    .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item::before {
      opacity: 1;
    }
    .portfolio-two-swiper .swiper-slide .portfolio-two-item::after {
      background: hsl(227.27deg 38.82% 33.33% / 50%);
      z-index: 999;
      opacity: 1;
      width: 100%;
      height: 0;
      bottom: 0;
    }
    .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item::after {
      transform: scaleY(1);
      opacity: 1;
      height: 100%;
      top: 0;
    }

    .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item img {
      transform: scale(1.1);
      filter: brightness(1.08) saturate(1.12);
    }

    .portfolio-two-swiper .swiper-slide:hover .portfolio-two-label {
      font-weight: 600;
      letter-spacing: 0.07em;
      transform: rotate(180deg) translateX(-8px);
      text-shadow:
        0 0 12px rgba(142, 160, 234, 0.65),
        0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .portfolio-two-slide--odd .portfolio-two-item {
      margin-bottom: -25px;
    }

    .portfolio-two-slide--even .portfolio-two-item {
      margin-top: -25px;
    }

    .portfolio-two-slide--odd:hover .portfolio-two-item {
      transform: scale(1.05) translateY(-10px);
    }

    .portfolio-two-slide--even:hover .portfolio-two-item {
      transform: scale(1.05) translateY(-2px);
    }

    @media (prefers-reduced-motion: reduce) {
      .portfolio-two-item,
      .portfolio-two-item img,
      .portfolio-two-label,
      .portfolio-two-item::before,
      .portfolio-two-item::after {
        transition: none !important;
      }

      .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item,
      .portfolio-two-slide--odd:hover .portfolio-two-item,
      .portfolio-two-slide--even:hover .portfolio-two-item {
        transform: none;
      }

      .portfolio-two-swiper .swiper-slide:hover .portfolio-two-item img {
        transform: none;
        filter: none;
      }
    }

/* Faq section */
    .MPH__faq_section {
      width: 100%;
      background: #f3f3f3;
      padding: 70px 20px 80px;
    }

    .MPH__faq_container {
      width: 100%;
      max-width: 980px;
      margin: auto;
    }

    .MPH__faq_heading {
      text-align: center;
      margin-bottom: 45px;
    }

    .MPH__faq_title {
      font-size: 36px;
      color: #2f3f77;
      font-weight: 700;
      line-height: 1.1;
      margin: 0 0 12px;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
    }
    
    .MPH__faq_subtitle {
      font-size: 14px;
      color: #777777;
      margin: 0;
    }

    .MPH__faq_grid {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .MPH__faq_column {
      display: flex;
      flex-direction: column;
      gap: 14px;
      width: 100%;
    }

    .MPH__faq_grid.MPH__faq_grid--split {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 18px;
    }

    .MPH__faq_grid.MPH__faq_grid--split .MPH__faq_column {
      flex: 1 1 50%;
      min-width: 0;
      width: auto;
    }

    .MPH__faq_item {
      background: #ffffff;
      border: 1px solid #e9e9e9;
      border-radius: 3px;
      overflow: hidden;
    }

    .MPH__faq_question {
      width: 100%;
      border: none;
      background: #ffffff;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .MPH__faq_text {
      font-size: 13px;
      font-weight: 600;
      color: #222222;
      text-align: left;
    }

    .MPH__faq_icon {
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #2f3f77;
      transition: 0.3s;
    }

    .MPH__faq_answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .MPH__faq_answer_text {
      font-size: 14px;
      color: #666666;
      line-height: 1.7;
      padding: 0 18px 18px;
      margin: 0;
    }

    .MPH__faq_item.MPH__active .MPH__faq_answer {
      max-height: 200px;
    }

    .MPH__faq_item.MPH__active .MPH__faq_icon {
      transform: rotate(180deg);
    }

    @media screen and (max-width: 768px) {

      .MPH__faq_grid.MPH__faq_grid--split {
        flex-direction: column;
      }

      .MPH__faq_grid.MPH__faq_grid--split .MPH__faq_column {
        flex: 1 1 auto;
        width: 100%;
      }

      .MPH__faq_title {
        font-size: 38px;
      }

    }


    /* Footer Top Bar */

    
.MPH__topbar{
    width:100%;
 background: #d9d9d9;

    padding:14px 20px;
}

.MPH__topbar_container{
    width:100%;
    max-width:1280px;
    margin:auto;
    box-sizing: border-box;
}

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

.MPH__topbar_link{
    text-decoration:none;
    color:#2d3f7c;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
    line-height:1;
}

.MPH__topbar_link:hover{
    color:#000000;
}

@media screen and (max-width:991px){

    .MPH__topbar_nav{
        gap:24px;
    }
.MPH__topbar_nav{
     justify-content:center;
}
}

@media screen and (max-width:767px){

    .MPH__topbar{
        padding:16px 15px;
    }

    .MPH__topbar_nav{
        gap:16px;
    }

    .MPH__topbar_link{
        font-size:14px;
    }

}
/* Main Footer */

.MPH__footer{
    width:100%;
    position:relative;
    padding:80px 60px 35px;
    overflow:hidden;
    background:
        linear-gradient(0deg, rgba(52, 66, 118, 0.95), rgba(52, 66, 118, 0.95)),
        #344276 url("../images/footer-bg.webp") center / cover no-repeat;
}

.MPH__footer_container{
    width:100%;
    max-width:1280px;
    margin:auto;
    box-sizing: border-box;
    position:relative;
    z-index:2;
}

.MPH__footer_grid{
    display:grid;
    grid-template-columns:2.6fr 1fr 1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.MPH__footer_left{
    width:100%;
}

.MPH__footer_logo{
    width:260px;
    display:block;
    margin-bottom:28px;
}

.MPH__footer_text{
    color:#ffffff;
    font-size:14px;
    line-height:1.5;
    margin:0 0 35px;
    max-width:580px;
}

.MPH__footer_bold{
    font-weight:700;
}

.MPH__footer_subscribe{
    width:100%;
    max-width:500px;
    position:relative;
}

.MPH__footer_input{
    width:100%;
    height:54px;
    border:none;
    outline:none;
    border-radius:40px;
    padding:0 70px 0 22px;
    background:#ffffff;
}

.MPH__footer_btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#2a3a78;
    color:#ffffff;
    cursor:pointer;
    position:absolute;
    top:6px;
    right:6px;
    font-size:20px;
}

.MPH__footer_col{
    width:100%;
}

.MPH__footer_heading{
    color:#ffffff;
    font-size:18px;
    margin:0 0 18px;
    font-weight:500;
}

.MPH__footer_links{
    list-style:none;
    padding:0;
    margin:0;
}

.MPH__footer_item{
    color:#d7dcef;
    font-size:14px;
    margin-bottom:8px;
    line-height:1.6;
}

.MPH__footer_item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.MPH__footer_item a:hover {
    color: #fff;
    opacity: 0.95;
}

.MPH__footer_logo_link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.MPH__footer_news{
    color:#d7dcef;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

.MPH__footer_line{
    width:100%;
    height:3px;
    background:rgba(255,255,255,1);
    margin-top:55px;
}

@media screen and (max-width:991px){

    .MPH__footer{
        padding:60px 25px 30px;
    }

    .MPH__footer_grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media screen and (max-width:767px){

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

    .MPH__footer_logo{
        width:220px;
    }

    .MPH__footer_text{
        font-size:16px;
    }

}

  
    .MPS___servicesSec {
      position: relative;
      min-height: 700px;
      padding: 80px 0;
      overflow: hidden;
      background: url("../images/newbg.webp") center center/cover no-repeat;
      display: flex;
      align-items: center;
    }

    .MPS___overlay {
      position: absolute;
      inset: 0;
      background: rgba(225, 230, 255, 0);
    }

    .MPS___container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: auto;
      padding: 0 20px;
    }

    .MPS___contentBox {
      max-width: 620px;

      padding: 40px 35px 35px;

      backdrop-filter: blur(2px);
    }

    .MPS___contentBox h2 {
      margin: 0 0 25px;
      color: #24356f;
      font-size: 38px;
      line-height: 1.5;
      font-weight: 800;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    }

    .MPS___contentBox h2 span {
      display: block;
    }

    .MPS___contentBox p {
      margin: 0;
      color: #34406d;
      font-size: 14px;
      line-height: 1.4;
      max-width: 520px;
    }

    .MPS___btnWrap {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 30px;
    }

    .MPS___primaryBtn,
    .MPS___secondaryBtn {
      height: 52px;
      min-width: 170px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      transition: 0.3s ease;
    }

    .MPS___primaryBtn {
      background: #24356f;
      color: #fff;
      padding: 0 8px 0 24px;
      justify-content: space-between;
      gap: 18px;
    }

    .MPS___primaryBtn span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #fff;
      color: #24356f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .MPS___secondaryBtn {
      border: 2px solid #24356f;
      color: #24356f;
      background: transparent;
      padding: 0 26px;
    }

    .MPS___primaryBtn:hover {
      background: #1b2856;
    }

    .MPS___secondaryBtn:hover {
      background: #24356f;
      color: #fff;
    }
    .mob_none_block{
        display:block;
    }
       .mob_none_flex{
        display:flex;
    }
    .NPM__justify-content-center{
        justify-content: center !important;
    }
    .NPM__mx-auto{
        margin:0 auto !important;
    }
    @media (max-width: 991px) {
      .MPS___servicesSec {
        min-height: auto;
        padding: 70px 0;
        background-position: 70% center;
      }

      .MPS___contentBox h2 {
        font-size: 48px;
      }
    }

    @media (max-width: 767px) {
         .mob_none_block, .mob_none_flex{
        display:none;
    }
      .MPS___servicesSec {
        padding: 60px 0;
        background-position: center;
      }

      .MPS___contentBox {
        padding: 30px 20px;
      }

      .MPS___contentBox h2 {
        font-size: 34px;
      }

      .MPS___contentBox p {
        font-size: 15px;
      }

      .MPS___btnWrap {
        flex-direction: row;
        align-items: flex-start;
      }

      .MPS___primaryBtn,
      .MPS___secondaryBtn {
        width: 100%;
      }
    }

@media(max-width:600px){
        .main_books_carousel_section .main-books-carousel-row {
      gap: 8px;
      width: min(100vw - 20px, calc(1280px + 124px));
    }

    .main_books_carousel_section .main-books-carousel-row .JM_slider_arrow {
      width: 44px;
      height: 44px;
      font-size: 18px;
    }

}

