/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 18 2026 | 11:46:17 */
:root {
            --warm-cream: #FAF6F1;
            --soft-blush: #F2E6D9;
            --rose-dust: #C9A88E;
            --warm-taupe: #A68B72;
            --deep-earth: #6B5344;
            --rich-brown: #4A3728;
            --dark-cocoa: #3A2A1E;
            --sage-mist: #C5CFC0;
            --sage-deep: #8FA387;
            --terracotta: #C2785C;
            --gold-soft: #D4A96A;
            --ivory: #FFFDF9;
            --text-primary: #3A2A1E;
            --text-secondary: #6B5344;
            --text-light: #A68B72;

            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Jost', 'Helvetica Neue', sans-serif;
            --font-accent: 'Caveat', cursive;

            --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

/* ===== MARQUEE ===== */
        .marquee-section {
            padding: 30px 0;
            overflow: hidden;
            background: var(--soft-blush);
        }

        .marquee-track {
            display: flex;
/*             animation: marqueeScroll 30s linear infinite; */
            width: max-content;
			animation: marqueeScroll 80s linear infinite !important;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 0 30px;
            white-space: nowrap;
        }

        .marquee-item span {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--deep-earth);
            letter-spacing: 0.05em;
        }

        .marquee-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--terracotta);
            flex-shrink: 0;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

/* header.elementor.elementor-26.elementor-location-header {
    position: sticky;
    top: 32px;
    z-index: 99;
} */
.elementor-element.stiky-header {
    position: absolute;
    z-index: 99;
}
.banner-after:after {
    content: '';
    background: url(https://dev-testingindusxpert.pantheonsite.io/wp-content/uploads/2026/02/1770820536947-019c4d20-bbec-728e-95f6-c4acfd5fa226.png);
    position: absolute;
    z-index: 1;
    margin: auto;
    width: 1000px;
    height: 1000px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
/*  left: 0;
    right: 0;
    bottom: 0;
    top: 0; 
    opacity: 0.3;*/
	animation: gentleRotate 15s linear infinite;
    left: 50%;
    bottom: -40%;
    right: auto;
    opacity: 0.1;
}
@keyframes gentleRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


/* ===== REVEAL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== DIVIDER ===== */
        .section-divider {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .section-divider svg {
            width: 100%;
            height: 40px;
            opacity: 0.08;
        }

/* ===== DEFINITION / HOLISTIC SECTION ===== */
        .definition {
            padding: 140px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .definition::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(196,149,106,0.2), transparent);
        }
        .definition-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .definition-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .definition-circle-art {
            width: 380px;
            height: 380px;
            position: relative;
        }
		.definition-visual {
/* 			background-image: url(/wp-content/uploads/2026/02/circle.png); */
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
		}
        .def-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(196,149,106,0.15);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .def-ring:nth-child(1) {
            width: 100%; height: 100%;
            animation: defRotate 30s linear infinite;
        }
        .def-ring:nth-child(2) {
            width: 75%; height: 75%;
            animation: defRotate 25s linear infinite reverse;
            border-style: dashed;
        }
        .def-ring:nth-child(3) {
            width: 50%; height: 50%;
            animation: defRotate 20s linear infinite;
        }
        .def-ring-dot {
            position: absolute;
            width: 8px; height: 8px;
            background: #c4956a;
            border-radius: 50%;
            top: -2; left: 50%;
            transform: translateX(-50%);
        }
        @keyframes defRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
        .def-center {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .def-center-word {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 300;
            color: #3d3228;
            font-style: italic;
        }
        .def-center-pron {
            font-size: 0.8rem;
            color: #000;
            letter-spacing: 0.1em;
            margin-top: 5px;
        }
        .def-triad {
            position: absolute;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #6b5e52;
            font-weight: 500;
        }
        .def-triad.mind { top: -30px; left: 50%; transform: translateX(-50%); }
        .def-triad.body { bottom: 20px; left: -10px; }
        .def-triad.spirit { bottom: 20px; right: -10px; }
        .definition-text .def-type {
            font-size: 0.75rem;
            font-style: italic;
            color: #c4956a;
            margin-bottom: 20px;
            letter-spacing: 0.1em;
        }
        .definition-text .def-meaning {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            line-height: 1.7;
            color: #3d3228;
            font-weight: 300;
            position: relative;
            padding-left: 25px;
            border-left: 2px solid rgba(196,149,106,0.3);
        }

.icon-back span.elementor-icon {
    background: rgba(196, 149, 106, 0.08);
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 50px;
}
.approach-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: all 0.5s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}
.approach-card:hover {
    background: rgba(255, 255, 255, 0.06);
/*     border-color: rgba(196, 149, 106, 0.25); */
	border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}
.approach-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c4956a, transparent);
    opacity: 0;
    transition: opacity 0.5s 
ease;
}
.approach-card:hover::before {
    opacity: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c4956a;
    font-weight: 500;
}
.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #c4956a;
}
.quote-author {
	margin-top:30px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4956a;
    font-weight: 500;
}
.quote-author::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #c4956a;
    vertical-align: middle;
    margin-right: 12px;
}


.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(196, 149, 106, 0.1);
/*     background: #faf7f4; */
	background:
        radial-gradient(ellipse 60% 70% at 55% 50%, 
            rgba(232,147,90,0.2) 0%, 
            rgba(212,160,90,0.1) 25%, 
            transparent 60%),
        radial-gradient(ellipse 80% 60% at 30% 70%, 
            rgba(232,180,168,0.08) 0%, 
            transparent 50%),
        linear-gradient(180deg, 
            #e4ecf3 0%, #dce5ee 50%, #e0e8f0 100%) !important;
    transition: all 0.5s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 149, 106, 0.1);
    border-color: rgba(196, 149, 106, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c4956a, #d4a97a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s 
ease;
}
.service-card:hover::before
 {
    transform: scaleX(1);
}
/* .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff59;
    filter: blur(7px);
    z-index: -1;
} */

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 149, 106, 0.08);
    border-radius: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4956a;
    font-weight: 600;
    margin-bottom: 25px;
}
.service-card.premium {
/*     background: #3d3228; */
    border-color: rgba(196, 149, 106, 0.2);
}
.phil-quote-icon
 {
    width: 80px;
    height: 80px;
    margin-bottom: 35px;
    opacity: 0.7;
}
.phil-quote-icon svg {
    width: 100%;
    height: 100%;
}
.phil-main-text strong{
	color: #c4956a;
    font-weight: 500;
}
.phil-closing-text em {
    color: #c4956a;
    font-style: italic;
    font-weight: 400;
}
.phil-ribbon-divider {
    width: 1px;
    height: 40px;
    background: rgba(196, 149, 106, 0.12);
    flex-shrink: 0;
}

.about-float-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #c4956a;
    color: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(196, 149, 106, 0.3);
}
.border-me:after {
    content: '';
    width: 105%;
    height: 105%;
    position: absolute;
    /* background: #000; */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 30px;
    inset: -15px;
    border: 1px solid #c4956a26;
}



 /* ===== TESTIMONIAL / INSIGHTS ===== */
        .insights {
            padding: 120px 0;
            background: linear-gradient(135deg, #f5ede4, #faf7f4);
            position: relative;
        }
        .insights-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .insights-header .section-desc { margin: 0 auto; }
        .insights-marquee-wrapper {
            overflow: hidden;
            padding: 20px 0;
        }
        .insights-marquee {
            display: flex;
            gap: 30px;
            animation: marqueeScroll 40s linear infinite;
            width: max-content;
        }
        .insights-marquee:hover { animation-play-state: paused; }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .insight-card {
            flex-shrink: 0;
            width: 380px;
            padding: 35px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid rgba(196,149,106,0.08);
            transition: all 0.4s ease;
        }
        .insight-card:hover {
            box-shadow: 0 15px 40px rgba(196,149,106,0.1);
            transform: translateY(-5px);
        }
        .insight-card-icon {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(196,149,106,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .insight-card-icon svg { width: 18px; height: 18px; color: #c4956a; }
        .insight-card p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #3d3228;
            font-style: italic;
        }

.primary-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(196, 149, 106, 0.08);
    background: #faf7f4;
    transition: all 0.6s 
cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(40px);
}
.primary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(196, 149, 106, 0.1);
    border-color: rgba(196, 149, 106, 0.15);
}

.packages-financing .finance-badge {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 12px 28px;
            background: rgba(196,149,106,0.06);
            border: 1px solid rgba(196,149,106,0.12);
            border-radius: 50px;
            font-size: 0.75rem; letter-spacing: 0.08em;
            color: #6b5e52; font-weight: 400;
        }
        .packages-financing .finance-badge svg {
            width: 16px; height: 16px; color: #c4956a;
        }
        .packages-financing .finance-badge strong {
            color: #c4956a; font-weight: 500;
        }


.packages-note {
    text-align: center;
    margin-top: 50px;
}
.packages-note p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #6b5e52;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}
.packages-note p svg {
    display: inline-block;
    width: 14px;
    height: 14px;
    color: #c4956a;
    vertical-align: middle;
    margin-right: 6px;
}

.loc-base {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 16px 22px;
    background: rgba(196, 149, 106, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(196, 149, 106, 0.08);
    font-size: 0.88rem;
    color: #6b5e52;
}
.loc-base svg {
    color: #c4956a;
    flex-shrink: 0;
}

.loc-card {
    padding: 35px 28px;
    background: #faf7f4;
    border-radius: 20px;
    border: 1px solid rgba(196, 149, 106, 0.06);
    transition: all 0.4s 
ease;
    position: relative;
    opacity: 1;
    transform: translateY(25px);
}
.loc-card:hover {
    border-color: rgba(196, 149, 106, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(196, 149, 106, 0.06);
}

.loc-note {
    text-align: center;
    margin-top: 40px;
}
.loc-note p
 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #6b5e52;
    font-weight: 300;
}
.loc-note p svg {
    color: #c4956a;
    flex-shrink: 0;
}
.loc-note a {
    color: #c4956a;
    font-weight: 500;
    border-bottom: 1px solid rgba(196, 149, 106, 0.3);
    transition: border-color 0.3s;
}
.loc-cta-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 300;
    color: #3d3228;
    margin-bottom: 6px;
}
.loc-cta-text p {
    font-size: 14px;
    color: #6b5e52;
    font-weight: 300;
}
.loc-cta-text h2 em {
    color: #c4956a;
    font-style: italic;
}
.pbt-visual {
    margin-top: 30px;
    max-width: 220px;
}
