/* ============================================================
   SAMAGRA WELLNESS — PART 1 CSS
   Unique prefix: swp-
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');


/* ============================================================
   ROOT
============================================================ */

:root {
    --swp-navy: #064678;
    --swp-dark-navy: #003d69;
    --swp-text: #303747;
    --swp-muted: #606776;
    --swp-light-blue: #f3f8fa;
    --swp-icon-bg: #eff7fa;
    --swp-border: #d6dde1;
    --swp-gold: #c59a5d;
    --swp-white: #ffffff;
}


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--swp-text);
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ============================================================
   HERO
============================================================ */

.swp-hero {
    width: 100%;
    min-height: 757px;
    background:
        linear-gradient(
            180deg,
            #f7fbfd 0%,
            #f3f8fa 88%,
            #ffffff 100%
        );
}

.swp-hero-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 39px 34px 91px;
}


/* ============================================================
   HEADER
============================================================ */

.swp-header {
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swp-logo {
    width: 142px;
    flex-shrink: 0;
}

.swp-logo img {
    width: 142px;
    height: auto;
}


.swp-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.swp-nav > a:not(.swp-header-button) {
    position: relative;

    color: #17233a;
    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.swp-nav > a:not(.swp-header-button)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--swp-navy);

    transition: width 0.25s ease;
}

.swp-nav > a:not(.swp-header-button):hover {
    color: var(--swp-navy);
}

.swp-nav > a:not(.swp-header-button):hover::after {
    width: 100%;
}


/* HEADER CTA */

.swp-header-button {
    min-height: 41px;
    padding: 0 17px;

    margin-left: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #084978;
    border-radius: 6px;

    background:
        linear-gradient(
            180deg,
            #0b507f,
            #003e6b
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 4px 10px rgba(0, 55, 95, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.swp-header-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 55, 95, 0.18);
}


/* MOBILE MENU */

.swp-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #ccd9df;
    border-radius: 7px;

    background: #ffffff;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;
}

.swp-menu-button span {
    width: 19px;
    height: 1.5px;

    display: block;

    background: var(--swp-navy);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.swp-hero-content {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 27px;
}


/* LEFT CONTENT */

.swp-hero-copy {
    padding:
        58px
        27px
        30px
        10px;

    position: relative;
    z-index: 2;
}

.swp-eyebrow {
    margin-bottom: 14px;

    color: var(--swp-navy);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 2.15px;
    text-transform: uppercase;
}

.swp-gold-line {
    width: 34px;
    height: 2px;

    margin-bottom: 17px;

    background: var(--swp-gold);
}

.swp-hero-copy h1 {
    max-width: 500px;

    margin-bottom: 22px;

    color: var(--swp-navy);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 56px;
    line-height: 0.97;
    font-weight: 600;

    letter-spacing: -1.6px;
}

.swp-hero-subtitle {
    max-width: 420px;

    margin-bottom: 25px;

    color: #555d6c;

    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
}


/* HERO POINTS */

.swp-hero-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    margin-bottom: 38px;

    color: #06477a;

    font-size: 13px;
    font-weight: 500;
}

.swp-hero-points span {
    white-space: nowrap;
}

.swp-hero-points i {
    width: 4px;
    height: 4px;

    margin:
        0
        13px;

    display: block;

    border-radius: 50%;

    background: #173f62;
}


/* HERO BUTTONS */

.swp-hero-buttons {
    display: flex;
    align-items: center;

    gap: 20px;
}

.swp-primary-button,
.swp-secondary-button {
    min-height: 48px;

    padding: 0 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.swp-primary-button {
    border: 1px solid #004578;

    background: #004578;

    color: #ffffff;

    box-shadow:
        0 4px 10px rgba(0, 69, 120, 0.1);
}

.swp-primary-button:hover {
    transform: translateY(-2px);

    background: #003b67;

    box-shadow:
        0 8px 18px rgba(0, 69, 120, 0.17);
}

.swp-secondary-button {
    border: 1px solid #075086;

    background: transparent;

    color: #074879;
}

.swp-secondary-button:hover {
    transform: translateY(-2px);

    background: #064879;

    color: #ffffff;
}


/* ============================================================
   HERO IMAGE
============================================================ */

.swp-hero-image {
    width: 100%;
    height: 529px;

    overflow: hidden;

    border-radius:
        15px
        0
        0
        15px;
}

.swp-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ============================================================
   VALUE STRIP
============================================================ */

.swp-value-strip {
    width: calc(100% - 108px);
    max-width: 912px;
    min-height: 108px;

    margin:
        -55px
        auto
        0;

    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;

    border: 1px solid #e0e5e8;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0 8px 28px rgba(29, 58, 80, 0.09);
}

.swp-value-item {
    min-height: 58px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    padding: 0 24px;
}

.swp-value-item:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 0;

    width: 1px;
    height: 58px;

    background: #e1e5e7;
}

.swp-value-icon {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f7fa;
}

.swp-value-icon svg {
    width: 36px;
    height: 36px;

    fill: none;
    stroke: var(--swp-navy);
    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp-value-text {
    color: #444c5b;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}


/* ============================================================
   PROGRAM SECTION
============================================================ */

.swp-programs {
    width: 100%;

    padding:
        40px
        34px
        34px;

    background: #ffffff;
}

.swp-section-heading {
    margin-bottom: 31px;

    text-align: center;
}

.swp-section-eyebrow {
    margin-bottom: 9px;

    color: var(--swp-navy);

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.75px;
    text-transform: uppercase;
}

.swp-center-line {
    margin:
        0
        auto
        10px;
}

.swp-section-heading h2 {
    margin-bottom: 11px;

    color: var(--swp-navy);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 49px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: -1.4px;
}

.swp-section-heading p {
    color: #626875;

    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   PROGRAM GRID
============================================================ */

.swp-program-grid {
    width: 100%;
    max-width: 912px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 19px;
}


/* ============================================================
   PROGRAM CARD
============================================================ */

.swp-program-card {
    min-height: 390px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding:
        18px
        25px
        18px;

    text-align: center;

    border: 1px solid #d5dade;
    border-radius: 11px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.swp-program-card:hover {
    transform: translateY(-4px);

    border-color: #9db9c9;

    box-shadow:
        0 10px 28px rgba(26, 66, 92, 0.09);
}

.swp-featured-card {
    border-color: #477c9d;

    background:
        linear-gradient(
            180deg,
            #f8fbfc 0%,
            #ffffff 100%
        );
}


/* FLAGSHIP */

.swp-featured-badge {
    min-width: 93px;
    height: 21px;

    margin:
        -2px
        auto
        6px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: #064979;

    color: #ffffff;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* PROGRAM ICON */

.swp-program-icon {
    width: 71px;
    height: 71px;

    margin:
        0
        auto
        10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f7fa;
}

.swp-program-icon svg {
    width: 43px;
    height: 43px;

    fill: none;
    stroke: var(--swp-navy);
    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* PROGRAM TITLE */

.swp-program-card h3 {
    min-height: 58px;
    max-width: 255px;

    margin-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--swp-navy);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;
    line-height: 0.95;
    font-weight: 600;

    letter-spacing: -0.5px;
}


/* PROGRAM SUBTITLE */

.swp-program-subtitle {
    max-width: 240px;
    min-height: 40px;

    margin-bottom: 13px;

    color: #555b69;

    font-size: 12px;
    line-height: 1.4;
}


/* HOURS */

.swp-hours {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 14px;

    color: #00477d;

    font-size: 13px;
    font-weight: 600;
}

.swp-hours svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #087bc7;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* DESCRIPTION */

.swp-program-description {
    max-width: 238px;
    min-height: 45px;

    margin-bottom: auto;

    color: #555c68;

    font-size: 11px;
    line-height: 1.55;
}


/* COURSE BUTTON */

.swp-course-button {
    width: 196px;
    height: 41px;

    margin-top: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border: 1px solid #004578;
    border-radius: 5px;

    background: #004578;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.swp-course-button:hover {
    transform: translateY(-2px);

    background: #003c68;
}

.swp-course-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   ADVISOR
============================================================ */

.swp-advisor {
    width: 100%;
    max-width: 520px;

    margin:
        29px
        auto
        0;

    text-align: center;
}

.swp-advisor-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 8px;
}

.swp-advisor-divider span {
    width: 172px;
    height: 1px;

    background: #dfcfb6;
}

.swp-advisor-divider svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: var(--swp-gold);
    stroke-width: 1.1;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp-advisor > p {
    margin-bottom: 10px;

    color: #4c5361;

    font-size: 14px;
}

.swp-advisor-button {
    width: 346px;
    max-width: 100%;
    height: 41px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    border: 1px solid #004578;
    border-radius: 5px;

    background: #004578;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.swp-advisor-button:hover {
    transform: translateY(-2px);

    background: #003c68;
}

.swp-advisor-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp-hero-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

    .swp-nav {
        gap: 22px;
    }

    .swp-header-button {
        margin-left: 5px;
        padding: 0 13px;
    }

    .swp-hero-copy {
        padding-right: 18px;
    }

    .swp-hero-copy h1 {
        font-size: 45px;
    }

    .swp-hero-subtitle {
        font-size: 17px;
    }

    .swp-value-strip {
        width: calc(100% - 70px);
    }

    .swp-programs {
        padding-left: 28px;
        padding-right: 28px;
    }

    .swp-section-heading h2 {
        font-size: 43px;
    }

    .swp-program-grid {
        gap: 12px;
    }

    .swp-program-card {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp-hero {
        min-height: auto;
    }

    .swp-hero-inner {
        padding:
            22px
            18px
            70px;
    }


    /* HEADER */

    .swp-header {
        height: 55px;
    }

    .swp-logo,
    .swp-logo img {
        width: 118px;
    }

    .swp-menu-button {
        display: flex;
    }

    .swp-nav {
        display: none;

        position: absolute;

        top: 69px;
        left: 18px;
        right: 18px;

        margin: 0;
        padding: 18px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        border: 1px solid #dce4e8;
        border-radius: 9px;

        background: #ffffff;

        box-shadow:
            0 12px 30px rgba(20, 55, 80, 0.12);

        z-index: 50;
    }

    .swp-nav.swp-nav-open {
        display: flex;
    }

    .swp-nav > a:not(.swp-header-button) {
        padding: 13px 4px;

        border-bottom: 1px solid #edf0f2;
    }

    .swp-header-button {
        width: 100%;

        margin:
            12px
            0
            0;
    }


    /* HERO */

    .swp-hero-content {
        display: flex;
        flex-direction: column;

        margin-top: 20px;
    }

    .swp-hero-copy {
        width: 100%;

        order: 1;

        padding:
            32px
            5px
            28px;
    }

    .swp-eyebrow {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .swp-hero-copy h1 {
        font-size: clamp(42px, 12vw, 54px);

        line-height: 0.97;

        letter-spacing: -1px;
    }

    .swp-hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .swp-hero-points {
        font-size: 11px;
        line-height: 1.7;

        margin-bottom: 28px;
    }

    .swp-hero-points i {
        margin-left: 7px;
        margin-right: 7px;
    }

    .swp-hero-buttons {
        flex-direction: column;
        align-items: stretch;

        gap: 10px;
    }

    .swp-primary-button,
    .swp-secondary-button {
        width: 100%;
    }


    /* IMAGE */

    .swp-hero-image {
        order: 2;

        height: 390px;

        border-radius: 13px;
    }


    /* VALUE STRIP */

    .swp-value-strip {
        width: calc(100% - 28px);

        margin-top: -35px;

        grid-template-columns: 1fr;

        padding: 8px 0;
    }

    .swp-value-item {
        min-height: 78px;

        justify-content: flex-start;

        padding:
            7px
            25px;
    }

    .swp-value-item:not(:last-child)::after {
        width: calc(100% - 50px);
        height: 1px;

        top: auto;
        right: 25px;
        bottom: 0;
    }

    .swp-value-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .swp-value-icon svg {
        width: 30px;
        height: 30px;
    }


    /* PROGRAM SECTION */

    .swp-programs {
        padding:
            50px
            18px
            35px;
    }

    .swp-section-eyebrow {
        font-size: 10px;
        letter-spacing: 1.35px;
    }

    .swp-section-heading h2 {
        font-size: 42px;
        line-height: 0.98;
    }

    .swp-section-heading p {
        font-size: 12px;
    }


    /* PROGRAM CARDS */

    .swp-program-grid {
        max-width: 450px;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .swp-program-card {
        min-height: 390px;

        padding:
            21px
            25px
            20px;
    }

    .swp-program-card h3 {
        font-size: 29px;
    }


    /* ADVISOR */

    .swp-advisor {
        margin-top: 28px;
    }

    .swp-advisor-divider span {
        width: 70px;
    }

    .swp-advisor > p {
        font-size: 13px;
    }

    .swp-advisor-button {
        width: 100%;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp-hero-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .swp-hero-copy h1 {
        font-size: 40px;
    }

    .swp-hero-points {
        display: block;
    }

    .swp-hero-points span {
        display: inline;
    }

    .swp-hero-points i {
        display: inline-block;
        margin:
            0
            5px;
    }

    .swp-hero-image {
        height: 350px;
    }

    .swp-section-heading h2 {
        font-size: 38px;
    }
}
/* ============================================================
   SAMAGRA WELLNESS — PART 2 CSS
   Unique prefix: swp2-
============================================================ */


/* ============================================================
   CERTIFICATION SECTION
============================================================ */

.swp2-certification-section {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #f5fafc 0%,
            #f1f7f9 100%
        );
}

.swp2-certification-inner {
    width: 100%;
    max-width: 1024px;

    min-height: 665px;

    margin: 0 auto;

    padding:
        66px
        64px
        50px;

    display: grid;
    grid-template-columns: 42% 58%;

    align-items: center;
}


/* ============================================================
   LEFT COPY
============================================================ */

.swp2-certification-copy {
    padding-right: 24px;
}

.swp2-eyebrow {
    margin-bottom: 14px;

    color: #064678;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.swp2-gold-line {
    width: 35px;
    height: 2px;

    margin-bottom: 17px;

    background: #c59a5d;
}

.swp2-certification-copy h2 {
    margin-bottom: 18px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 49px;
    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -1.3px;
}

.swp2-intro {
    max-width: 335px;

    margin-bottom: 22px;

    color: #505867;

    font-size: 15px;
    line-height: 1.55;
}


/* ============================================================
   FEATURES
============================================================ */

.swp2-feature {
    width: 100%;
    max-width: 300px;

    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 17px;

    border-bottom: 1px solid #d9dfe1;
}

.swp2-feature:last-of-type {
    border-bottom: 0;
}

.swp2-feature-icon {
    width: 73px;
    height: 73px;

    flex: 0 0 73px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f3f8;
}

.swp2-feature-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp2-feature-content h3 {
    margin-bottom: 4px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;
    line-height: 1;

    font-weight: 600;
}

.swp2-feature-content p {
    color: #555c6a;

    font-size: 12px;
    line-height: 1.45;
}


/* ============================================================
   LEARN LINK
============================================================ */

.swp2-learn-link {
    width: fit-content;

    margin-top: 18px;

    padding-bottom: 6px;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid #064678;

    color: #064678;

    font-size: 14px;
    font-weight: 500;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.swp2-learn-link:hover {
    gap: 19px;
}

.swp2-learn-link svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   CERTIFICATION IMAGE
============================================================ */

.swp2-certification-image {
    width: 100%;
    height: 546px;

    overflow: hidden;

    border-radius: 14px;
}

.swp2-certification-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* ============================================================
   APPROACH SECTION
============================================================ */

.swp2-approach-section {
    width: 100%;

    background: #ffffff;
}

.swp2-approach-inner {
    width: 100%;
    max-width: 1024px;

    margin: 0 auto;

    padding:
        36px
        64px
        33px;
}


/* ============================================================
   APPROACH HEADING
============================================================ */

.swp2-approach-heading {
    text-align: center;

    margin-bottom: 27px;
}

.swp2-approach-eyebrow {
    margin-bottom: 9px;

    color: #064678;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.9px;

    text-transform: uppercase;
}

.swp2-approach-gold-line {
    width: 31px;
    height: 2px;

    margin:
        0
        auto
        10px;

    background: #c59a5d;
}

.swp2-approach-heading h2 {
    margin-bottom: 10px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 43px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: -1.1px;
}

.swp2-approach-heading p {
    color: #626875;

    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   JOURNEY CARDS
============================================================ */

.swp2-journey-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}

.swp2-journey-card {
    min-height: 244px;

    position: relative;

    padding:
        18px
        24px
        24px;

    text-align: center;

    border: 1px solid #d9dfe3;

    border-radius: 12px;

    background: #ffffff;
}

.swp2-journey-featured {
    border-color: #c8dce8;

    background:
        linear-gradient(
            145deg,
            #f1f8fb 0%,
            #ffffff 100%
        );
}


/* NUMBER */

.swp2-number {
    position: absolute;

    top: 18px;
    left: 19px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #064678;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 16px;
    font-weight: 600;
}


/* CARD ICON */

.swp2-journey-icon {
    width: 71px;
    height: 71px;

    margin:
        0
        auto
        13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef6fa;
}

.swp2-journey-icon svg {
    width: 43px;
    height: 43px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CARD TITLE */

.swp2-journey-card h3 {
    margin-bottom: 10px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 22px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: -0.3px;
}


/* CARD DESCRIPTION */

.swp2-journey-card p {
    max-width: 235px;

    margin: 0 auto;

    color: #555c69;

    font-size: 12px;
    line-height: 1.55;
}


/* ============================================================
   CONNECTOR
============================================================ */

.swp2-journey-connector {
    width: calc(100% - 142px);

    height: 53px;

    margin:
        0
        auto;

    position: relative;
}

.swp2-connector-line {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 1px;

    background: #3975a1;
}

.swp2-connector-line::before,
.swp2-connector-line::after {
    content: "";

    position: absolute;

    top: -5px;

    width: 10px;
    height: 10px;

    border: 1.5px solid #3975a1;

    border-radius: 50%;

    background: #ffffff;
}

.swp2-connector-line::before {
    left: 0;
}

.swp2-connector-line::after {
    right: 0;
}

.swp2-connector-center {
    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 25px;

    transform: translateX(-50%);

    background: #3975a1;
}

.swp2-journey-connector svg {
    position: absolute;

    left: 50%;
    top: 21px;

    width: 20px;
    height: 20px;

    transform: translateX(-50%);

    fill: none;

    stroke: #064678;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   YOGAPRENEUR RESULT
============================================================ */

.swp2-yogapreneur {
    width: 310px;
    height: 64px;

    margin:
        0
        auto
        20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #b9d2e1;

    border-radius: 9px;

    background:
        linear-gradient(
            110deg,
            #f0f8fb,
            #e8f3f8
        );
}

.swp2-yogapreneur-logo {
    width: 58px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.swp2-yogapreneur-logo svg {
    width: 53px;
    height: 47px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp2-yogapreneur-logo svg circle {
    fill: #064678;
    stroke: none;
}

.swp2-yogapreneur-text {
    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 26px;
    line-height: 1;

    font-weight: 600;
}


/* ============================================================
   CURRICULUM BUTTON
============================================================ */

.swp2-curriculum-button {
    width: 314px;
    height: 44px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border: 1px solid #064678;

    border-radius: 5px;

    background: #ffffff;

    color: #064678;

    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.swp2-curriculum-button:hover {
    background: #064678;

    color: #ffffff;

    transform: translateY(-2px);
}

.swp2-curriculum-button svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp2-certification-inner {
        padding-left: 35px;
        padding-right: 35px;

        grid-template-columns: 43% 57%;
    }

    .swp2-certification-copy {
        padding-right: 15px;
    }

    .swp2-certification-copy h2 {
        font-size: 43px;
    }

    .swp2-certification-image {
        height: 500px;
    }

    .swp2-approach-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp2-journey-grid {
        gap: 14px;
    }

    .swp2-journey-card {
        padding-left: 15px;
        padding-right: 15px;
    }

    .swp2-approach-heading h2 {
        font-size: 39px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp2-certification-inner {
        min-height: auto;

        padding:
            55px
            18px
            45px;

        display: flex;
        flex-direction: column;
    }

    .swp2-certification-copy {
        width: 100%;

        padding: 0;

        order: 1;
    }

    .swp2-certification-copy h2 {
        font-size: 43px;
        line-height: 0.98;
    }

    .swp2-intro {
        font-size: 14px;
    }

    .swp2-feature {
        max-width: 100%;

        min-height: 82px;
    }

    .swp2-certification-image {
        width: 100%;
        height: 380px;

        margin-top: 30px;

        order: 2;

        border-radius: 12px;
    }


    /* APPROACH */

    .swp2-approach-inner {
        padding:
            50px
            18px
            35px;
    }

    .swp2-approach-heading {
        margin-bottom: 28px;
    }

    .swp2-approach-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .swp2-approach-heading h2 {
        font-size: 39px;
        line-height: 0.98;
    }

    .swp2-approach-heading p {
        font-size: 12px;
    }


    /* CARDS */

    .swp2-journey-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .swp2-journey-card {
        min-height: 250px;

        padding:
            20px
            25px
            26px;
    }

    .swp2-number {
        top: 18px;
        left: 18px;
    }


    /* CONNECTOR */

    .swp2-journey-connector {
        width: 1px;
        height: 55px;

        margin: 0 auto;

        background: #3975a1;
    }

    .swp2-connector-line {
        display: none;
    }

    .swp2-connector-center {
        top: 0;
        left: 0;

        width: 1px;
        height: 34px;

        transform: none;
    }

    .swp2-journey-connector svg {
        top: 29px;
        left: -10px;

        transform: none;
    }


    /* YOGAPRENEUR */

    .swp2-yogapreneur {
        width: 100%;
        max-width: 310px;
    }

    .swp2-curriculum-button {
        width: 100%;
        max-width: 314px;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp2-certification-copy h2 {
        font-size: 39px;
    }

    .swp2-certification-image {
        height: 340px;
    }

    .swp2-feature-icon {
        width: 65px;
        height: 65px;

        flex-basis: 65px;
    }

    .swp2-feature-content h3 {
        font-size: 20px;
    }

    .swp2-approach-heading h2 {
        font-size: 35px;
    }
}

/* ============================================================
   SAMAGRA WELLNESS — PART 3 CSS
   ONLY THIS SECTION
   No Header CSS
============================================================ */


/* ============================================================
   PROFESSIONAL OUTCOME
============================================================ */

.swp3-outcome-section {
    width: 100%;
    background: linear-gradient(180deg, #f5fafc 0%, #f0f7f9 100%);
}

.swp3-outcome-inner {
    width: 100%;
    max-width: 1024px;
    min-height: 636px;
    margin: 0 auto;
    padding: 28px 64px 42px;

    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
}


/* LEFT */

.swp3-outcome-copy {
    padding-right: 24px;
}

.swp3-eyebrow {
    margin-bottom: 13px;
    color: #064678;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.swp3-gold-line {
    width: 32px;
    height: 2px;
    margin-bottom: 13px;
    background: #c69b5c;
}

.swp3-outcome-copy h2 {
    margin-bottom: 15px;
    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 48px;
    line-height: .99;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.swp3-outcome-intro {
    max-width: 365px;
    margin-bottom: 20px;

    color: #515968;
    font-size: 15px;
    line-height: 1.52;
}


/* OUTCOME ROWS */

.swp3-outcome-item {
    width: 100%;
    max-width: 345px;
    min-height: 64px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-bottom: 1px solid #dbe1e3;
}

.swp3-outcome-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #e7f2f7;
}

.swp3-outcome-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp3-item-number {
    width: 25px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;
    font-weight: 600;
}

.swp3-item-title {
    color: #333b4a;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2px;
}


/* MINI DELIVERABLES */

.swp3-mini-deliverables {
    width: 100%;
    max-width: 345px;
    min-height: 62px;

    display: flex;
    align-items: center;
    margin-top: 5px;
}

.swp3-mini-item {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #4d5665;
    font-size: 11px;
    line-height: 1.25;
}

.swp3-mini-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #e8f3f8;
}

.swp3-mini-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp3-rupee {
    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;
    font-weight: 600;
}

.swp3-mini-divider {
    width: 1px;
    height: 34px;
    margin: 0 11px;
    background: #dedfe0;
}


/* LINK */

.swp3-deliverables-link {
    width: fit-content;

    margin-top: 8px;
    padding-bottom: 5px;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    border-bottom: 1px solid #064678;

    color: #064678;
    font-size: 14px;
    font-weight: 500;

    transition: gap .25s ease;
}

.swp3-deliverables-link:hover {
    gap: 20px;
}

.swp3-deliverables-link svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* IMAGE */

.swp3-outcome-image {
    width: 100%;
    height: 560px;

    overflow: hidden;
    border-radius: 14px;
}

.swp3-outcome-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ============================================================
   PRACTICAL LEARNING
============================================================ */

.swp3-learning-section {
    width: 100%;
    background: #004979;
    color: #ffffff;
}

.swp3-learning-inner {
    width: 100%;
    max-width: 1024px;

    margin: 0 auto;
    padding: 35px 70px 38px;
}


/* HEADING */

.swp3-learning-heading {
    margin-bottom: 17px;
}

.swp3-learning-eyebrow {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.swp3-learning-gold-line {
    width: 31px;
    height: 2px;
    margin-bottom: 10px;
    background: #d3a463;
}

.swp3-learning-heading h2 {
    margin-bottom: 9px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 47px;
    line-height: .98;
    font-weight: 600;
    letter-spacing: -1px;
}

.swp3-learning-heading p {
    color: rgba(255,255,255,.94);
    font-size: 13px;
    line-height: 1.45;
}


/* THREE CARDS */

.swp3-learning-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        43px
        1fr
        43px
        1fr;

    align-items: center;
}

.swp3-learning-card {
    min-height: 153px;

    padding: 15px 20px;

    display: flex;
    align-items: center;
    gap: 17px;

    border-radius: 9px;
    background: #ffffff;
    color: #064678;
}

.swp3-learning-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef6fa;
}

.swp3-learning-icon svg {
    width: 43px;
    height: 43px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp3-learning-card-content h3 {
    margin-bottom: 8px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;
    line-height: 1;
    font-weight: 600;
}

.swp3-learning-card-content p {
    max-width: 190px;

    color: #4f5663;

    font-size: 11px;
    line-height: 1.55;
}


/* CONNECTORS */

.swp3-step-connector {
    position: relative;
    height: 2px;

    background:
        repeating-linear-gradient(
            to right,
            #d5a15f 0,
            #d5a15f 5px,
            transparent 5px,
            transparent 8px
        );
}

.swp3-step-connector span {
    width: 11px;
    height: 11px;

    position: absolute;
    top: 50%;
    right: -1px;

    transform: translateY(-50%);

    border-radius: 50%;
    background: #d5a15f;
}


/* ============================================================
   PRACTICAL EXPERIENCE
============================================================ */

.swp3-experience-bar {
    width: 100%;
    min-height: 93px;

    margin-top: 21px;
    padding: 0 22px;

    display: flex;
    align-items: center;

    border-radius: 9px;
    background: #ffffff;
    color: #064678;
}

.swp3-experience-title {
    width: 245px;
    flex-shrink: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;
    line-height: 1;
    font-weight: 600;
}

.swp3-experience-item {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #435066;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.swp3-experience-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef6fa;
}

.swp3-experience-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp3-experience-divider {
    width: 1px;
    height: 42px;

    margin: 0 13px;

    background: #e0d8cf;
}


/* ============================================================
   BOTTOM CTA
============================================================ */

.swp3-learning-footer {
    width: 100%;

    margin-top: 31px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: center;
}

.swp3-curriculum-button {
    width: 345px;
    height: 51px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border-radius: 6px;

    background: #ffffff;
    color: #064678;

    font-size: 14px;
    font-weight: 500;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.swp3-curriculum-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(0,0,0,.12);
}

.swp3-curriculum-button svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* INTERNSHIP */

.swp3-internship {
    min-height: 66px;

    padding: 9px 16px;

    display: flex;
    align-items: center;
    gap: 13px;

    border: 1px solid #dca45e;
    border-radius: 7px;

    background: rgba(0,64,108,.35);
}

.swp3-internship-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.swp3-internship-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp3-internship-content strong {
    display: block;
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.2px;
}

.swp3-internship-content p {
    color: rgba(255,255,255,.88);

    font-size: 10px;
    line-height: 1.4;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp3-outcome-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp3-outcome-copy h2 {
        font-size: 42px;
    }

    .swp3-outcome-image {
        height: 500px;
    }

    .swp3-learning-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp3-learning-card {
        flex-direction: column;
        text-align: center;
    }

    .swp3-learning-card-content p {
        margin: 0 auto;
    }

    .swp3-experience-title {
        width: 190px;
        font-size: 23px;
    }

    .swp3-experience-item {
        font-size: 12px;
    }

    .swp3-experience-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp3-outcome-inner {
        min-height: auto;

        padding:
            48px
            18px
            45px;

        display: flex;
        flex-direction: column;
    }

    .swp3-outcome-copy {
        padding: 0;
    }

    .swp3-outcome-copy h2 {
        font-size: 43px;
    }

    .swp3-outcome-intro {
        font-size: 14px;
    }

    .swp3-outcome-item {
        max-width: 100%;
    }

    .swp3-mini-deliverables {
        max-width: 100%;
    }

    .swp3-outcome-image {
        height: 380px;
        margin-top: 30px;
        border-radius: 12px;
    }


    /* LEARNING */

    .swp3-learning-inner {
        padding:
            48px
            18px
            35px;
    }

    .swp3-learning-heading h2 {
        font-size: 43px;
    }

    .swp3-learning-heading p {
        font-size: 12px;
    }

    .swp3-desktop-break {
        display: none;
    }


    /* CARDS */

    .swp3-learning-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .swp3-learning-card {
        width: 100%;
        min-height: 145px;

        flex-direction: row;

        padding:
            18px
            20px;

        text-align: left;
    }

    .swp3-learning-card-content p {
        margin: 0;
    }

    .swp3-step-connector {
        width: 2px;
        height: 28px;

        margin: 0 auto;

        background: #d5a15f;
    }

    .swp3-step-connector span {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -1px;

        transform: translateX(-50%);
    }


    /* EXPERIENCE */

    .swp3-experience-bar {
        padding: 15px 20px;

        flex-direction: column;
        align-items: stretch;

        gap: 13px;
    }

    .swp3-experience-title {
        width: 100%;

        padding-bottom: 8px;

        border-bottom: 1px solid #e1e1e1;

        font-size: 27px;
    }

    .swp3-experience-item {
        flex: none;

        min-height: 52px;

        font-size: 14px;
    }

    .swp3-experience-divider {
        width: 100%;
        height: 1px;

        margin: 0;

        background: #e2e2e2;
    }


    /* FOOTER */

    .swp3-learning-footer {
        display: flex;
        flex-direction: column;

        gap: 15px;

        margin-top: 25px;
    }

    .swp3-curriculum-button {
        width: 100%;
        margin: 0;
    }

    .swp3-internship {
        width: 100%;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp3-outcome-copy h2 {
        font-size: 39px;
    }

    .swp3-mini-item {
        gap: 5px;
        font-size: 9px;
    }

    .swp3-mini-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .swp3-learning-heading h2 {
        font-size: 39px;
    }

    .swp3-learning-card-content h3 {
        font-size: 26px;
    }

    .swp3-learning-card-content p {
        font-size: 10px;
    }
}

/* ============================================================
   SAMAGRA WELLNESS — PART 4 CSS
   ONLY NEW SECTIONS
============================================================ */


/* ============================================================
   CAREER OPPORTUNITIES
============================================================ */

.swp4-career-section {
    width: 100%;
    background: #ffffff;
}

.swp4-career-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;

    padding: 40px 56px 35px;
}


/* HEADING */

.swp4-career-heading {
    text-align: left;
}

.swp4-eyebrow {
    margin-bottom: 10px;

    color: #064678;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.swp4-gold-line {
    width: 34px;
    height: 2px;

    margin-bottom: 10px;

    background: #c79a5d;
}

.swp4-career-heading h2,
.swp4-program-heading h2 {
    margin: 0 0 8px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 48px;
    line-height: .98;

    font-weight: 600;

    letter-spacing: -1.2px;
}

.swp4-career-heading p,
.swp4-program-heading p {
    margin: 0;

    color: #555d6b;

    font-size: 14px;
    line-height: 1.5;
}


/* HERO IMAGE */

.swp4-career-image {
    width: 100%;
    height: 288px;

    margin-top: 20px;

    overflow: hidden;

    border-radius: 12px;
}

.swp4-career-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* CAREER CARDS */

.swp4-career-grid {
    width: 100%;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.swp4-career-card {
    min-height: 92px;

    padding: 13px;

    display: flex;
    align-items: center;

    gap: 13px;

    border: 1px solid #dce2e5;
    border-radius: 9px;

    background: #ffffff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.swp4-career-card:hover {
    transform: translateY(-3px);

    border-color: #a9c6d7;

    box-shadow:
        0 8px 22px rgba(20, 70, 100, .07);
}

.swp4-career-icon {
    width: 57px;
    height: 57px;

    flex: 0 0 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swp4-career-icon svg {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp4-career-card span {
    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;
    line-height: 1.05;

    font-weight: 600;
}


/* OWN PRACTICE */

.swp4-own-practice {
    width: 57%;

    min-height: 62px;

    margin: 12px auto 0;

    padding: 7px 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    border: 1px solid #dce2e5;
    border-radius: 9px;

    background: #ffffff;
}

.swp4-practice-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swp4-practice-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp4-own-practice span {
    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 19px;
    font-weight: 600;
}


/* CAREER CTA */

.swp4-career-cta-area {
    text-align: center;

    margin-top: 17px;
}

.swp4-cta-decoration {
    width: 45%;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;

    gap: 13px;
}

.swp4-cta-decoration > span {
    flex: 1;

    height: 1px;

    background: #e0c9aa;
}

.swp4-lotus-mini {
    width: 27px;
    height: 27px;
}

.swp4-lotus-mini svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: #c79a5d;

    stroke-width: 1.1;
}

.swp4-career-cta-area p {
    margin: 0 0 11px;

    color: #4d5665;

    font-size: 14px;
}

.swp4-primary-button {
    min-width: 300px;
    height: 42px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 5px;

    background: #064678;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    transition:
        transform .25s ease,
        background .25s ease;
}

.swp4-primary-button:hover {
    transform: translateY(-2px);
    background: #003d69;
}

.swp4-primary-button svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   PROGRAM SECTION
============================================================ */

.swp4-program-section {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #f2f9fc 0%,
            #eef7fa 100%
        );
}

.swp4-program-inner {
    width: 100%;
    max-width: 1024px;

    margin: 0 auto;

    padding: 36px 54px 32px;
}

.swp4-program-heading {
    margin-bottom: 17px;
}


/* PROGRAM CARDS */

.swp4-program-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.swp4-program-card {
    min-height: 315px;

    padding: 17px 20px 18px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border: 1px solid #d6dee2;
    border-radius: 10px;

    background: #ffffff;
}

.swp4-program-featured {
    border-color: #0b5790;

    background:
        linear-gradient(
            150deg,
            #f0f8fb 0%,
            #ffffff 100%
        );
}


/* FLAGSHIP */

.swp4-flagship {
    position: absolute;

    top: 14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 14px;

    border-radius: 4px;

    background: #064678;

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* PROGRAM ICON */

.swp4-program-icon {
    width: 68px;
    height: 68px;

    margin-bottom: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swp4-program-featured .swp4-program-icon {
    margin-top: 19px;
}

.swp4-program-icon svg {
    width: 43px;
    height: 43px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TITLE */

.swp4-program-card h3 {
    min-height: 47px;

    margin: 0 0 6px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;
    line-height: .98;

    font-weight: 600;
}

.swp4-program-gold-line {
    width: 25px;
    height: 2px;

    margin-bottom: 7px;

    background: #c79a5d;
}

.swp4-hours {
    margin-bottom: 10px;

    color: #064678;

    font-size: 13px;
}

.swp4-program-card > p {
    max-width: 250px;

    min-height: 62px;

    margin: 0 0 13px;

    color: #505866;

    font-size: 11px;
    line-height: 1.5;
}


/* BUTTONS */

.swp4-outline-button,
.swp4-filled-button {
    width: 100%;
    max-width: 216px;

    height: 38px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 4px;

    font-size: 13px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.swp4-outline-button {
    border: 1px solid #064678;

    background: #ffffff;

    color: #064678;
}

.swp4-outline-button:hover {
    background: #064678;
    color: #ffffff;

    transform: translateY(-2px);
}

.swp4-filled-button {
    border: 1px solid #064678;

    background: #064678;

    color: #ffffff;
}

.swp4-filled-button:hover {
    background: #003d69;

    transform: translateY(-2px);
}

.swp4-outline-button svg,
.swp4-filled-button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   STILL UNSURE
============================================================ */

.swp4-unsure {
    position: relative;

    padding-top: 14px;

    text-align: center;
}

.swp4-unsure h3 {
    margin: 0 0 3px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 24px;
    font-weight: 600;
}

.swp4-unsure > p {
    margin: 0 0 12px;

    color: #555d6b;

    font-size: 12px;
}

.swp4-unsure-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.swp4-unsure-actions .swp4-primary-button {
    min-width: 226px;
}

.swp4-whatsapp-button {
    min-width: 210px;
    height: 42px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1px solid #064678;
    border-radius: 5px;

    background: #ffffff;

    color: #064678;

    font-size: 13px;

    transition:
        background .25s ease,
        color .25s ease;
}

.swp4-whatsapp-button:hover {
    background: #064678;
    color: #ffffff;
}

.swp4-whatsapp-button > svg:first-child {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp4-whatsapp-button .swp4-arrow {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* BOTTOM DECORATION */

.swp4-bottom-decoration {
    width: 100%;
    height: 28px;

    position: relative;

    margin-top: 2px;

    display: flex;
    justify-content: space-between;
}

.swp4-decoration-left,
.swp4-decoration-right {
    width: 35px;
    height: 35px;

    position: absolute;
    bottom: -3px;
}

.swp4-decoration-left {
    left: 2%;
}

.swp4-decoration-right {
    right: 2%;
}

.swp4-decoration-left svg,
.swp4-decoration-right svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: #c8a675;

    stroke-width: 1;
}

.swp4-dotted-curve {
    position: absolute;

    width: 115px;
    height: 27px;

    bottom: 0;

    border-top: 1px dashed #b9cbd4;
}

.swp4-dotted-left {
    left: 5%;
    border-radius: 100% 0 0 0;
    transform: rotate(8deg);
}

.swp4-dotted-right {
    right: 5%;
    border-radius: 0 100% 0 0;
    transform: rotate(-8deg);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp4-career-inner,
    .swp4-program-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp4-career-heading h2,
    .swp4-program-heading h2 {
        font-size: 42px;
    }

    .swp4-career-grid {
        gap: 9px;
    }

    .swp4-career-card {
        padding: 10px;
        gap: 8px;
    }

    .swp4-career-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

    .swp4-career-card span {
        font-size: 16px;
    }

    .swp4-program-grid {
        gap: 12px;
    }

    .swp4-program-card {
        padding-left: 13px;
        padding-right: 13px;
    }

    .swp4-program-card h3 {
        font-size: 21px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp4-career-inner {
        padding:
            48px
            18px
            40px;
    }

    .swp4-career-heading h2,
    .swp4-program-heading h2 {
        font-size: 40px;
        line-height: .98;
    }

    .swp4-career-heading p,
    .swp4-program-heading p {
        font-size: 13px;
    }

    .swp4-career-image {
        height: 300px;
        margin-top: 20px;
    }


    /* CAREER GRID */

    .swp4-career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .swp4-career-card {
        min-height: 82px;
        padding: 10px;
    }

    .swp4-career-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .swp4-career-icon svg {
        width: 29px;
        height: 29px;
    }

    .swp4-career-card span {
        font-size: 16px;
    }

    .swp4-own-practice {
        width: 100%;
        margin-top: 10px;
    }

    .swp4-career-cta-area {
        margin-top: 18px;
    }

    .swp4-cta-decoration {
        width: 80%;
    }

    .swp4-primary-button {
        width: 100%;
        min-width: 0;
    }


    /* PROGRAMS */

    .swp4-program-inner {
        padding:
            45px
            18px
            35px;
    }

    .swp4-program-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .swp4-program-card {
        min-height: 330px;
        padding: 22px 22px 20px;
    }

    .swp4-program-card h3 {
        font-size: 25px;
    }

    .swp4-program-card > p {
        max-width: 290px;
        font-size: 12px;
    }

    .swp4-program-icon {
        width: 72px;
        height: 72px;
    }

    .swp4-program-featured .swp4-program-icon {
        margin-top: 18px;
    }

    .swp4-outline-button,
    .swp4-filled-button {
        max-width: 260px;
    }


    /* UNSURE */

    .swp4-unsure {
        padding-top: 20px;
    }

    .swp4-unsure h3 {
        font-size: 27px;
    }

    .swp4-unsure > p {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }

    .swp4-unsure-actions {
        flex-direction: column;
        gap: 10px;
    }

    .swp4-unsure-actions .swp4-primary-button,
    .swp4-whatsapp-button {
        width: 100%;
        max-width: 310px;
    }

    .swp4-bottom-decoration {
        display: none;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp4-career-heading h2,
    .swp4-program-heading h2 {
        font-size: 36px;
    }

    .swp4-career-grid {
        gap: 8px;
    }

    .swp4-career-card {
        min-height: 78px;
        gap: 6px;
    }

    .swp4-career-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .swp4-career-card span {
        font-size: 14px;
    }

    .swp4-own-practice span {
        font-size: 17px;
    }
}

/* ============================================================
   SAMAGRA WELLNESS — PART 5 CSS
   Program Fees + FAQ + Advisor CTA
============================================================ */


/* ============================================================
   PROGRAM FEES
============================================================ */

.swp5-fees-section {
    width: 100%;
    background: #ffffff;
}

.swp5-fees-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 38px 56px 18px;
}

.swp5-section-heading {
    margin-bottom: 20px;
}

.swp5-eyebrow {
    margin-bottom: 10px;
    color: #064678;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.swp5-gold-line {
    width: 34px;
    height: 2px;
    margin-bottom: 10px;
    background: #c79a5d;
}

.swp5-section-heading h2 {
    margin: 0 0 9px;
    color: #064678;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 45px;
    line-height: .98;
    font-weight: 600;
    letter-spacing: -1.1px;
}

.swp5-section-heading p {
    margin: 0;
    color: #555d6b;
    font-size: 14px;
    line-height: 1.5;
}


/* FEE CARDS */

.swp5-fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.swp5-fee-card {
    min-height: 367px;
    padding: 17px 23px 16px;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border: 1px solid #dce1e4;
    border-radius: 10px;
    background: #ffffff;
}

.swp5-fee-featured {
    border-color: #0b5790;
    background: linear-gradient(
        145deg,
        #f1f9fc 0%,
        #ffffff 100%
    );
}

.swp5-flagship {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);

    padding: 5px 14px;
    border-radius: 4px;
    background: #064678;

    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.swp5-fee-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6fa;
}

.swp5-fee-featured .swp5-fee-icon {
    margin-top: 25px;
}

.swp5-fee-icon svg {
    width: 44px;
    height: 44px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp5-fee-card h3 {
    min-height: 49px;
    margin: 0 0 13px;

    color: #064678;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    line-height: .98;
    font-weight: 600;
}

.swp5-hours {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #064678;
    font-size: 12px;
    font-weight: 600;
}

.swp5-clock {
    font-size: 20px;
    line-height: 1;
}

.swp5-fee-rule {
    width: 100%;
    height: 1px;
    margin: 14px 0 13px;
    background: #e4dcd2;
}

.swp5-regular-fee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #60646b;
    font-size: 12px;
}

.swp5-regular-fee del {
    color: #777777;
}

.swp5-launch-label {
    margin-top: 12px;

    color: #bd8540;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.swp5-price {
    margin-top: 3px;
    margin-bottom: 12px;

    color: #064678;
    font-size: 28px;
    font-weight: 500;
}

.swp5-fee-button {
    width: 100%;
    height: 41px;
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 5px;
    background: #064678;
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    transition: transform .2s ease, background .2s ease;
}

.swp5-fee-button:hover {
    transform: translateY(-2px);
    background: #003d69;
}

.swp5-fee-button svg,
.swp5-fees-advisor svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* FEES BOTTOM */

.swp5-fees-bottom {
    margin-top: 20px;
    text-align: center;
}

.swp5-fees-bottom p {
    margin: 0 0 10px;
    color: #4e5664;
    font-size: 14px;
}

.swp5-fees-advisor {
    width: 290px;
    height: 41px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 5px;
    background: #064678;
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;
}


/* ============================================================
   BEFORE YOU ENROL
============================================================ */

.swp5-enrol-section {
    width: 100%;
    background: #004979;
    color: #ffffff;
}

.swp5-enrol-inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;

    padding: 31px 53px 36px;

    display: grid;
    grid-template-columns: 46% 54%;
    gap: 25px;
    align-items: center;
}


/* FAQ LEFT */

.swp5-white-eyebrow {
    color: #ffffff;
}

.swp5-faq-column > h2 {
    margin: 0 0 12px;

    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    line-height: .96;
    font-weight: 600;
    letter-spacing: -.8px;
}

.swp5-faq-intro {
    max-width: 370px;
    margin: 0 0 14px;

    color: rgba(255,255,255,.93);
    font-size: 13px;
    line-height: 1.5;
}


/* FAQ ITEMS */

.swp5-faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.swp5-faq-item {
    overflow: hidden;
    border-radius: 7px;
    background: #ffffff;
}

.swp5-faq-question {
    width: 100%;
    min-height: 43px;
    padding: 5px 13px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 0;
    background: #ffffff;

    color: #064678;
    text-align: left;

    cursor: pointer;
}

.swp5-faq-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6fa;
}

.swp5-faq-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp5-question-text {
    flex: 1;

    color: #24547b;
    font-size: 12px;
    font-weight: 500;
}

.swp5-plus {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    transition: transform .25s ease;
}

.swp5-faq-question[aria-expanded="true"] .swp5-plus {
    transform: rotate(45deg);
}

.swp5-faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height .3s ease,
        padding .3s ease;
}

.swp5-faq-answer p {
    margin: 0;
    padding: 0 55px 0;

    color: #536172;
    font-size: 11px;
    line-height: 1.5;
}

.swp5-faq-question[aria-expanded="true"] + .swp5-faq-answer {
    max-height: 100px;
}

.swp5-faq-question[aria-expanded="true"] + .swp5-faq-answer p {
    padding-bottom: 13px;
}


/* ============================================================
   ADVISOR CARD
============================================================ */

.swp5-advisor-card {
    min-height: 395px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 48% 52%;

    border-radius: 10px;
    background: #ffffff;
    color: #064678;
}

.swp5-advisor-content {
    padding: 35px 20px 25px 28px;
}

.swp5-advisor-gold-line {
    width: 34px;
    height: 2px;
    margin-bottom: 13px;
    background: #c79a5d;
}

.swp5-advisor-content h3 {
    margin: 0 0 12px;

    color: #064678;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 36px;
    line-height: .95;
    font-weight: 600;
}

.swp5-advisor-content p {
    max-width: 205px;
    margin: 0 0 18px;

    color: #555e6b;
    font-size: 12px;
    line-height: 1.55;
}

.swp5-advisor-primary,
.swp5-advisor-whatsapp {
    width: 100%;
    height: 38px;
    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.swp5-advisor-primary {
    background: #064678;
    color: #ffffff;
}

.swp5-advisor-whatsapp {
    gap: 8px;

    border: 1px solid #064678;
    color: #064678;
    background: #ffffff;
}

.swp5-advisor-whatsapp svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp5-advisor-image {
    min-height: 395px;
    overflow: hidden;
}

.swp5-advisor-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}


/* ============================================================
   BRAND FOOTER LINE
============================================================ */

.swp5-brand-line {
    width: calc(100% - 105px);
    max-width: 920px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 18px;
}

.swp5-brand-line > span {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.swp5-brand-lotus {
    width: 28px;
    height: 28px;
}

.swp5-brand-lotus svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #d2a263;
    stroke-width: 1.1;
}

.swp5-brand-values {
    padding: 13px 20px 4px;

    text-align: center;

    color: #ffffff;
    font-size: 13px;
    letter-spacing: .2px;
}

.swp5-brand-values b {
    margin: 0 12px;
    color: #e2b877;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp5-fees-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp5-section-heading h2 {
        font-size: 41px;
    }

    .swp5-fee-grid {
        gap: 12px;
    }

    .swp5-fee-card {
        padding-left: 14px;
        padding-right: 14px;
    }

    .swp5-enrol-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swp5-advisor-content {
        padding-left: 20px;
        padding-right: 15px;
    }

    .swp5-advisor-content h3 {
        font-size: 31px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp5-fees-inner {
        padding:
            45px
            18px
            25px;
    }

    .swp5-section-heading h2 {
        font-size: 39px;
    }

    .swp5-section-heading p {
        font-size: 13px;
    }

    .swp5-fee-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .swp5-fee-card {
        min-height: 350px;
        padding: 22px;
    }

    .swp5-fee-featured .swp5-fee-icon {
        margin-top: 23px;
    }

    .swp5-fee-card h3 {
        font-size: 25px;
    }

    .swp5-fees-advisor {
        width: 100%;
        max-width: 300px;
    }


    /* ENROL */

    .swp5-enrol-inner {
        padding:
            45px
            18px
            35px;

        display: flex;
        flex-direction: column;
    }

    .swp5-faq-column {
        width: 100%;
    }

    .swp5-faq-column > h2 {
        font-size: 39px;
    }

    .swp5-faq-intro {
        font-size: 12px;
    }

    .swp5-faq-question {
        min-height: 49px;
    }

    .swp5-question-text {
        font-size: 11px;
    }

    .swp5-advisor-card {
        width: 100%;
        min-height: 470px;

        grid-template-columns: 1fr;
    }

    .swp5-advisor-content {
        padding: 28px 24px 22px;
    }

    .swp5-advisor-content h3 {
        font-size: 37px;
    }

    .swp5-advisor-content p {
        max-width: 280px;
    }

    .swp5-advisor-image {
        min-height: 260px;
        height: 260px;
    }

    .swp5-brand-line {
        width: calc(100% - 36px);
    }

    .swp5-brand-values {
        font-size: 11px;
    }

    .swp5-brand-values b {
        margin: 0 6px;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp5-section-heading h2 {
        font-size: 35px;
    }

    .swp5-fee-card h3 {
        font-size: 23px;
    }

    .swp5-price {
        font-size: 26px;
    }

    .swp5-faq-column > h2 {
        font-size: 35px;
    }

    .swp5-advisor-content h3 {
        font-size: 34px;
    }

    .swp5-brand-values {
        line-height: 1.7;
    }
}

/* ============================================================
   SAMAGRA WELLNESS — FINAL CTA SECTION
   "START YOUR JOURNEY"
============================================================ */

.swp6-journey-section {
    width: 100%;
    background: #075274;
    color: #ffffff;
}

.swp6-journey-inner {
    width: 100%;
    max-width: 1024px;
    min-height: 465px;

    margin: 0 auto;
    padding: 42px 55px 46px;

    display: grid;
    grid-template-columns: 49% 51%;
    align-items: center;
    gap: 26px;
}


/* ============================================================
   LEFT CONTENT
============================================================ */

.swp6-journey-content {
    align-self: center;
}

.swp6-journey-eyebrow {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.swp6-journey-gold-line {
    width: 35px;
    height: 2px;

    margin-bottom: 12px;

    background: #d3a263;
}

.swp6-journey-content h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 48px;
    line-height: .91;

    font-weight: 600;
    letter-spacing: -1px;
}

.swp6-journey-content > p {
    max-width: 405px;

    margin: 0 0 20px;

    color: rgba(255,255,255,.94);

    font-size: 14px;
    line-height: 1.55;
}


/* ============================================================
   ACTION BUTTONS
============================================================ */

.swp6-journey-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 27px;
}

.swp6-journey-primary,
.swp6-journey-whatsapp {
    height: 41px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.swp6-journey-primary {
    min-width: 253px;
    padding: 0 20px;

    background: #ffffff;
    color: #075274;
}

.swp6-journey-primary:hover {
    transform: translateY(-2px);

    background: #f2f7f9;
}

.swp6-journey-whatsapp {
    min-width: 168px;
    padding: 0 19px;

    border: 1px solid rgba(255,255,255,.95);

    background: transparent;
    color: #ffffff;

    gap: 9px;
}

.swp6-journey-whatsapp:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.1);
}

.swp6-journey-whatsapp svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   BRAND VALUES
============================================================ */

.swp6-journey-values {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 465px;
}

.swp6-journey-value {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    text-align: center;
}

.swp6-journey-value svg {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    fill: none;

    stroke: #d4a667;

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swp6-journey-value span {
    color: #ffffff;

    font-size: 10px;
    line-height: 1.25;
}

.swp6-journey-divider {
    width: 1px;
    height: 29px;

    flex: 0 0 1px;

    background: rgba(255,255,255,.4);
}


/* ============================================================
   RIGHT IMAGE
============================================================ */

.swp6-journey-image {
    width: 100%;
    height: 335px;

    overflow: hidden;

    border-radius: 10px;

    background: #dfe8e9;
}

.swp6-journey-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.swp6-journey-image:hover img {
    transform: scale(1.025);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp6-journey-inner {
        padding-left: 35px;
        padding-right: 35px;

        grid-template-columns: 48% 52%;
        gap: 18px;
    }

    .swp6-journey-content h2 {
        font-size: 42px;
    }

    .swp6-journey-content > p {
        font-size: 13px;
    }

    .swp6-journey-actions {
        flex-wrap: wrap;
    }

    .swp6-journey-primary {
        min-width: 210px;
    }

    .swp6-journey-whatsapp {
        min-width: 145px;
    }

    .swp6-journey-value {
        gap: 4px;
    }

    .swp6-journey-value span {
        font-size: 9px;
    }

    .swp6-journey-image {
        height: 320px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp6-journey-inner {
        min-height: auto;

        padding:
            48px
            18px
            42px;

        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .swp6-journey-content {
        width: 100%;
    }

    .swp6-journey-content h2 {
        font-size: 42px;
        line-height: .92;
    }

    .swp6-journey-content > p {
        max-width: 430px;

        font-size: 13px;
    }


    /* MOBILE BUTTONS */

    .swp6-journey-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 9px;
    }

    .swp6-journey-primary,
    .swp6-journey-whatsapp {
        width: 100%;
        min-width: 0;
    }


    /* MOBILE VALUES */

    .swp6-journey-values {
        max-width: 100%;

        gap: 4px;
    }

    .swp6-journey-value {
        flex-direction: column;

        gap: 5px;
    }

    .swp6-journey-value svg {
        width: 27px;
        height: 27px;
    }

    .swp6-journey-value span {
        font-size: 9px;
    }


    /* MOBILE IMAGE */

    .swp6-journey-image {
        width: 100%;
        height: 300px;

        border-radius: 10px;

        order: 2;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp6-journey-content h2 {
        font-size: 37px;
    }

    .swp6-journey-value span {
        font-size: 8px;
    }

    .swp6-journey-image {
        height: 270px;
    }
}

/* ============================================================
   SAMAGRA WELLNESS — FOOTER CSS
============================================================ */

.swp7-footer {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #0b3f50 0%,
            #083846 100%
        );

    color: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.swp7-footer-inner {
    width: 100%;
    max-width: 1150px;

    min-height: 94px;

    margin: 0 auto;
    padding: 0 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* ============================================================
   BRAND
============================================================ */

.swp7-footer-brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    color: #ffffff;
}


.swp7-footer-logo {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.swp7-footer-logo svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.swp7-footer-brand-name {
    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .2px;
}


/* ============================================================
   NAVIGATION
============================================================ */

.swp7-footer-nav {
    display: flex;
    align-items: center;

    gap: 38px;

    margin-left: auto;
}


.swp7-footer-nav a {
    position: relative;

    color: rgba(255, 255, 255, .95);

    font-size: 13px;

    font-weight: 400;

    transition:
        color .25s ease;
}


.swp7-footer-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: #d5a76a;

    transition:
        width .25s ease;
}


.swp7-footer-nav a:hover {
    color: #ffffff;
}


.swp7-footer-nav a:hover::after {
    width: 100%;
}


/* ============================================================
   ADVISOR BUTTON
============================================================ */

.swp7-footer-advisor {
    min-width: 195px;
    height: 38px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 7px;

    color: #ffffff;

    background: transparent;

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.swp7-footer-advisor:hover {
    background: #ffffff;

    color: #083d4d;

    transform: translateY(-1px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .swp7-footer-inner {
        padding: 0 30px;

        gap: 20px;
    }

    .swp7-footer-nav {
        gap: 23px;
    }

    .swp7-footer-advisor {
        min-width: 175px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .swp7-footer-inner {
        min-height: auto;

        padding:
            28px
            20px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 22px;

        text-align: center;
    }


    .swp7-footer-brand {
        justify-content: center;
    }


    .swp7-footer-nav {
        width: 100%;

        margin-left: 0;

        justify-content: center;

        flex-wrap: wrap;

        gap:
            12px
            25px;
    }


    .swp7-footer-nav a {
        font-size: 12px;
    }


    .swp7-footer-advisor {
        width: 100%;

        max-width: 260px;

        min-width: 0;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swp7-footer-inner {
        padding: 25px 16px;
    }


    .swp7-footer-brand-name {
        font-size: 13px;
    }


    .swp7-footer-nav {
        gap:
            10px
            20px;
    }

}

/* ============================================================
   SAMAGRA WELLNESS — PROGRAMS PAGE
   CONTENT ONLY
   HEADER / FOOTER NOT INCLUDED

   UNIQUE PREFIX:
   swy2-
============================================================ */

.swy2-hero,
.swy2-pillars,
.swy2-program-section {
    width: 100%;
}

.swy2-hero *,
.swy2-pillars *,
.swy2-program-section * {
    box-sizing: border-box;
}

.swy2-hero a,
.swy2-pillars a,
.swy2-program-section a {
    text-decoration: none;
}


/* ============================================================
   HERO
============================================================ */

.swy2-hero {
    background:
        linear-gradient(
            115deg,
            #f5fafc 0%,
            #f0f7fa 48%,
            #eef6f8 100%
        );
}

.swy2-hero-inner {
    width: 100%;
    max-width: 1200px;

    min-height: 577px;

    margin: 0 auto;

    padding: 50px 50px 39px;

    display: grid;

    grid-template-columns: 49% 51%;

    align-items: center;

    gap: 25px;
}


/* LEFT CONTENT */

.swy2-hero-content {
    padding-right: 5px;
}

.swy2-eyebrow {
    margin-bottom: 13px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.25px;
}

.swy2-gold-rule {
    width: 44px;
    height: 2px;

    margin-bottom: 15px;

    background: #c89a5d;
}

.swy2-hero-content h1 {
    margin: 0 0 19px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 49px;
    line-height: .98;

    font-weight: 600;

    letter-spacing: -1.1px;
}

.swy2-hero-description {
    max-width: 470px;

    margin: 0;

    color: #535b66;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.52;
}


/* ============================================================
   HERO STATS
============================================================ */

.swy2-hero-stats {
    max-width: 470px;

    margin-top: 27px;

    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr;

    align-items: stretch;
}

.swy2-hero-stat {
    min-height: 126px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

.swy2-stat-divider {
    width: 1px;
    height: 100%;

    background: #d7cbbd;
}

.swy2-stat-icon {
    width: 67px;
    height: 67px;

    margin-bottom: 9px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f3f7;
}

.swy2-stat-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #07508a;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy2-hero-stat strong {
    margin-bottom: 6px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 700;
}

.swy2-hero-stat span {
    color: #4c5560;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.4;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.swy2-hero-actions {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 26px;
}

.swy2-primary-button,
.swy2-secondary-button {
    height: 43px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.swy2-primary-button {
    width: 176px;

    background: #064678;

    color: #ffffff;
}

.swy2-secondary-button {
    width: 230px;

    border: 1px solid #064678;

    background: #ffffff;

    color: #064678;
}

.swy2-primary-button:hover,
.swy2-secondary-button:hover {
    transform: translateY(-2px);
}


/* ============================================================
   HERO IMAGE
============================================================ */

.swy2-hero-image {
    width: 100%;
    height: 488px;

    overflow: hidden;

    border-radius: 12px;

    background: #e5ecee;
}

.swy2-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* ============================================================
   PILLAR STRIP
============================================================ */

.swy2-pillars {
    background: #e9f3f7;

    border-top: 1px solid #e0eaee;
    border-bottom: 1px solid #e0eaee;
}

.swy2-pillars-inner {
    width: 100%;
    max-width: 1200px;

    min-height: 73px;

    margin: 0 auto;

    padding: 0 80px;

    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr;

    align-items: center;
}

.swy2-pillar {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}

.swy2-pillar-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e0edf2;
}

.swy2-pillar-icon svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: #07508a;

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy2-pillar span {
    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 500;
}

.swy2-pillar-divider {
    width: 1px;
    height: 40px;

    background: #d5c7b4;
}


/* ============================================================
   PROGRAM SECTION
============================================================ */

.swy2-program-section {
    background: #ffffff;
}

.swy2-program-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 37px 55px 27px;
}


/* ============================================================
   PROGRAM HEADING
============================================================ */

.swy2-program-heading {
    margin-bottom: 22px;

    text-align: center;
}

.swy2-program-eyebrow {
    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.3px;
}

.swy2-program-gold-rule {
    width: 35px;
    height: 2px;

    margin: 10px auto;

    background: #c89a5d;
}

.swy2-program-heading h2 {
    margin: 0 0 10px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 43px;

    line-height: .95;

    font-weight: 600;

    letter-spacing: -.8px;
}

.swy2-program-heading p {
    margin: 0;

    color: #555d67;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* ============================================================
   PROGRAM GRID
   IMPORTANT:
   EACH ITEM CONTAINS:
   CARD + ITS OWN DESCRIPTION
============================================================ */

.swy2-program-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    align-items: start;
}

.swy2-program-item {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ============================================================
   PROGRAM CARD
============================================================ */

.swy2-program-card {
    position: relative;

    width: 100%;

    min-height: 374px;

    padding: 15px 22px 13px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border: 1px solid #dce2e5;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.swy2-program-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(16, 58, 83, .08);
}


/* FEATURED CARD */

.swy2-program-featured {
    border-color: #0b5790;

    background:
        linear-gradient(
            145deg,
            #f0f8fb 0%,
            #ffffff 100%
        );
}


/* FLAGSHIP */

.swy2-featured-label {
    position: absolute;

    top: 11px;

    left: 50%;

    transform: translateX(-50%);

    padding: 5px 14px;

    border-radius: 4px;

    background: #064678;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* PROGRAM ICON */

.swy2-program-icon {
    width: 68px;
    height: 68px;

    margin-bottom: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swy2-featured-icon {
    margin-top: 27px;
}

.swy2-program-icon svg {
    width: 43px;
    height: 43px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CARD TITLE */

.swy2-program-card h3 {
    min-height: 48px;

    margin: 0 0 8px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;

    line-height: .96;

    font-weight: 600;
}

.swy2-program-short {
    min-height: 43px;

    margin: 0;

    color: #565e68;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.4;
}


/* CARD DIVIDER */

.swy2-card-rule {
    width: 100%;
    height: 1px;

    margin: 12px 0;

    background: #e5ddd3;
}


/* HOURS */

.swy2-card-hours {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 12px;
}

.swy2-clock-icon {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.swy2-clock-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* FEES */

.swy2-fee-row,
.swy2-launch-row {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.swy2-fee-row {
    color: #565d66;

    font-family: Arial, sans-serif;

    font-size: 11px;
}

.swy2-fee-row del {
    color: #777777;
}

.swy2-launch-row {
    margin-top: 5px;

    align-items: baseline;
}

.swy2-launch-row span {
    color: #bd8540;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;
}

.swy2-launch-row strong {
    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 25px;

    font-weight: 500;
}


/* CARD BUTTON */

.swy2-card-button {
    width: 100%;
    height: 38px;

    margin-top: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 5px;

    background: #064678;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 500;
}

.swy2-card-button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   DESCRIPTION BOX
============================================================ */

.swy2-description-box {
    width: 100%;

    min-height: 75px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    gap: 10px;

    border: 1px solid #dce7ec;

    border-radius: 9px;

    background: #f2f8fa;
}

.swy2-description-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f0f5;
}

.swy2-description-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy2-description-box p {
    margin: 0;

    color: #304b62;

    font-family: Arial, sans-serif;

    font-size: 9.5px;

    line-height: 1.38;
}


/* ============================================================
   BOTTOM CTA
============================================================ */

.swy2-program-bottom {
    margin-top: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

.swy2-chat-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swy2-chat-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #064678;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy2-program-bottom h3 {
    margin: 5px 0 9px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 600;
}

.swy2-bottom-advisor {
    width: 270px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 5px;

    background: #064678;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 12px;
}

.swy2-bottom-advisor svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .swy2-hero-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swy2-hero-content h1 {
        font-size: 43px;
    }

    .swy2-pillars-inner {
        padding: 0 40px;
    }

    .swy2-program-inner {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swy2-program-grid {
        gap: 15px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {


    /* --------------------------------------------------------
       HERO
    -------------------------------------------------------- */

    .swy2-hero-inner {
        min-height: auto;

        padding:
            42px
            18px
            35px;

        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .swy2-hero-content {
        width: 100%;

        padding: 0;
    }

    .swy2-eyebrow {
        font-size: 10px;

        line-height: 1.5;

        letter-spacing: 1px;
    }

    .swy2-hero-content h1 {
        font-size: 42px;

        line-height: .96;

        letter-spacing: -.7px;
    }

    .swy2-hero-description {
        font-size: 13px;

        line-height: 1.55;
    }


    /* --------------------------------------------------------
       HERO STATS
    -------------------------------------------------------- */

    .swy2-hero-stats {
        width: 100%;

        margin-top: 24px;
    }

    .swy2-hero-stat {
        min-height: 115px;
    }

    .swy2-stat-icon {
        width: 56px;
        height: 56px;
    }

    .swy2-stat-icon svg {
        width: 35px;
        height: 35px;
    }

    .swy2-hero-stat strong {
        font-size: 11px;
    }

    .swy2-hero-stat span {
        font-size: 9px;
    }


    /* --------------------------------------------------------
       HERO BUTTONS
    -------------------------------------------------------- */

    .swy2-hero-actions {
        width: 100%;

        flex-direction: column;

        gap: 9px;
    }

    .swy2-primary-button,
    .swy2-secondary-button {
        width: 100%;
    }


    /* --------------------------------------------------------
       HERO IMAGE
    -------------------------------------------------------- */

    .swy2-hero-image {
        width: 100%;

        height: 340px;

        border-radius: 10px;
    }


    /* --------------------------------------------------------
       PILLARS
    -------------------------------------------------------- */

    .swy2-pillars-inner {
        min-height: auto;

        padding: 18px;

        display: flex;

        flex-direction: column;

        gap: 13px;
    }

    .swy2-pillar {
        width: 100%;

        justify-content: flex-start;

        padding-left: 20px;
    }

    .swy2-pillar-divider {
        width: 80%;

        height: 1px;
    }


    /* --------------------------------------------------------
       PROGRAM SECTION
    -------------------------------------------------------- */

    .swy2-program-inner {
        padding:
            40px
            18px
            35px;
    }

    .swy2-program-heading {
        margin-bottom: 25px;
    }

    .swy2-program-eyebrow {
        font-size: 10px;
    }

    .swy2-program-heading h2 {
        font-size: 39px;

        line-height: .96;
    }

    .swy2-program-heading p {
        font-size: 12px;

        line-height: 1.5;
    }


    /* ========================================================
       IMPORTANT MOBILE STRUCTURE

       CARD 1
       DESCRIPTION 1

       CARD 2
       DESCRIPTION 2

       CARD 3
       DESCRIPTION 3
    ======================================================== */

    .swy2-program-grid {
        display: flex;

        flex-direction: column;

        gap: 19px;

        width: 100%;
    }

    .swy2-program-item {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 8px;
    }


    /* CARD */

    .swy2-program-card {
        width: 100%;

        min-height: 380px;

        padding:
            17px
            22px
            13px;
    }

    .swy2-program-card h3 {
        font-size: 25px;

        line-height: .98;
    }

    .swy2-program-short {
        font-size: 10.5px;
    }


    /* DESCRIPTION */

    .swy2-description-box {
        width: 100%;

        min-height: 70px;

        padding:
            10px
            12px;

        gap: 10px;
    }

    .swy2-description-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;
    }

    .swy2-description-icon svg {
        width: 24px;
        height: 24px;
    }

    .swy2-description-box p {
        font-size: 10px;

        line-height: 1.4;
    }


    /* --------------------------------------------------------
       BOTTOM CTA
    -------------------------------------------------------- */

    .swy2-program-bottom {
        margin-top: 17px;
    }

    .swy2-bottom-advisor {
        width: 100%;

        max-width: 310px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 390px) {

    .swy2-hero-content h1 {
        font-size: 36px;
    }

    .swy2-hero-stat span {
        font-size: 8.5px;
    }

    .swy2-program-heading h2 {
        font-size: 35px;
    }

    .swy2-program-card {
        min-height: 375px;
    }

}

/* =========================================================
   SAMAGRA WELLNESS — WHAT YOU WILL LEARN
   UNIQUE PREFIX: swy3-
========================================================= */

.swy3-learning-hero,
.swy3-find-section {
    width: 100%;
}

.swy3-learning-hero *,
.swy3-find-section * {
    box-sizing: border-box;
}

.swy3-learning-hero a,
.swy3-learning-hero button,
.swy3-find-section a {
    font-family: Arial, sans-serif;
}


/* =========================================================
   COMMON
========================================================= */

.swy3-learning-container,
.swy3-find-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   LEARNING HERO
========================================================= */

.swy3-learning-hero {
    background: #f2f8fa;
    padding: 38px 0 25px;
}

.swy3-learning-container {
    padding: 0 58px;
}

.swy3-learning-container:first-child {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 20px;
}


/* INTRO */

.swy3-learning-intro {
    padding-right: 15px;
}

.swy3-eyebrow {
    color: #064678;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.swy3-gold-line {
    width: 42px;
    height: 2px;
    background: #c89a5d;
    margin: 10px 0 14px;
}

.swy3-learning-intro h1 {
    margin: 0 0 14px;
    color: #064678;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 44px;
    line-height: .94;
    font-weight: 600;
    letter-spacing: -.7px;
}

.swy3-learning-intro > p {
    max-width: 420px;
    margin: 0;
    color: #505965;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   PATH TABS
========================================================= */

.swy3-path-tabs {
    width: 100%;
    max-width: 520px;
    margin-top: 29px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;

    border: 1px solid #d6e1e6;
    border-radius: 9px;
    overflow: hidden;
    background: #f8fbfc;
}

.swy3-path-tab {
    min-height: 48px;
    padding: 7px 9px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 0;
    background: transparent;

    color: #064678;

    font-size: 11px;
    cursor: pointer;

    transition: .25s ease;
}

.swy3-path-tab + .swy3-path-tab {
    border-left: 1px solid #d8e2e7;
}

.swy3-path-tab span {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #82acd0;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}

.swy3-path-tab.swy3-path-active {
    background: #07528a;
    color: #ffffff;
}

.swy3-path-tab.swy3-path-active span {
    border-color: #ffffff;
    background: #ffffff;
    color: #07528a;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.swy3-learning-image {
    height: 245px;
    overflow: hidden;
    border-radius: 11px;
}

.swy3-learning-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   LEARNING CARDS
========================================================= */

.swy3-learning-cards {
    margin-top: 21px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.swy3-learning-card {
    min-height: 296px;

    padding: 15px 18px;

    border: 1px solid #dce4e8;
    border-radius: 11px;

    background: #ffffff;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.swy3-learning-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 68, 100, .08);
}


/* ICON */

.swy3-learning-card-icon,
.swy3-fit-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6fa;
}

.swy3-learning-card-icon svg,
.swy3-fit-icon svg {
    width: 40px;
    height: 40px;

    fill: none;
    stroke: #07528a;
    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy3-learning-card h2 {
    margin: 0;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 22px;
    line-height: 1;
    font-weight: 600;
}

.swy3-card-gold-line {
    width: 34px;
    height: 2px;
    margin: 9px auto 9px;

    background: #c89a5d;
}

.swy3-card-description {
    max-width: 270px;

    min-height: 35px;

    margin: 0 auto 14px;

    color: #555d67;

    font-family: Arial, sans-serif;

    font-size: 10.5px;
    line-height: 1.4;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

.swy3-learning-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.swy3-feature-item {
    min-height: 48px;

    padding: 7px 8px;

    display: flex;
    align-items: center;

    gap: 7px;

    text-align: left;

    border: 1px solid #dce7ec;
    border-radius: 7px;

    background: #f1f7f9;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 9px;
    line-height: 1.25;
}

.swy3-feature-icon {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.swy3-feature-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: #07528a;
    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ELITE MESSAGE
========================================================= */

.swy3-elite-message {
    max-width: 640px;

    margin: 24px auto 0;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    column-gap: 12px;

    text-align: center;
}

.swy3-elite-line {
    height: 1px;
    background: #d8dfe1;
}

.swy3-elite-lotus {
    color: #c89a5d;
    font-size: 23px;
}

.swy3-elite-message p {
    grid-column: 1 / -1;

    margin: 4px 0 6px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 17px;
}

.swy3-elite-message p strong {
    font-weight: 600;
}

.swy3-elite-subtitle {
    grid-column: 1 / -1;

    color: #07528a;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* =========================================================
   FIND YOUR FIT
========================================================= */

.swy3-find-section {
    padding: 30px 0 22px;
    background: #ffffff;
}

.swy3-find-container {
    padding: 0 58px;
}

.swy3-find-heading {
    margin-bottom: 16px;
}

.swy3-find-heading h2 {
    margin: 0 0 5px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 37px;
    line-height: .98;
    font-weight: 600;
}

.swy3-find-heading p {
    margin: 0;

    color: #555d67;

    font-family: Arial, sans-serif;

    font-size: 11px;
}


/* =========================================================
   FIT CARDS
========================================================= */

.swy3-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.swy3-fit-card {
    position: relative;

    min-height: 314px;

    padding: 17px 20px 13px;

    border: 1px solid #dbe3e7;
    border-radius: 10px;

    background: #ffffff;

    display: flex;
    flex-direction: column;
}

.swy3-fit-featured {
    border-color: #4c8bb7;

    background:
        linear-gradient(
            145deg,
            #f1f8fb,
            #ffffff
        );
}


/* FLAGSHIP */

.swy3-flagship {
    position: absolute;

    top: -1px;
    right: 13px;

    padding: 5px 13px;

    border-radius: 0 0 5px 5px;

    background: #064678;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;
}


/* TOP */

.swy3-fit-top {
    display: grid;

    grid-template-columns: 34px 55px 1fr;

    align-items: center;

    gap: 8px;
}

.swy3-number {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #07528a;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;
}

.swy3-fit-icon {
    width: 55px;
    height: 55px;

    margin: 0;
}

.swy3-fit-icon svg {
    width: 35px;
    height: 35px;
}

.swy3-fit-top h3 {
    margin: 0;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 19px;
    line-height: .95;
    font-weight: 600;
}


/* RULE */

.swy3-fit-rule {
    width: 100%;
    height: 1px;

    margin: 10px 0;

    background: #e4ddd4;
}


/* TITLE */

.swy3-fit-card h4 {
    margin: 0 0 7px;

    color: #064678;

    text-align: center;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;
    line-height: .98;

    font-weight: 600;
}


/* HOURS */

.swy3-fit-hours {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 6px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 600;
}

.swy3-fit-hours svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: #064678;
    stroke-width: 1.4;
}


/* DESCRIPTION */

.swy3-fit-card > p {
    min-height: 47px;

    margin: 12px 0 7px;

    color: #515963;

    font-family: Arial, sans-serif;

    font-size: 9.5px;
    line-height: 1.4;
}


/* BEST */

.swy3-fit-best {
    padding-top: 7px;

    border-top: 1px solid #e8dfd4;

    color: #c4893f;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 600;
}

.swy3-fit-suited {
    min-height: 25px;

    margin-top: 4px;

    color: #394651;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 9px;

    line-height: 1.35;
}


/* BUTTON */

.swy3-fit-button {
    width: 100%;
    height: 34px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 5px;

    background: #064678;

    color: #ffffff;

    font-size: 11px;

    transition: .2s ease;
}

.swy3-fit-button:hover {
    background: #053b66;
}

.swy3-fit-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ADVISOR BAR
========================================================= */

.swy3-advisor-bar {
    min-height: 50px;

    margin-top: 20px;
    padding: 7px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #d9e5e9;
    border-radius: 8px;

    background: #f1f7f9;
}

.swy3-advisor-message {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 13px;
}

.swy3-advisor-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.swy3-advisor-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: #07528a;
    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy3-advisor-button {
    width: 310px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 5px;

    background: #064678;

    color: #ffffff;

    font-size: 11px;
}

.swy3-advisor-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .swy3-learning-container,
    .swy3-find-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .swy3-learning-intro h1 {
        font-size: 39px;
    }

    .swy3-path-tabs {
        grid-template-columns: 1fr;
    }

    .swy3-path-tab + .swy3-path-tab {
        border-left: 0;
        border-top: 1px solid #d8e2e7;
    }

    .swy3-learning-cards {
        grid-template-columns: 1fr;
    }

    .swy3-fit-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .swy3-learning-hero {
        padding: 35px 0 25px;
    }

    .swy3-learning-container,
    .swy3-find-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* HERO */

    .swy3-learning-container:first-child {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .swy3-learning-intro {
        padding: 0;
    }

    .swy3-learning-intro h1 {
        font-size: 42px;
        line-height: .94;
    }

    .swy3-learning-intro > p {
        font-size: 13px;
    }


    /* TABS */

    .swy3-path-tabs {
        display: flex;
        flex-direction: column;
        margin-top: 22px;
    }

    .swy3-path-tab {
        width: 100%;
        justify-content: flex-start;
        padding-left: 15px;
    }


    /* IMAGE */

    .swy3-learning-image {
        width: 100%;
        height: 260px;
    }


    /* CARDS */

    .swy3-learning-cards {
        margin-top: 18px;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }

    .swy3-learning-card {
        width: 100%;
        min-height: auto;

        padding: 20px 16px;
    }

    .swy3-learning-features {
        gap: 7px;
    }

    .swy3-feature-item {
        font-size: 9px;
    }


    /* ELITE */

    .swy3-elite-message {
        padding: 0 15px;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;

        gap: 8px;
    }

    .swy3-elite-line {
        width: 27%;
    }

    .swy3-elite-message p {
        width: 100%;
        font-size: 17px;
    }

    .swy3-elite-subtitle {
        font-size: 11px;
        line-height: 1.5;
    }


    /* FIND */

    .swy3-find-section {
        padding-top: 30px;
    }

    .swy3-find-heading h2 {
        font-size: 37px;
    }

    .swy3-fit-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .swy3-fit-card {
        min-height: 335px;
    }


    /* ADVISOR */

    .swy3-advisor-bar {
        padding: 14px;

        flex-direction: column;

        gap: 12px;
    }

    .swy3-advisor-message {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .swy3-advisor-button {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .swy3-learning-intro h1 {
        font-size: 37px;
    }

    .swy3-learning-card h2 {
        font-size: 21px;
    }

    .swy3-fit-top h3 {
        font-size: 18px;
    }

    .swy3-fit-card {
        padding-left: 15px;
        padding-right: 15px;
    }

}
/* =========================================================
   SAMAGRA WELLNESS — PROFESSIONAL PORTFOLIO
   UNIQUE PREFIX: swy5-
========================================================= */

.swy5-portfolio-section,
.swy5-outcomes-section {
    width: 100%;
    overflow: hidden;
}

.swy5-portfolio-section *,
.swy5-outcomes-section * {
    box-sizing: border-box;
}


/* =========================================================
   PORTFOLIO SECTION
========================================================= */

.swy5-portfolio-section {
    background: #ffffff;
    padding-top: 28px;
}

.swy5-portfolio-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 58px;

    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 38px;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.swy5-eyebrow {
    color: #064678;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.25px;
}

.swy5-gold-line {
    width: 42px;
    height: 2px;

    margin: 9px 0 11px;

    background: #c79a5d;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.swy5-portfolio-left h1 {
    margin: 0 0 10px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 42px;
    line-height: .94;
    font-weight: 600;

    letter-spacing: -.7px;
}

.swy5-intro {
    max-width: 520px;

    margin: 0 0 11px;

    color: #4d5761;

    font-family: Arial, sans-serif;

    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   PORTFOLIO IMAGE
========================================================= */

.swy5-portfolio-image {
    position: relative;

    width: 100%;
    height: 327px;

    overflow: hidden;

    border-radius: 10px;
}

.swy5-portfolio-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* IMAGE LABELS */

.swy5-image-tag {
    position: absolute;

    padding: 6px 10px;

    border: 1px solid #d5dce0;
    border-radius: 5px;

    background: rgba(255,255,255,.96);

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.swy5-tag-portfolio {
    left: 22px;
    bottom: 126px;
}

.swy5-tag-bio {
    right: 19px;
    top: 131px;
}

.swy5-tag-project {
    left: 246px;
    bottom: 8px;
}

.swy5-tag-business {
    right: 48px;
    bottom: 8px;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.swy5-project-grid {
    padding-top: 12px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.swy5-project-card {
    min-height: 190px;

    padding: 13px 18px;

    border: 1px solid #d9e0e5;
    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.swy5-project-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(8,67,103,.08);
}


/* PROJECT ICON */

.swy5-project-icon {
    width: 63px;
    height: 63px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf5f9;
}

.swy5-project-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* PROJECT TITLE */

.swy5-project-title-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 7px;
}

.swy5-project-number {
    padding: 5px 8px;

    border-radius: 4px;

    background: #f9ead2;

    color: #9a6825;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;
}

.swy5-project-title-row h2 {
    margin: 0;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .4px;
}

.swy5-project-card p {
    margin: 0;

    color: #4e5963;

    font-family: Arial, sans-serif;

    font-size: 11px;
    line-height: 1.5;
}


/* OUTCOMES LINK */

.swy5-outcomes-link {
    grid-column: 1 / -1;

    justify-self: end;

    margin-top: 3px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;
}

.swy5-outcomes-link svg,
.swy5-final-cta a svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PROCESS STRIP
========================================================= */

.swy5-process-strip {
    min-height: 42px;

    max-width: 1250px;

    margin: 0 auto;

    padding: 5px 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 11px;
}

.swy5-process-item {
    display: flex;
    align-items: center;

    gap: 7px;
}

.swy5-process-icon {
    color: #07528a;

    font-size: 18px;
}

.swy5-process-arrow {
    color: #c79a5d;

    font-size: 17px;
}

.swy5-process-strip p {
    margin-left: 10px;

    color: #5b6268;
}


/* =========================================================
   OUTCOMES SECTION
========================================================= */

.swy5-outcomes-section {
    background: #edf6fa;

    padding: 24px 0 10px;
}

.swy5-outcomes-container {
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 58px;

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 38px;
}


/* OUTCOME HEADING */

.swy5-outcomes-left h2 {
    margin: 0 0 7px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 37px;
    line-height: .95;

    font-weight: 600;
}

.swy5-outcomes-intro {
    margin: 0 0 10px;

    color: #4d5962;

    font-family: Arial, sans-serif;

    font-size: 11px;
}


/* =========================================================
   CERTIFICATION CARDS
========================================================= */

.swy5-certification-card {
    min-height: 104px;

    margin-bottom: 7px;

    padding: 9px 14px;

    display: grid;

    grid-template-columns: 88px 1fr;

    gap: 10px;

    align-items: center;

    border: 1px solid #dce4e8;
    border-radius: 9px;

    background: #ffffff;
}

.swy5-certification-icon {
    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f7f9;
}

.swy5-certification-icon svg {
    width: 43px;
    height: 43px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy5-certification-card h3 {
    margin: 0 0 3px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;
    line-height: 1;

    font-weight: 600;
}

.swy5-certification-card p {
    margin: 0;

    color: #4f5961;

    font-family: Arial, sans-serif;

    font-size: 10.5px;
    line-height: 1.35;
}

.swy5-certification-card small {
    color: #4f5961;

    font-family: Arial, sans-serif;

    font-size: 9px;
    line-height: 1.3;
}

.swy5-card-divider {
    width: 100%;
    height: 1px;

    margin: 7px 0;

    background: #ddcfbd;
}


/* =========================================================
   OUTCOME LIST
========================================================= */

.swy5-outcome-list {
    display: flex;

    flex-direction: column;

    gap: 7px;

    padding-top: 37px;
}

.swy5-outcome-card {
    min-height: 76px;

    padding: 7px 13px;

    display: grid;

    grid-template-columns: 48px 67px 1fr;

    gap: 8px;

    align-items: center;

    border: 1px solid #dce4e8;
    border-radius: 9px;

    background: #ffffff;
}

.swy5-outcome-number {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e3c897;

    border-radius: 50%;

    color: #9a6825;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;
}

.swy5-outcome-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f6f9;
}

.swy5-outcome-icon svg {
    width: 35px;
    height: 35px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy5-outcome-card h3 {
    margin: 0 0 4px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .55px;
}

.swy5-outcome-card p {
    margin: 0;

    color: #4f5961;

    font-family: Arial, sans-serif;

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   FINAL CTA
========================================================= */

.swy5-final-cta {
    max-width: 1210px;

    min-height: 48px;

    margin: 8px auto 0;

    padding: 6px 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 7px;

    background: #ffffff;

    color: #064678;

    font-family: Arial, sans-serif;
}

.swy5-final-cta-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf6fa;
}

.swy5-final-cta-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy5-final-cta strong {
    font-size: 11px;
}

.swy5-cta-divider {
    width: 1px;
    height: 26px;

    background: #d9c9b7;
}

.swy5-final-cta a {
    min-width: 235px;
    height: 38px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 5px;

    background: #07528a;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .swy5-portfolio-container,
    .swy5-outcomes-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .swy5-outcome-list {
        padding-top: 0;
    }

    .swy5-portfolio-left h1 {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE 700
========================================================= */

@media (max-width: 700px) {

    .swy5-portfolio-section {
        padding-top: 25px;
    }

    .swy5-portfolio-container,
    .swy5-outcomes-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* HEADING */

    .swy5-portfolio-left h1 {
        font-size: 38px;
        line-height: .95;
    }

    .swy5-intro {
        font-size: 12px;
    }


    /* IMAGE */

    .swy5-portfolio-image {
        height: 270px;
    }

    .swy5-tag-portfolio {
        left: 12px;
        bottom: 80px;
    }

    .swy5-tag-bio {
        right: 10px;
        top: 95px;
    }

    .swy5-tag-project {
        left: 30%;
        bottom: 8px;
    }

    .swy5-tag-business {
        right: 10px;
        bottom: 8px;
    }


    /* PROJECTS */

    .swy5-project-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .swy5-project-card {
        min-height: 170px;

        padding: 15px;
    }

    .swy5-project-icon {
        margin-left: 0;
        margin-right: 0;
    }

    .swy5-outcomes-link {
        justify-self: start;
    }


    /* PROCESS */

    .swy5-process-strip {
        padding: 12px 18px;

        flex-wrap: wrap;

        gap: 8px;
    }

    .swy5-process-strip p {
        width: 100%;

        margin: 3px 0 0;

        text-align: center;
    }


    /* OUTCOMES */

    .swy5-outcomes-section {
        padding-top: 28px;
    }

    .swy5-outcomes-left h2 {
        font-size: 37px;
    }


    /* CERTIFICATION */

    .swy5-certification-card {
        grid-template-columns: 70px 1fr;

        padding: 12px;
    }

    .swy5-certification-icon {
        width: 60px;
        height: 60px;
    }

    .swy5-certification-icon svg {
        width: 36px;
        height: 36px;
    }

    .swy5-certification-card h3 {
        font-size: 19px;
    }


    /* OUTCOME CARD */

    .swy5-outcome-card {
        grid-template-columns: 45px 58px 1fr;

        padding: 10px;
    }

    .swy5-outcome-icon {
        width: 51px;
        height: 51px;
    }

    .swy5-outcome-card p {
        font-size: 10px;
    }


    /* FINAL CTA */

    .swy5-final-cta {
        margin-left: 18px;
        margin-right: 18px;

        padding: 12px 15px;

        flex-wrap: wrap;

        text-align: center;
    }

    .swy5-cta-divider {
        display: none;
    }

    .swy5-final-cta a {
        width: 100%;
        min-width: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .swy5-portfolio-left h1 {
        font-size: 34px;
    }

    .swy5-portfolio-image {
        height: 230px;
    }

    .swy5-project-card p {
        font-size: 10.5px;
    }

    .swy5-outcomes-left h2 {
        font-size: 33px;
    }

    .swy5-outcome-card {
        grid-template-columns: 42px 54px 1fr;
    }

    .swy5-outcome-card h3 {
        font-size: 10px;
    }

    .swy5-outcome-card p {
        font-size: 9.5px;
    }

}

/* =========================================================
   SAMAGRA WELLNESS — CAREER PATHWAYS + APPROACH
   UNIQUE PREFIX: swy6-
========================================================= */

.swy6-career-section,
.swy6-approach-section {
    width: 100%;
    overflow: hidden;
}

.swy6-career-section *,
.swy6-approach-section * {
    box-sizing: border-box;
}


/* =========================================================
   COMMON
========================================================= */

.swy6-eyebrow {
    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.swy6-gold-line {
    width: 42px;
    height: 2px;

    margin: 9px 0 11px;

    background: #c79a5d;
}


/* =========================================================
   CAREER SECTION
========================================================= */

.swy6-career-section {
    padding: 27px 0 0;

    background: #ffffff;
}

.swy6-career-container {
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 58px;

    display: grid;

    grid-template-columns: 1.04fr 1.18fr;

    gap: 48px;

    align-items: start;
}


/* =========================================================
   CAREER INTRO
========================================================= */

.swy6-career-intro h1 {
    margin: 0 0 10px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 42px;

    line-height: .94;

    font-weight: 600;

    letter-spacing: -.7px;
}

.swy6-career-intro > p {
    max-width: 500px;

    margin: 0 0 13px;

    color: #4e5861;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================================
   CAREER IMAGE
========================================================= */

.swy6-career-image {
    width: 100%;
    height: 273px;

    overflow: hidden;

    border-radius: 9px;
}

.swy6-career-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   CAREER GRID
========================================================= */

.swy6-career-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;

    padding-top: 13px;
}

.swy6-career-card {
    min-height: 197px;

    padding: 12px 9px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border: 1px solid #dce3e7;

    border-radius: 9px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.swy6-career-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(5, 67, 103, .08);
}


/* ICON */

.swy6-career-icon {
    width: 61px;
    height: 61px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf5f9;
}

.swy6-career-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CARD TEXT */

.swy6-career-card h2 {
    min-height: 29px;

    margin: 0 0 11px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: .35px;
}

.swy6-career-card p {
    margin: 0;

    color: #4f5860;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   CAREER MESSAGE
========================================================= */

.swy6-career-message {
    max-width: 900px;

    margin: 22px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    color: #07528a;

    font-family: Arial, sans-serif;

    font-size: 16px;
}

.swy6-career-message > span {
    width: 190px;
    height: 1px;

    background: #c79a5d;
}

.swy6-message-lotus {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #cbdde5;

    border-radius: 50%;

    background: #f4f9fb;
}

.swy6-message-lotus svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.2;
}


/* =========================================================
   APPROACH SECTION
========================================================= */

.swy6-approach-section {
    margin-top: 0;

    padding: 26px 0 10px;

    background: #edf6fa;
}

.swy6-approach-container {
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 58px;
}

.swy6-approach-container > h2 {
    margin: 0 0 9px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 39px;

    line-height: .93;

    font-weight: 600;
}

.swy6-approach-intro {
    max-width: 630px;

    margin: 0 0 14px;

    color: #4e5861;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   APPROACH CARDS
========================================================= */

.swy6-approach-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.swy6-approach-card {
    min-height: 116px;

    padding: 13px 15px;

    display: grid;

    grid-template-columns: 73px 1fr;

    align-items: center;

    gap: 12px;

    border: 1px solid #dce5e9;

    border-radius: 8px;

    background: #ffffff;
}

.swy6-approach-icon {
    width: 61px;
    height: 61px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f7fa;
}

.swy6-approach-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy6-approach-card h3 {
    margin: 0 0 6px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;
}

.swy6-approach-card p {
    margin: 0;

    color: #4f5962;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.35;
}


/* =========================================================
   LEARNING FLOW
========================================================= */

.swy6-learning-flow {
    margin: 6px auto 10px;

    max-width: 900px;

    display: grid;

    grid-template-columns:
        1fr
        1.3fr
        1fr
        1.3fr
        1fr
        1.3fr
        1fr;

    align-items: center;
}

.swy6-flow-step {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;
}

.swy6-flow-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 1px #dce6ea;
}

.swy6-flow-icon svg {
    width: 35px;
    height: 35px;

    fill: none;

    stroke: #07528a;

    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.swy6-flow-step strong {
    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: .5px;
}

.swy6-flow-line {
    height: 1px;

    background: #07528a;

    position: relative;
}

.swy6-flow-line::after {
    content: "";

    position: absolute;

    right: 0;
    top: -4px;

    width: 7px;
    height: 7px;

    border-top: 1px solid #07528a;
    border-right: 1px solid #07528a;

    transform: rotate(45deg);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.swy6-bottom-cta {
    min-height: 91px;

    padding: 8px 18px;

    display: grid;

    grid-template-columns: 310px 1fr 1.1fr;

    align-items: center;

    gap: 28px;

    border: 1px solid #d9e3e8;

    border-radius: 9px;

    background: #ffffff;
}

.swy6-bottom-image {
    width: 310px;
    height: 75px;

    overflow: hidden;

    border-radius: 6px;
}

.swy6-bottom-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.swy6-bottom-copy h3 {
    margin: 0 0 5px;

    color: #064678;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 26px;

    line-height: 1;

    font-weight: 600;
}

.swy6-bottom-copy p {
    max-width: 360px;

    margin: 0;

    color: #4e5861;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.35;
}

.swy6-bottom-actions {
    padding-left: 20px;

    border-left: 1px solid #d9cdbd;
}

.swy6-advisor-button {
    width: 100%;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #07528a;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .4px;
}

.swy6-whatsapp-button {
    margin-top: 7px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: #064678;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;
}

.swy6-whatsapp-button b {
    font-size: 16px;

    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .swy6-career-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .swy6-career-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .swy6-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .swy6-bottom-cta {
        grid-template-columns: 250px 1fr;
    }

    .swy6-bottom-actions {
        grid-column: 1 / -1;

        border-left: 0;

        border-top: 1px solid #d9cdbd;

        padding: 12px 0 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .swy6-career-section {
        padding-top: 25px;
    }

    .swy6-career-container,
    .swy6-approach-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* CAREER INTRO */

    .swy6-career-intro h1 {
        font-size: 38px;
    }

    .swy6-career-intro > p {
        font-size: 12px;
    }


    /* IMAGE */

    .swy6-career-image {
        height: 245px;
    }


    /* CAREER CARDS */

    .swy6-career-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        padding-top: 0;
    }

    .swy6-career-card {
        min-height: 165px;

        padding: 12px 7px;
    }

    .swy6-career-icon {
        width: 56px;
        height: 56px;
    }

    .swy6-career-icon svg {
        width: 35px;
        height: 35px;
    }

    .swy6-career-card h2 {
        font-size: 9px;

        min-height: auto;

        margin-bottom: 8px;
    }

    .swy6-career-card p {
        font-size: 9px;
    }


    /* MESSAGE */

    .swy6-career-message {
        padding: 0 18px;

        gap: 12px;

        font-size: 13px;

        text-align: center;
    }

    .swy6-career-message > span {
        width: 50px;
    }


    /* APPROACH */

    .swy6-approach-container > h2 {
        font-size: 36px;
    }

    .swy6-approach-intro {
        font-size: 11px;
    }


    /* APPROACH CARDS */

    .swy6-approach-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .swy6-approach-card {
        min-height: 100px;

        grid-template-columns: 66px 1fr;
    }


    /* FLOW */

    .swy6-learning-flow {
        display: flex;

        justify-content: space-between;

        gap: 4px;

        margin-top: 18px;
    }

    .swy6-flow-line {
        flex: 1;

        min-width: 15px;
    }

    .swy6-flow-icon {
        width: 48px;
        height: 48px;
    }

    .swy6-flow-icon svg {
        width: 29px;
        height: 29px;
    }

    .swy6-flow-step strong {
        font-size: 8px;
    }


    /* BOTTOM CTA */

    .swy6-bottom-cta {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 14px;

        padding: 12px;

        margin-top: 15px;
    }

    .swy6-bottom-image {
        width: 100%;
        height: 160px;
    }

    .swy6-bottom-copy h3 {
        font-size: 28px;
    }

    .swy6-bottom-copy p {
        font-size: 11px;
    }

    .swy6-bottom-actions {
        padding: 0;

        border: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .swy6-career-intro h1 {
        font-size: 34px;
    }

    .swy6-career-grid {
        gap: 8px;
    }

    .swy6-career-card {
        min-height: 155px;
    }

    .swy6-career-card h2 {
        font-size: 8.5px;
    }

    .swy6-career-card p {
        font-size: 8.5px;
    }

    .swy6-career-message {
        font-size: 11px;
    }

    .swy6-flow-icon {
        width: 43px;
        height: 43px;
    }

    .swy6-flow-icon svg {
        width: 26px;
        height: 26px;
    }

}

/* =========================================================
   SAMAGRA WELLNESS — COURSE ADMISSION ENQUIRY
   UNIQUE PREFIX: swy7-
========================================================= */

.swy7-enquiry-page,
.swy7-enquiry-page * {
    box-sizing: border-box;
}


/* =========================================================
   PAGE
========================================================= */

.swy7-enquiry-page {
    width: 100%;
    min-height: 100vh;

    padding: 20px 28px 30px;

    background:
        linear-gradient(
            135deg,
            #f5f9fb 0%,
            #ffffff 48%,
            #f4f8fa 100%
        );

    color: #17243a;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   TOP BAR
========================================================= */

.swy7-topbar {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 8px 12px;
}


/* =========================================================
   LOGO
========================================================= */

.swy7-brand {
    display: inline-flex;

    align-items: center;

    text-decoration: none;
}

.swy7-brand img {
    width: 350px;
    max-width: 100%;
    height: auto;

    display: block;
}


/* =========================================================
   BACK LINK
========================================================= */

.swy7-back-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0647a0;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: opacity .2s ease;
}

.swy7-back-link:hover {
    opacity: .75;
}

.swy7-back-arrow {
    font-size: 25px;

    line-height: 1;

    font-weight: 400;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.swy7-form-wrapper {
    width: 100%;
    max-width: 1080px;

    margin: 0 auto;
}


/* =========================================================
   FORM CARD
========================================================= */

.swy7-form-card {
    width: 100%;

    padding:
        34px
        62px
        24px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 10px 35px rgba(19, 53, 79, .08);

    border: 1px solid rgba(220, 227, 232, .65);
}


/* =========================================================
   HEADING
========================================================= */

.swy7-form-heading {
    margin-bottom: 22px;
}

.swy7-eyebrow {
    color: #0647a0;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .3px;
}

.swy7-gold-line {
    width: 43px;
    height: 2px;

    margin:
        7px 0
        9px;

    background: #c69a58;
}

.swy7-form-heading h1 {
    margin: 0 0 5px;

    color: #073b70;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 43px;

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -.8px;
}

.swy7-form-heading p {
    margin: 0;

    color: #3f4a5d;

    font-size: 16px;

    line-height: 1.4;
}


/* =========================================================
   FORM
========================================================= */

#swy7AdmissionForm {
    width: 100%;
}

.swy7-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 35px;

    margin-bottom: 17px;
}

.swy7-field {
    width: 100%;

    margin-bottom: 16px;
}

.swy7-form-row .swy7-field {
    margin-bottom: 0;
}


/* =========================================================
   LABEL
========================================================= */

.swy7-field label {
    display: block;

    margin-bottom: 7px;

    color: #17243a;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .15px;
}


/* =========================================================
   INPUTS
========================================================= */

.swy7-field input,
.swy7-field select,
.swy7-field textarea {
    width: 100%;

    border: 1px solid #cbd3df;

    border-radius: 5px;

    outline: none;

    background: #ffffff;

    color: #25324a;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.swy7-field input,
.swy7-field select {
    height: 48px;

    padding:
        0 15px;
}

.swy7-field textarea {
    min-height: 76px;

    padding:
        12px 15px;

    resize: vertical;

    line-height: 1.4;
}


/* PLACEHOLDER */

.swy7-field input::placeholder,
.swy7-field textarea::placeholder {
    color: #7d879a;

    opacity: 1;
}


/* FOCUS */

.swy7-field input:focus,
.swy7-field select:focus,
.swy7-field textarea:focus {
    border-color: #1454a2;

    box-shadow:
        0 0 0 3px rgba(20, 84, 162, .08);
}


/* =========================================================
   CUSTOM SELECT
========================================================= */

.swy7-select-wrap {
    position: relative;
}

.swy7-select-wrap::after {
    content: "";

    position: absolute;

    right: 17px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-right: 2px solid #1b2c45;
    border-bottom: 2px solid #1b2c45;

    transform:
        translateY(-65%)
        rotate(45deg);

    pointer-events: none;
}

.swy7-select-wrap select {
    appearance: none;

    -webkit-appearance: none;

    padding-right: 45px;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.swy7-submit {
    width: 100%;
    height: 53px;

    margin-top: 1px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    border: 0;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #0748a5,
            #06429a
        );

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 19px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

.swy7-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(5, 67, 145, .18);
}

.swy7-submit:active {
    transform: translateY(0);
}

.swy7-submit:disabled {
    opacity: .65;

    cursor: wait;

    transform: none;
}

.swy7-submit-arrow {
    font-size: 25px;

    font-weight: 300;

    line-height: 1;
}


/* =========================================================
   CONSENT
========================================================= */

.swy7-consent {
    margin:
        8px 0
        0;

    color: #727d91;

    text-align: center;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   ADVISOR CTA
========================================================= */

.swy7-advisor-cta {
    padding-top: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #303b4d;

    font-size: 16px;

    line-height: 1.4;

    text-align: center;
}

.swy7-advisor-cta a {
    color: #0647a0;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none;
}

.swy7-advisor-cta a span {
    margin-left: 5px;

    font-size: 22px;

    font-weight: 400;
}

.swy7-advisor-cta a:hover {
    text-decoration: underline;
}


/* =========================================================
   BASIN SUCCESS / ERROR STATES
========================================================= */

.swy7-form-success {
    padding: 25px;

    border-radius: 8px;

    background: #edf8f2;

    border: 1px solid #b8dfc7;

    color: #195b36;

    text-align: center;

    font-size: 15px;
}

.swy7-form-error {
    margin-bottom: 15px;

    padding: 12px 15px;

    border-radius: 5px;

    background: #fff3f3;

    border: 1px solid #e5b8b8;

    color: #9b2727;

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .swy7-page {
        padding-left: 18px;
        padding-right: 18px;
    }

    .swy7-brand img {
        width: 280px;
    }

    .swy7-form-card {
        padding:
            30px
            38px
            22px;
    }

    .swy7-form-heading h1 {
        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .swy7-enquiry-page {
        min-height: 100vh;

        padding:
            15px
            14px
            25px;
    }


    /* TOP */

    .swy7-topbar {
        padding:
            0
            3px
            15px;

        align-items: center;
    }

    .swy7-brand img {
        width: 185px;
    }

    .swy7-back-link {
        gap: 5px;

        font-size: 11px;
    }

    .swy7-back-arrow {
        font-size: 18px;
    }


    /* CARD */

    .swy7-form-card {
        padding:
            24px
            18px
            18px;

        border-radius: 11px;
    }


    /* HEADING */

    .swy7-form-heading {
        margin-bottom: 20px;
    }

    .swy7-eyebrow {
        font-size: 12px;
    }

    .swy7-form-heading h1 {
        font-size: 31px;

        line-height: 1.05;

        letter-spacing: -.4px;
    }

    .swy7-form-heading p {
        font-size: 12px;

        line-height: 1.45;
    }


    /* ROWS */

    .swy7-form-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

    .swy7-form-row .swy7-field {
        margin-bottom: 15px;
    }

    .swy7-field {
        margin-bottom: 15px;
    }


    /* INPUTS */

    .swy7-field label {
        font-size: 11px;

        margin-bottom: 6px;
    }

    .swy7-field input,
    .swy7-field select {
        height: 45px;

        font-size: 13px;

        padding:
            0 12px;
    }

    .swy7-field textarea {
        min-height: 85px;

        font-size: 13px;

        padding:
            11px 12px;
    }


    /* BUTTON */

    .swy7-submit {
        height: 48px;

        font-size: 15px;
    }

    .swy7-submit-arrow {
        font-size: 21px;
    }

    .swy7-consent {
        font-size: 9px;

        padding: 0 5px;
    }


    /* CTA */

    .swy7-advisor-cta {
        padding:
            17px 8px 0;

        flex-wrap: wrap;

        font-size: 12px;

        gap: 4px;
    }

    .swy7-advisor-cta a {
        font-size: 13px;
    }

    .swy7-advisor-cta a span {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .swy7-brand img {
        width: 165px;
    }

    .swy7-back-link {
        font-size: 10px;
    }

    .swy7-form-card {
        padding:
            20px
            14px
            17px;
    }

    .swy7-form-heading h1 {
        font-size: 28px;
    }

}

