/*
Theme Name: YOOtheme Child
Theme URI: https://example.com/
Description: Child theme for YOOtheme Pro
Author: Your Name
Template: yootheme
Version: 1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.uk-container {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.uk-section {
    padding: 0 0 !important;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

a,
span {
    display: inline-block;
    text-decoration: none !important;
}

body {
    font-family: "Poppins", sans-serif !important;
}

ul {
    padding: 0px !important;
    margin: 0px !important;
}

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

.no-gutter {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px !important;
    font-family: "Poppins", sans-serif !important;
}

p {
    font-weight: 400;
    line-height: 1.7;
    margin: 0px !important;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --c1: #000000;
    --c2: #ffffff;
    --c3: #9340D1;
    --c4: #303030;
    --c5: #606060;
}

/*header*/
.header-top {
    background: var(--c2);
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.header-contact-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--c5);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.5s;
}

.header-contact-link:hover {
    color: var(--c3);
}

/* Search */
.header-search-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    padding: 8px 16px;
    gap: 10px;
    background: var(--c2);
    transition: all 0.5s;
}

.header-search-wrap:focus-within {
    border-color: var(--c3);
}

.header-search-wrap input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 160px;
    background: transparent;
    color: #333;
}

.header-search-wrap i {
    color: #aaa;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.5s;
}

.header-search-wrap:focus-within i {
    color: var(--c3);
}

/* Donate Button */
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8357a;
    color: var(--c2);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.5s;
}

.donate-btn:hover {
    background: #c4205e;
    color: var(--c2);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 53, 122, 0.35);
}

.donate-btn i {
    font-size: 13px;
}

.header-bottom {
    background: var(--c3);
    padding: 0;
}

/* Nav */
.header-nav>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.header-nav>ul>li {
    position: relative;
}

.header-nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c2);
    text-decoration: none;
    padding: 18px 22px;
    transition: all 0.5s;
    white-space: nowrap;
}

.header-nav>ul>li>a i {
    font-size: 12px;
    transition: all 0.5s;
}

.header-nav>ul>li:hover>a {
    background: rgba(0, 0, 0, 0.15);
}

.header-nav>ul>li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu-custom {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--c2);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.5s;
    pointer-events: none;
}

.has-dropdown:hover .dropdown-menu-custom {
    transform: scaleY(1);
    pointer-events: all;
}

.dropdown-menu-custom li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--c5);
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.5s;
}

.dropdown-menu-custom li a:hover {
    color: var(--c3);
    background: #f9f0ff;
    padding-left: 26px;
}

/* Mobile toggle */
.header-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--c2);
    margin: 10px 0;
    transition: all 0.5s;
}

.header-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 20%;
    height: 100vh;
    background: var(--c2);
    z-index: 9999;
    transition: right 0.5s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    padding-top: 20px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 14px 30px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.5s;
}

.mobile-nav ul li a:hover {
    color: var(--c3);
    background: #f9f0ff;
}

.mobile-nav-actions {
    padding: 16px 24px;
}

/* Mobile Dropdown */
.mobile-has-dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-has-dropdown>a i {
    transition: all 0.5s;
    font-size: 12px;
}

.mobile-has-dropdown.open>a i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
    background: #f9f0ff;
}

.mobile-has-dropdown.open .mobile-dropdown {
    max-height: 300px;
}

.mobile-dropdown li a {
    padding: 12px 30px 12px 44px !important;
    font-size: 14px !important;
    color: #555 !important;
    border-bottom: 1px solid #eedeff !important;
}

.mobile-dropdown li a:hover {
    color: var(--c3) !important;
    background: #eedeff !important;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

section.hero {
    height: 600px;
}

.banner-swiper {
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -2;
}

.banner-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.banner-title h1 {
    color: #303030 !important;
    font-size: 50px;
    font-weight: 600;
}

.banner-title h1 span {
    color: #6B21A6;
}

.banner-buttons {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 25px;
}

a.web-btn {
    display: inline-block !important;
    background-color: var(--c3);
    padding: 10px 40px;
    font-size: 16px;
    transition: all .5s;
    border-radius: 8px;
}

a.web-btn:hover {
    background: var(--c3);
    color: var(--c2) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(147 64 209 / 63%);
}

.swiper-pagination {
    position: absolute !important;
    bottom: 50px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    opacity: 1;
    background: #fff;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.swiper-pagination-bullet-active {
    background: transparent;
    border: 1px solid #fff;
}

.spacing {
    padding: 100px 0;
}

.sleep-section .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c1);
    margin-bottom: 40px;
}

.sleep-card {
    background-color: var(--c2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
}

.sleep-card:hover {
    box-shadow: 0 10px 36px rgba(123, 47, 190, 0.18);
    transform: translateY(-6px);
}

.sleep-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sleep-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

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

.sleep-card-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex: 1;
}

.sleep-card-title {
    font-size: 22px;
    font-weight: #606060;
    color: var(--c5) !important;
    line-height: 1.35;
}

.sleep-card-text {
    color: var(--c5);
    line-height: 1.6;
}

.web-title h2 {
    color: var(--c5) !important;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
}

.sleep-card-body p {
    margin: 20px 0 !important;
}

.why-sleep-section {
    padding: 100px 0;
    background-repeat: no-repeat;
}

.why-sleep-content .web-title h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 50px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.why-sleep-content p {
    font-weight: 400;
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin: 30px 0 !important;
}

.why-sleep-content p a {
    color: var(--c3) !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.5s;
}

.why-sleep-content p a:hover {
    text-decoration: underline;
}

.why-sleep-tagline {
    font-weight: 700 !important;
    font-size: 25px !important;
    color: var(--c3) !important;
    margin-bottom: 0 !important;
}

.why-sleep-content h2 {
    color: #303030 !important;
    font-size: 50px !important;
    line-height: 1.4 !important;
}

.what-we-do-section {
    background: #f5f4f0;
}

.what-we-do-section .web-title h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: #606060 !important;
    margin-bottom: 16px;
}

.what-we-do-section .web-title p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--c5);
    margin: 20px 0 0 !important;
}

.what-we-do-section .web-title p a {
    color: var(--c3);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
}

.what-we-do-section .web-title p a:hover {
    text-decoration: underline;
}

.wwd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 44px 24px;
    text-decoration: none;
    height: 100%;
    transition: all 0.5s;
}

.wwd-card:hover {
    box-shadow: 0 8px 32px rgba(139,47,201,0.12);
    transform: translateY(-4px);
    text-decoration: none;
}

.wwd-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wwd-card h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: var(--c3) !important;
    margin: 0 !important;
    transition: all 0.5s;
    letter-spacing: 0;
    text-transform: capitalize;
}

.wwd-card:hover h4 {
    color: var(--c3);
}
.wwd-card-wrapper {
    perspective: 1000px;
    height: 260px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 12.4px 5px #E6E3E3;
}

.wwd-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: all .8s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-card-wrapper:hover .wwd-card-inner {
    transform: rotateY(180deg);
}

.wwd-card-front {
    background: #ffffff;
}

.wwd-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.wwd-card-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    padding: 40px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.wwd-card-label {
    color: var(--c3);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wwd-card-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.2%;
}

.wwd-card-back .web-btn {
    width: 100%;
    text-align: center;
    margin-top: 25px;
    text-transform: capitalize !important;
    background: var(--c3);
    border-radius: 10px;
}

.our-programs-section {
    background: #fff;
}

.our-programs-section .web-title h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.web-title p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0 0 !important;
}

.programs-swiper-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px 0 60px;
}

.programs-swiper {
    flex: 1;
    overflow: hidden;
}

.programs-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 16px;
    transition: all 0.5s;
    background: #fff;
    z-index: 10;
}

.programs-arrow:hover {
    background: var(--c3);
    border-color: var(--c3);
    color: #fff;
}

.program-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.program-card:hover {
    box-shadow: 0 8px 32px rgba(139, 47, 201, 0.12);
    transform: translateY(-4px);
}

.program-card-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.program-card-logo img {
    max-height: 90px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.program-card h3 {
    font-weight: 700;
    font-size: 20px;
    color: #606060 !important;
    margin-bottom: 14px !important;
    line-height: 1.3;
}

.program-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--c5);
    margin-bottom: 28px !important;
    flex: 1;
}

.program-btn {
    display: inline-block;
    background: var(--c3);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: all 0.5s;
}

.program-btn:hover {
    background: #6b1fa8;
    color: #fff !important;
    text-decoration: none;
}

.programs-pagination {
    bottom: -30px !important;
    display: none;
}

.programs-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.5s;
}

.programs-pagination .swiper-pagination-bullet-active {
    background: var(--c3);
    width: 28px;
    border-radius: 5px;
}

.site-footer {
    background: #4A1F6E;
}

.footer-main {
    padding: 60px 0;
}

.footer-brand img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-domain {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px !important;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.5s;
}

.footer-social:hover {
    background: #fff;
    color: var(--c3);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.5s;
}

.footer-contact-list li a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.footer-links li a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.5s;
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer {
    background: #29143A;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    text-align: center;
    width: 60%;
    margin: 0 auto !important;
}

.footer-disclaimer p a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.5s;
}

.footer-disclaimer p a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background: #29143A;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-links li a:hover {
    transform: translateX(10px);
    color: var(--c2) !important;
}

.footer-disclaimer p a:hover {
    color: #fff !important;
    letter-spacing: 0.2px;
}

.footer-contact-list li a:hover {
    color: #fff !important;
    transform: translateX(10px);
}

.across-body-section {
    background: linear-gradient(160deg, #e8eaf6 0%, #d8c8f0 50%, #c8b4e8 100%);
}

.across-body-section .web-title h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.across-body-section .web-title p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.across-body-swiper-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px 0 60px;
}

.across-body-swiper {
    flex: 1;
    overflow: hidden;
}

.across-body-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 47, 201, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c3);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
    z-index: 10;
}

.across-body-arrow:hover {
    background: var(--c3);
    border-color: var(--c3);
    color: #fff;
}

.across-body-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 32px 20px;
    text-decoration: none;
    height: 270px;
    transition: all 0.5s;
}

.across-body-card:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(139, 47, 201, 0.15);
    transform: translateY(-4px);
    text-decoration: none;
}

.across-body-card-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.across-body-card h4 {
    font-weight: 500;
    font-size: 20px;
    color: var(--c3) !important;
    margin: 0;
    transition: all 0.5s;
    letter-spacing: 0;
    text-transform: capitalize;
}

.across-body-card:hover h4 {
    color: #6b1fa8;
}

.across-body-pagination {
    bottom: -100px !important;
}

.across-body-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(139, 47, 201, 0.3);
    opacity: 1;
    transition: all 0.5s;
}

.across-body-pagination .swiper-pagination-bullet-active {
    background: var(--c3);
    width: 28px;
    border-radius: 5px;
}

.latest-news-section {
    background: #f0eafa;
}

.latest-news-section .web-title h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.news-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c3);
    margin-bottom: 10px;
}

.news-read-more {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a !important;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.5s;
}

.news-read-more:hover {
    color: var(--c3);
}

.news-featured-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-featured-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.news-featured-card:hover .news-featured-img img {
    transform: scale(1.04);
}

.news-featured-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-featured-body h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
    color: var(--c5) !important;
    margin-bottom: 14px !important;
}

.news-featured-body p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    flex: 1;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.news-list-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    gap: 0;
    flex: 1;
    transition: all 0.5s;
}

.news-list-card:hover {
    box-shadow: 0 6px 24px rgba(139, 47, 201, 0.1);
}

.news-list-img {
    flex: 0 0 200px;
    max-width: 200px;
    overflow: hidden;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.news-list-body {
    flex: 1;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-body h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    color: var(--c5) !important;
    margin-bottom: 10px !important;
    text-transform: capitalize;
    letter-spacing: 0;
}

.news-list-body p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.know-section {
    background-color: var(--c2);
    padding: 75px 0 80px;
}

.know-heading-wrap {
    margin-bottom: 20px;
}

.know-subtext {
    font-size: 1rem;
    color: var(--c3);
    margin-top: 10px;
}

.know-form-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.know-input-group {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.know-label {
    font-size: 20px;
    color: var(--c3);
    white-space: nowrap;
    margin-bottom: 0;
}

.know-input {
    flex: 1;
    min-width: 220px;
    height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    color: var(--c1);
    background-color: var(--c2);
    border: 2px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: all 0.5s;
}

.know-input:hover {
    border-color: var(--c3);
}

.know-input:focus {
    border-color: var(--c3);
    box-shadow: 0 0 0 4px rgba(123, 47, 190, 0.12);
}

.know-privacy {
    font-size: 14px;
    color: var(--c5);
    margin-top: 15px !important;
    text-align: center;
}

.know-privacy-link {
    color: var(--c3) !important;
    text-decoration: underline;
    transition: all 0.5s;
}

.know-privacy-link:hover {
    color: var(--c3);
}

.know-badge {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 10px 16px;
}

.know-badge-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

.know-badge-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--c5);
    line-height: 1.4;
}

.know-heading-wrap.web-title h2 {
    color: var(--c3) !important;
    font-weight: 700;
}

.know-heading-wrap.web-title p {
    color: var(--c3);
    font-size: 20px;
}

.know-privacy-link:hover {
    transform: translateX(5px);
}

.sleep-card.red-card h3 {
    color: #E9458C !important;
    font-weight: 500;
}

.sleep-card.red-card a {
    background-color: #E9458C !important;
}

.know-privacy a {
    color: var(--c3) !important;
}

.row:has(.red-card) h3.sleep-card-title {
    color: var(--c3) !important;
}

a.wwd-card.wwd-card-front {
    padding: 40px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .5s;
    opacity: 1;
    visibility: visible;
    gap: 10px;
}

a.wwd-card.wwd-card-front .wwd-card-icon {
    width: 70px;
    margin: 0 auto;
}

a.wwd-card.wwd-card-front h4 {
    color: var(--c3);
    margin-top: 20px !important;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.2%;
    text-align: center;
    text-transform: capitalize;
}

.wwd-card-wrapper:hover .wwd-card-front {
    opacity: 0;
    visibility: hidden;
}

.sleep-card.sleep-card-text h3 {
    color: #9340D1 !important;
}

.sleep-card.sleep-card-red h3 {
    color: #E9458C !important;
}

.sleep-card.sleep-card-red a.web-btn {
    background-color: #E9458C !important;
}

.col-lg-12.about-hero {
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.hero .row {
    height: 100%;
}

section.hero:has(.about-hero) {
    height: 500px;
}

.about-banner-title h1 {
    font-size: 48px;
    font-weight: 600;
    color: #6B21A6 !important;
}

.about-banner-title p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #6B21A6;
    margin-top: 30px !important;
}

.about-banner-title {
    width: 50%;
}

.about-banner-title .banner-buttons {
    margin-top: 30px;
}

.reason-cards {
    border-radius: 5px;
    background: #FCFCFC;
    box-shadow: 0 4px 12.4px 5px #E6E3E3;
    padding: 45px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 300px;
}

.reason-cards h2 {
    color: var(--c3) !important;
    font-weight: 500;
    font-size: 40px;
}

.reason-cards p {
    color: #606060;
    font-size: 18px;
    font-weight: 400;
}

.core-values-section {
    background-color: #f8f7ff;
    position: relative;
}

.core-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.core-values-section .container {
    position: relative;
    z-index: 1;
}

.core-values-section .web-title h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.core-values-desc {
    font-size: 18px;
    line-height: 1.75;
    color: #303030;
    margin-bottom: 32px !important;
    max-width: 520px;
    margin-top: 20px !important;
    font-weight: 400;
}

.core-values-desc strong {
    color: #6B21A6;
    font-weight: 700;
}

.core-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.core-value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 22px 24px;
    border: 1px solid rgba(139, 47, 201, 0.08);
    transition: all 0.5s;
}

.core-value-item:hover {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 24px rgba(139, 47, 201, 0.1);
    transform: translateX(4px);
}

.core-value-icon img {
    width: 100px;
    transition: all 0.5s;
}

.core-value-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #6B21A6;
    margin: 0;
}

.dual-panel-content h2 {
    font-size: 45px;
}

.dual-panel-content p {
    font-size: 18px;
}

.impact-content h2 {
    font-size: 64px;
    color: #303030 !important;
}

.impact-content p {
    font-size: 19px;
    color: #303030 !important;
    font-weight: 500;
}

.stat-container {
    border-radius: 5px;
    border: 2px solid #FFF;
    background: rgba(255, 255, 255, 0.66);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    padding: 0 15px;
    text-align: center;
}

h3.stat-number {
    color: var(--c3) !important;
    font-weight: 700;
    font-size: 40px;
}

.stat-container p {
    font-size: 18px;
    margin-top: 10px !important;
    color: #606060 !important;
}

.network-section {
    background: linear-gradient(180deg, #e8d5f5 0%, #f5eeff 40%, #fdf8ff 100%);
    border-radius: 50px;
    margin: 100px 20px !important;
}

.network-section .web-title h2 {
    font-weight: 400;
    font-size: 40px !important;
    line-height: 1.2;
    color: #6B21A6 !important;
    margin-bottom: 20px;
}

.network-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px !important;
}

.network-neuron-img {
    width: 100%;
    max-width: 700px;
}

.network-neuron-img img {
    width: 100%;
    display: block;
}

.network-partners-label {
    display: inline-block !important;
    color: #6B21A6 !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.partner-logo-card {
    border-radius: 10px;
    border: 1px solid var(--Lavender, #D5B2FC);
    background: #FFF;
    box-shadow: 0 4px 17px -4px rgba(213, 178, 252, 0.82);
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.5s;
}

.partner-logo-card:hover {
    box-shadow: 0 6px 24px rgba(139, 47, 201, 0.1);
    transform: translateY(-3px);
}

.partner-logo-card img {
    max-height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: grayscale(20%);
    transition: all 0.5s;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
}

.finances-section {
    background: #fff;
}

.finances-card {
    border-top: 2px solid #d4b8f0;
    border-bottom: 2px solid #d4b8f0;
    padding: 52px 0;
    position: relative;
}

.finances-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.finances-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.finances-desc strong {
    font-weight: 700;
    color: #1a1a1a;
}

.finances-downloads {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ddd;
}

.finances-download-item {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    border-bottom: 1px solid #ddd;
    transition: all 0.5s;
}

.finances-download-item:hover {
    background: #faf8ff;
    padding-left: 10px;
}

.finances-download-item span {
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.finances-download-btn {
    /*display: inline-flex !important;
    flex-shrink: 0;
    float: right;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;*/
    border-radius: 6px;
    color: #555 !important;
    font-size: 18px;
    border: none;
    background: transparent;
    transition: all 0.5s;
    vertical-align: : middle;
}

.finances-download-btn:hover {
    color: var(--c3);
    background: #f0e6ff;
}

.finances-section .web-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
}

.program-service-card h2 {
    color: #606060 !important;
    margin: 30px 0 !important;
}

.program-service-card p {
    margin-bottom: 30px !important;
}

.section-subtitle {
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #6a6a6a;
}

.text-highlight {
  color: #7a3fd1;
}

.team-tabs .nav-link {
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: #6a6a6a;
  background-color: #ececec;
  margin: 0 0.5rem;
}

.team-tabs .nav-link.active {
  background-color: #7a3fd1;
  color: #fff;
}

.employee-photo-wrapper {
  border-radius: 50%;
  overflow: hidden;
}

.employee-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px !important;
  object-fit: cover;
  filter: grayscale(100%);
}

.employee-name {
  color: var(--amethyst-main-wscn-color, #9340D1) !important;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 130%;
letter-spacing: -0.048px;
}

.employee-title {
    color: var(--Slate, #606060);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.employee-modal-body {
    padding: 50px 70px;
}

.modal-header {
    padding: 40px 0;
}

.modal-content {
    border-radius: 20px;
    width: 600px;
    margin: 0 auto;
}

.dual-panel:has(.invert-btn) {
    background-color: #9340D1;
}

.dual-panel:has(.invert-btn) .web-title h2 {
    color: var(--c2) !important;
}

.dual-panel:has(.invert-btn) p {
    color: var(--c2) !important;
}

.web-btn.invert-btn {
    border: 1px solid;
}

section.finances-section:has(.cust-spacing) {
    padding: 100px 0;
}

section.finances-section:has(.cust-spacing) .row {
    align-items: flex-start !important;
}

.sleep-section:has(.resource-card) {
    padding-top: 0 !important;
}

.sleep-section:has(.resource-card) .sleep-card {
    height: 200px;
    justify-content: center;
}
.sleep-section:has(.resource-card) .sleep-card .sleep-card-img-wrap {
    height: 0;
}

.sleep-section:has(.resource-card) .sleep-card .web-btn {
    margin-top: 20px;
}

.sleep-section:has(.resource-card) .sleep-card .sleep-card-body {
   padding: 30px 0;
   flex: none !important;
   display: block;
}

section.marketing {
    background-color: #F1E6FD;
}

.marketing-content {
    text-align: center;
}

.marketing-content p {
    margin: 25px 0 !important;
    color: var(--amethyst-main-wscn-color, #9340D1);
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 135%;
}

.marketing-content h2 {
    font-size: 50px !important;
    color: #9340D1 !important;
}

.blog-banner-content h2 {
    font-size: 52px;
    color: #fff;
}

.blog-banner-content {
    text-align: center;
}

.blog-banner-content p {
    margin: 0;
    padding: 15px 0 0;
    color: #fff;
    font-size: 20px;
}

.blogs-slide-img {
    width: 50%;
    height: 100%;
}

.blogs-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-slide-content {
    width: 50%;
    background-color: #5d0099;
    padding: 0 50px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blogs-slide {
    display: flex;
    height: 100%;
}

.blogs-slider-banner {
    height: 600px;
}

.blogs-slide-content h2 {
    color: #fff;
    font-size: 38px;
}

.blogs-slide-content p {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid;
    margin-bottom: 20px;
}

.blog-details h4 {
    color: var(--c2);
    text-transform: uppercase;
    font-size: 20px;
}

.blog-details p {
    padding: 10px 0 0;
    border: 0;
}

.spacing {
    padding: 100px 0;
}

.blogs-view-archive-button a {
    color: #fff;
    text-decoration: none !important;
    background-color: #ef4bbe;
    font-size: 16px;
    padding: 10px 30px;
    transition: all .5s !important;
    margin-top: 50px;
    display: inline-block !important;
}

.blogs-view-archive-button a:hover {
    background-color: #fff;
    color: #000;
}

.swiper-arrows {
    position: absolute;
    bottom: 50px;
    z-index: 10;
}

.blog-slider-main .swiper-prev {
    right: 100px;
}

.blog-slider-main .swiper-next {
    right: 35px;
}

.swiper-arrows button {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #ef4bbe;
}

.blog-slider-main .swiper-next::after, .blog-slider-main .swiper-next::before, .blog-slider-main .swiper-prev::after, .blog-slider-main .swiper-prev::before {
    content: unset !important;
}

.swiper-arrows button:hover {
    background-color: #fff;
    color: #000;
}

.blogs-search {
    padding: 100px 0;
}

.search-main {
    text-align: center;
}

.search-main h2 {
    font-size: 45px;
    font-weight: 600;
	color: #606060 !important;
}

.search-main input {
    height: 75px;
    width: 100%;
    margin: 30px 0;
    border-radius: 50px;
	border: 1px solid #96A2B7 !important;
	background: #FFF !important;
    padding: 0 50px;
}

.search-main::before {
    content: '\f002';
    position: absolute;
    top: 50%;
    transform: translateY(40%);
    right: 30px;
    font-family: 'FontAwesome';
    z-index: 99;
    cursor: pointer;
}

.search-main {
    position: relative;
}

.recommended-searches ul {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0 0;
    justify-content: space-between;
    row-gap: 12px;
}

.recommended-searches ul li {
    list-style: none;
    width: 33.33%;
}

.blog-slider-main {
    position: relative;
    padding: 20px 0px;
}

section.blogs-section {
    position: relative;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / 11%);
    height: 100%;
}

.blog-card-img {
    height: 220px;
    background: #c7d0df;
}

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

.blog-card-content {
    padding: 22px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #8b94a8;
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #6d7894 !important;
    margin-bottom: 14px ;
}

.blog-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #7c8497;
    margin-bottom: 22px !important;
}

.blog-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 170px;
    height: 48px;
    background: #6d7894;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.blog-btn:hover {
    background: #59637d;
    color: #fff;
}

.web-title.blogs-content {
    border-bottom: 1px solid #00000040;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.blog-slider-main .swiper-button-next, .blog-slider-main .swiper-button-prev {
    color: #6d7894;
    width: 40px;
    height: 40px;
}

.blog-slider-main .swiper-button-next:after, .blog-slider-main .swiper-button-prev:after {
    font-size: 22px;
}

section.content-section {
    padding: 100px 0;
    background-color: #9e43e7;
}

.content-sec h2 {
    color: #fff;
    font-size: 50px;
}

.content-sec p {
    color: #fff;
    margin: 0;
    padding: 20px 0;
}

.content-sec a {
    text-decoration: none;
    color: #000 !important;
    background-color: #fff;
    padding: 10px 40px;
    transition: all .5s;
    margin-top: 20px;
    display: inline-block !important;
}

.content-sec a:hover {
    background-color: #111111;
    color: #fff !important;
}

.content-img img {
    border-radius: 20px;
}

.swiper-arrows.swiper-prev {
    right: 100px;
}

.swiper-arrows.swiper-next {
    right: 35px;
}

.news-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    background-color: #eef1f6;
    padding: 20px 24px;
    border-bottom: 1px solid #d0d6e2;
    max-width: 100%;
}

.news-card__thumbnail-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: #c8d0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card__thumbnail-wrap img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.news-card__thumbnail-wrap img[src=""], .news-card__thumbnail-wrap img:not([src]) {
    display: none;
}

.news-card__thumb-placeholder {
    width: 44px;
    height: 44px;
    opacity: 0.45;
}

.news-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.news-card__date {
    font-size: 13px;
    color: #8a96b0;
    font-weight: 400;
    margin: 0;
}

.news-card__headline {
    font-size: 20px;
    font-weight: 600;
    color: #2c3a58 !important;
    margin: 0;
    line-height: 28px;
}

.news-card__excerpt {
    font-size: 14px;
    color: #5a6a8a;
    line-height: 22px;
    margin: 0;
}
.news-card__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 4px;
}

.news-card__link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #3a4a6b !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.news-card__link:hover {
    color: #1a2a4b;
}

.news-card__link-arrow {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

section.single-video-banner {
    padding: 30px 0 100px;
}

.single-video-transcript img {
    height: 385px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.single-video-transcript {
    position: relative;
}

.single-video-play {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 100px;
    right: 50px;
    gap: 30px;
}

.single-video-play a {
    background-color: #FFFFFF9E;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .5s;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(255,255,255,0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}

.video-desc {
    color: #fff;
}

.video-desc p {
    margin: 0;
    font-weight: 300;
    font-size: 16px;
}

.video-desc span {
    font-size: 16px;
}

.takeways {
    width: 75%;
    margin: -50px auto 0;
    background-color: #0097C7;
    padding: 30px 60px;
    position: relative;
    z-index: 999;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

#masthead {
    z-index: 9999;
}

.interview-img img {
    width: 300px;
    height: 300px;
    margin: 0 auto 0;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
}

.interview {
    text-align: center;
    color: #fff;
}

.interview-img {
    margin-top: -80px;
    margin-bottom: 20px;
}

.interview h4 {
    color: #fff;
    font-size: 16px;
}

.interview h3 {
    color: #fff;
    font-size: 25px;
    margin: 5px 0;
}

.key-takeways {
    color: #fff;
}

.key-takeways h2 {
    color: #fff;
    font-size: 27px;
    margin-bottom: 20px;
}

.key-takeways ul li {
    margin: 20px 0;
    font-size: 16px;
}

.key-takeways ul {
    margin: 0 20px 0;
}

.single-banner-article .takeways {
    background-color: #9E43E7 !important;
}

.written-article-content h4 {
    font-weight: 600;
    font-size: 20px;
}

.written-article-content h2 {
    font-weight: 600;
    font-size: 40px;
    margin: 20px 0;
}

.written-article-content p {
    margin: 20px 0;
    font-size: 16px;
}

.written-article-content img {
    margin: 50px auto;
}

.written-article-question-answers h4 {
    font-size: 24px;
    color: #5d0099 !important;
}

.written-article-question-answers h4 span {
    color: #5d0099 !important;
}

.written-article-question-answers {
    margin-bottom: 50px;
}

.written-article-question-answers.enlarge-heading h4 {
    font-size: 37px !important;
}

.postid-52049 .written-article-question-answers img {
    width: 100%;
    height: 800px !important;
    object-fit: center !important;
}

.written-article-question-answers img {
    width: 700px;
    object-fit: contain;
}

section.blogs-archive {
    position: relative;
    height: 100%;
    z-index: 1;
}

.archive-blogs-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    background-size: cover;
    height: 400px;
    background-position: center;
    filter: brightness(0.5);
}

.blogs-archive-banner {
    height: 400px;
    display: flex;
    align-items: center;
}

.vt-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

.vt-video-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
}

.vt-video-box iframe, .vt-video-box #yt-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 0 !important;
    height: 100%;
    border-radius: 0 !important;
}

.vt-transcript {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.vt-transcript__head {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vt-transcript__body {
    overflow-y: auto;
    padding: 8px 0;
    flex: 1;
}

.vt-cue {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.vt-cue:hover {
    background: #f9fafb;
}

.vt-cue--active {
    background: #eff6ff;
    border-left-color: #9e43e7;
}

.vt-cue__ts {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    min-width: 36px;
    padding-top: 2px;
    font-variant-numeric: tabular-nums;
}

.vt-cue--active .vt-cue__ts {
    color: #9e43e7;
}

.vt-cue__text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.vt-cue--active .vt-cue__text {
    color: #111827;
    font-weight: 500;
}

body.archive.post-type-archive.post-type-archive-blogs.logged-in.admin-bar.wp-custom-logo.wp-embed-responsive.wp-theme-kadence.wp-child-theme-sleephealth-2025.hfeed.footer-on-bottom.social-brand-colors.link-style-standard.content-title-style-above.content-width-normal.content-style-boxed.content-vertical-padding-show.non-transparent-header.mobile-non-transparent-header.customize-support {
    background-color: #fff !important;
}

.written-article-question-answers h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    color: #5d0094 !important;
    margin-bottom: 22px;
}

p.img-caption {
    text-align: center;
    font-style: italic;
}

.written-article-content p br {
    display: none !important;
}

.postid-52096 .written-article-question-answers h1 {
    font-size: 45px;
}

.top-slide img {
    object-position: top !important;
}

.blogs-slide {
    display: flex !important;
}

/* ============================================================
   WSCN ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Contact Us page sections
   Font : Poppins   |   Purple : #9340D1   |   Gray : #606060
   Bootstrap 5 sirf container / row / col / accordion ke liye
============================================================ */

.cust-message-section,
.cust-quickhelp-section,
.cust-faq-section {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.cust-message-section *,
.cust-quickhelp-section *,
.cust-faq-section * {
  box-sizing: border-box;
}

/* content area design mein 760px hai */
.cust-container {
  max-width: 790px;
  padding-left: 15px;
  padding-right: 15px;
}

.cust-message-section { padding: 60px 0 0; }


/* ============================================================
   SECTION HEAD
============================================================ */
.cust-sec-head {
  text-align: center;
  margin-bottom: 45px;
}

.cust-sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #606060 !important;
  line-height: 1.3;
  margin: 0 0 8px;
}

.cust-sec-sub {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  margin: 0;
}


/* ============================================================
   CONTACT INFORMATION (left column)
============================================================ */
.cust-contact-info { padding-right: 20px; }

.cust-info-block {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #9340D1;
}

.cust-info-block.cust-info-last {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cust-info-title {
  font-size: 20px;
  font-weight: 600;
  color: #9340D1 !important;
  line-height: 1.3;
  margin: 0 0 12px !important;
}

.cust-info-text {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  line-height: 1.6;
  margin: 0 0 6px;
}

.cust-info-text:last-child { margin-bottom: 0; }

.cust-info-link {
  color: #606060 !important;
  text-decoration: none;
  transition: color .25s ease;
}

.cust-info-link:hover {
  color: #9340D1;
  text-decoration: underline;
}


/* ============================================================
   FORM
============================================================ */
.cust-form-group { margin-bottom: 18px; }

.cust-label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #9340D1;
  margin-bottom: 6px;
}

.cust-label-opt {
  font-style: italic;
  font-weight: 400;
}

.cust-input,
.cust-select,
.cust-textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  padding: 10px 12px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.cust-input { height: 42px; }

.cust-select {
  height: 42px;
  cursor: pointer;
  padding-right: 34px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23606060'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px;
}

.cust-textarea {
  min-height: 92px;
  line-height: 1.5;
  resize: vertical;
}

.cust-textarea::placeholder { color: #9a9a9a; }

.cust-input:focus,
.cust-select:focus,
.cust-textarea:focus {
  border-color: #9340D1;
  box-shadow: 0 0 0 2px rgba(147, 64, 209, .12);
}

/* radio buttons */
.cust-radio-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
}

.cust-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #9340D1;
  cursor: pointer;
  margin: 0;
}

.cust-radio {
  width: 14px;
  height: 14px;
  accent-color: #9340D1;
  cursor: pointer;
  margin: 0;
}

/* submit */
.cust-submit-wrap {
  text-align: center;
  margin-top: 12px;
}

.cust-submit-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  background: #9340D1;
  border: 1px solid #9340D1;
  border-radius: 4px;
  padding: 10px 20px;
  min-width: 180px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.cust-submit-btn:hover {
  background: #ffffff;
  color: #9340D1;
}


/* ============================================================
   QUICK HELP
============================================================ */
.cust-quickhelp-section { padding: 40px 0 0; }

.cust-divider {
  height: 1px;
  background: #dcdcdc;
  margin-bottom: 40px;
}

.cust-block-title {
  font-size: 32px;
  font-weight: 700;
  color: #606060 !important;
  line-height: 1.3;
  margin: 0 0 6px;
}

.cust-block-sub {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  margin: 0 0 28px;
}

.cust-quickhelp-row {margin-top: 30px;}

.cust-quickhelp-row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.cust-help-card {
  height: 100%;
  background: #fbfbfb;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 26px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  transition: box-shadow .25s ease, transform .25s ease;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cust-help-card:hover {
  box-shadow: 0 6px 18px rgba(147, 64, 209, .15);
  transform: translateY(-3px);
}

.cust-help-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
}

.cust-help-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 2px solid #9340D1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cust-help-title {
  font-size: 32px;
  font-weight: 700;
  color: #9340D1 !important;
  line-height: 1.2;
  margin: 0;
}

.cust-help-btn {
  display: inline-block;
  font-size: 14px;
  box-sizing: border-box;
  font-weight: 400;
  color: #ffffff;
  background: #9340D1;
  border: 1px solid #9340D1;
  border-radius: 4px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}

.cust-help-btn:hover {
  background: #ffffff;
  color: #9340D1;
  text-decoration: none;
}


/* ============================================================
   FAQS ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Bootstrap 5 accordion overrides
============================================================ */
.cust-faq-section { padding: 45px 0 70px; }

.cust-faq-heading { margin-bottom: 18px; }

.cust-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 5px;
  --bs-accordion-btn-padding-y: 20px;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon-width: 16px;
  --bs-accordion-btn-icon-transform: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #9340D1;
  --bs-accordion-body-padding-x: 5px;
  --bs-accordion-body-padding-y: 0;

  /* plus (closed) */
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23606060'%3e%3cpath d='M7.25 1.75a.75.75 0 0 1 1.5 0v5.5h5.5a.75.75 0 0 1 0 1.5h-5.5v5.5a.75.75 0 0 1-1.5 0v-5.5h-5.5a.75.75 0 0 1 0-1.5h5.5v-5.5z'/%3e%3c/svg%3e");
  /* minus (open) */
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239340D1'%3e%3cpath d='M1.75 7.25h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5z'/%3e%3c/svg%3e");

  border-top: 1px solid #dcdcdc;
}

.cust-faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dcdcdc;
}

.cust-faq-header { margin: 0; }

.cust-faq-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #606060;
  line-height: 1.5;
  background: transparent;
  box-shadow: none !important;
  transition: color .25s ease;
  justify-content: space-between;
}

.cust-faq-btn:not(.collapsed) {
  color: #9340D1;
  background: transparent;
  box-shadow: none;
}

.cust-faq-btn:hover { color: #9340D1; }

.cust-faq-btn::after {
  margin-left: 20px;
  transition: opacity .25s ease;
}

.cust-faq-body {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  line-height: 1.7;
  padding-bottom: 20px;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .cust-contact-info { padding-right: 0; }
  .cust-help-title { font-size: 19px; }
}

@media (max-width: 767px) {
  .cust-message-section { padding-top: 40px; }
  .cust-sec-head { margin-bottom: 32px; }
  .cust-sec-title { font-size: 28px; }
  .cust-block-title { font-size: 26px; }
  .cust-contact-info { margin-bottom: 35px; }
  .cust-help-card { margin-bottom: 20px; }
  .cust-quickhelp-row > [class*="col-"]:last-child .cust-help-card { margin-bottom: 0; }
  .cust-submit-btn { width: 100%; }
  .cust-faq-btn { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .cust-help-card,
  .cust-help-card:hover { transition: none; transform: none; }
}


a.contact-btn {
    color: var(--Stone, #8E8E8E);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 34px;
    border: 1px solid var(--Stone, #8E8E8E);
    display: flex;
    height: 39px;
    padding: 7px 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.patient-stories-section {
    margin: 100px 40px 0;
    background: linear-gradient(135deg, #f9eefd 0%, #fbeffb 50%, #faeafb 100%);
    border-radius: 40px;
    padding: 48px 90px 60px 90px;
    position: relative;
  }
 
  /* Heading */
  .patient-stories__heading-wrap {
    text-align: center;
    margin-bottom: 40px;
  }
 
  .patient-stories__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #7C3AED !important;
    margin-bottom: 16px;
  }
 
  .patient-stories__subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #8B4FE0;
    max-width: 660px;
    margin: 0 auto !important;
  }
 
  /* Slider row */
  .patient-stories__slider-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
 
  .patient-stories__nav-btn {
    position: absolute;
    top: 145px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #bcbcbc;
  }
 
  .patient-stories__nav-btn svg {
    width: 24px;
    height: 24px;
  }
 
  .patient-stories__nav-btn--prev { left: -50px; }
  .patient-stories__nav-btn--next { right: -50px; }
 
  .patient-stories__cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
 
  /* Card */
  .patient-story-card {
    width: 356px;
    text-align: center;
  }
 
  .patient-story-card__avatar-wrap {
    width: 310px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    padding: 6px;
  }
 
  .patient-story-card__avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
 
  .patient-story-card__name {
    color: var(--amethyst-main-wscn-color, #9340D1) !important;
    text-align: center;
    font-family: Poppins;
    font-size: 27.552px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 41.328px */
    letter-spacing: -0.523px;
  }
 
  .patient-story-card__title {
    color: #1E1F1F !important;
    font-family: Poppins;
    font-size: 17px;
    margin: 15px 0 !important;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.266px;
  }
 
  .patient-story-card__quote {
    text-align: left;
    border-left: 4px solid #7C3AED;
    padding-left: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #1f2937;
  }
 
  .patient-story-card__quote p {
    margin-bottom: 16px;
  }
 
  .patient-story-card__quote p:last-child {
    margin-bottom: 0;
  }
  
  .patient-story-card p {
    position: relative;
}

.patient-story-card p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    border-radius: 30px;
    background: var(--amethyst-main-wscn-color, #9340D1);
    width: 5px;
    height: 100%;
}