
    :root {
      --primary: #3A58EF;
      --primary-dark: #2a45d0;
      --dark: #26244A;
      --lavender: #ebeefd;
      --lavender-light: #EBEEFE;
      --text-dark: #1D2939;
      --text-body: #475467;
      --text-muted: #667085;
      --text-heading: #2a3343;
      --border-color: #eaecf0;
      --border-muted: #d0d5dd;
    }
    * { box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: #344054;
      margin: 0;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; }
    .font-poppins { font-family: 'Poppins', sans-serif; }
    .text-primary-custom { color: var(--primary) !important; }
    .bg-primary-custom { background-color: var(--primary) !important; }
    .bg-lavender { background-color: var(--lavender) !important; }
    .bg-lavender-light { background-color: var(--lavender-light) !important; }
    .bg-dark-custom { background-color: var(--dark) !important; }
    .btn-primary-custom {
      background-color: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .btn-primary-custom:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
    }
    .btn-outline-primary-custom {
      border-color: var(--primary);
      color: var(--primary);
    }
    .btn-outline-primary-custom:hover {
      background-color: var(--primary);
      color: #fff;
    }
    .max-w-1320 { max-width: 1320px; margin-left: auto; margin-right: auto; }
    .section-py { padding-top: 72px; padding-bottom: 72px; }
    .rounded-2xl { border-radius: 1rem; }
    .rounded-3xl { border-radius: 1.25rem; }

    /* Header */
    .header { position: sticky; top: 0; z-index: 1050; background: #fff; border-bottom: 1px solid var(--border-color); }
    .header .nav-link { font-size: 14px; color: var(--text-body); padding: 8px 12px; }
    .header .nav-link:hover { color: var(--primary); }
    .header .brand-name { font-weight: 700; color: var(--dark); font-size: 22px; letter-spacing: -0.02em; }

    /* Hero */
    .hero-section { position: relative; overflow: hidden; z-index: 9;}
    .hero-bg-shape {
      position: absolute; top: 8px; bottom: 24px; left: 20px; right: 20px;
      background: var(--lavender-light); border-radius: 28px;
    }
    @media (max-width: 767.98px) { .hero-bg-shape { left: 12px; right: 12px; border-radius: 20px; } }
    .hero-gradient-text {
    background: linear-gradient(180deg, #1900A1 -0.01%, #3A58EF 100.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -0.96px;
    }
    .hero-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
    .hero-photos-wrapper { display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
    .hero-card {
      background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
      border-radius: 16px; padding: 16px; box-shadow: 0 6px 28px rgba(0,0,0,0.09);
      width: 170px; height: 200px; display: flex; flex-direction: column; justify-content: space-between;
    }
    .category-card {
      background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 20px;
      transition: box-shadow 0.2s;
    }
    .category-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
    .category-icon-box {
      background: var(--lavender-light); width: 46px; height: 46px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .arrow-circle {
      width: 30px; height: 30px; border-radius: 50%; background: #f2f4f7;
      display: flex; align-items: center; justify-content: center;
    }
    .category-card:hover .arrow-circle { background: var(--lavender-light); }

    /* Stats */
    .stat-card { border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; }
    @media (min-width: 768px) { .stat-card { padding: 24px; } }
    .stat-value { font-weight: 700; color: var(--primary); font-size: 22px; }
    @media (min-width: 768px) { .stat-value { font-size: 30px; } }

    /* Domain cards */
    .domain-card {
      background: #fff; border-radius: 12px; padding: 24px; transition: all 0.2s; cursor: pointer;
    }
    .domain-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
    .domain-card:hover .domain-title { color: var(--primary); }

    /* Office */
    .office-list { max-height: 684px; overflow-y: auto; }
    .office-item { display: flex; gap: 12px; padding: 16px; }
    .office-item:not(:first-child) { border-top: 1px solid var(--border-color); }
    .office-item:hover { background: #f9fafb; }
    .office-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
    .country-tab { display: flex; align-items: center; gap: 12px; padding: 8px 24px; border: none; background: none; cursor: pointer; }
    .country-tab.active .country-name { font-weight: 600; color: var(--primary); }
    .country-tab .country-name { font-size: 16px; font-weight: 500; color: var(--text-body); white-space: nowrap; }
    .country-underline {
      height: 1px; width: 100%;
      background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgb(58,88,239) 26%, rgb(58,88,239) 50%, rgb(58,88,239) 75%, rgba(255,255,255,0) 100%);
    }
    .global-stat-card { background: #fff; border-radius: 12px; padding: 16px; }
    @media (min-width: 768px) { .global-stat-card { padding: 20px; } }

    /* Tier Expansion */
    .benefit-card-dashed {
      background: #d8defc; border-radius: 16px; padding: 16px 24px; position: relative;
    }
    .benefit-card-dashed::before {
      content: ''; position: absolute; inset: -0.5px; border: 1px dashed #182878;
      border-radius: 16.5px; pointer-events: none;
    }
    .cta-gradient {
      border-radius: 16px;
      background: linear-gradient(-30deg, rgb(222,227,253) 0%, rgb(243,236,253) 100%);
      position: relative;
      z-index: 9;
    }

    .cta-gradient:before {
        content: '';
        background-image: url(../../images/careers-landing-page/Read_Now_Bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right center;
        width: 100%;
        height: 146px;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    /* Benefits accordion */
    .benefits-accordion .accordion-item { border: 1px solid var(--border-color); border-radius: 8px !important; overflow: hidden; margin-bottom: 16px; }
    .benefits-accordion .accordion-button { font-weight: 700; color: #0b0084; font-size: 17px; padding: 20px 24px; }
    @media (min-width: 768px) { .benefits-accordion .accordion-button { font-size: 20px; } }
    .benefits-accordion .accordion-button:not(.collapsed) { background: #fff; box-shadow: none; color: #0b0084; }
    .benefits-accordion .accordion-button::after { background-image: none; content: ''; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #5D667B; }
    .benefits-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }

    /* Policies */
    .policy-tab { font-size: 14px; font-weight: 500; padding: 8px 20px; border-radius: 4px; border: 1px solid var(--border-muted); background: #fff; color: var(--primary); cursor: pointer; transition: all 0.2s; }
    .policy-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 1px 2px rgba(16,24,40,0.05); }
    .sidebar-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 0; background: none; border: none; width: 100%; cursor: pointer; }
    .sidebar-item .item-text { font-weight: 600; font-size: 18px; color: #98a2b3; transition: color 0.2s; }
    .sidebar-item.active .item-text { color: var(--primary); }
    .sidebar-circle { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--border-muted); flex-shrink: 0; }
    .sidebar-item.active .sidebar-circle { background: #758AF4; }
    .faq-item { border-bottom: 1px solid #e1e2e6; }
    .faq-btn { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; text-align: left; padding: 20px 0; background: none; border: none; cursor: pointer; }
    .faq-btn .faq-q { font-weight: 600; color: var(--dark); font-size: 17px; }
    @media (min-width: 768px) { .faq-btn .faq-q { font-size: 20px; } }
    .faq-answer { color: var(--text-body); font-size: 16px; line-height: 1.75; padding-bottom: 20px; padding-right: 48px; }
    @media (min-width: 768px) { .faq-answer { font-size: 18px; } }

    /* Photo Grid - Life at MYCPE */
    .photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
    @media (max-width: 767.98px) { .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } }
    .photo-grid .span-2x2 { grid-column: span 2; grid-row: span 2; }
    .photo-grid .span-1x1 { grid-column: span 1; grid-row: span 1; }
    .photo-grid .span-1x2 { grid-column: span 1; grid-row: span 2; }
    .photo-grid .span-2x1 { grid-column: span 2; grid-row: span 1; }
    .photo-grid .grid-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
    .photo-grid .grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
    .photo-grid .grid-item:hover img { transform: scale(1.05); }

    /* Social Shoutouts */
    .filter-tab { font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
    .filter-tab.active { background: var(--primary); color: #fff; }
    .filter-tab:not(.active) { background: #fff; color: var(--primary); }
    .filter-tab:not(.active):hover { background: #f3f1fd; }
    .testimonial-card { border: 1px solid var(--border-muted); border-radius: 8px; padding: 20px; }
    .testimonial-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }

    /* First Client Story */
    .toggle-wrapper { background: #fff; border-radius: 12px; padding: 2px; display: inline-flex; }
    .toggle-btn { font-size: 16px; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; background: none; color: #5d667b; }
    .toggle-btn.active { background: var(--primary); color: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    .name-badge {
      position: absolute; bottom: -16px; left: 32px;
      background: #fff; padding: 8px 24px; border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12); text-align: center;
    }

    /* Blog card */
    .blog-card { border: 1px solid var(--border-muted); border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; cursor: pointer; }
    .blog-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
    .blog-card:hover .blog-img img { transform: scale(1.05); }
    .blog-img { overflow: hidden; }
    .blog-img img { width: 100%; height: 198px; object-fit: cover; transition: transform 0.3s; }

    /* Employee stories */
    .story-video { position: relative; border-radius: 12px; overflow: hidden; }
    .story-video img { width: 100%; height: 198px; object-fit: cover; }
    .story-video .play-overlay {
      position: absolute; inset: 0; background: rgba(0,0,0,0.4);
      display: flex; align-items: center; justify-content: center;
    }
    .play-btn { width: 44px; height: 44px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

    /* Footer */
    .footer { background: var(--dark); position: relative; }
    .footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer a:hover { color: #fff; }
    .footer h5 { font-size: 15px; font-weight: 700; color: #fff; }
    .store-badge { background: #090914; border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; width: 180px; cursor: pointer; transition: background 0.2s; }
    .store-badge:hover { background: #1a1a2e; }
    .social-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .social-icon:hover { background: rgba(255,255,255,0.2); }

    /* Joyful moments */
    .joyful-img { height: 250px; border-radius: 16px; overflow: hidden; }

    /* =============================================
   MYCPE ONE — Extracted Styles
   All previously-inline styles, now in classes
   ============================================= */

    /* ---- HERO BANNER ---- */
    .hero-section:before {
        position: absolute;
        content: "";
        top: 0;
        left: 30px;
        right: 30px;
        bottom: 0px;
        border-radius: 16px;
        background: #EBEEFD;
        z-index: -1;
    }

    .hero-section img {
        margin-top: 20px;
        width: 100%;
    }
    .hero-desktop-photos {
    height: 340px;
    }

    .hero-card-left {
    left: 3%;
    top: 28px;
    transform: rotate(-30deg) translateX(-18px) translateY(200px);
    z-index: 3;
    }

    .hero-card-right {
    right: 2%;
    top: 28px;
    transform: rotate(30deg) translateX(18px) translateY(200px);
    z-index: 3;
    }

    .hero-card-title {
    color: #344054;
    font-size: 13px;
    line-height: 1.45;
    }

    .hero-card-sub {
    color: #98a2b3;
    font-size: 11px;
    }

    .hero-openings-text {
    right: 6px;
    bottom: 20px;
    transform: rotate(16deg);
    z-index: 2;
    color: #98a2b3;
    font-size: 11px;
    }

    .hero-photo-left {
    width: 195px;
    height: 250px;
    transform: rotate(-10deg) translateX(18px) translateY(-8px);
    z-index: 1;
    flex-shrink: 0;
    }

    .hero-photo-center {
    width: 215px;
    height: 275px;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 -12px;
    }

    .hero-photo-right {
    width: 195px;
    height: 250px;
    transform: rotate(10deg) translateX(-18px) translateY(-8px);
    z-index: 1;
    flex-shrink: 0;
    }

    .hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .hero-mobile-img-wrapper {
    z-index: 1;
    }

    .hero-photo-mobile {
    width: 260px;
    height: 200px;
    }

    .hero-text-section {
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    right: 0;
    }

    .hero-heading {
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    margin-bottom: 12px;
    }

    .hero-subtext {
    margin: 0 auto;
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: inherit;
    }

    .hero-cards-row {
    max-width: 1120px;
    margin: 0 auto;
    }

    /* ---- CATEGORY CARDS ---- */
    .category-card-title {
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
    text-align: left;
    }

    .category-card-desc {
    margin: 0;
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    }

    /* ---- JOIN FAMILY ---- */
    .join-heading {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--dark);
    letter-spacing: -0.02em;
    }

    .join-body {
    color: var(--text-heading);
    font-size: 16px;
    line-height: 1.7;
    }

    .stat-icon-box {
    width: 40px;
    height: 40px;
    background: var(--lavender);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .stat-label {
    font-weight: 600;
    color: var(--text-heading);
    font-size: clamp(13px, 1.5vw, 16px);
    margin: 4px 0 0;
    }

    .stat-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 10px;
    }

    .stat-placeholder--sm {
    height: 32px;
    border-radius: 4px;
    }

    .join-img-wrapper {
    border-color: var(--border-color);
    }

    .join-img-desktop {
    width: 100%;
    height: 378px;
    object-fit: cover;
    }

    .join-img-mobile {
    width: 100%;
    height: 300px;
    object-fit: cover;
    }

    .join-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    /* ---- DOMAINS ---- */
    .section-domains {
    padding: 48px 0;
    }

    .section-heading {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--dark);
    letter-spacing: -0.02em;
    }

    .section-subtext {
    color: var(--text-body);
    font-size: clamp(16px, 2vw, 18px);
    }

    .domain-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .domain-icon-blue  { background: #EBEEFD; }
    .domain-icon-indigo { background: rgba(25, 0, 161, 0.08); }
    .domain-icon-purple { background: rgba(107, 53, 197, 0.08); }
    .domain-icon-cyan  { background: rgba(37, 151, 244, 0.08); }

    .domain-desc {
    color: var(--text-body);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    margin-bottom: 16px;
    }

    .domain-badge {
    font-weight: 600;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    }

    .domain-badge-blue   { color: #3a58ef; background: rgba(58, 88, 239, 0.08); }
    .domain-badge-indigo { color: #1900a1; background: rgba(25, 0, 161, 0.08); }
    .domain-badge-purple { color: #6B35C5; background: rgba(107, 53, 197, 0.08); }
    .domain-badge-cyan   { color: #2597F4; background: rgba(37, 151, 244, 0.08); }

    /* ---- OFFICES ---- */
    .section-heading-plain {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--dark);
    }

    .offices-subtext {
    max-width: 1100px;
    margin: 12px auto 0;
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    }

    .country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    }

    .country-flag-us { background: #ccc; color: #666; font-size: 10px; }
    .country-flag-in { background: #FF9933; }
    .country-flag-ph { background: #0038A8; }
    .country-flag-uk { background: #012169; }
    .country-flag-ca { background: #FF0000; }

    .offices-grid-wrapper {
    border-color: var(--border-color);
    }

    .offices-map-col {
    min-height: 350px;
    border-right: 1px solid var(--border-color);
    }

    .offices-map-label {
    background: #2D3282;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border-radius: 9999px;
    padding: 4px 12px;
    z-index: 2;
    }

    .offices-map-placeholder {
    width: 80%;
    height: 300px;
    border-radius: 12px;
    }

    .office-item-body {
    min-width: 0;
    }

    .office-name {
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 4px;
    }

    .office-addr {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    min-height: 40px;
    }

    .office-link {
    text-decoration: none;
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    }

    .global-footer-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(20px, 2.5vw, 22px);
    }

    .global-stat-value {
    font-weight: 700;
    color: var(--primary);
    font-size: clamp(28px, 3vw, 32px);
    margin: 0;
    }

    .global-stat-label {
    font-weight: 500;
    color: #344054;
    font-size: 15px;
    margin: 4px 0 0;
    }

    /* ---- TIER EXPANSION ---- */
    .tier-sub-heading {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(20px, 2.5vw, 24px);
    }

    .tier-body {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.7;
    }

    .tier-img-placeholder {
    height: 276px;
    }

    .benefits-box {
    border-color: var(--border-color);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    }

    .benefit-icon {
    font-size: 24px;
    color: var(--text-body);
    }

    .benefit-title {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 20px;
    margin-bottom: 8px;
    }

    .benefit-desc {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    }

    .cta-banner {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .cta-text {
    font-weight: 600;
    color: var(--text-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0;
    flex: 1;
    }

    .cta-btn {
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 6px;
    }

    /* ---- BENEFITS SECTION ---- */
    .benefit_left_main {
    position: sticky;
    top: 30px;
    }
    .benefits-main-heading {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--dark);
    }

    .benefits-main-sub {
    color: var(--text-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    }

    .benefits-img-placeholder {
    height: 360px;
    }

    .accordion-body-text {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    }

    .accordion-body-list {
    padding-left: 20px;
    }

    .accordion-body-list-item {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    }

    .accordion-body-list-item--last {
    margin-bottom: 0;
    }

    .list-label {
    color: var(--text-dark);
    }

    .list-value {
    color: var(--text-body);
    }

    /* ---- SOCIAL MEDIA SHOUTOUTS ---- */
    .section-shoutouts {
    padding: 48px 0;
    overflow: hidden;
    }

    .testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 4px;
    }

    .testimonial-body {
    color: var(--text-heading);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    }

    .testimonial-link {
    color: var(--primary);
    font-size: 16px;
    text-decoration: none;
    }

    .shoutouts-view-more {
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    }

    /* ---- FIRST CLIENT STORY ---- */
    .story-subtext {
    color: var(--text-body);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 620px;
    margin: 8px auto 0;
    line-height: 1.6;
    }

    .story-photo-placeholder {
    height: 291px;
    }

    .name-badge-name {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    margin: 0;
    }

    .name-badge-role {
    color: var(--text-body);
    font-size: 14px;
    margin: 0;
    }

    .story-quote-title {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 20px;
    margin-bottom: 4px;
    }

    .story-quote-sub {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    }

    .story-quote-body {
    color: #101828;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    }

    .story-content {
    color: var(--text-heading);
    font-size: 16px;
    line-height: 1.6;
    }

    .story-view-more-btn {
    background: #d8defc;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    }

    .joyful-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 20px;
    }

    .joyful-img-inner {
    width: 100%;
    height: 100%;
    }

    /* ---- BLOGS ---- */
    .blog-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: clamp(17px, 2vw, 20px);
    margin-bottom: 8px;
    }

    .blog-author-icon {
    color: #5D667B;
    font-size: 14px;
    }

    .blog-author {
    color: #98a2b3;
    font-size: 12px;
    }

    .blog-excerpt {
    color: #5d667b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    }

    .blog-story-divider {
    border-color: #98a2b3 !important;
    }

    .blog-story-video {
    height: 213px;
    }

    .blog-story-img {
    width: 100%;
    height: 100%;
    }

    .blog-story-overlay {
    background: rgba(0, 0, 0, 0.4);
    }

    .blog-story-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 16px;
    }

    .blog-story-body {
    color: var(--text-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    }

    .blog-story-read-more {
    background: #f3f1fd;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    }

    /* ---- EMPLOYEE STORIES ---- */
    .ca-dropout-heading {
    font-weight: 700;
    font-size: clamp(22px, 3vw, 26px);
    color: var(--dark);
    max-width: 900px;
    }

    .ca-dropout-body {
    color: var(--text-heading);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    }

    .testimonial-profile-card {
    border-color: var(--border-color);
    margin-top: 32px;
    }

    .testimonial-avatar {
    width: 80px;
    height: 80px;
    top: -32px;
    left: 16px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .testimonial-avatar-inner {
    width: 100%;
    height: 100%;
    }

    .testimonial-profile-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 2px;
    }

    .testimonial-profile-role {
    color: #5d667b;
    font-size: 14px;
    margin-bottom: 12px;
    }

    .testimonial-profile-quote {
    color: var(--text-heading);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    }

    .story-video-thumb {
    width: 100%;
    height: 198px;
    }

    .story-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 8px;
    }

    .story-desc {
    color: #5d667b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    }

    .grid-img {
    width: 100%;
    height: 100%;
    }


    .domain-card h5.domain-title {
        color: var(--Text-Grey-700, #344054);

    /* Text xl / Semibold */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px; /* 150% */
    }

    .domain-card p.domain-desc {
        color: var(--Text-Grey-600, #475467);

    /* Text md / Regular */
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }


    .country-map-block { display: none; width: 100%; text-align: center; position: relative; }
    .country-map-block.active { display: block; }
    .country-office-block { display: none; }
    .country-office-block.active { display: block; }

    button.country-tab.active:after {
        content: '';
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #3A58EF 26.44%, #3A58EF 50.48%, #3A58EF 75%, rgba(255, 255, 255, 0.00) 100%);
        width: 122px;
        height: 1px;
        display: inline-block;
        position: absolute;
        top: auto;
        right: 0;
        bottom: -4px;
        left: 0;
        margin: 0 auto;
        text-align: center;
    }

    button.country-tab.active {
        position: relative;
        filter: grayscale(0);
    }

    button.country-tab {
        filter: grayscale(1);
    }



    .benefits-accordion .accordion_testimonial { 
    padding: 30px 0px;
    border-radius: 8px;
    background: #F8F8F8;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    margin-bottom: 16px;
    }

    .benefits-accordion .accordion_testimonial .quote_box {
        padding: 0 0 0 68px;
        margin: 0 20px 20px;
        position: relative;
        min-height: 28px;
    }

    .benefits-accordion .accordion_testimonial .quote_box span { display: inline-block; position: absolute; left: 0; top: 0; }
    .benefits-accordion .accordion_testimonial .description { padding: 0 30px;
        color: var(--Text-Grey-700, #344054);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin: 0;
    }

    .benefits-accordion .accordion_testimonial .quote_box hr { 
    position: relative;
    top: 13px;
    border-top: 2px solid #D0D5DD;
    opacity: 1;
    }

    .accordion_testimonial .about-client {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 24px;
        padding: 0 30px;
    }

    .accordion_testimonial .about-client .client_img {
        border-radius: 50%;
        margin-right: 20px;
        width: 60px;
        height: 60px;
        overflow: hidden;
        display: none;

    }
    .accordion_testimonial .about-client .client_img img { width: 60px; height: 60px; }

    .accordion_testimonial .about-client .cle-info {
        text-align: left;
    }

    .accordion_testimonial .about-client .cle-info h6 {
        color: var(--Text-Grey-800, #1D2939);
        text-align: left;

        /* Text lg / Medium */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px; /* 155.556% */
    }

    .accordion_testimonial .about-client .cle-info p {
        color: var(--Text-Grey-600, #475467);
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        margin: 0; 
    } 



    /*Our Policies Start*/

    section.Our_Policies {
        padding: 72px 0 72px 0;
        background: var(--Theme-Blue-50, #EBEEFD);
    }

    .Policies_Title h2 {
        color: #26244A;
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
        margin-bottom: 48px;
    }
    .Policies_left .nav button {
        text-align: left;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #EAECF0;
        color: var(--Text-Grey-400, #98A2B3);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        padding: 16px 0;
        border-radius: 0;
    }
    .Policies_left .nav button.active {
        background: transparent;
        color: var(--Theme-Blue-500, #3A58EF);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    .Policies_left .nav button.active svg circle {
        fill: #758AF4;
    }
    .Policies_Data .accordion-item {
        border: none;
        border-bottom: 1px solid #E1E2E6;
        border-radius: 0;
        background: transparent;
    }
    .Policies_Data .accordion-item h2.accordion-header button {
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        padding: 24px 0;
        background: transparent;
        box-shadow: none;
    }
    .Policies_Data .accordion-item .accordion-body {
        padding: 17px 0;
    }
    .Policies_Data .accordion-item .accordion-body p {
        color: var(--Text-Grey-600, #475467);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .Policies_Data .accordion-item h2.accordion-header button::after {
        content: "";
        display: block;
        background-image: url(../../images/careers-landing-page/CircleDown.svg);
    }

    .Media_Tabs ul {
        border: none;
    }
    .Media_Tabs ul li.nav-item button {
        border-radius: 4px;
        background: var(--White, #FFF);
        box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
        color: var(--Theme-Purple-500, #3A58EF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        padding: 8px 14px;
        margin-left: 16px;
    }
    .Media_Tabs ul li.nav-item button.active {
        border-radius: 4px;
        background: var(--Theme-Purple-500, #3A58EF);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        color: var(--White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        border: none;
    }

    .Our_Policies .Media_Tabs > .tab-content { margin-top: 48px; }

    /*Our Policies End*/



    .Life_At_Mycpe {
        background: var(--White, #FFF);
        padding: 72px 0 0 0;
        --space: 2rem;
        display: grid;
        align-content: center;
        overflow: hidden;
        gap: var(--space);
        width: 100%;
    }
    
    .Life_At_Mycpe h2.Sec_Title {
        color: var(--Theme-Dark-Blue-800, #26244A);
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; 
        letter-spacing: -0.72px;
        margin-bottom: 48px;
    }
    
    
    .Life_At_Mycpe .marquee {
        --duration: 60s;
        --gap: var(--space);
        /* display: flex; */
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
    }
    
    .Life_At_Mycpe .marquee__group {
        flex-shrink: 1;
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        gap: var(--gap);
        min-width: 100%;
        margin-bottom: 30px;
    }
    .Our_Events_Box {
        position: relative;
    }
    .Our_Events_Box a.event-link:after {
        content: '';
        background: url(../../images/careers-landing-page/Back_Overlay.svg) no-repeat;
        background-size: contain;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .foonavBlk {
        pointer-events: none;
    }
    
    .fooNav dd a {
        pointer-events: visible;
    }
    
    .Life_At_Mycpe .marquee--borders {
        border-block: 3px solid dodgerblue;
        padding-block: 0.75rem;
    }
    
    .Life_At_Mycpe .marquee--reverse .marquee__group {
        animation-direction: reverse;
        animation-delay: calc(var(--duration) / -2);
    }

    .marquee__group img { border-radius: 20px; }

    /* Our Events Start */
    section.Our_Events {
        background: #F5F8FD;
        padding: 48px 0;
    }
    .Our_Events_Title h2 {
        color: #26244A;
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
        margin-bottom: 48px;
    }
    .Our_Events_Box a.event-link:after {
        content: '';
        background: url(../../images/careers-landing-page/Back_Overlay.svg) no-repeat;
        background-size: cover;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    .Our_Events_Main .Our_Events_Box img {
        border-radius: 10px;
    }
    .Our_Events_Main .Our_Events_Box p {
        color: #171A1F;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 30px */
        margin-top: 15px;
        margin-bottom: 0;
    }
    
    .Our_Events_Main .slick-slide {
        margin: 30px;
        height: auto;
        transform: scale(1);
    }
    
    .Our_Events_Main .slick-slide.slick-current {
        transform: scale(1);
    }
    /* Our Events End */
    @keyframes scroll {
        0% {
        transform: translateX(0);
        }
    
        100% {
        transform: translateX(calc(-100% - var(--gap)));
        }
    }

    @keyframes fadein {
        0% {
            opacity: 0;
            transform: translateY(50%);
        }
        
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
  

    /*  Media Shoutouts Start */
    section.Media_Shoutouts {
        background: var(--Text-Grey-50, #EBEEFD);
        padding: 72px 0;
    }
    .Media_Title h2 {
        color: var(--Theme-Dark-Blue-800, #26244A);
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
        margin-bottom: 48px;
    }
    .Media_Tabs ul {
        border: none;
    }
    .Media_Tabs ul li.nav-item button {
        border-radius: 4px;
        background: var(--White, #FFF);
        box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
        color: var(--Theme-Purple-500, #3A58EF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        padding: 8px 14px;
        margin-left: 16px;
    }
    .Media_Tabs ul li.nav-item button.active {
        border-radius: 4px;
        background: var(--Theme-Purple-500, #3A58EF);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        color: var(--White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        border: none;
    }
    .Media_Box {
        border-radius: 8px;
        background: #FFF;
        padding: 16px;
        height: 100%;
        border: 1px solid #EAECF0;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }

    .Media_User {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .Media_profile_img { margin-right: 18px; }

    .User h6 {
        color: var(--Text-Grey-800, #1D2939);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
    }
    .User p {
        color: var(--Text-Grey-400, #98A2B3);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
    .Media_Box p.User_Text {
        color: var(--Text-Grey-700, #344054);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        height: 120px;
        overflow: hidden;
    }
    .Media_Data {
        margin-top: 20px;
    }
    .Media_Box a {
        color: var(--Theme-Blue-500, #3A58EF);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-top: 8px;
        display: inline-block;
    }
    .View_More_Media a {
        color: var(--Theme-Blue-500, #3A58EF);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        border-radius: 4px;
        border: 1px solid var(--Theme-Blue-500, #3A58EF);
        padding: 16px 50px;
        display: inline-block;
        margin-top: 32px;
        transition: .4s ease-out;
    }
    .View_More_Media a:hover {
        background-color: #3A58EF;
        color: #fff;
    }

    .View_More_Media {
        text-align: center;
    }

    .Media_Shoutouts .title_box { margin-bottom: 48px; }
    .Media_Shoutouts .title_box h2 { color: #26244A;
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
        margin-bottom: 8px;
    }
    .Media_Shoutouts .title_box p { font-weight: 400; font-size: 16px; line-height: 24px; color: #344054; margin: 0; text-align: center; }

    .Media_Shoutouts .Media_Data .row > .col-md-4  { margin-bottom: 25px; }
    .Media_Box h5 { margin-bottom: 10px; height: 44px; overflow: hidden; }
    .Media_Tabs ul li.nav-item button { margin-bottom: 16px; }
    .Media_profile_img { width: 70px; height: 70px; overflow: hidden; }
    .Media_profile_img img { width: 70px; height: 70px; border-radius: 10px;  }

    /*  Media Shoutouts End */


    /*Our_First Start*/

    section.Our_First {
        background: var(--White, #FFF);
        padding: 72px 0;
    }
    section.Our_First ul {
        border: none;
    }

    section.Our_First .Media_Tabs { 
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    section.Our_First .nav.nav-tabs {
        display: inline-flex;
        padding: 2px;
        align-items: flex-start;
        border-radius: 12px;
        background: #FFF;
        margin: 0 auto;
    }

    section.Our_First ul li.nav-item button {
        background: #fff;
        color: var(--Text-Grey-500, #5D667B);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        border-radius: 10px;
        padding: 8px 20px;
        margin: 0;
    }
    section.Our_First ul li.nav-item button.active {
        border: none;
        border-radius: 10px;
        background: var(--Theme-Blue-500, #3A58EF);
        box-shadow: 0px 4px 4px -2px rgba(24, 39, 75, 0.06), 0px 2px 4px -2px rgba(24, 39, 75, 0.02), 0px 0px 2px 0px #E0E0E0;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    section.Our_First .tab-content { margin-top: 32px; }
    .Story_Client h2 {
        color: var(--Theme-Dark-Blue-800, #26244A);
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
    }
    .Story_Client p {
        color: var(--Text-Grey-600, #475467);
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-top: 4px;
    }
    .Client_Box {
        position: relative;
    }
    .Client_Data {
        border-radius: 8px;
        background: #FFF;
        box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
        padding: 8px 24px;
        position: absolute;
        text-align: center;
        bottom: -35px;
        left: 0;
        right: 0;
        margin: 0 50px;
    }
    .Client_Data h6 {
        color: #000;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    .Client_Data p {
        color: var(--Text-Grey-600, #475467);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
    .Client_Box img {
        width: 100%;
    }
    .Top_Box {
        border-radius: 8px;
        background: #FFF;
        padding: 16px;
    }
    .Top_Box h4 {
        color: var(--Text-Grey-700, #344054);
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
    }
    .Top_Box h6 {
        color: var(--Text-Grey-600, #475467);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .Top_Box p {
        color: var(--Text-Grey-900, #101828);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
    }
    .Client_Main {
        margin: 48px 0;
    }
    .Client_Right p {
        color: var(--Text-Grey-700, #344054);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        margin: 16px 0;
    }
    .More_Can {
        display: none;
    }

    .Patel_Box {
        border-radius: 10px;
        background: var(--Text-Grey-50, #F9FAFB);
        display: inline-block;
        padding: 16px;
        margin-bottom: 24px;
    }
    .Patel_Box h3 {
        color: var(--Theme-Blue-400, #4E69F1);
        font-size: 24px;
        font-style: italic;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .Shawn_Box {
        display: flex;
        gap: 16px;
    }
    .Shawn_Box h5 {
        color: var(--Text-Grey-800, #1D2939);
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 4px;
    }
    .Shawn_Can h6 {
        color: var(--Text-Grey-600, #475467);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .Client_Right a {
        border-radius: 4px;
        background: var(--Theme-Blue-100, #D8DEFC);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        padding: 8px 14px;
        display: inline-block;
        color: var(--Theme-Blue-500, #3A58EF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        position: relative;
        padding-right: 40px;
    }
    .Client_Right a:after {
        content: "";
        background-image: url(../../images/careers-landing-page/DoubleDown.svg);
        width: 20px;
        height: 20px;
        display: block;
        position: absolute;
        right: 10px;
        top: 8px;
    }
    .More_Can.active + a::after {
        transform: rotate(180deg);
    }
    .Joyful_Moments h3 {
        color: var(--Text-Grey-800, #1D2939);
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        margin-bottom: 24px;
    }
    .Joyful_Moments {
        /* border-radius: 16px;
        border: 1px solid var(--Text-Grey-300, #D0D5DD);
        padding: 16px; */
    }
    .Client_Box.Employee img {
        width: auto;
        text-align: center;
    }
    .Client_Box.Employee {
        text-align: center;
    }

    .Joyful_Moments h4 { 
        color: var(--Text-Grey-800, #1D2939);
        text-align: center;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        margin-bottom: 24px;
    }
    /*Our_First End*/


        
    .Must_Read_Blogs {
        padding: 72px 0;
        background: var(--Theme-Blue-50, #EBEEFD);
    }

    .Must_Read_Blogs .blogs_main .headings.text-center h2 {
        color: var(--Theme-Dark-Blue-800, #26244a);
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -.72px;
        margin-bottom: 40px
    }

    .Insightful_Box {
        border-radius: 8px;
        background: #FFF;
        padding: 16px;
        height: 100%;
        border-radius: 8px;
        border: 1px solid var(--Text-Grey-300, #D0D5DD);
        background: #FFF;
    }

    .Insightful_Box img {
        width: 100%
    }

    .view_all_blog {
        margin-top: 40px
    }

    .Insightful_Box h4 {
        overflow: hidden;
        color: var(--Text-Grey-800, #1d2939);
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        height: 52px;
        margin-top: 18px;
        margin-bottom: 8px;
        font-size: 20px;
    }

    .Insightful_Box h6 {
        color: var(--Text-Grey-400, #98a2b3);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 15px
    }

    .Insightful_Box h6 .blog_author {
        max-height: 20px;
        width: auto
    }

    .Insightful_Box p {
        font-size: 16px;
        margin: 0;
        color: var(--Text-Grey-500, #5d667b);
        font-style: normal;
        font-weight: 400;
        line-height: 24px
    }

    .Insightful_img {
        max-height: 240px;
        overflow: hidden;
        border-radius: 8px
    }

    .Insightful_Box a img:hover {
        transform: scale(1.1)
    }

    .Insightful_Box a img {
        border-radius: 8px;
        transition: .3s
    }

    .Insightful_Box a img {
        border-radius: 8px
    }

    .Insightful_Box a {
        text-decoration: none;
    }



    /*stories*/
    .stories { padding: 72px 0; background: var(--White, #FFF); }
    .section_title { 
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 48px;
    }

    .storie_logo_img { text-align: center; }
    .video_img_box { position: relative; display: inline-block; line-height: 0; }
    .video_img_box:after {
        content: '';
        background: url(../../images/careers-landing-page/video-btn.svg) no-repeat;
        background-size: 38px;
        background-position: center center;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .storie_logo_img .video_img_box { position: relative; top:-32px; }

    .read_more_btn a {
    display: flex;
    width: 181px;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--Theme-Purple-50, #F3F1FD);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--Theme-Blue-500, #3A58EF);

    /* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    }

    .read_more_btn a:hover { 
        background:#3A58EF;
        color: #ffffff;
    }

    .stories .row  { align-items: center; }
    .stories .row .col-md-8 h3 { 
        color: var(--Text-Grey-800, #1D2939);
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 17px;
    }

    .stories .row .col-md-8 p {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
    }

    .stories hr { margin:48px 0; }

    .bottom_conntent { padding: 72px 0; background: var(--Theme-Blue-50, #EBEEFD); }
    .bottom_conntent .row  { align-items: center; }
    .bottom_conntent .row .col-md-8 h3 { 
    color: var(--Text-Grey-800, #1D2939);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 17px;
    }

    .bottom_conntent .row .col-md-8 h4 { 
    color: var(--Text-Grey-800, #1D2939);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 24px;
    }

    .bottom_conntent .row .col-md-8 p {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
    }

    .content_testimonial {
    border-radius: 8px;
    background: var(--White, #FFF);
    padding: 16px;
    }

    .ct_top { display: flex; justify-content: flex-start; align-items: flex-end; margin: -48px 0 32px; }
    .ct_top .ct_img { width: 100px; height: 100px; overflow: hidden; border-radius: 100%; margin-right: 6px; }
    .ct_top .ct_name h5 { 
        color: var(--Text-Grey-800, #1D2939);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        margin: 0;
    }

    .ct_top .ct_name span {
        color: var(--Text-Grey-500, #5D667B);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .content_testimonial_description {
        color: var(--Text-Grey-700, #344054);
        font-family: Inter;
        font-size: 16px;
        font-style: italic;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 50px;
    }

    .bottom_conntent .second { margin-top:72px; }

    .employee_stories { padding: 72px 0; background: var(--White, #FFF); }
    .employee_stories .Insightful_Box h4 { margin: 18px 0; height: auto; overflow: inherit; }
    .employee_stories .video_img_box:after { background-size: 44px; }
    .employee_stories .row > [class*="col-"] { margin-bottom: 24px; }

    .blog_block .storie_logo_img img { border-radius: 10px; }
    .bottom_conntent .col-md-4 img { border-radius: 10px; }
    .stories .col-md-4 .video_img_box img { border-radius: 10px; }
    /*stories*/

    .Atulyaksh_Section a.Read_PR_Btn {
        border-radius: 4px;
        border: 1px solid var(--Text-Grey-100, #F2F4F7);
        background: var(--White, #FFF);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 150px;
        margin-top: 16px;
        color: var(--Theme-Blue-500, #3A58EF);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .Atulyaksh_Section a.Read_PR_Btn:hover {
        background: var(--Theme-Blue-500, #3A58EF);
        color: #fff;
    }

    span.Read_PR_Hover_Arrow {
        display: none;
    }

    .Atulyaksh_Section a.Read_PR_Btn:hover span.Read_PR_Hover_Arrow {
        display: block;
    }

    .Atulyaksh_Section a.Read_PR_Btn:hover span.Read_PR_Arrow {
        display: none;
    }

    @media(min-width:1300px){
        .marquee .marquee__group:nth-child(1) > div:nth-child(2) img:nth-child(4) { min-height: 466px; }
        .marquee .marquee__group:nth-child(1) > div:nth-child(3) img { min-height: 745px; } 
        /* .marquee .marquee__group:nth-child(2) > div:nth-child(2) img { min-height: 406px; }  */
    }
    


    @media (max-width: 767.98px) { .joyful-img { height: 200px; } }
    .joyful-img img { width: 100%; height: 100%; object-fit: cover; }

    /* Utility */
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .line-clamp-6 { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }

    /* Placeholder images */
    .img-placeholder {
      background: linear-gradient(135deg, #e0e5ff 0%, #c7cffa 100%);
      display: flex; align-items: center; justify-content: center;
      color: #6b7acd; font-size: 12px; text-align: center; padding: 8px;
    }




    @media (max-width: 1600.51px) {
        .hero-text-section {
            margin-bottom: -16px;
        }

        .hero-heading {
            font-size: 36px;
            line-height: inherit;
        }

        .hero-gradient-text {
            font-size: 36px;
            line-height: inherit;
        }

        .category-card-title {
            font-size: 16px;
            line-height: inherit;
        }

        .category-card-desc {
            font-size: 14px;
            line-height: inherit;
        }


    }



    @media (max-width: 1366.51px) {
        .hero-text-section {
            margin-bottom: -16px;
        }

        .hero-heading {
            font-size: 28px;
            line-height: inherit;
        }

        .hero-gradient-text {
            font-size: 28px;
            line-height: inherit;
        }

        .category-card-title {
            font-size: 16px;
            line-height: inherit;
        }

        .category-card-desc {
            font-size: 14px;
            line-height: inherit;
        }

        .hero-subtext {
            font-size: 18px;
            line-height: inherit;
        }

        .marquee .marquee__group:nth-child(1) > div:nth-child(2) img:nth-child(4) {
            min-height: 412px;
        }

        .marquee .marquee__group:nth-child(1) > div:nth-child(3) img {
            min-height: 655px;
        }

    }


     @media (max-width: 767.51px) {
        .hero-text-section {
            margin-bottom: -16px;
        }

        .hero-heading {
            font-size: 30px;
            line-height: inherit;
        }

        .hero-gradient-text {
            font-size: 30px;
            line-height: inherit;
        }

        .category-card-title {
            font-size: 16px;
            line-height: inherit;
        }

        .category-card-desc {
            font-size: 14px;
            line-height: inherit;
        }

        .hero-subtext {
            font-size: 18px;
            line-height: inherit;
        }

        .marquee .marquee__group:nth-child(1) > div:nth-child(2) img:nth-child(4) {
            min-height: 412px;
        }

        .marquee .marquee__group:nth-child(1) > div:nth-child(3) img {
            min-height: 655px;
        }

        .hero-section img {
            margin-top: 20px;
            width: 100%;
            display: none;
        }

        .hero-text-section {
            position: relative;
        }

    }