/*=================================== global css start ===================================*/
:root {
    --mint: #75acb3;
    --teal: #077A7D;
    --deep: #06202B;
    --light-bg: #F0FAFA;
    --white: #ffffff;
    --text: #06202B;
    --muted: #4A7A80;
    --border: rgba(7, 122, 125, .15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Saira", sans-serif;
    background: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
}


/********** section heading css start **********/
.pm-section-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #75acb3;
    margin-bottom: 1rem;
}

.pm-section-label svg {
    width: 13px;
    height: 13px;
    stroke: #75acb3;
}

.pm-section-heading {
    font-size: 44px;
    font-weight: 600;
    color: var(--deep);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: .9rem;
    text-transform: capitalize;
}

.pm-section-heading .hl {
    background: linear-gradient(135deg, var(--teal) 0%, #2ac2c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pm-section-sub {
    font-size: 18px;
    color: var(--muted);
    font-weight: 400;
    max-width: 630px;
    margin: 0 auto;
    line-height: 1.7;
}

/******** section heading css end ********/

/*=================================== global css end ===================================*/




/************************** NAVBAR css start**************************/
.pm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 0;
    background: rgba(240, 250, 250, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.pm-nav.scrolled {
    box-shadow: 0 4px 28px rgba(6, 32, 43, .08);
}

.pm-nav .inner {

    padding: 10px 0;
    /* height: 68px;     */
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.pm-logo {
    width: 16%;
}

.pm-logo .pixelCraftLogo {
    width: 100%;
}

/* Nav links */
.pm-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pm-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: .4rem .75rem;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.pm-links a:hover {
    color: var(--mint);
}

/* CTA buttons */
.pm-nav-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.btn-ghost-teal {
    font-family: "Saira", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: var(--teal);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .45rem 1.1rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-ghost-teal:hover {
    border-color: var(--teal);
    background: rgba(7, 122, 125, .06);
}

.btn-teal {
    font-family: "Saira", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 8px;
    padding: .48rem 1.2rem;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.btn-teal:hover {
    background: #055f62;
    color: #fff;
    box-shadow: 0 4px 18px rgba(7, 122, 125, .28);
}

/* Hamburger */
.pm-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem;
    color: var(--teal);
}

/* Mobile drawer */
.pm-drawer {
    display: none;
    flex-direction: column;
    gap: .15rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.pm-drawer.open {
    display: flex;
}

.pm-drawer a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    /* padding: .5rem .6rem; */
    border-radius: 6px;
    transition: background .15s;
}

.pm-drawer .btn-teal {
    color: white;
}

.pm-drawer a:hover {
    background: var(--light-bg);
}

.pm-drawer .drawer-actions {
    display: flex;
    gap: .6rem;
    margin-top: .5rem;
}

/* ───── PILL BADGE ───── */
.pm-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(122, 226, 207, .18);
    border: 1px solid rgba(7, 122, 125, .2);
    border-radius: 999px;
    padding: .3rem .9rem;
}

.pm-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.75);
    }
}

/************************** NAVBAR css end **************************/


/********************* HERO / BANNER css start *********************/
.pm-hero {
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Gradient background blobs */
.pm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 60% -10%, rgba(122, 226, 207, .28) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 5% 60%, rgba(7, 122, 125, .12) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(122, 226, 207, .18) 0%, transparent 60%);
    pointer-events: none;
}

/* Subtle grid pattern */
.pm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 122, 125, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 122, 125, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.pm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pm-hero-title {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--deep);
    margin: 1.1rem 0 1.3rem;
    text-align: start;
}

.pm-hero-title .highlight {
    background: linear-gradient(135deg, var(--teal) 0%, #2ac2c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pm-hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 2.2rem;
    line-height: 1.7;
    text-align: start;
    width: 95%;
}


/* Hero CTA row */
.pm-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.btn-hero-primary {
    font-family: "Saira", sans-serif;
    font-size: .95rem;
    font-weight: 500;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 10px;
    padding: .75rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 8px 24px rgba(7, 122, 125, .3);
    transition: background .2s, transform .18s, box-shadow .2s;
}

.btn-hero-primary:hover {
    background: #055f62;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7, 122, 125, .36);
}

.btn-hero-primary svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

/* Avatars + social proof */
.pm-social-proof {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--muted);
}

.pm-avatars {
    display: flex;
}

.pm-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
    margin-left: -8px;
}

.pm-avatars img:first-child {
    margin-left: 0;
}

.pm-social-proof strong {
    color: var(--deep);
}

/* ─── Tag strip (Retouched, Enhanced, etc.) ─── */
.pm-tag-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: .6rem 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}



.pm-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .35rem 1rem;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(6, 32, 43, .05);
}

.pm-tag svg {
    width: 13px;
    height: 13px;
    stroke: var(--mint);
}

/* ─── Preview Cards Strip ─── */
.pm-cards-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

.pm-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: rgba(7, 122, 125, .07);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    height: 180px;
    width: 215px;
    margin-bottom: 16px;
}

.pm-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(6, 32, 43, .14);
}

.pm-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-cards-2nd-grid {
    margin-top: 48px;
}

.pm-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem .65rem .55rem;
    background: linear-gradient(to top, rgba(6, 32, 43, .75) 0%, transparent 100%);
    font-size: .72rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Stats row */
.bannerCounter {
    position: relative;

}

.bannerCounter::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #ffffff8e;
    border-radius: 20px;
}

.pm-stats-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 3rem;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 2;
}

.pm-stat {
    text-align: center;
}

.pm-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep);
    letter-spacing: -.04em;
    line-height: 1;
}

.pm-stat-num span {
    color: var(--teal);
}

.pm-stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: .25rem;
}

.pm-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}


/* Animate hero content in */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp .7s ease forwards;
}

.fade-up:nth-child(1) {
    animation-delay: .05s;
}

.fade-up:nth-child(2) {
    animation-delay: .18s;
}

.fade-up:nth-child(3) {
    animation-delay: .3s;
}

.fade-up:nth-child(4) {
    animation-delay: .42s;
}

.fade-up:nth-child(5) {
    animation-delay: .54s;
}

.fade-up:nth-child(6) {
    animation-delay: .66s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************* HERO / BANNER css end *********************/





/********************* FEATURES SECTION css start *********************/
.pm-features {
    background: var(--white);
    position: relative;
}

.pm-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Feature Cards Grid ── */
.pm-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3.5rem;
}


/* ── Single card ── */
.pm-feat-card {
    background: #f4fafa;
    border: .5px solid #002a2b0a;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer;
    position: relative;
}

.pm-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px #06202b1a;
    border-color: #002a2b25;
}

/* Image area */
.pm-feat-img {
    position: relative;
    /* height: 280px; */
    overflow: hidden;
    background: rgba(10, 155, 160, 0.07);
}

.pm-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.pm-feat-card:hover .pm-feat-img img {
    transform: scale(1.06);
}

/* Floating icon badge — bottom-right of image */
.pm-feat-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(6, 32, 43, .15);
    transition: background .25s;
}

.pm-feat-card:hover .pm-feat-badge {
    background: var(--teal);
}

.pm-feat-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    transition: stroke .25s;
}

.pm-feat-card:hover .pm-feat-badge svg {
    stroke: #fff;
}

/* Text area */
.pm-feat-body {
    padding: 1.35rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-feat-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: .45rem;
    letter-spacing: -.01em;
}

.pm-feat-desc {
    font-size: .855rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

/* Subtle image gradient overlay */
.pm-feat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6, 32, 43, .18) 100%);
    pointer-events: none;
}

/* Scroll reveal */
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/************************* FEATURES SECTION css end *************************/


/************************* ABOUT SECTION css start *************************/
.pm-about {
    /* background: #0a2630; */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pm-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(122, 226, 207, .15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 100% 80%, rgba(7, 122, 125, .08) 0%, transparent 60%);
    pointer-events: none;
}


/* ── Left: visual ── */
.pm-about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    flex-shrink: 0;
}

/* faint teal-to-mint gradient wash over the photo */
.pm-about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(122, 226, 207, .22) 0%,
            transparent 45%,
            rgba(6, 32, 43, .18) 100%);
    z-index: 1;
    border-radius: inherit;
}

.pm-about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: inherit;
}

/* Floating stat chip on the photo */
.pm-about-chip {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    box-shadow: 0 8px 28px rgba(6, 32, 43, .12);
    min-width: 160px;
}

.pm-about-chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(122, 226, 207, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-about-chip-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
}

.pm-about-chip-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--deep);
    line-height: 1;
    letter-spacing: -.03em;
}

.pm-about-chip-lbl {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: .1rem;
}

.pm-about-chip.chip-tl {
    top: 12px;
    right: 12px;
}

.pm-about-chip.chip-br {
    bottom: 12px;
    left: 12px;
}


/* ── Right: text ── */

.pm-about-text .pm-section-heading {
    text-align: left;
}

.pm-about-text .pm-section-label {
    justify-content: flex-start;
}

.pm-about-text .pm-section-sub {
    margin: 0 0 1.8rem;
    text-align: left;
}

/* ── 2×2 mini-cards ── */
.pm-about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pm-about-card {
    background: var(--teal);
    border-radius: 16px;
    padding: 16px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.pm-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14, 73, 99, 0.08);
    border-color: rgb(9, 143, 148);
}

.pm-about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(122, 226, 207, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    transition: background .25s;
}

.pm-about-card:hover .pm-about-card-icon {
    background: rgba(7, 122, 125, .12);
}

.pm-about-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--light-bg);
}

.pm-about-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--light-bg);
    margin-bottom: .35rem;
}

.pm-about-card-desc {
    font-size: 14px;
    color: #a2e5ed;
}

/* Reveal */
.about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.about-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .65s ease, transform .65s ease;
}

.about-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/************************* ABOUT SECTION css end *************************/


/************************ How it works css start ************************/
.pm-how {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 60px 0 120px;
}

.pm-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(122, 226, 207, .12) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 0% 100%, rgba(7, 122, 125, .07) 0%, transparent 60%);
    pointer-events: none;
}

.pm-how-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Step tabs pill bar ── */
.pm-step-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0 2.8rem;
}

.pm-step-tab {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--light-bg);
    cursor: pointer;
    transition: background .25s, border-color .25s, box-shadow .25s, transform .2s;
    font-family: "Saira", sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--muted);
    user-select: none;
    position: relative;
}

.pm-step-tab:hover {
    border-color: rgba(7, 122, 125, .35);
    color: var(--teal);
    transform: translateY(-1px);
}

.pm-step-tab.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 8px 24px rgba(7, 122, 125, .3);
}

.pm-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background .25s;
}

.pm-step-tab:not(.active) .pm-step-num {
    background: rgba(7, 122, 125, .1);
    color: var(--teal);
}

/* connector line between tabs */
.pm-step-connector {
    flex: 0 0 32px;
    height: 1px;
    background: var(--border);
    align-self: center;
    flex-shrink: 0;
}

/* ── Tab panels ── */
.pm-how-panels {
    position: relative;
}

.pm-how-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    animation: panelIn .45s ease both;
}

.pm-how-panel.active {
    display: grid;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Text side ── */
.pm-how-step-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(122, 226, 207, .18);
    border: 1px solid rgba(7, 122, 125, .18);
    border-radius: 999px;
    padding: .3rem .9rem;
    margin-bottom: 1.1rem;
}

.pm-how-step-badge span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--teal);
}

.pm-how-panel h3 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--deep);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: .9rem;
}

.pm-how-panel h3 .hl {
    color: var(--mint);
}

.pm-how-panel p {
    margin-bottom: 16px;
}

/* Bullet list */
.pm-how-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.pm-how-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(122, 226, 207, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chk svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
    stroke-width: 2.5;
}

/* ── Visual / right side ── */
.pm-how-panel-visual {
    position: relative;
}

/* main photo card */
.pm-how-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 32, 43, .13);
    position: relative;
    height: 500px;
}

.pm-how-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-how-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(122, 226, 207, .14) 0%, transparent 50%, rgba(6, 32, 43, .18) 100%);
    pointer-events: none;
}

/* floating UI widget card */
.pm-how-widget {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(6, 32, 43, .13);
    padding: 1rem 1.2rem;
    z-index: 3;
    min-width: 185px;
}

.pm-how-widget.wg-bottom {
    bottom: -50px;
    left: -40px;
}

.pm-how-widget.wg-top {
    top: -18px;
    right: -22px;
}


.pm-how-widget-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    margin-bottom: .65rem;
}

.pm-how-widget-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--deep);
}

.pm-how-widget-row svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
}

/* format/quality pill buttons */
.pm-how-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.pm-how-pill {
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: all .15s;
}

.pm-how-pill.on {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

/* Tool chip buttons */
.pm-how-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: .5rem;
}

.pm-how-tool {
    font-size: .72rem;
    font-weight: 600;
    padding: .28rem .75rem;
    border-radius: 8px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all .2s;
    cursor: pointer;
}

.pm-how-tool.active {
    background: rgba(122, 226, 207, .2);
    border-color: rgba(7, 122, 125, .3);
    color: var(--teal);
}

/* Drop zone widget */
.pm-how-drop {
    border: 1.5px dashed rgba(7, 122, 125, .35);
    border-radius: 10px;
    padding: .75rem;
    text-align: center;
    margin-top: .6rem;
    font-size: .75rem;
    color: var(--muted);
    background: var(--light-bg);
}

.pm-how-drop strong {
    color: var(--deep);
    display: block;
    margin-bottom: .2rem;
}

.pm-how-drop-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .45rem .65rem;
    margin-top: .55rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--deep);
}

.pm-how-drop-meta svg {
    width: 13px;
    height: 13px;
    stroke: var(--teal);
}

/* progress bar */
.pm-how-progress {
    margin-top: .5rem;
}

.pm-how-progress-bar {
    height: 5px;
    border-radius: 99px;
    background: var(--light-bg);
    overflow: hidden;
    margin-top: .3rem;
}

.pm-how-progress-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    width: 72%;
}

/* Stats row on panel 3 */
.pm-how-stats {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.pm-how-stat {
    flex: 1;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .8rem .9rem;
    text-align: center;
}

.pm-how-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -.03em;
}

.pm-how-stat-lbl {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: .1rem;
    line-height: 1.3;
}

/* CTA link */
.pm-how-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    transition: gap .2s;
}

.pm-how-cta svg {
    width: 15px;
    height: 15px;
    stroke: var(--teal);
}

.pm-how-cta:hover {
    gap: .75rem;
    color: var(--teal);
}










.ab-section {
    background: var(--light-bg);
    font-family: "Saira", sans-serif;
    overflow: hidden;
    padding: 6rem 0 7rem;
    position: relative;
}

.ab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 5% 30%, rgba(122, 226, 207, .13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 95% 80%, rgba(7, 122, 125, .07) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Header ── */
.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 7px 18px;
    border-radius: 30px;
    background: rgba(122, 226, 207, .15);
    border: 1px solid rgba(7, 122, 125, .18);
    color: var(--teal);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ab-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
}

.ab-title {
    color: var(--deep);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.ab-title span {
    color: var(--teal);
}

.ab-subtitle {
    color: var(--muted);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Comparison wrapper ── */
.comparison-wrapper {
    position: relative;
}

/* Pair selector tabs */
.ab-pair-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.ab-pair-tab {
    font-family: "Saira", sans-serif;
    font-size: .78rem;
    font-weight: 700;
    padding: .38rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
}

.ab-pair-tab:hover {
    border-color: rgba(7, 122, 125, .4);
    color: var(--teal);
}

.ab-pair-tab.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 4px 14px rgba(7, 122, 125, .28);
}

/* ══ THE MAGIC — PhotoMasters clip-path slider ══
   Exact replica: After sits on top full-width, clipped from right.
   Before is underneath. Dragging moves the clip boundary.            */

/* Outer shell */
.comparison-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #07272f;
    /* box-shadow:
        0 2px 0 rgba(7, 122, 125, .22),
        0 32px 72px rgba(6, 32, 43, .20),
        0 8px 20px rgba(6, 32, 43, .12); */
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
    outline: 1px solid rgba(122, 226, 207, .10);
}

/* Both images — same size, stacked */
.before-img,
.after-img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* BEFORE — sits underneath, always fully visible */
.before-img {
    position: relative;
    z-index: 1;
    /* dim/desaturate so the "before" looks unedited */
    filter: brightness(.72) contrast(.82) saturate(.42);
}

/* AFTER wrapper — absolutely covers before, clipped from right by JS */
.after-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* clip-path controlled by JS: inset(0 X% 0 0)
     X=0  → full after image visible (dragged right)
     X=100 → fully hidden (dragged left)               */
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.after-wrapper .after-img {
    width: 100%;
    height: 100%;
    /* after looks vivid/enhanced */
    filter: brightness(1.08) contrast(1.16) saturate(1.45);
}

/* Vertical divider line — absolutely positioned, z-index above both */
.divider {
    position: absolute;
    top: 0;
    left: 50%;
    /* JS sets this as transform translateX */
    width: 3px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    will-change: left;
    box-shadow:
        0 0 0 1px rgba(122, 226, 207, .6),
        0 0 24px rgba(7, 122, 125, .75),
        0 0 8px rgba(255, 255, 255, .5);
}

/* Circular drag handle on the divider */
.slider-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow:
        0 0 0 6px rgba(122, 226, 207, .25),
        0 6px 28px rgba(6, 32, 43, .35);
}

/* Left-pointing chevron */
.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(50% + 4px);
    width: 9px;
    height: 9px;
    border-top: 2.5px solid var(--teal);
    border-right: 2.5px solid var(--teal);
    transform: translateY(-50%) rotate(-135deg);
}

/* Right-pointing chevron */
.slider-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% + 4px);
    width: 9px;
    height: 9px;
    border-top: 2.5px solid var(--teal);
    border-right: 2.5px solid var(--teal);
    transform: translateY(-50%) rotate(45deg);
    animation: none;
    border-radius: 0;
    inset: unset;
    background: none;
    border-left: none;
    border-bottom: none;
}

/* Pulse ring — fades out on first drag */
.slider-pulse-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2.5px solid rgba(7, 122, 125, .45);
    pointer-events: none;
    animation: magic-ring 2.4s ease-in-out infinite;
}

@keyframes magic-ring {

    0%,
    100% {
        opacity: .9;
        transform: scale(1);
    }

    65% {
        opacity: 0;
        transform: scale(1.65);
    }
}

/* Invisible range input covers entire slider for a11y */
.range-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

/* Labels — bottom-anchored exactly like PhotoMasters */
.label {
    position: absolute;
    bottom: 22px;
    z-index: 12;
    padding: 7px 16px;
    border-radius: 30px;
    font-family: "Saira", sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.label svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
}

.label.before {
    left: 20px;
    background: rgba(6, 32, 43, .82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
}

.label.after {
    right: 20px;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 16px rgba(7, 122, 125, .45);
}

/* Responsive heights */
@media(max-width:991px) {

    .before-img,
    .after-img {
        height: 400px;
    }
}

@media(max-width:767px) {

    .before-img,
    .after-img {
        height: 280px;
    }
}

/* ── Floating stats card ── */
.stats-card {
    width: 100%;
    margin: 24px auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(6, 32, 43, .1);
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stat-item h4 {
    color: var(--teal);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -.02em;
    font-family: "Saira", sans-serif;
}

.stat-item span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 500;
}

/* ── Right content column ── */
.service-content h3 {
    color: var(--deep);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -.03em;
    line-height: 1.2;
    font-family: "Saira", sans-serif;
}

.service-content h3 span {
    color: #26b9be;
}

.service-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: .95rem;
}

.feature-box {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--text);
    font-weight: 500;
    font-size: .9rem;
}

.feature-item .fi-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(122, 226, 207, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .fi-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
    stroke-width: 2.8;
}

/* CTA button */
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--teal) 0%, var(--mint) 100%);
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: .92rem;
    font-family: "Saira", sans-serif;
    box-shadow: 0 8px 24px rgba(7, 122, 125, .3);
    transition: transform .25s, box-shadow .25s;
}

.ab-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 14px 32px rgba(7, 122, 125, .38);
}

.ab-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

.before-img,
.after-img {
    height: 400px;
}

/* ── Responsive ── */
@media(max-width:991px) {



    .service-content h3 {
        font-size: 2rem;
    }

   
}

@media(max-width:767px) {

    .before-img,
    .after-img {
        height: 300px;
    }

    .stats-card {
        flex-direction: column;
        gap: 18px;
        padding: 18px 20px;
    }

    .stat-item {
        border: none !important;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .ab-pair-tabs {
        gap: 6px;
    }
}



/*********************** PRICING SECTION css start ***********************/

.pricing-section {
    background:
        radial-gradient(circle at top center,
            rgba(122, 226, 207, .12),
            transparent 45%),
        var(--deep);
}


.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 32px;
    /* height: 100%; */
    transition: .4s ease;
    margin-top: 32px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(122, 226, 207, .4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.pricing-card.featured {
    border: 2px solid var(--teal);
    transform: scale(1.04);
    padding: 0;
    background: linear-gradient(90deg, var(--teal), #2ac2c7, var(--teal));
}

.featuredInnerDiv {
    background: radial-gradient(circle at top center, rgb(122 226 207 / 33%), transparent 45%), var(--deep);
    padding: 35px;
    border-radius: 24px;
    margin-top: 44px;
    height: 93.8%;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.offer-badge {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px;
    /* background: linear-gradient(90deg, var(--mint), var(--teal), var(--mint)); */
    color: white;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 22px 22px 0 0;
}

.plan-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-for {
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
}

.price {
    margin: 14px 0;
}

.price h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.price span {
    color: #ffffff99;
    font-size: 18px;
    font-weight: 400;
}

.billing {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

.btn-pricing {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px;
    margin: 25px 0;
    font-weight: 400;
    transition: .3s;
}

.btn-primary-plan {
    background: linear-gradient(90deg, var(--teal) 0%, #2ac2c7 100%);
    color: white;
}

.btn-primary-plan:hover {
    opacity: .9;
}

.btn-outline-plan {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.btn-outline-plan:hover {
    background: rgba(122, 226, 207, .15);
    color: #2ac2c7;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .85);
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(122, 226, 207, .15);
    color: #2ac2c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
}




****

/************************* FAQ css start *************************/
.pm-faq {
    background: var(--light-bg);
    padding: 6rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.pm-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 50%, rgba(122, 226, 207, .13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(7, 122, 125, .07) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Layout ── */

/* ── Left: 3D pattern visual ── */
.pm-faq-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(145deg, #e8f9f8 0%, #cdf0ec 40%, #b2e8e3 70%, #d4f5f0 100%);
    box-shadow: 0 20px 60px rgba(6, 32, 43, .12);
    flex-shrink: 0;
}

/* subtle inner border glow */
.pm-faq-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(7, 122, 125, .18);
    pointer-events: none;
    z-index: 4;
}

/* background wash gradient on image card */
.pm-faq-visual-bg {
    position: absolute;
    inset: 0;
    background: #086669;
    background: linear-gradient(to right, #086669, #0d9499);
    /* background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 255, 255, .55) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(122, 226, 207, .35) 0%, transparent 65%); */
    z-index: 1;
}

/* Pattern image 1 — top-right, large */
.pm-faq-p1 {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 52%;
    z-index: 2;
    filter: drop-shadow(0 18px 40px rgba(7, 122, 125, .25));
}



/* Pattern image 2 — bottom-left, smaller */
.pm-faq-p2 {
    position: absolute;
    bottom: -40px;
    left: -145px;
    width: 45%;
    filter: drop-shadow(0 14px 30px rgba(7, 122, 125, .2));
    z-index: 1;
}


/* Floating contact chip */
.pm-faq-chip {
    position: absolute;
    bottom: 26px;
    right: 22px;
    z-index: 5;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 8px 28px rgba(6, 32, 43, .12);
    min-width: 160px;
}

.pm-faq-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(122, 226, 207, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-faq-chip-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
}

.pm-faq-chip-label {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
}

.pm-faq-chip-val {
    font-size: .82rem;
    color: var(--deep);
    font-weight: 700;
    margin-top: .05rem;
}

.faqImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ── Right: heading + accordion ── */

.pm-faq-content .pm-section-heading {
    text-align: left;
}

.pm-faq-content .pm-section-label {
    justify-content: flex-start;
}

.pm-faq-content .pm-section-sub {
    text-align: left;
    margin: 0 0 2.2rem;
    max-width: 520px;
}

/* ── Accordion ── */
.pm-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pm-acc-item {
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.pm-acc-item:first-child {
    border-top: 1px solid var(--border);
}

.pm-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: "Saira", sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--deep);
    text-align: left;
    transition: color .2s;
}

.pm-acc-btn:hover {
    color: var(--teal);
}

.pm-acc-btn.open {
    color: var(--teal);
}

/* Arrow icon */
.pm-acc-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, border-color .25s, transform .3s;
}

.pm-acc-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--muted);
    transition: stroke .25s;
}

.pm-acc-btn.open .pm-acc-arrow {
    background: var(--teal);
    border-color: var(--teal);
    transform: rotate(90deg);
}

.pm-acc-btn.open .pm-acc-arrow svg {
    stroke: #fff;
}

/* Body */
.pm-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .3s ease;
}

.pm-acc-body.open {
    max-height: 300px;
    padding-bottom: 1.1rem;
}

.pm-acc-body p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.72;
    margin: 0;
}

/* Support CTA under accordion */
.pm-faq-support {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.pm-faq-support p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
}

.pm-faq-support a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    background: var(--teal);
    border-radius: 8px;
    padding: .45rem 1.1rem;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.pm-faq-support a svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.pm-faq-support a:hover {
    background: #055f62;
    box-shadow: 0 6px 18px rgba(7, 122, 125, .28);
}

/* Reveal */
.faq-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.faq-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-reveal-left {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity .65s ease, transform .65s ease;
}

.faq-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}







/********************** Photo editing section css start **********************/
/* 
.pm-bgeditor {
    background: var(--white);
    padding: 6rem 0 6.5rem;
    position: relative;
    overflow: hidden
}

.pm-bgeditor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 100% 0%, rgba(122, 226, 207, .13) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 0% 100%, rgba(7, 122, 125, .07) 0%, transparent 60%);
    pointer-events: none
}

.pm-bgeditor-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.pm-bgtool-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.2rem 2.4rem 2.4rem;
    margin-top: 3rem;
    box-shadow: 0 8px 40px rgba(6, 32, 43, .06)
}



.pm-bg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem
}


.pm-bg-dropzone {
    border: 2px dashed rgba(7, 122, 125, .3);
    border-radius: 16px;
    background: var(--white);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: border-color .25s, background .25s, box-shadow .25s;
    position: relative;
    overflow: hidden
}

.pm-bg-dropzone.drag-over {
    border-color: var(--teal);
    background: rgba(122, 226, 207, .06);
    box-shadow: 0 0 0 4px rgba(7, 122, 125, .1)
}

.pm-bg-dropzone.has-image {
    padding: 0;
    border-style: solid;
    border-color: rgba(7, 122, 125, .25);
    cursor: default
}

.pm-bg-dropzone img.pm-bg-preview {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    border-radius: 14px
}

.pm-bg-drop-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(122, 226, 207, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.pm-bg-drop-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal)
}

.pm-bg-drop-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: .35rem
}

.pm-bg-drop-sub {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.2rem
}

.pm-bg-browse-btn {
    font-family: "Saira", sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(122, 226, 207, .15);
    border: 1.5px solid rgba(7, 122, 125, .25);
    border-radius: 8px;
    padding: .5rem 1.3rem;
    cursor: pointer;
    transition: background .2s, border-color .2s
}

.pm-bg-browse-btn:hover {
    background: rgba(122, 226, 207, .3);
    border-color: var(--teal)
}

#pmBgFileInput {
    display: none
}

.pm-bg-change-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 32, 43, .7) 0%, transparent 100%);
    padding: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 14px 14px
}

.pm-bg-dropzone.has-image:hover .pm-bg-change-overlay {
    display: flex
}

.pm-bg-change-overlay button {
    font-family: "Saira", sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 7px;
    padding: .38rem .9rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: .35rem
}

.pm-bg-change-overlay button svg {
    width: 12px;
    height: 12px;
    stroke: #fff
}

.pm-bg-change-overlay button:hover {
    background: rgba(255, 255, 255, .3)
}

.pm-bg-result-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pm-bg-result-wrap.transparent-bg {
    background-image: linear-gradient(45deg, #e0f5f3 25%, transparent 25%), linear-gradient(-45deg, #e0f5f3 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e0f5f3 75%), linear-gradient(-45deg, transparent 75%, #e0f5f3 75%);
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0
}

#pmBgCanvas {
    max-width: 100%;
    max-height: 300px;
    display: block;
    border-radius: 12px
}

.pm-bg-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 2rem;
    text-align: center
}

.pm-bg-placeholder svg {
    width: 36px;
    height: 36px;
    stroke: rgba(7, 122, 125, .3)
}

.pm-bg-placeholder p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0
}

.pm-bg-controls {
    margin-top: 1.5rem;
}

.top-ctrl-group {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.pm-bg-ctrl-group label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted)
}

.pm-bg-ctrl-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.changeColourDiv {
    flex-direction: column;
    align-items: start;
}

.pm-bg-mode-toggle {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
    gap: 3px
}

.pm-bg-mode-btn {
    flex: 1;
    font-family: "Saira", sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: .5rem .8rem;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    white-space: nowrap
}

.pm-b g-mode-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor
}

.pm-bg-mode-btn.active {
    background: var(--mint);
    color: #fff;
    box-shadow: 0 3px 12px rgba(7, 122, 125, .25)
}

.pm-bg-color-row {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap
}

.pm-bg-swatch {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, border-color .15s;
    flex-shrink: 0
}

.pm-bg-swatch:hover {
    transform: scale(1.15)
}

.pm-bg-swatch.selected {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(7, 122, 125, .2)
}

.pm-bg-custom-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 2px dashed rgba(7, 122, 125, .3);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white)
}

.pm-bg-custom-color:hover {
    border-color: var(--teal)
}

.pm-bg-custom-color input[type="color"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0
}

.pm-bg-custom-color svg {
    width: 14px;
    height: 14px;
    stroke: var(--muted);
    pointer-events: none
}

.bottom-ctrl-group {
    margin-top: 30px;
    padding-top: 30px;
    border-top: .5px dashed #07797d6c;
}

.pm-bg-actions {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    align-items: center
}

.pm-bg-run-btn {
    font-family: "Saira", sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 10px;
    padding: .65rem 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 6px 20px rgba(7, 122, 125, .28);
    transition: background .2s, transform .15s, box-shadow .2s
}

.pm-bg-run-btn:hover {
    background: #055f62;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(7, 122, 125, .34)
}

.pm-bg-run-btn:active {
    transform: translateY(0)
}

.pm-bg-run-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff
}

.pm-bg-run-btn.loading {
    opacity: .7;
    pointer-events: none
}

.pm-bg-dl-btn {
    font-family: "Saira", sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(122, 226, 207, .15);
    border: 1.5px solid rgba(7, 122, 125, .25);
    border-radius: 10px;
    padding: .65rem 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .45rem;
    transition: background .2s, border-color .2s
}

.pm-bg-dl-btn:hover {
    background: rgba(122, 226, 207, .28);
    border-color: var(--teal)
}

.pm-bg-dl-btn svg {
    width: 15px;
    height: 15px;
    stroke: var(--teal)
}

.pm-bg-dl-btn:disabled {
    opacity: .45;
    pointer-events: none
}

.pm-bg-reset-btn {
    font-family: "Saira", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .63rem 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: border-color .2s, color .2s
}

.pm-bg-reset-btn:hover {
    border-color: rgba(7, 122, 125, .3);
    color: var(--teal)
}

.pm-bg-reset-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor
}

.pm-bg-status {
    margin-top: 1rem;
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 22px
}

.pm-bg-status .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background .3s
}

.pm-bg-status.processing .status-dot {
    background: #f59e0b;
    animation: pulse-dot 1s infinite
}

.pm-bg-status.done .status-dot {
    background: #22c55e
}

.pm-bg-status.error .status-dot {
    background: #ef4444
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.pm-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex-shrink: 0
} */


/********************** Photo editing section css end **********************/





/****************** PNG Colour Studio css start ******************/


.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a9d8f;
    margin-bottom: 14px;
}

.section-badge::before,
.section-badge::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 1.5px;
    background: #2a9d8f;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.section-title .accent {
    color: #2a9d8f;
    font-style: italic;
}

.section-sub {
    font-size: 0.92rem;
    color: #6b7280;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Image card ── */
.image-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 28px 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-canvas {
    width: 100%;
    /* max-width: 320px;
    aspect-ratio: 1 / 1.05; */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    background-color: #FEF9C3;
}

.image-canvas img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.13)); */
    position: relative;
    z-index: 1;
}

/* Hex label */
.hex-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 50px;
    padding: 5px 14px;
}

.hex-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    transition: background-color 0.3s ease;
}

/* ── Palette card ── */
.palette-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 26px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

/* Transparent bg button */
.transparent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #374151;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: "Saira", sans-serif;
    margin-bottom: 20px;
}

.transparent-btn:hover {
    border-color: #2a9d8f;
    color: #2a9d8f;
}

.transparent-btn.active {
    border-color: #2a9d8f;
    background: #f0faf9;
    color: #2a9d8f;
}

.transparent-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: repeating-conic-gradient(#ccc 0% 25%, #fff 0% 50%) 0 / 8px 8px;
    border-radius: 3px;
}

/* Solid colours label */
.palette-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}

.palette-label i {
    font-size: 0.75rem;
    color: #2a9d8f;
}

/* Swatches grid */
.swatches-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
    margin-bottom: 20px;
}

.swatch {
    aspect-ratio: 1;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
}

.swatch:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.swatch.active {
    border-color: #2a9d8f;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.22);
}

.swatch.active::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
}

/* White/light swatches need a subtle border by default */
.swatch[data-light="true"] {
    border-color: #e5e7eb;
}

.swatch[data-light="true"].active {
    border-color: #2a9d8f;
}

/* Divider */
.palette-divider {
    height: 1px;
    background: #f1f3f5;
    margin: 4px 0 16px;
}

/* Custom colour row */
.custom-colour-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 10px;
}

.custom-colour-label i {
    font-size: 0.72rem;
    color: #2a9d8f;
}

.custom-colour-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.hex-input {
    flex: 1;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px;
    padding: 8px 12px;
    font-family: "Saira", sans-serif;
    font-size: 0.82rem;
    color: #374151;
    outline: none;
    transition: border-color 0.2s;
}

.hex-input:focus {
    border-color: #2a9d8f;
}

.colour-picker-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.colour-picker-btn input[type="color"] {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: none;
    cursor: pointer;
    opacity: 0;
}

.colour-picker-preview {
    width: 100%;
    height: 100%;
    transition: background-color 0.2s;
    border-radius: 6px;
}

/* Opacity row */
.opacity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.opacity-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    flex-shrink: 0;
    width: 54px;
}

.opacity-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, #2a9d8f 100%, #e5e7eb 100%);
    outline: none;
    cursor: pointer;
}

.opacity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2a9d8f;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.opacity-value {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    width: 36px;
    text-align: right;
}

/* Info note */
.palette-info {
    font-size: 0.74rem;
    color: #9ca3af;
    line-height: 1.55;
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

.palette-info i {
    color: #2a9d8f;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Download Button ── */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #2a9d8f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 34px;
    font-family: "Saira", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
    box-shadow: 0 4px 18px rgba(42, 157, 143, 0.32);
    margin-top: 22px;
    width: 100%;
    max-width: 280px;
}

.download-btn:hover {
    background: #21867a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(42, 157, 143, 0.38);
    color: #fff;
}

.download-btn:active {
    transform: translateY(0);
}

.download-note {
    font-size: 0.74rem;
    color: #9ca3af;
    margin-top: 8px;
}

/* ── Pricing section placeholder ── */
#pricing {
    padding: 100px 0;
    background: #1a2a3a;
    color: #fff;
    text-align: center;
}

#pricing h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

#pricing p {
    color: #94a3b8;
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
    #colour-studio {
        padding: 56px 0 70px;
    }

    .palette-card,
    .image-card {
        margin-bottom: 20px;
    }

    .swatches-grid {
        gap: 7px;
    }
}







/************************* CTA section css start *************************/
.hero-ai {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(122, 226, 207, .25),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(7, 122, 125, .18),
            transparent 30%),
        linear-gradient(135deg,
            var(--deep),
            #083746,
            var(--teal));
}

.hero-ai::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(122, 226, 207, .08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.hero-ai::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
}

/* .btn-primary-custom {
    background: var(--teal);
    color: white;
    border: none;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 60px;
}

.btn-primary-custom:hover {
    background: var(--muted);
}*/

.btn-outline-custom {
    color: var(--white);
    border: 1px solid var(--teal);
    padding: .75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.hero-features {
    margin-top: 35px;
}

.hero-features li {
    color: rgba(255, 255, 255, .85);
    list-style: none;
    display: inline-flex;
    align-items: center;
    margin-right: 25px;
    font-weight: 500;
}

.hero-features i {
    width: 10px;
    height: 10px;
    background: #75acb3;
    border-radius: 50%;
    margin-right: 10px;
}

.glass-panel {
    position: relative;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 28px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.stat-number {
    color: #00d3d9;
    font-size: 20px;
    font-weight: 600;
}

.stat-label {
    color: #ffffffb3;
    font-size: 15px;
}

.profile-card {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    border: 3px solid rgba(255, 255, 255, .15);
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-cardUL {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    gap: .75rem;
    width: max-content;
}


.profile-cardUL1 {
    margin-bottom: 16px;
    animation: scroll-tags1 80s linear infinite;

}

.profile-cardULdiv {
    margin-top: 24px;
    overflow: hidden;
}

.profile-cardUL2 {
    animation: scroll-tags2 80s linear infinite;
    margin-left: -180%;
}

/* .pm-tag-track {
    display: flex;
    gap: .75rem;
    width: max-content;
} */

.pm-tag-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-tags1 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-tags2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}


/************************* CTA section css end *************************/





/******************** footer section css start ********************/
.tpm-footer {
    position: relative;
    background: linear-gradient(180deg,
            #f8ffff 0%,
            #eefbfa 100%);
    padding-top: 80px;
    overflow: hidden;
}

/* CTA */

.footer-cta {
    margin-bottom: 40px;
    padding-bottom: 60px;
}

.footer-badge {
    display: inline-block;
    background: rgba(122, 226, 207, .18);
    color: var(--teal);
    border: 1px solid rgba(7, 122, 125, .15);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 18px;
}


.footer-cta .pm-section-sub {
    color: var(--muted);
    margin: 0 !important;
}



/* Card */

.footer-card {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 50px rgba(6, 32, 43, .06);
}

.footer-logo {
    width: 60%;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--muted);
    line-height: 1.8;
}

.footer-card h5 {
    color: var(--deep);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--teal);
    color: #fff;
}

/* Contact */

.contact-card {
    background: linear-gradient(135deg,
            rgba(122, 226, 207, .18),
            rgba(7, 122, 125, .08));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text);
}

.contact-item i {
    color: var(--teal);
    font-size: 1.1rem;
}

/* Bottom */

.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.footer-bottom img {
    margin-left: 10px;
}