/* =============================================================
   PURNAM YOGASHALA — HERO SECTION CSS (FINAL v3)
   Architecture: .pys-hero = flex column justify-center
                 .pys-hero__stage = flex child, sets height via padding
                 .pys-hero__content--1 = in normal flow (defines height)
                 .pys-hero__content--2/3 = absolute, anchored to stage top
   ============================================================= */

/* ── Section ─────────────────────────────────────────────────── */
.pys-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #0f0e09;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Background slides ───────────────────────────────────────── */
.pys-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pys-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: pysFade 18s infinite;
    will-change: opacity;
}

.pys-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.pys-hero__slide--1 { animation-delay: 0s;  z-index: 3; }
.pys-hero__slide--2 { animation-delay: 6s;  z-index: 2; }
.pys-hero__slide--3 { animation-delay: 12s; z-index: 1; }

@keyframes pysFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    28%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ── Overlay ─────────────────────────────────────────────────── */
.pys-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,8,4,0.48) 0%, rgba(10,8,4,0.78) 100%);
    z-index: 4;
}

/* ── Stage — flex child, establishes content area ───────────── */
.pys-hero__stage {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 860px;
    padding: 130px 60px 100px;
    box-sizing: border-box;
    /* Do NOT set position:absolute — it must be a flex child */
}

/* ── Slide 1 — normal flow, gives stage its rendered height ─── */
.pys-hero__content--1 {
    display: block;
    opacity: 0;
    animation: pysFadeContent 18s 0s infinite;
}

/* ── Slides 2 & 3 — absolute, overlaid exactly on slide 1 ───── */
.pys-hero__content--2,
.pys-hero__content--3 {
    display: block;
    opacity: 0;
    position: absolute;
    top: 130px;
    left: 60px;
    right: 60px;
}

.pys-hero__content--2 { animation: pysFadeContent 18s 6s  infinite; }
.pys-hero__content--3 { animation: pysFadeContent 18s 12s infinite; }

@keyframes pysFadeContent {
    0%   { opacity: 0; transform: translateY(14px); }
    6%   { opacity: 1; transform: translateY(0);    }
    28%  { opacity: 1; transform: translateY(0);    }
    33%  { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ── Tag pills ───────────────────────────────────────────────── */
.pys-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pys-hero__tag {
    display: inline-block;
    background: rgba(170,35,64,0.28);
    border: 1px solid rgba(250,215,160,0.5);
    color: #FAD7A0;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.4;
}

/* ── H1 ──────────────────────────────────────────────────────── */
.pys-hero__h1 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

/* ── H2 ──────────────────────────────────────────────────────── */
.pys-hero__h2 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.pys-hero__h1-accent {
    display: block;
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 2vw, 19px);
    font-weight: 400;
    font-style: italic;
    color: #FAD7A0;
    margin-top: 6px;
    letter-spacing: 0;
}

/* ── Description ─────────────────────────────────────────────── */
.pys-hero__desc {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin: 14px 0 18px;
    max-width: 560px;
}

.pys-hero__desc strong { color: #FAD7A0; font-weight: 700; }

/* ── Feature bullets ─────────────────────────────────────────── */
.pys-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.pys-hero__features li {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    display: flex;
    align-items: center;
    gap: 7px;
}

.pys-hero__features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #aa2340;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.pys-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.pys-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    line-height: 1;
}

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

.pys-btn--primary {
    background: #aa2340;
    color: #ffffff !important;
}

.pys-btn--outline {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.55);
}

.pys-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.85);
}

/* ── Dots ────────────────────────────────────────────────────── */
.pys-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 60px;
    z-index: 6;
    display: flex;
    gap: 8px;
    align-items: center;
}

.pys-hero__dot {
    display: block;
    height: 3px;
    width: 8px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    animation: pysDot 18s infinite;
}

.pys-hero__dot--1 { animation-delay: 0s;  }
.pys-hero__dot--2 { animation-delay: 6s;  }
.pys-hero__dot--3 { animation-delay: 12s; }

@keyframes pysDot {
    0%   { width: 8px;  background: rgba(255,255,255,0.3); }
    5%   { width: 32px; background: #aa2340; }
    28%  { width: 32px; background: #aa2340; }
    33%  { width: 8px;  background: rgba(255,255,255,0.3); }
    100% { width: 8px;  background: rgba(255,255,255,0.3); }
}

/* ── Scroll cue ──────────────────────────────────────────────── */
.pys-hero__scroll-cue {
    position: absolute;
    bottom: 32px;
    right: 60px;
    z-index: 6;
}

.pys-hero__scroll-cue span {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: pysScrollBounce 1.6s infinite;
}

@keyframes pysScrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.4; }
    50%       { transform: rotate(45deg) translateY(5px); opacity: 1;   }
}

/* ── Old slider classes neutralized ─────────────────────────── */
.hero-slider-wrapper, .hero-slider, .slider-container,
.slider-content, .slider-text, .hero-waves, .slider-heading,
.slider-buttons, .slider-image, .prev-slide, .next-slide,
.slick-dots, .slick-dots li, .slick-dots .dot { display: none !important; }

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-hero__stage {
        padding: 110px 40px 80px;
    }
    .pys-hero__content--2,
    .pys-hero__content--3 {
        top: 110px;
        left: 40px;
        right: 40px;
    }
    .pys-hero__dots { left: 40px; }
    .pys-hero__scroll-cue { right: 40px; }
}

/* =============================================================
   MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
    .pys-hero { justify-content: flex-end; }

    .pys-hero__stage {
        padding: 0 20px 72px;
    }

    .pys-hero__content--2,
    .pys-hero__content--3 {
        top: auto;
        bottom: 72px;
        left: 20px;
        right: 20px;
    }

    .pys-hero__h1  { font-size: clamp(22px, 7vw, 32px); }
    .pys-hero__h2  { font-size: clamp(20px, 6.5vw, 28px); }
    .pys-hero__h1-accent { font-size: 13px; }
    .pys-hero__desc { font-size: 13px; margin: 10px 0 14px; }
    .pys-hero__features { gap: 6px 14px; margin-bottom: 18px; }
    .pys-hero__features li { font-size: 12px; }
    .pys-hero__tag { font-size: 10px; padding: 3px 10px; }
    .pys-hero__dots { left: 20px; bottom: 22px; }
    .pys-hero__scroll-cue { display: none; }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-hero__overlay {
        background: linear-gradient(160deg, rgba(10,8,4,0.5) 0%, rgba(10,8,4,0.85) 100%);
    }
    .pys-hero__features { display: none; }
    .pys-hero__btns { flex-direction: column; align-items: stretch; }
    .pys-btn { justify-content: center; width: 100%; }
    .pys-hero__content--2,
    .pys-hero__content--3 { bottom: 65px; }
    .pys-hero__dots { bottom: 18px; }
}

/* =============================================================
   LANDSCAPE MOBILE
   ============================================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .pys-hero { justify-content: center; }
    .pys-hero__stage { padding: 80px 32px 40px; }
    .pys-hero__content--2,
    .pys-hero__content--3 { top: 80px; left: 32px; right: 32px; bottom: auto; }
    .pys-hero__desc { display: none; }
    .pys-hero__features { display: none; }
    .pys-hero__dots { left: 32px; }
    .pys-hero__scroll-cue { display: none; }
}







/* =============================================================
   PURNAM YOGASHALA — ABOUT SECTION CSS (FINAL)
   ============================================================= */

.pys-about {
    position: relative;
    background: #ffffff;
    padding: 72px 0 60px;
    overflow: hidden;
}

.pys-about::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 260px; height: 320px;
    background-image: url('../img/bg-img/bg-1.png');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.pys-about .container {
    position: relative;
    z-index: 1;
}

/* ── Header ─────────────────────────────────────────────────── */
.pys-about__header {
    text-align: center;
    margin-bottom: 52px;
}

.pys-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170, 35, 64, 0.07);
    border: 1px solid rgba(170, 35, 64, 0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-about__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-about__subheading {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 16px);
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

/* ── Main row: image left, content right ─────────────────────── */
.pys-about__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    margin-bottom: 48px;
}

/* ── Image collage ──────────────────────────────────────────── */
.pys-about__images {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 420px;
}

.pys-about__img-big {
    grid-column: 1;
    grid-row: 1 / 3;
    overflow: hidden;
    border-radius: 40px 8px 8px 8px;
    border: 2px solid var(--primary-color);
}

.pys-about__img-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.pys-about__img-big:hover img {
    transform: scale(1.04);
}

.pys-about__img-stack {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 420px;
}

.pys-about__img-sm {
    flex: 1;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.pys-about__img-sm:first-child {
    border-radius: 8px 8px 8px 8px;
}

.pys-about__img-sm:last-child {
    border-radius: 8px 8px 40px 8px;
}

.pys-about__img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.pys-about__img-sm:hover img {
    transform: scale(1.06);
}

/* Floating "16+ Years" badge */
.pys-about__img-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(170,35,64,0.35);
}

.pys-about__img-badge-num {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.pys-about__img-badge-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
}

/* ── Right content ──────────────────────────────────────────── */
.pys-about__content {
    display: flex;
    flex-direction: column;
}

.pys-about__intro {
    font-family: 'Gabriela', serif;
    font-size: clamp(14px, 1.4vw, 15.5px);
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pys-about__intro strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ── USP 2-column grid ──────────────────────────────────────── */
.pys-about__usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.pys-about__usp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fdf6f7;
    border: 1px solid rgba(170, 35, 64, 0.12);
    border-radius: 10px;
    padding: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pys-about__usp:hover {
    box-shadow: 0 4px 16px rgba(170,35,64,0.1);
    transform: translateY(-2px);
}

.pys-about__usp-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.pys-about__usp-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pys-about__usp-text strong {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.pys-about__usp-text span {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.pys-about__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Stats strip ─────────────────────────────────────────────── */
.pys-about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(170, 35, 64, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.pys-about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(170, 35, 64, 0.12);
    background: #fdf6f7;
    text-align: center;
}

.pys-about__stat:last-child {
    border-right: none;
}

.pys-about__stat-num {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.pys-about__stat-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: block;
}

/* ── Trust bar ───────────────────────────────────────────────── */
.pys-about__trust {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--text-dark);
    border-radius: 12px;
    padding: 20px 32px;
}

.pys-about__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.pys-about__trust-item img {
    height: 44px;
    width: auto;
    opacity: 0.95;
    flex-shrink: 0;
}

.pys-about__trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
}

.pys-about__trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pys-about__trust-text strong {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.pys-about__trust-text span {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.pys-about__trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    margin: 0 24px;
    flex-shrink: 0;
}

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-about {
        padding: 56px 0 48px;
    }
    .pys-about__main {
        gap: 32px;
    }
    .pys-about__images {
        height: 360px;
    }
    .pys-about__img-stack {
        height: 360px;
    }
    .pys-about__usp-grid {
        grid-template-columns: 1fr;
    }
    .pys-about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .pys-about__stat:nth-child(2) {
        border-right: none;
    }
    .pys-about__stat:nth-child(1),
    .pys-about__stat:nth-child(2) {
        border-bottom: 1px solid rgba(170, 35, 64, 0.12);
    }
    .pys-about__trust {
        padding: 20px;
        flex-wrap: wrap;
        gap: 16px;
    }
    .pys-about__trust-divider {
        display: none;
    }
    .pys-about__trust-item {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 14px;
    }
    .pys-about__trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* =============================================================
   MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
    .pys-about {
        padding: 48px 0 40px;
    }
    .pys-about__header {
        margin-bottom: 32px;
    }
    /* Stack: images top, content bottom */
    .pys-about__main {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .pys-about__images {
        height: 300px;
        max-width: 440px;
        margin: 0 auto;
    }
    .pys-about__img-stack {
        height: 300px;
    }
    .pys-about__img-badge {
        bottom: -12px;
        left: -8px;
        padding: 10px 14px;
    }
    .pys-about__img-badge-num {
        font-size: 22px;
    }
    .pys-about__content {
        padding-top: 18px;
    }
    .pys-about__usp-grid {
        grid-template-columns: 1fr;
    }
    .pys-about__btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-about__btns .pys-btn {
        justify-content: center;
        width: 100%;
    }
    .pys-about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .pys-about__stat:nth-child(2) {
        border-right: none;
    }
    .pys-about__stat:nth-child(1),
    .pys-about__stat:nth-child(2) {
        border-bottom: 1px solid rgba(170, 35, 64, 0.12);
    }
    .pys-about__stat {
        padding: 16px 10px;
    }
    .pys-about__stat-num {
        font-size: 24px;
    }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-about__images {
        height: 240px;
        max-width: 100%;
    }
    .pys-about__img-stack {
        height: 240px;
    }
    .pys-about__trust {
        padding: 16px;
        border-radius: 10px;
    }
}


/* =============================================================
   PURNAM YOGASHALA — WHAT YOU WILL LEARN SECTION (FINAL)
   Prefixed: pys-learn__ — zero conflict with any other section
   Desktop 3-col | Tablet 2-col | Mobile 1-col
   ============================================================= */

/* ── Section wrapper ─────────────────────────────────────────── */
.pys-learn {
    padding: 72px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle bg watermark */
.pys-learn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/logo-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.pys-learn .container {
    position: relative;
    z-index: 1;
}

/* ── Section header ──────────────────────────────────────────── */
.pys-learn__header {
    text-align: center;
    margin-bottom: 48px;
}

.pys-learn__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170, 35, 64, 0.07);
    border: 1px solid rgba(170, 35, 64, 0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-learn__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 14px;
}

.pys-learn__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Main 3-column layout ────────────────────────────────────── */
.pys-learn__main {
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}

/* ── Left & right skill columns ──────────────────────────────── */
.pys-learn__left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 20px;
}

.pys-learn__right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 20px;
}

/* ── Individual skill card ───────────────────────────────────── */
.pys-learn__skill {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #f0e8ea;
    border-radius: 10px;
    background: #ffffff;
    transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.pys-learn__skill:hover {
    background: #fef6f7;
    box-shadow: 0 4px 18px rgba(170, 35, 64, 0.09);
    transform: translateY(-2px);
}

/* Left column cards — icon on right, text on left */
.pys-learn__skill--left {
    flex-direction: row-reverse;
    text-align: right;
}

.pys-learn__skill--left .pys-learn__skill-tags {
    justify-content: flex-end;
}

/* Right column cards — icon on left, text on right */
.pys-learn__skill--right {
    flex-direction: row;
    text-align: left;
}

/* ── Skill icon ──────────────────────────────────────────────── */
.pys-learn__skill-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    transition: transform 0.22s ease;
}

.pys-learn__skill-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
}

.pys-learn__skill:hover .pys-learn__skill-icon {
    transform: scale(1.08);
}

/* ── Skill text body ─────────────────────────────────────────── */
.pys-learn__skill-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pys-learn__skill-title {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.pys-learn__skill-desc {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.pys-learn__skill-tags {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pys-learn__skill-tags li {
    font-family: 'Kanit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(170, 35, 64, 0.06);
    border: 1px solid rgba(170, 35, 64, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.4;
}

/* ── Center column — circular image ─────────────────────────── */
.pys-learn__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
}

.pys-learn__center-ring-outer {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    border: 2px dashed rgba(170, 35, 64, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pys-learn__center-ring-inner {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    border: 3px solid rgba(170, 35, 64, 0.35);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(170, 35, 64, 0.14);
    flex-shrink: 0;
}

.pys-learn__center-ring-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.pys-learn__center-ring-inner:hover img {
    transform: scale(1.05);
}

.pys-learn__center-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.pys-learn__center-om {
    font-size: 22px;
    color: rgba(170, 35, 64, 0.28);
    font-family: 'Gabriela', serif;
    line-height: 1;
}

.pys-learn__center-caption strong {
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pys-learn__center-caption span {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #888;
}

/* ── Footer CTA bar ──────────────────────────────────────────── */
.pys-learn__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fdf6f7;
    border: 1px solid rgba(170, 35, 64, 0.12);
    border-radius: 12px;
    padding: 22px 28px;
    flex-wrap: wrap;
}

.pys-learn__footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 240px;
}

.pys-learn__footer-title {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.pys-learn__footer-sub {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.pys-learn__footer-sub strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pys-learn__footer-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* outline-dark variant for light backgrounds */
.pys-btn--outline-dark {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.pys-btn--outline-dark:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
}

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-learn {
        padding: 56px 0 48px;
    }
    .pys-learn__header {
        margin-bottom: 36px;
    }
    .pys-learn__main {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .pys-learn__left {
        padding-right: 0;
        order: 1;
    }
    .pys-learn__center {
        display: flex;
        order: 2;
        padding: 24px 0 16px;
    }
    .pys-learn__center-ring-outer {
        width: 170px;
        height: 170px;
    }
    .pys-learn__center-ring-inner {
        width: 152px;
        height: 152px;
    }
    .pys-learn__right {
        padding-left: 0;
        order: 3;
    }
    .pys-learn__skill--left {
        flex-direction: row;
        text-align: left;
    }
    .pys-learn__skill--left .pys-learn__skill-tags {
        justify-content: flex-start;
    }
    .pys-learn__footer {
        padding: 18px 20px;
    }
}

/* =============================================================
   MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
    .pys-learn {
        padding: 48px 0 40px;
    }
    .pys-learn__main {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .pys-learn__left {
        padding: 0;
        order: 1;
    }
    .pys-learn__center {
        display: flex;
        order: 2;
        padding: 20px 0 14px;
    }
    .pys-learn__center-ring-outer {
        width: 150px;
        height: 150px;
    }
    .pys-learn__center-ring-inner {
        width: 134px;
        height: 134px;
    }
    .pys-learn__right {
        padding: 0;
        order: 3;
    }
    .pys-learn__skill--left {
        flex-direction: row;
        text-align: left;
    }
    .pys-learn__skill--left .pys-learn__skill-tags {
        justify-content: flex-start;
    }
    .pys-learn__skill {
        padding: 12px;
    }
    .pys-learn__skill-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 9px;
    }
    .pys-learn__skill-icon svg {
        width: 19px;
        height: 19px;
    }
    .pys-learn__skill-title {
        font-size: 14px;
    }
    .pys-learn__skill-desc {
        font-size: 12.5px;
    }
    .pys-learn__footer {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        gap: 16px;
    }
    .pys-learn__footer-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-learn__footer-btns .pys-btn,
    .pys-learn__footer-btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-learn__skill-tags li {
        font-size: 9px;
        padding: 1px 6px;
    }
    .pys-learn__footer-title {
        font-size: 14px;
    }
    .pys-learn__footer-sub {
        font-size: 12px;
    }
}


/* Counter Section */
.counter-section {
    position: relative;
    padding: 40px 0;
    background: url('../img/home/2.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 calc(16.666% - 30px);
    /* 6 columns by default */
    min-width: 180px;
}

@media (max-width: 991px) {
    .counter-item {
        flex: 1 1 calc(33.333% - 30px);
        /* 3 columns on tablet */
    }

    .counter,
    .svg-container {
        width: 170px;
        height: 170px;
    }

    .number {
        font-size: 28px;
    }

    .text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .counter-wrapper {
        gap: 15px;
    }

    .counter-item {
        flex: 1 1 calc(50% - 15px);
        /* 2 columns on mobile */
        min-width: 160px;
    }

    .counter {
        width: 160px;
        height: 160px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 26px;
    }

    .text {
        font-size: 12px;
    }
}

.counter-section:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    opacity: 0.6;
    top: 0;
}

/* =============================================================
   PURNAM YOGASHALA — CERTIFICATION SECTION
   pys-cert__ prefix — no conflicts
   ============================================================= */

.pys-cert {
    padding: 72px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pys-cert::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.pys-cert .container {
    position: relative;
    z-index: 1;
}

/* Header */
.pys-cert__header {
    margin-bottom: 44px;
}

.pys-cert__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #aa2340;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-cert__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-cert__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* Main 3-col grid */
.pys-cert__main {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}

/* Left col */
.pys-cert__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 16px;
}

/* Right col */
.pys-cert__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
}

/* Points */
.pys-cert__point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #f0e8ea;
    border-radius: 10px;
    background: #ffffff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pys-cert__point:hover {
    background: #fef6f7;
    box-shadow: 0 4px 16px rgba(170,35,64,0.08);
}

/* Left points — icon on right, text on left */
.pys-cert__point--left {
    flex-direction: row-reverse;
    text-align: right;
}

/* Right points — icon on left, text on right */
.pys-cert__point--right {
    flex-direction: row;
    text-align: left;
}

.pys-cert__point-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.pys-cert__point:hover .pys-cert__point-icon {
    transform: scale(1.08);
}

.pys-cert__point-body h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px;
    line-height: 1.3;
}

.pys-cert__point-body p {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Center certificate */
.pys-cert__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
}

.pys-cert__cert-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(170,35,64,0.2);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pys-cert__cert-frame:hover {
    transform: scale(1.02);
}

.pys-cert__cert-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.pys-cert__rys-badge {
    background: var(--primary-color);
    color: #FAD7A0;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

/* Stats row */
.pys-cert__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.pys-cert__stat {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pys-cert__stat-num {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.pys-cert__stat-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: block;
}

/* CTA buttons */
.pys-cert__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-cert {
        padding: 56px 0 48px;
    }
    .pys-cert__main {
        grid-template-columns: 1fr 260px 1fr;
        gap: 0;
    }
    .pys-cert__left {
        padding-right: 16px;
    }
    .pys-cert__right {
        padding-left: 16px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================
   MOBILE (≤ 768px) — certificate first, then cards
   ============================================================= */
@media (max-width: 768px) {
    .pys-cert {
        padding: 48px 0 40px;
    }
    .pys-cert__header {
        margin-bottom: 28px;
    }
    /* Certificate FIRST on mobile */
    .pys-cert__main {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .pys-cert__center {
        order: 1;
        padding: 0 0 20px;
    }
    .pys-cert__left {
        order: 2;
        padding-right: 0;
    }
    .pys-cert__right {
        order: 3;
        padding-left: 0;
    }
    /* All points left-aligned on mobile */
    .pys-cert__point--left {
        flex-direction: row;
        text-align: left;
    }
    .pys-cert__point-body h3 {
        font-size: 13px;
    }
    .pys-cert__point-body p {
        font-size: 12px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .pys-cert__stat-num {
        font-size: 16px;
    }
    .pys-cert__btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-cert__btns .pys-btn,
    .pys-cert__btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-cert__point {
        padding: 11px;
    }
    .pys-cert__point-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 14px;
        border-radius: 8px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .pys-cert__stat {
        padding: 12px 8px;
    }
    .pys-cert__stat-num {
        font-size: 14px;
    }
    .pys-cert__stat-lbl {
        font-size: 10px;
    }
}

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* Align progress */
}

svg {
    width: 100%;
    height: 100%;
}

circle {
    fill: none;
    stroke-width: 15;
}

.static-circle {
    stroke: var(--secondary-color);
    /* Outer static circle */
    opacity: 1;
}

.progress-circle {
    stroke: var(--primary-color);
    /* Progress circle */
    stroke-dasharray: 628;
    /* 2 * π * r (where r = 100) */
    stroke-dashoffset: 628;
    /* Start as fully hidden */
    transition: stroke-dashoffset 1.5s ease;
}

.number-section {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 2;
    font-family: 'kanit';
    font-weight: 600;
}

.number {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 2;
    font-family: 'kanit';
    font-weight: 600;
}

.text {
    font-size: 16px;
    margin-top: 5px;
    color: var(--text-light);
    font-family: 'Gabriela';
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .counter {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 20px;
    }

    .text {
        font-size: 14px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .counter {
        width: 160px;
        height: 160px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 28px;
    }

    .text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .counter {
        width: 150px;
        height: 150px;
    }

    .svg-container {
        width: 150px;
        height: 150px;
    }

    .number {
        font-size: 20px;
    }

    .text {
        font-size: 12px;
    }
}

/* Our Retreats Start */

.retreat {
    padding: 28px 0 63px 0;
    position: relative;
}


.retreat:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/retreat2.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 227px;
    height: 506px;
}

.retreat:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/retreat1.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 227px;
    height: 506px;
}


.retreat .retreat_head {
    position: relative;
    font-family: 'Kanit';
    font-size: 30px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 1px 1px 2px var(--text-dark);
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.retreat .retreat_subhead {
    position: relative;
    font-family: 'Kanit';
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 12px;
    z-index: 1;
    transition: all 0.5s ease;
}

.retreat_box .time_price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 350px;
    background: var(--text-dark);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    padding: 4px 10px;
    margin-bottom: 8px !important;
    margin: auto;
    z-index: 1;
    transition: all 0.5s ease;

}

.retreat_box .time_price .time {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.retreat_box .time_price .price {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.retreat_box .time_price .price span {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}


.retreat .common-heading {
    margin-bottom: 55px;
}


.retreat .retreat_box {
    position: relative;
    padding: 13px 9px;
    height: 520px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--primary-color);
    /* Default background color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
    /* Smooth transition */
}

/* Fixed Bottom Elements */
.retreat .retreat_box p.text-justify.text-white {
    position: absolute;
    bottom: 90px;
    left: 15px;
    right: 15px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.retreat .retreat_box .btn_sec {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

/* Image container inside the box */
.retreat .retreat_box .retreat_img {
    opacity: 1;
    visibility: visible;
    height: 200px;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out, visibility 0.5s ease-in-out;
    margin-bottom: 15px;
}

/* Image inside the box */
.retreat .retreat_box .retreat_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* On hover, set the image as the background */
.retreat .retreat_box:hover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
}

/* Fade in background overlay smoothly */
.retreat .retreat_box:hover::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Hide the actual image on hover with smooth effect */
.retreat .retreat_box:hover .retreat_img img {
    opacity: 0;
    visibility: hidden;
}

.retreat .retreat_box:hover .retreat_img {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
}


.retreat .retreat_box .extra-details {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.retreat .retreat_box:hover .extra-details {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

@media only screen and (max-width:1400px) {
    .retreat .retreat_box {
        height: 550px;
    }
}

@media only screen and (max-width:767px) {
    .retreat .retreat_box {
        margin-bottom: 20px;
        height: 550px;
    }
}

/* Our Retreats End */

/* =============================================================
   PURNAM YOGASHALA — WHY CHOOSE SECTION
   pys-why__ prefix — no conflicts
   Tabbed content | Images right | Mobile responsive
   ============================================================= */

.pys-why {
    padding: 72px 0 0;
    background: #ffffff;
    position: relative;
}

.pys-why .container {
    position: relative;
    z-index: 1;
}

/* Header */
.pys-why__header {
    text-align: center;
    margin-bottom: 36px;
}

.pys-why__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #aa2340;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-why__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-why__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(12px, 1.4vw, 14px);
    color: #666;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* Tabs wrapper */
.pys-why__tabs-wrap {
    background: #ffffff;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    border: 1px solid rgba(170,35,64,0.15);
}

/* Tabs row */
.pys-why__tabs {
    display: flex;
    background: #f5f0f1;
    border-bottom: 1px solid rgba(170,35,64,0.15);
}

.pys-why__tab {
    flex: 1;
    padding: 14px 8px;
    background: transparent;
    border: none;
    color: rgba(0,0,0,0.45);
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-right: 0.5px solid rgba(255,255,255,0.06);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.3;
}

.pys-why__tab:last-child {
    border-right: none;
}

.pys-why__tab:hover {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
}

.pys-why__tab--active {
    background: #aa2340 !important;
    color: #ffffff !important;
}

/* Body — 2 col */
.pys-why__body {
     display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    min-height: 0;
}

/* Left: tab panels */
.pys-why__content-area {
   padding: 28px 28px 24px;
    border-right: 1px solid rgba(170,35,64,0.12);
    background: #ffffff;
    align-self: start;
    height: fit-content;
}

.pys-why__panel {
    display: none;
}

.pys-why__panel--active {
    display: block;
}

.pys-why__panel-title {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #aa2340;
    margin: 0 0 10px;
    line-height: 1.3;
}

.pys-why__panel-text {
    font-family: 'Gabriela', serif;
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0 0 16px;
}

.pys-why__panel-text strong {
    color: #aa2340;
    font-weight: 700;
}

.pys-why__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pys-why__points li {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.pys-why__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #aa2340;
    border-radius: 50%;
    flex-shrink: 0;
}

.pys-why__points li strong {
   color: var(--text-dark);
    font-weight: 700;
}

/* Right: images */
.pys-why__media {
    padding: 16px;
    background: #fdf6f7;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.pys-why__img-big {
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.pys-why__img-big img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.pys-why__img-big:hover img {
    transform: scale(1.03);
}

.pys-why__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex-shrink: 0;
}

.pys-why__img-sm {
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid rgba(255,255,255,0.1);
}

.pys-why__img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pys-why__img-sm:hover img {
    transform: scale(1.05);
}

/* Quote box */
.pys-why__quote {
    background: rgba(170, 35, 64, 0.06);
    border: 1px solid rgba(170, 35, 64, 0.18);
    border-left: 3px solid #aa2340;
    border-radius: 0 8px 8px 0;
    padding: 12px 14px;
    margin-top: 14px;
}

.pys-why__quote-text {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 6px;
}

.pys-why__quote-author {
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    color: #aa2340;
    font-weight: 500;
}

/* Footer */
.pys-why__footer {
    background: #aa2340;
    border-radius: 0 0 14px 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}

.pys-why__footer-text {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
}

.pys-why__footer-text strong {
    color: #ffffff;
    font-weight: 700;
}

.pys-why__footer-btns {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-why {
        padding: 56px 0 0;
    }
    .pys-why__body {
        grid-template-columns: 1fr 220px;
    }
    .pys-why__content-area {
        padding: 22px 20px 20px;
    }
}

/* =============================================================
   MOBILE (≤ 768px) — images first, content below
   ============================================================= */
@media (max-width: 768px) {
    .pys-why {
        padding: 48px 0 0;
    }
    .pys-why__tabs-wrap {
        border-radius: 10px 10px 0 0;
    }
    .pys-why__tab {
        font-size: 10px;
        padding: 10px 4px;
        flex-direction: column;
        gap: 3px;
    }
    .pys-why__tab i {
        font-size: 14px;
    }
    .pys-why__body {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    /* Images come first on mobile */
    .pys-why__media {
        order: 1;
        padding: 12px;
        border-bottom: 0.5px solid rgba(255,255,255,0.06);
    }
    .pys-why__content-area {
        order: 2;
        border-right: none;
        padding: 18px 16px;
    }
    .pys-why__panel-title {
        font-size: 14px;
    }
    .pys-why__panel-text {
        font-size: 13px;
    }
    .pys-why__footer {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        border-radius: 0 0 10px 10px;
    }
    .pys-why__footer-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-why__footer-btns .pys-btn,
    .pys-why__footer-btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-why__tab span {
        display: none;
    }
    .pys-why__img-row {
        grid-template-columns: 1fr 1fr;
    }
    .pys-why__footer-text {
        font-size: 12px;
    }
}

/* Why Choose End */


/* Join US Start */

.pys-join {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    background: url('../img/home/2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.pys-join::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--primary-color) 92%, transparent) 0%,
        color-mix(in srgb, var(--secondary-color) 75%, transparent) 100%);
    z-index: 0;
}

.pys-join__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px 1fr;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: center;
    gap: 40px;
}

.pys-join__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.2);
}

.pys-join__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.pys-join__tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-family: 'Kanit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    align-self: flex-start;
    backdrop-filter: blur(4px);
}

.pys-join__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}

.pys-join__heading span {
    color: var(--secondary-color);
}

.pys-join__text {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.pys-join__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.pys-join__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.pys-join__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.pys-join__btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.pys-join__btn--primary {
    background: #ffffff;
    color: var(--primary-color) !important;
}

.pys-join__btn--outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.6);
}

.pys-join__btn--outline:hover {
    background: rgba(255,255,255,0.12);
}

@media (max-width: 992px) {
    .pys-join__inner {
        grid-template-columns: 200px 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .pys-join {
        padding: 36px 0;
        background-attachment: scroll;
    }
    .pys-join__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .pys-join__img-wrap {
        max-width: 240px;
        margin: 0 auto;
    }
    .pys-join__tag {
        align-self: center;
    }
    .pys-join__date {
        justify-content: center;
    }
    .pys-join__btns {
        justify-content: center;
    }
    .pys-join__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pys-join__heading {
        font-size: 20px;
    }
    .pys-join__text {
        font-size: 13px;
    }
}

/* Join US End */

/* Accomodation */

.pys-acc {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-acc__header {
    margin-bottom: 40px;
}

.pys-acc__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.07);
    border: 1px solid rgba(170,35,64,0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-acc__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-acc__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

.pys-acc__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.pys-acc__feat {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pys-acc__feat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.pys-acc__feat-title {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.pys-acc__feat-text {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Slider */
.pys-acc__slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.pys-acc__track-outer {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
}

.pys-acc__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.pys-acc__slide {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 4px;
    box-sizing: border-box;
}

.pys-acc__slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.pys-acc__slide-label {
    display: block;
    text-align: center;
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
    padding: 0 4px;
}

.pys-acc__arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(170,35,64,0.2);
    color: #aa2340;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.pys-acc__arrow:hover {
    background: #aa2340;
    color: #ffffff;
}

.pys-acc__arrow--prev { left: -14px; }
.pys-acc__arrow--next { right: -14px; }

.pys-acc__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.pys-acc__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(170,35,64,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    padding: 0;
}

.pys-acc__dot--active {
    background: #aa2340;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .pys-acc__slide {
        flex: 0 0 50%;
        width: 50%;
    }
    .pys-acc__slide img {
        height: 180px;
    }
    .pys-acc__arrow--prev { left: -10px; }
    .pys-acc__arrow--next { right: -10px; }
}

@media (max-width: 480px) {
    .pys-acc__slide {
        flex: 0 0 80%;
        width: 80%;
    }
    .pys-acc__slide img {
        height: 160px;
    }
}

@media (max-width: 992px) {
    .pys-acc { padding: 56px 0 48px; }
    .pys-acc__features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pys-acc__slider { height: 360px; }
}

@media (max-width: 768px) {
    .pys-acc { padding: 48px 0 40px; }
    .pys-acc__features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pys-acc__feat { padding: 14px 12px; }
    .pys-acc__slider { height: 260px; }
    .pys-acc__arrow { width: 36px; height: 36px; font-size: 13px; }
}

@media (max-width: 480px) {
    .pys-acc__features { grid-template-columns: 1fr; }
    .pys-acc__slider { height: 220px; }
}

/* Yoga Teacher Start */

.yoga_teacher {
    padding: 22px 0 31px 0;
}

.teacher .item {
    padding: 20px;
}

.yoga_teacher .teacher_img {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 0;
    height: 350px;
    /* Uniform height for the container */
}

.yoga_teacher .teacher_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the container without distortion */
}

.yoga_teacher .teacher_name {
    position: relative;
    top: -15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--secondary-color);
    border-radius: 50px;
    font-family: 'Gabarito';
    font-size: 18px;
    padding: 8px 15px;
    margin-bottom: 0;
    width: auto;
    display: block;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 1;

}

.yoga_teacher .teacher .teacher_desig {
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--text-light);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    padding: 10px 5px 15px;
    margin-left: auto;
    margin-right: auto;
    top: -20px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.yoga_teacher .teacher .see_more_btn {
    display: block;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    height: 35px;
    width: 35px;
    border-radius: 100%;
    color: var(--primary-color);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    top: -30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.yoga_teacher .teacher .see_more_btn::before,
.yoga_teacher .teacher .see_more_btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.yoga_teacher .teacher .see_more_btn::after {
    animation-delay: 1s;
}

.yoga_teacher .teacher .see_more_btn:hover {
    transform: scale(1.2);
}

/* Yoga Teacher End */

/* About Founder Start */
.about-founder {
    background-color: #f9f9f9;
}

.about-founder .title {
    color: var(--primary-color);
}

.about-founder .founder-img-animation {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-founder .founder-img-animation .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    /* Vibrant coral base color from screenshot */
    border-radius: 60px;
    /* Rounded square (not perfect circle) */
    opacity: 0;
    z-index: 1;
    animation: rippleWave 4s infinite ease-out;
}

.about-founder .founder-img-animation .ripple-1 {
    animation-delay: 0s;
}

.about-founder .founder-img-animation .ripple-2 {
    animation-delay: 1.3s;
}

.about-founder .founder-img-animation .ripple-3 {
    animation-delay: 2.6s;
}

@keyframes rippleWave {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.about-founder .founder-img {
    width: 250px;
    height: 250px;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.about-founder .founder-img:hover {
    transform: scale(1.05);
}

.about-founder .founder-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-founder .founder-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-founder .founder-quote {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

/* About Founder End */

/* Early Bird Discount Start */
.early-bird-discount {
    position: relative;
    padding: 100px 0;
    background: url('../img/home/11.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.early-bird-discount .eb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 90%, transparent) 0%, color-mix(in srgb, var(--secondary-color) 80%, transparent) 100%);
    z-index: 1;
}

.early-bird-discount .eb-content {
    z-index: 2;
}

.early-bird-discount .eb-heading {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.early-bird-discount .eb-title {
    font-family: 'kanit', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.early-bird-discount .eb-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 35px;
    font-family: 'Gabarito';
    opacity: 0.95;
}

.early-bird-discount .eb-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.early-bird-discount .eb-btn::before,
.early-bird-discount .eb-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.early-bird-discount .eb-btn::after {
    animation-delay: 1s;
}

.early-bird-discount .eb-btn:hover {
    background: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.early-bird-discount .eb-btn i {
    transition: transform 0.3s ease;
}

.early-bird-discount .eb-btn:hover i {
    transform: rotate(20deg) scale(1.2);
}

@media (max-width: 991px) {
    .early-bird-discount .eb-title {
        font-size: 40px;
    }

    .about-founder .founder-img-animation {
        width: 280px;
        height: 280px;
    }

    .about-founder .founder-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 767px) {
    .early-bird-discount {
        padding: 60px 0;
        background-attachment: scroll;
        /* Better for mobile */
    }

    .early-bird-discount .eb-title {
        font-size: 30px;
    }

    .early-bird-discount .eb-heading {
        font-size: 18px;
    }

    .early-bird-discount .eb-desc {
        font-size: 16px;
    }

    .about-founder .founder-img-animation {
        width: 220px;
        height: 220px;
        margin: 20px auto;
    }

    .about-founder .founder-img {
        width: 170px;
        height: 170px;
        border-radius: 30px;
    }

    .about-founder .founder-img-animation .ripple {
        border-radius: 40px;
    }
}

/* Early Bird Discount End */

/* Spiritual Leader Start */
.spiritual-leader .spiritual-leader-desc {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.6;
}

/* Spiritual Leader End */

/* Student Review */
.pys-reviews {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-reviews__header {
    margin-bottom: 36px;
}

.pys-reviews__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.07);
    border: 1px solid rgba(170,35,64,0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-reviews__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-reviews__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.pys-reviews__rating-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 12px;
    padding: 20px 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.pys-reviews__score {
    text-align: center;
}

.pys-reviews__score-num {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pys-reviews__stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin: 5px 0 4px;
    color: #f4b400;
    font-size: 16px;
}

.pys-reviews__score-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #666;
}

.pys-reviews__rating-divider {
    width: 1px;
    height: 56px;
    background: rgba(170,35,64,0.15);
    flex-shrink: 0;
}

.pys-reviews__google-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.pys-reviews__google-brand strong {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.pys-reviews__g-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.pys-reviews__google-info p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    margin: 0 0 5px;
}

.pys-reviews__google-info a {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

.pys-reviews__google-info a:hover {
    text-decoration: underline;
}

.pys-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pys-reviews__card {
    background: #ffffff;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s;
}

.pys-reviews__card:hover {
    box-shadow: 0 4px 20px rgba(170,35,64,0.08);
}

.pys-reviews__card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pys-reviews__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(170,35,64,0.15);
}

.pys-reviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.pys-reviews__card-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pys-reviews__reviewer-name {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.pys-reviews__reviewer-loc {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #888;
}

.pys-reviews__g-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.pys-reviews__stars {
    color: #f4b400;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.pys-reviews__text {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    flex: 1;
}

.pys-reviews__toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.pys-reviews__card--cta {
    background: rgba(66,133,244,0.04);
    border-color: rgba(66,133,244,0.2);
    align-items: center;
    text-align: center;
    justify-content: center;
}

.pys-reviews__cta-g {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
}

.pys-reviews__cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.pys-reviews__cta-text {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.pys-reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #4285F4;
    color: #ffffff !important;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

.pys-reviews__cta-btn:hover {
    opacity: 0.88;
}

@media (max-width: 992px) {
    .pys-reviews { padding: 56px 0 48px; }
    .pys-reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .pys-reviews__rating-divider { display: none; }
}

@media (max-width: 768px) {
    .pys-reviews { padding: 48px 0 40px; }
    .pys-reviews__grid { grid-template-columns: 1fr; }
    .pys-reviews__rating-bar { flex-direction: column; gap: 14px; text-align: center; }
    .pys-reviews__google-brand { justify-content: center; }
}

/* Student Review */

/* Recent Blogs Start */
.blog {
    background-color: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-date span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.blog-date i {
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.view-all-btn::before,
.view-all-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.view-all-btn::after {
    animation-delay: 1s;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

/* Recent Blogs End */

/* Gallery */


.gallery {
    padding: 40px 0;
}

.photo-gallery {}


.photo-gallery .photo_box {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    object-fit: cover;
}

.photo-gallery .photo_box img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}


.photo-gallery .owl-carousel .item {
    max-width: 355px;
    margin: auto;
}

.photo-gallery.owl-carousel .owl-stage {
    display: flex;
}

.photo-gallery .owl-carousel .owl-item {
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
}

.photo-gallery .owl-carousel .owl-item.active {
    transform: scale(1);
}


/* Gallery */

/* Faq */

.faq {
    padding: 20px 0 110px;
    background: var(--secondary-color) url(../img/faq_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.faq #accordionExample {
    max-width: 800px;
    margin: auto;
    margin-top: 32px !important;
}

.faq .accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 10px;
}

.faq .accordion-body {
    margin-left: 50px;
    background: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.faq .accordion-header {
    margin-bottom: 0;
    margin-right: 98px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.faq .accordion-button::after {
    width: 20.63px;
    height: 25.47px;
    background-image: url(../img/close.png);
}

.faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px;
}

.faq .accordion-button {
    font-size: 16px;
    color: var(--text-light);
    background-color: var(--primary-color);
    border: 0;
    border-radius: 50px;
    padding: 10px;
    border: 2px solid var(--text-light);
}

.faq .accordion-button span {
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
}

.faq .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.faq .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

@media only screen and (max-width: 767px) {
    .faq .accordion-header {
        margin-bottom: 0;
        margin-right: 0;
    }

    .faq .accordion-body {
        margin-left: 0;
    }
}

/* Faq */

.pys-faq {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-faq__header {
    margin-bottom: 44px;
}

.pys-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.07);
    border: 1px solid rgba(170,35,64,0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-faq__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-faq__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.pys-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.pys-faq__item {
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s;
}

.pys-faq__item--open {
    border-color: rgba(170,35,64,0.3);
}

.pys-faq__q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.pys-faq__q span {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
    transition: color 0.2s;
}

.pys-faq__q .fas {
    font-size: 13px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.pys-faq__item--open .pys-faq__q {
    background: rgba(170,35,64,0.04);
}

.pys-faq__item--open .pys-faq__q span {
    color: var(--primary-color);
}

.pys-faq__a {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    padding: 0 18px 16px;
    border-top: 1px solid rgba(170,35,64,0.1);
    padding-top: 12px;
}

.pys-faq__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 12px;
    padding: 20px 28px;
    flex-wrap: wrap;
}

.pys-faq__bottom-text {
    font-family: 'Gabriela', serif;
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.pys-faq__bottom-text strong {
    color: var(--primary-color);
}

.pys-faq__bottom-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pys-faq { padding: 56px 0 48px; }
    .pys-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pys-faq { padding: 48px 0 40px; }
    .pys-faq__q span { font-size: 13px; }
    .pys-faq__a { font-size: 12px; }
    .pys-faq__bottom {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .pys-faq__bottom-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-faq__bottom-btns .pys-btn,
    .pys-faq__bottom-btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}
/* ============================================
   Founder section - fix unstyled designation & credential badges
   ============================================ */
.about-founder .founder-desig {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.about-founder .founder-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 10px;
}

.about-founder .founder-credentials span {
    display: inline-block;
    background: var(--accent-color);
    border: 1px solid var(--secondary-color);
    color: var(--text-dark);
    font-family: 'Gabarito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .about-founder .founder-credentials span {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* ============================================
   Early Bird Discount - offer badge & limited-time strip
   ============================================ */
.early-bird-discount .eb-offer-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.early-bird-discount .eb-offer-badge__ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    animation: ebRingSpin 18s linear infinite;
}

@keyframes ebRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.early-bird-discount .eb-offer-badge__amount {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.early-bird-discount .eb-offer-badge__amount small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.early-bird-discount .eb-offer-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 10px 24px;
    margin: 0 auto 30px;
    font-family: 'Gabarito', sans-serif;
    font-size: 15px;
    max-width: 90%;
}

.early-bird-discount .eb-offer-strip__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
    animation: ebDotPulse 1.6s ease-in-out infinite;
}

@keyframes ebDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

@media (max-width: 575px) {
    .early-bird-discount .eb-offer-badge {
        width: 90px;
        height: 90px;
    }

    .early-bird-discount .eb-offer-badge__amount {
        font-size: 21px;
    }

    .early-bird-discount .eb-offer-strip {
        font-size: 13px;
        padding: 10px 16px;
        text-align: left;
    }
}

/* ============================================
   Video Testimonials - click-to-load (no iframe until clicked)
   ============================================ */
.pys-video-reviews {
    margin-top: 44px;
}

.pys-video-reviews__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
}

.pys-video-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pys-video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    border: 1px solid rgba(170, 35, 64, 0.12);
}

.pys-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pys-video-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.pys-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(170, 35, 64, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pys-video-card:hover .pys-video-card__play {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .pys-video-reviews__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pys-video-card__play {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}
