/*
Theme Name: MagicNumbers4u
Theme URI: https://magicnumbers4u.com/
Author: the Sapience team
Author URI: https://sapienceglobal.com
Description: At Healing Words & Numbers Global, we help you decode hidden energies in words, numbers, and spaces to bring clarity, harmony, prosperity, and abundance in life.Our personalized healing words, angelic numbers, frequency healing, and vaastu guidance are designed to align your energies and create the life you truly deserve.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #5d376b;
    --primary-dark: #3b154c;
    --accent-magenta: #e84cb0;
    --text-color: #533a60;
    --gold-text: #b15f00;
    --gold-color: #f4d5a5;
    --gold-dark: #d4af37;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Montserrat', sans-serif;
    --font-cormorant: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --primary: #5d376b;
    --primary-dark: #3b154c;
    --accent: #e84cb0;
    --gold: #d4af37;
    --gold-text: #b15f00;
    --gold-light: #f4d5a5;
    --text-color: #6e587a;
    --price-color: #c0451b;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Responsive global section padding variable */
    --section-padding: 80px 40px;
}

@media (max-width: 1200px) {
    :root {
        --section-padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 16px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fdf5ff;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: url("images/bg.webp") no-repeat center right / cover;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(85, 17, 114, 0.15);
    z-index: 3;
}

/* Smooth transition drop shadow effect is handled by section below */
/* Ethereal light background overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(circle at 80% 50%, rgba(253, 233, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Header Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
}

.logo img {
    height: 75px;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.4);
    padding: 10px 28px;
    border-radius: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(93, 55, 107, 0.05);
}

.menu a {
    text-decoration: none;
    color: #551172;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu a:hover {
    color: var(--accent-magenta);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-magenta);
    transition: var(--transition);
    transform: translateX(-50%);
}
.menu a:hover::after {
    width: 100%;
}
.menu a.active {
    color: var(--accent-magenta);
}
.menu a.active::after {
    width: 100%;
}
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.lang-selector:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--gold-dark);
}
.lang-selector svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.consult-btn {
    background: linear-gradient(180deg, #9d5bd8, #6d2fa4);
    color: #fff;
    border: 1.5px solid var(--gold-color);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(109, 47, 164, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    font-family: var(--font-sans);
    text-decoration: none;
}
.consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(109, 47, 164, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}
/* Hero Content Grid Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1.25fr 1.8fr 1.25fr;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
    margin-top: 15px;
    padding-bottom: 40px;
}
/* Left Section: Healer Portrait inside golden frame */
.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.circle-frame-container {
    position: relative;
    width: 330px;
    height: 430px;
}
/* Background gold and pink glow */
.circle-frame-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 76, 176, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    filter: blur(15px);
}
.circle-frame {
    width: 100%;
    height: 100%;
    border-radius: 170px 170px 170px 170px;
    border: 7px solid var(--gold-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 45px rgba(93, 55, 107, 0.18);
    z-index: 2;
    background: linear-gradient(135deg, #fffcfd, #fff0f5);
    transition: var(--transition);
}
.circle-frame:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(232, 76, 176, 0.3);
    border-color: var(--gold-dark);
}
.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}
/* Center Section */
.hero-center {
    text-align: center;
    padding: 0 15px;
    z-index: 5;
}
.sub-title {
    color: #551172;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}
/* Thin gold arrow decorations on sides */
.sub-title::before,
.sub-title::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, var(--gold-dark) 50%, var(--gold-text) 100%);
}
.sub-title::after {
    background: linear-gradient(-90deg, rgba(212, 175, 55, 0) 0%, var(--gold-dark) 50%, var(--gold-text) 100%);
}
.hero-center h1 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    color: #8a39ae;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}
.hero-center h1 span {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: var(--accent-magenta);
    display: block;
    font-weight: 600;
    margin-top: 5px;
}
/* Little diamond divider below heading */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 22px;
}
.title-divider::before,
.title-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0), var(--gold-dark) 100%);
}
.title-divider::after {
    background: linear-gradient(to left, rgba(212, 175, 55, 0), var(--gold-dark) 100%);
}
.gold-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold-dark);
    transform: rotate(45deg);
    border: 1px solid #fff;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.4);
}
.hero-center p {
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 30px;
    color: #551172;
    line-height: 1.7;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.pink-btn,
.purple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    transition: var(--transition);
    cursor: pointer;
}
.pink-btn {
    background: linear-gradient(180deg, #ff78b4, #e84298);
    color: #fff;
    box-shadow: 0 10px 25px rgba(232, 76, 176, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.25);
    border: 1.5px solid transparent;
}
.pink-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(232, 76, 176, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}
.purple-btn {
    background: linear-gradient(180deg, #8b4bd4, #63289b);
    color: #fff;
    border: 1.5px solid var(--gold-color);
    box-shadow: 0 10px 25px rgba(99, 40, 155, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}



.purple-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(99, 40, 155, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);

    border-color: #fff;

}



.pink-btn svg,

.purple-btn svg {

    width: 18px;

    height: 18px;

}



/* Reviews and Ratings Row */



.rating-row {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

}



.rating-container {

    display: flex;

    align-items: center;

    gap: 15px;

}



.avatars {

    display: flex;

    align-items: center;

}



.avatars img {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 3px solid #fff;

    margin-left: -10px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    transition: var(--transition);

    object-fit: cover;

}



.avatars img:first-child {

    margin-left: 0;

}



.avatars img:hover {

    transform: translateY(-4px) scale(1.1);

    z-index: 10;

}



.rating-stars-group {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}



.stars {

    display: flex;

    gap: 2px;

    color: #ffb800;

    font-size: 15px;

    margin-bottom: 2px;

}



.rating-text {

    font-weight: 800;

    font-size: 14px;

    color: var(--primary-dark);

}



.review-subtext {

    font-size: 12px;

    color: #551172;

    font-weight: 600;

    letter-spacing: 0.5px;

}



/* Right Section: Stats Card with Glassmorphism */



.hero-right {

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 5;

}



.stats-card {

    background: rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 2px solid rgba(255, 255, 255, 0.85);

    border-radius: 28px;

    padding: 30px 24px;

    width: 100%;

    max-width: 290px;

    box-shadow: 0 20px 50px rgba(93, 55, 107, 0.1);

    transition: var(--transition);

    position: relative;

    overflow: hidden;

}



/* Elegant gold border overlay */



.stats-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    border-radius: 26px;

    border: 1px solid rgba(244, 213, 165, 0.35);

    pointer-events: none;

}



.stats-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 30px 60px rgba(93, 55, 107, 0.15);

    border-color: rgba(244, 213, 165, 0.6);

}



.stat {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 0;

    border-bottom: 1.5px dashed rgba(93, 55, 107, 0.1);

}



.stat:first-child {

    padding-top: 0;

}



.stat:last-child {

    padding-bottom: 0;

    border-bottom: none;

}



.stat-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    background: rgba(255, 255, 255, 0.8);

    border-radius: 14px;

    border: 1.5px solid rgba(244, 213, 165, 0.5);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);

    color: var(--gold-text);

    flex-shrink: 0;

    transition: var(--transition);

}



.stat:hover .stat-icon {

    transform: scale(1.1);

    background: #fff;

    border-color: var(--gold-dark);

    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);

}



.stat-icon svg {

    width: 24px;

    height: 24px;

    /* Apply gradient stroke */

    stroke: url(#gold-grad);

}



.stat-info {

    display: flex;

    flex-direction: column;

}



.stat-info h3 {

    font-size: 24px;

    font-weight: 800;

    color: var(--gold-text);

    line-height: 1.1;

    font-family: var(--font-sans);

}



.stat-info p {

    font-size: 12px;

    font-weight: 700;

    color: #6d6172;

    margin-top: 2px;

}



/* Responsiveness */



@media (max-width: 1200px) {

    .hero-content {

        grid-template-columns: 1fr 1.3fr;

        gap: 30px;

    }



    .hero-right {

        grid-column: span 2;

        justify-content: center;

        margin-top: 20px;

    }



    .stats-card {

        max-width: 650px;

        width: 100%;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 15px;

        padding: 20px;

    }



    .stat {

        border-bottom: none;

        border-right: 1.5px dashed rgba(93, 55, 107, 0.1);

        padding: 0 15px 0 0;

        justify-content: center;

    }



    .stat:last-child {

        border-right: none;

        padding-right: 0;

    }



}



@media (max-width: 992px) {

    .header {

        flex-direction: column;

        gap: 15px;

    }



    .menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px 18px;

    }



    .header-right {

        align-items: center;

        flex-direction: row;

        width: 100%;

        justify-content: space-between;

    }



    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .hero-left {

        order: -1;

    }



    .hero-right {

        grid-column: span 1;

    }



}



@media (max-width: 768px) {

    .hero-overlay {

        padding: 15px;

    }



    .hero-center h1 {

        font-size: 26px;

    }



    .hero-center p {

        font-size: 14px;

    }



    .hero-buttons {

        flex-direction: column;

        width: 100%;

        max-width: 320px;

        margin-left: auto;

        margin-right: auto;

        gap: 12px;

    }



    .pink-btn,

    .purple-btn {

        width: 100%;

    }



    .stats-card {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }



    .stat {

        border-right: none;

        border-bottom: 1.5px dashed rgba(93, 55, 107, 0.1);

        padding: 0 0 15px 0;

    }



    .stat:nth-child(3),

    .stat:nth-child(4) {

        border-bottom: none;

        padding-bottom: 0;

    }



}



@media (max-width: 480px) {

    .stats-card {

        grid-template-columns: 1fr;

    }



    .stat {

        border-right: none;

        border-bottom: 1.5px dashed rgba(93, 55, 107, 0.1);

        padding-bottom: 15px;

    }



    .stat:last-child {

        border-bottom: none;

        padding-bottom: 0;

    }



    .circle-frame-container {

        width: 280px;

        height: 370px;

    }



}



.energy-blocks-section {

    width: 100%;

    /* max-width: 1440px; */

    padding: 60px 0px;

    background: url("images/bg-2.webp") no-repeat center center / cover;

    /* display: flex; */

    flex-direction: column;

    align-items: center;

    box-shadow: 0 -20px 50px -20px rgba(93, 55, 107, 0.25), inset 0 20px 50px -20px rgba(93, 55, 107, 0.15);

    position: relative;

}

.energy-blocks-container {
    margin: 0 auto;
    max-width: 1320px;
}



.section-header {

    text-align: center;

    margin-bottom: 40px;

    position: relative;

    z-index: 2;

}



.section-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 30px;

    color: #8a39ae;

    display: inline-flex;

    align-items: center;

    gap: 15px;

}



.section-title img,

.journey-header img,

.solutions-title img {

    width: 200px;

}



.blocks-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 16px;

    width: 100%;

    /* max-width: 1200px; */

    position: relative;

    z-index: 2;

}



.block-card {

    background: transparent;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border: 1.5px solid rgba(255, 255, 255, 0.8);

    border-radius: 16px;

    padding: 24px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;

    box-shadow: 0 8px 30px 2px rgba(232, 76, 176, 0.1);

    transition: var(--transition);

    cursor: pointer;

}



.block-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(232, 76, 176, 0.16);

    border-color: rgba(232, 76, 176, 0.35);

    background: #fff;

}



.block-icon-wrap {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(244, 213, 165, 0.4);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);

    transition: var(--transition);

}



.block-card:hover .block-icon-wrap {

    transform: scale(1.05);

    border-color: var(--gold);

    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);

}



.block-icon-wrap img {

    width: 95px;

}



.block-svg {

    width: 32px;

    height: 32px;

}



.block-title {

    font-family: var(--font-serif);

    font-size: 16px;

    font-weight: 700;

    color: #551172;

    text-align: center;

    line-height: 1.3;

}



.block-card:hover .block-title {

    color: var(--accent);

}



/* Responsive adjustments */



@media (max-width: 1100px) {

    .blocks-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 20px;

    }



}



@media (max-width: 768px) {

    .blocks-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .section-title {

        font-size: 24px;

    }



}



@media (max-width: 480px) {

    .blocks-grid {

        grid-template-columns: 1fr;

        max-width: 100%;
        padding: 0px 15px;

    }



    .section-title::before,

    .section-title::after {

        display: none;

    }



}



/* Journey Section */



.journey-section {

    width: 100%;

    min-height: 60vh;

    padding: 60px 0px;

    background: url("images/bg-3.webp") no-repeat center center / cover;



}

.journey-section-container {
    max-width: 1320px;
    margin: 0 auto;
}

.journey-section-gridbox {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 30px;

    align-items: center;
}



.journey-left,

.journey-right {

    display: flex;

    flex-direction: column;

    width: 100%;

}



.journey-right {

    align-items: center;

}



/* Header & Title */



.journey-header {

    text-align: center;

    margin-bottom: 50px;

}



.journey-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 32px;

    color: #8a39ae;

    display: inline-flex;

    align-items: center;

    gap: 15px;

}



.journey-title::before,

.journey-title::after {

    content: '';

    width: 50px;

    height: 1px;

    background: linear-gradient(var(--dir, 90deg), transparent, var(--gold) 50%, var(--gold-text));

}



.journey-title::after {

    --dir: -90deg;

}



/* Steps Container & Connectors */



.journey-steps-container {

    display: flex;

    justify-content: space-between;

    position: relative;

    width: 100%;

}



.journey-steps-line {

    position: absolute;

    top: 94px;

    left: 12%;

    right: 12%;

    height: 1.5px;

    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), var(--gold-light) 30%, var(--gold-light) 70%, rgba(212, 175, 55, 0.1));

    z-index: 1;

}



.line-star-left,

.line-star-right {

    position: absolute;

    top: 85px;

    color: var(--gold-text);

    font-size: 15px;

    z-index: 2;

    background: #fff;

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--gold-light);

}



.line-star-left {

    left: 33%;

}



.line-star-right {

    right: 33%;

}



/* Step Card Styles */



.step-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    width: 28%;

    position: relative;

    z-index: 3;

}



.step-item.block-card {

    padding: 24px 16px;

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(212, 175, 55, 0.22);

    border-radius: 18px;

    padding: 32px 14px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.05);

    transition: var(--transition);

    cursor: default;

}



.step-item.block-card .step-circle-wrap {

    margin-bottom: 0;

}



.step-item.block-card .step-label {

    margin-bottom: 0;

}



.step-circle-wrap {

    position: relative;

    width: 140px;

    height: 140px;

    margin-bottom: 20px;

}



.step-circle {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    /* border: 4px solid var(--gold-light); background: #fff; */

    overflow: hidden;

    /* box-shadow: 0 10px 25px rgba(93, 55, 107, 0.1); */

    transition: var(--transition);

}



.step-circle img {

    width: 100%;

    height: 100%;

}



.step-item:hover .step-circle {

    transform: scale(1.05);

    box-shadow: 0 10px 25px rgba(232, 76, 176, 0.15);

}



.step-number {

    position: absolute;

    top: -8px;

    left: 50%;

    transform: translateX(-50%);

    width: 28px;

    height: 28px;

    border-radius: 50%;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1.5px solid #fff;

    z-index: 4;

}



.step-number.step-pink {

    background: linear-gradient(135deg, #ff78b4, #e84298);

}



.step-number.step-purple {

    background: linear-gradient(135deg, #8b4bd4, #63289b);

}



.step-label {

    font-family: var(--font-serif);

    font-size: 19px;

    font-weight: 700;

    color: #551172;

    margin-bottom: 10px;

    transition: var(--transition);

}



.step-item:hover .step-label {

    color: var(--accent);

}



.step-desc {

    font-size: 14px;

    line-height: 1.5;

    color: #551172;

    font-weight: 500;

}



/* Right Column: Scan Card Form */



.scan-card {

    background: transparent;

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 2px solid rgba(255, 255, 255, 0.85);

    border-radius: 28px;

    padding: 35px 30px;

    width: 100%;

    max-width: 420px;

    box-shadow: 0 25px 60px rgba(93, 55, 107, 0.15);

    position: relative;

    overflow: hidden;

    transition: var(--transition);

}



.scan-card::before {

    content: '';

    position: absolute;

    inset: 0;

    border-radius: 26px;

    border: 1px solid rgba(244, 213, 165, 0.4);

    pointer-events: none;

}



.scan-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 30px 70px rgba(232, 76, 176, 0.2);

}



.card-header-wrap {

    display: flex;

    flex-direction: column;

    align-items: center;

    margin-bottom: 25px;

}



.card-title-wings {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

}



.card-title-wings svg {

    width: 24px;

    height: 20px;

    fill: var(--accent);

    opacity: 0.8;

}



.card-title-wings svg:last-child {

    transform: scaleX(-1);

}



.card-title-small {

    font-size: 11px;

    font-weight: 800;

    color: var(--accent);

    letter-spacing: 2px;

}



.card-title-large {

    font-size: 26px;

    font-weight: 700;

    color: #8a39ae;

    margin-top: 2px;

}



/* Form inputs & structure */



.scan-form {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.form-group {

    position: relative;

    width: 100%;

}



.form-input,

.phone-input-wrap {

    background: #ffffff;

    border: 1.5px solid rgba(93, 55, 107, 0.12);

    border-radius: 10px;

    transition: var(--transition);

}



.form-input:focus,

.phone-input-wrap:focus-within {

    border-color: var(--accent);

}



.form-input,

.phone-input {

    font-family: var(--font-sans);

    font-size: 13px;

    color: var(--primary-dark);

    font-weight: 600;

    outline: none;

}



.form-input {

    width: 100%;

    padding: 13px 18px;

}



.phone-input {

    flex-grow: 1;

    border: none;

    padding: 13px 18px;

    background: transparent;

}



.form-input::placeholder,

.phone-input::placeholder {

    color: #9d8ea4;

    font-weight: 500;

}



.input-icon-btn {

    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    color: #9d8ea4;

    display: flex;

    pointer-events: none;

}



.input-icon-btn svg {

    width: 16px;

    height: 16px;

}



.phone-input-wrap {

    display: flex;

    align-items: center;

    overflow: hidden;

}



.flag-selector {

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 0 12px 0 16px;

    border-right: 1px solid rgba(93, 55, 107, 0.12);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    height: 46px;

}



.flag-selector span {

    font-size: 14px;

}



.scan-submit-btn {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #e84cb0, #c82a90);

    color: #fff;

    border: none;

    padding: 15px;

    border-radius: 40px;

    font-family: var(--font-sans);

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 0.8px;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(232, 76, 176, 0.3);

    transition: var(--transition);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 6px;

}

.scan-submit-btn .wpcf7-submit {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
}


.scan-submit-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(232, 76, 176, 0.4);

}



.scan-submit-btn svg {

    width: 14px;

    height: 14px;

    fill: var(--gold-light);

}



.card-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 15px;

    font-size: 11px;

    font-weight: 700;

    color: #551172;

}



.card-footer svg {

    width: 12px;

    height: 12px;

    stroke: currentColor;

    fill: none;

}



.card-butterfly {

    position: absolute;

    top: -5px;

    right: -5px;

    width: 50px;

    height: 50px;

    pointer-events: none;

    opacity: 0.95;

    transform: rotate(-10deg);

}



/* Responsive adjustments */



@media (max-width: 1200px) {

    .journey-section {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .journey-steps-line {

        left: 15%;

        right: 15%;

    }



    .line-star-left {

        left: 35%;

    }



    .line-star-right {

        right: 35%;

    }



}



@media (max-width: 768px) {

    .journey-steps-container {

        flex-direction: column;

        align-items: center;

        gap: 30px;

    }



    .journey-steps-line,

    .line-star-left,

    .line-star-right {

        display: none;

    }



    .step-item {

        width: 100%;

        max-width: 320px;

    }



}



@media (max-width: 480px) {

    .journey-title {

        font-size: 26px;

    }



    .journey-title::before,

    .journey-title::after {

        display: none;

    }



}



/* Solutions Layout Section */



.solutions-section {

    width: 100%;

    /* min-height: 60vh; */

    padding: 60px 0px;

    background: url("images/bg-4.webp") no-repeat center center / cover;

    display: flex;

    flex-direction: column;

    align-items: center;

}



/* Section Header */



.solutions-header {

    text-align: center;

    margin-bottom: 50px;

    width: 100%;

}



.solutions-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 38px;

    font-weight: 700;

    color: rgb(138, 57, 174);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

}



.header-ornament {

    width: 90px;

    height: 18px;

    fill: var(--gold);

}



.header-ornament.left {

    transform: scaleX(-1);

}



.solutions-subtitle {

    font-family: var(--font-sans);

    font-size: 13px;

    font-weight: 700;

    color: #cc3366;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-top: 10px;

}



/* Grid Layout */



.solutions-grid {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 16px;

    width: 100%;

    max-width: 1440px;

}



/* Solution Card Style */



.solution-card {

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(212, 175, 55, 0.22);

    border-radius: 18px;

    padding: 32px 14px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.05);

    transition: var(--transition);

    cursor: default;

}



.solution-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(93, 55, 107, 0.12);

    border-color: rgba(212, 175, 55, 0.45);

    background: rgba(255, 255, 255, 0.7);

}



/* Gold Corner Ornaments */



.card-corner {

    position: absolute;

    width: 12px;

    height: 12px;

    pointer-events: none;

}



.card-corner.tl {

    top: 8px;

    left: 8px;

}



.card-corner.tr {

    top: 8px;

    right: 8px;

    transform: scaleX(-1);

}



.card-corner.bl {

    bottom: 8px;

    left: 8px;

    transform: scaleY(-1);

}



.card-corner.br {

    bottom: 8px;

    right: 8px;

    transform: scale(-1);

}



/* Card Icon */



.card-icon-container {

    width: 96px;

    height: 96px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.card-icon-container::before {

    content: '';

    position: absolute;

    width: 80%;

    height: 80%;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);

    z-index: 0;

}



.card-icon-container img {

    width: 100%;

    position: relative;

    z-index: 1;

    transition: var(--transition);

}



.solution-card:hover .card-icon-container svg {

    transform: scale(1.08);

}



/* Card Content styling */



.card-title {

    font-family: var(--font-sans);

    font-size: 15px;

    font-weight: 700;

    color: var(--primary-dark);

    text-align: center;

    margin-bottom: 10px;

    line-height: 1.25;

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.card-desc {

    font-size: 11px;

    font-weight: 500;

    color: #7a6882;

    text-align: center;

    line-height: 1.4;

    margin-bottom: 18px;

    min-height: 46px;

}



/* Pricing and button */



.card-price-wrap {

    display: flex;

    flex-direction: column;

    align-items: center;

    margin-bottom: 16px;

}



.card-price {

    font-size: 19px;

    font-weight: 800;

    color: var(--price-color);

}



.card-onwards {

    font-size: 9px;

    font-weight: 800;

    color: var(--gold-text);

    letter-spacing: 1.2px;

    margin-top: 1px;

}


.card-btn {

    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);

    color: #ffffff;

    border: none;

    font-family: var(--font-sans);

    font-size: 10px;

    font-weight: 700;

    padding: 7px 22px;

    border-radius: 20px;

    cursor: pointer;

    letter-spacing: 1px;

    box-shadow: 0 4px 10px rgba(93, 55, 107, 0.15);

    transition: var(--transition);

}



.card-btn:hover {

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 6px 15px rgba(232, 76, 176, 0.35);

    transform: translateY(-1px);

}



/* Responsive Styles */



@media (max-width: 1400px) {

    .solutions-grid {

        grid-template-columns: repeat(4, 1fr);

        gap: 20px;

        padding: 0 20px;

    }



}



@media (max-width: 900px) {

    .solutions-grid {

        grid-template-columns: repeat(2, 1fr);

        max-width: 700px;

    }



    .solutions-title {

        font-size: 32px;

        gap: 15px;

    }



    .header-ornament {

        width: 70px;

    }



}



@media (max-width: 540px) {

    .solutions-grid {

        grid-template-columns: 1fr;

        max-width: 360px;

    }



    .solutions-title {

        font-size: 26px;

    }



    .header-ornament {

        display: none;

    }



}



/* Section Container */



.angelic-section {

    width: 100%;

    padding: 60px 0px;

    background: url("images/bg-5.webp") no-repeat center center / cover;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



/* Header & Title */



.angelic-header {

    text-align: center;

    margin-bottom: 50px;

    width: 100%;

}



.angelic-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 38px;

    font-weight: 700;

    color: #fff;

    text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

}



.header-ornament {

    width: 90px;

    height: 18px;

    fill: var(--gold);

}



.header-ornament.left {

    transform: scaleX(-1);

}



/* Grid Layout */



.angelic-grid {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 16px;

    width: 100%;

    max-width: 1440px;

}



/* Solution Card Style */



.angelic-card {

    background: rgba(35, 10, 50, 0.58);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 215, 0, 0.22);

    border-radius: 18px;

    padding: 36px 14px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.15);

    transition: var(--transition);

    cursor: default;

}



.angelic-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(232, 76, 176, 0.25);

    border-color: rgba(255, 215, 0, 0.5);

    background: rgba(35, 10, 50, 0.72);

}



/* Gold Corner Ornaments */



.card-corner {

    position: absolute;

    width: 12px;

    height: 12px;

    pointer-events: none;

}



.card-corner.tl {

    top: 8px;

    left: 8px;

}



.card-corner.tr {

    top: 8px;

    right: 8px;

    transform: scaleX(-1);

}



.card-corner.bl {

    bottom: 8px;

    left: 8px;

    transform: scaleY(-1);

}



.card-corner.br {

    bottom: 8px;

    right: 8px;

    transform: scale(-1);

}



/* Card Content styling */



.angelic-number {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 40px;

    font-weight: 700;

    color: #fff;

    /* text-shadow: 0 0 4px #ffffff, 0 0 10px rgba(255, 230, 150, 0.8), 0 0 20px rgba(255, 200, 80, 0.4); */

    text-align: center;

    margin-bottom: 12px;

    transition: var(--transition);

}



.angelic-number.long-number {

    font-size: 21px;

    margin-bottom: 25px;

    margin-top: 10px;

}



.angelic-card:hover .angelic-number {

    transform: scale(1.05);

    text-shadow: 0 0 12px rgba(255, 229, 127, 0.6);

}



.angelic-desc {

    font-size: 11px;

    font-weight: 700;

    color: #ffb3d9;

    text-align: center;

    line-height: 1.4;

    margin-bottom: 22px;

    min-height: 48px;

    letter-spacing: 0.5px;

}



/* Capsule button */



.angelic-btn {

    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);

    color: #ffffff;

    border: 1px solid rgba(255, 215, 0, 0.3);

    font-family: var(--font-sans);

    font-size: 10px;

    font-weight: 700;

    padding: 7px 22px;

    border-radius: 20px;

    cursor: pointer;

    letter-spacing: 1.2px;

    box-shadow: 0 4px 10px rgba(93, 55, 107, 0.15);

    transition: var(--transition);

}



.angelic-btn:hover {

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 6px 15px rgba(232, 76, 176, 0.4);

    transform: translateY(-1px);

    border-color: transparent;

}



/* Responsive Styles */



@media (max-width: 1400px) {

    .angelic-grid {

        grid-template-columns: repeat(4, 1fr);

        gap: 20px;

        padding: 0 20px;

    }



    .angelic-card.long-num-card {

        grid-column: span 2;

    }



}



@media (max-width: 900px) {

    .angelic-grid {

        grid-template-columns: repeat(2, 1fr);

        max-width: 700px;

    }



    .angelic-title {

        font-size: 32px;

        gap: 15px;

    }



    .header-ornament {

        width: 70px;

    }



}



@media (max-width: 540px) {

    .angelic-grid {

        grid-template-columns: 1fr;

        max-width: 360px;

    }



    .angelic-title {

        font-size: 26px;

    }



    .header-ornament {

        display: none;

    }



}



.test-sec {

    /* min-height: 100vh; */

    padding: 50px 0px;

    background: url("images/bg-11.webp") no-repeat center center;

    background-size: 100% auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

}



.sec-header {

    text-align: center;

    margin-bottom: 0px;

    width: 100%;

}



.sec-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 38px;

    font-weight: 700;

    color: #8a39ae;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

    margin-bottom: 40px;

}



.sec-title img {

    width: 200px;

}



.h-orn {

    width: 90px;

    height: 18px;

    fill: var(--g);

}



.h-orn.left {

    transform: scaleX(-1);

}



.sec-subtitle {

    font-size: 13px;

    font-weight: 700;

    color: #cc3366;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-top: 10px;

}



.t-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 16px;

    width: 100%;

    max-width: 1440px;

    margin-bottom: 48px;

}



.t-card {

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(212, 175, 55, 0.22);

    border-radius: 18px;

    padding: 20px 16px;

    display: flex;

    flex-direction: column;

    position: relative;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.05);

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

}



.t-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(93, 55, 107, 0.12);

    border-color: rgba(212, 175, 55, 0.45);

    background: rgba(255, 255, 255, 0.85);

}



.card-corner {

    position: absolute;

    width: 12px;

    height: 12px;

    pointer-events: none;

}



.card-corner.tl {

    top: 8px;

    left: 8px;

}



.card-corner.tr {

    top: 8px;

    right: 8px;

    transform: scaleX(-1);

}



.card-corner.bl {

    bottom: 8px;

    left: 8px;

    transform: scaleY(-1);

}



.card-corner.br {

    bottom: 8px;

    right: 8px;

    transform: scale(-1);

}



.media-wrap {

    width: 100%;

    aspect-ratio: 1.45;

    border-radius: 12px;

    overflow: hidden;

    position: relative;

    background: #e0d0e6;

    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);

}



.media-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}



.t-card:hover .media-img {

    transform: scale(1.05);

}



.play-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 44px;

    height: 44px;

    background: #ffffff;

    border: 2.5px solid var(--p);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 12px rgba(124, 63, 156, 0.25);

    z-index: 2;

}



.play-btn::after {

    content: '';

    display: block;

    margin-left: 4px;

    width: 0;

    height: 0;

    border-top: 6px solid transparent;

    border-bottom: 6px solid transparent;

    border-left: 10px solid var(--p);

}



.play-btn:hover {

    transform: translate(-50%, -50%) scale(1.1);

    background: var(--p);

    border-color: #ffffff;

    box-shadow: 0 6px 18px rgba(124, 63, 156, 0.45);

}



.play-btn:hover::after {

    border-left-color: #ffffff;

}



.card-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    margin-top: 18px;

    flex-grow: 1;

    justify-content: space-between;

}



.card-quote {

    font-size: 12px;

    font-style: italic;

    color: #5a4b60;

    line-height: 1.5;

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 12px;

}



.card-name {

    font-family: var(--f-serif);

    font-size: 17px;

    font-weight: 700;

    color: var(--pd);

}



.card-stars {

    color: var(--g);

    font-size: 13px;

    margin-top: 4px;

    letter-spacing: 2px;

}



.wa-mock {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    background: #efeae2;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    font-size: 9.5px;

}



.wa-head {

    background: #075e54;

    color: #ffffff;

    padding: 6px 8px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 32px;

}



.wa-user {

    display: flex;

    align-items: center;

    gap: 5px;

}



.wa-back {

    font-size: 11px;

    cursor: pointer;

    opacity: 0.8;

}



.wa-av {

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background: #128c7e;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 8px;

}



.wa-meta {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}



.wa-name {

    font-weight: 700;

    font-size: 9px;

}



.wa-status {

    font-size: 7px;

    opacity: 0.8;

}



.wa-more {

    font-size: 12px;

    opacity: 0.8;

    cursor: pointer;

}



.wa-body {

    flex-grow: 1;

    padding: 8px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    background-color: #efeae2;

}



.wa-bubble {

    max-width: 85%;

    padding: 5px 7px 4px;

    border-radius: 6px;

    position: relative;

    word-wrap: break-word;

    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);

    line-height: 1.25;

    font-size: 9px;

    color: #303030;

}



.wa-bubble.rec {

    background: #ffffff;

    align-self: flex-start;

    border-top-left-radius: 0;

}



.wa-bubble.sent {

    background: #dcf8c6;

    align-self: flex-end;

    border-top-right-radius: 0;

}



.wa-time {

    font-size: 6px;

    color: #888;

    text-align: right;

    display: block;

    margin-top: 2px;

}



.more-btn {

    background: linear-gradient(135deg, #7c3f9c, #522769);

    color: #ffffff;

    border: none;

    font-family: var(--f-sans);

    font-size: 12px;

    font-weight: 700;

    padding: 12px 32px;

    border-radius: 25px;

    cursor: pointer;

    letter-spacing: 1.2px;

    box-shadow: 0 4px 15px rgba(93, 55, 107, 0.2);

    transition: all 0.3s ease;

    margin-top: 10px;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.more-btn:hover {

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 6px 20px rgba(232, 76, 176, 0.4);

    transform: translateY(-2px);

}



@media (max-width: 1300px) {

    .t-grid {

        grid-template-columns: repeat(3, 1fr);

        max-width: 960px;

    }



}



@media (max-width: 850px) {

    .t-grid {

        grid-template-columns: repeat(2, 1fr);

        max-width: 640px;

    }



    .sec-title {

        font-size: 30px;

        gap: 15px;

    }



    .h-orn {

        width: 70px;

    }



}



@media (max-width: 500px) {

    .t-grid {

        grid-template-columns: 1fr;

        max-width: 320px;

    }



    .h-orn {

        display: none;

    }



}



/* ==========================================================================

   Expert Profile Section Styles

   ========================================================================== */



.expert-sec {

    width: 100%;

    min-height: 70vh;

    padding: var(--section-padding);

    background: url("images/bg-8.webp") no-repeat left center / cover;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.expert-container {

    width: 100%;

    max-width: 1350px;

    margin: 0 auto;

    display: flex;

    gap: 40px;

    align-items: center;

    justify-content: space-between;

    z-index: 2;

    padding-left: 20px;

}



/* Profile wrap (Photo + Text) */



.expert-profile-wrap {

    flex: 1.25;

    display: flex;

    gap: 45px;

    align-items: center;

    padding-left: 260px;

    /* Leave space for the absolutely positioned photo */

}



/* Photo Box */



.expert-photo-col {

    flex-shrink: 0;

}



.expert-photo-wrapper {

    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

}



@media (min-aspect-ratio: 1900/828) {

    .expert-photo-wrapper {

        left: 0;

        top: 50%;

        transform: translateY(-50%);

        width: 23.1vw;

        height: 23.1vw;

    }



}



@media (max-aspect-ratio: 1900/828) {

    .expert-photo-wrapper {

        left: 0;

        top: 50%;

        transform: translateY(-50%);

        width: 53vh;

        height: 53vh;

    }



}



.expert-photo-frame {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    overflow: hidden;

    background: transparent;

    border: 2px solid #fff;

    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(93, 55, 107, 0.1);

    transition: var(--transition);

}



.expert-photo-frame img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    object-position: center top;

    transition: var(--transition);

}



.expert-photo-frame:hover img {

    transform: scale(1.08);

}



/* Play Button overlay */



.expert-play-btn {

    position: absolute;

    bottom: 4%;

    right: 4%;

    width: 54px;

    height: 54px;

    background: linear-gradient(135deg, #7c3f9c, #522769);

    border: 3px solid #fff;

    box-shadow: 0 0 0 2px var(--g), 0 6px 15px rgba(124, 63, 156, 0.35);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    z-index: 5;

}



.expert-play-btn svg {

    width: 22px;

    height: 22px;

    fill: #fff;

}



.expert-play-btn:hover {

    transform: scale(1.1);

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 6px 20px rgba(232, 76, 176, 0.45);

}



/* Info Column */



.expert-info-col {

    display: flex;

    flex-direction: column;

}



.expert-meta {

    font-size: 11px;

    font-weight: 800;

    color: #cc3366;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;

}



.expert-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 36px;

    font-weight: 700;

    color: #8a39ae;

    line-height: 1.25;

    margin-bottom: 16px;

}



.expert-desc {

    font-size: 15px;

    line-height: 1.6;

    color: #5a4b60;

    margin-bottom: 24px;

    font-weight: 400;

}



/* 2x2 Grid */



.expert-points-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 24px;

    margin-bottom: 30px;

}



.expert-point {

    display: flex;

    align-items: center;

    gap: 10px;

}



.point-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 20px;

    height: 20px;

    background: rgba(212, 175, 55, 0.12);

    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 50%;

    color: var(--g);

    flex-shrink: 0;

}



.point-icon svg {

    width: 11px;

    height: 11px;

    fill: currentColor;

}



.point-text {

    font-size: 13.5px;

    font-weight: 600;

    color: #5a4b60;

}



/* Footer Section */



.expert-footer {

    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;

}



.expert-cta-btn {

    background: linear-gradient(135deg, #7c3f9c, #522769);

    color: #ffffff;

    border: none;

    text-decoration: none;

    font-family: var(--f-sans);

    font-size: 12.5px;

    font-weight: 700;

    padding: 14px 34px;

    border-radius: 25px;

    cursor: pointer;

    letter-spacing: 1px;

    box-shadow: 0 6px 18px rgba(93, 55, 107, 0.2);

    transition: all 0.3s ease;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);

    text-align: center;

}



.expert-cta-btn:hover {

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 8px 22px rgba(232, 76, 176, 0.4);

    transform: translateY(-2px);

}



.expert-signature-wrap {

    display: flex;

    flex-direction: column;

    line-height: 1.25;

}



.sig-prefix {

    font-family: 'Outfit', sans-serif;

    font-size: 11px;

    color: #8f7999;

    font-style: italic;

    font-weight: 500;

}



.sig-name {

    font-size: 14px;

    color: var(--p);

    margin-top: 5px;

    letter-spacing: 0.5px;

    white-space: nowrap;

    font-style: italic;

}



/* Stats Wrap */



.expert-stats-wrap {

    flex: 0.95;

}



.stats-panel-box {

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1.5px solid rgba(212, 175, 55, 0.3);

    border-radius: 24px;

    padding: 40px 24px;

    position: relative;

    box-shadow: 0 15px 35px rgba(93, 55, 107, 0.05);

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

}



.stats-panel-box::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    border-radius: 22px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    pointer-events: none;

}



.stats-panel-box:hover {

    transform: translateY(-5px);

    box-shadow: 0 25px 50px rgba(93, 55, 107, 0.12);

    border-color: rgba(212, 175, 55, 0.55);

}



.stats-corner {

    position: absolute;

    width: 14px;

    height: 14px;

    pointer-events: none;

}



.stats-corner.tl {

    top: 10px;

    left: 10px;

}



.stats-corner.tr {

    top: 10px;

    right: 10px;

    transform: scaleX(-1);

}



.stats-corner.bl {

    bottom: 10px;

    left: 10px;

    transform: scaleY(-1);

}



.stats-corner.br {

    bottom: 10px;

    right: 10px;

    transform: scale(-1);

}



.stats-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.stat-col {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    flex: 1;

    padding: 0 10px;

}



.stat-col-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin-bottom: 12px;

    color: var(--g);

    transition: all 0.3s ease;

}



.stat-col-icon svg {

    width: 32px;

    height: 32px;

    stroke: currentColor;

    stroke-width: 1.5;

    fill: none;

}



.stat-col:hover .stat-col-icon {

    transform: translateY(-4px) scale(1.08);

    color: var(--gt);

}



.stat-number {

    font-size: 25px;

    font-weight: 800;

    color: #8a39ae;

    margin-bottom: 4px;

    letter-spacing: -0.5px;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

}



.stat-label {

    font-size: 10.5px;

    font-weight: 700;

    color: #7d6e85;

    line-height: 1.35;

    min-height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.stat-divider {

    width: 1px;

    height: 60px;

    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.45) 50%, rgba(212, 175, 55, 0.05));

    flex-shrink: 0;

}



/* Responsive Breakpoints */



@media (max-width: 1280px) {

    .expert-sec {

        background-position: center center;

    }



    .expert-container {

        flex-direction: column;

        gap: 50px;

        max-width: 900px;

        padding: 0 16px;

    }



    .expert-profile-wrap {

        width: 100%;

        padding-left: 0;

        flex-direction: column;

        gap: 35px;

    }



    .expert-photo-wrapper {

        position: relative;

        left: auto;

        top: auto;

        transform: none;

        margin: 0 auto;

        width: 250px;

        height: 250px;

    }



    .expert-stats-wrap {

        width: 100%;

    }



}



@media (max-width: 900px) {

    .expert-profile-wrap {

        gap: 30px;

    }



    .expert-info-col {

        align-items: center;

    }



    .expert-footer {

        justify-content: center;

    }



    .expert-points-grid {

        justify-items: start;

        margin: 20px auto 30px;

        max-width: 500px;

    }



}



@media (max-width: 600px) {

    .stats-row {

        flex-direction: column;

        gap: 30px;

    }



    .stat-divider {

        width: 60px;

        height: 1px;

        background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.45) 50%, rgba(212, 175, 55, 0.05));

    }



    .expert-points-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }



    .expert-footer {

        flex-direction: column;

        gap: 20px;

    }



    .expert-title {

        font-size: 28px;

    }



}



/* ==========================================================================

   Healing Insights & Blogs Section Styles

   ========================================================================== */



.blogs-sec {

    width: 100%;

    min-height: 80vh;

    padding: var(--section-padding);

    background: url("images/bg-9.webp") no-repeat center center / cover;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    overflow: hidden;

}



.blogs-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 38px;

    font-weight: 700;

    color: #8a39ae;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

    margin-bottom: 50px;

    text-align: center;

}



.blogs-h-orn {

    width: 90px;

    height: 18px;

    fill: var(--g);

}



.blogs-h-orn.left {

    transform: scaleX(-1);

}



.blogs-container {

    width: 100%;

    max-width: 1350px;

    margin: 0 auto;

    display: flex;

    gap: 30px;

    align-items: center;

    z-index: 2;

}



.blogs-grid {

    flex: 1;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;

}



.blog-card {

    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.04);

    border: 1px solid rgba(212, 175, 55, 0.15);

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    position: relative;

    height: 100%;

}



.blog-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(93, 55, 107, 0.12);

    border-color: rgba(212, 175, 55, 0.4);

}



.blog-media-wrap {

    width: 100%;

    aspect-ratio: 1.6;

    overflow: hidden;

    position: relative;

    background: #fdf5ff;

}



.blog-media-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}



.blog-card:hover .blog-media-img {

    transform: scale(1.05);

}



/* Play Button overlay inside card images */



.blog-play-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 40px;

    height: 40px;

    background: #ffffff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(93, 55, 107, 0.15);

    transition: all 0.3s ease;

    z-index: 3;

    border: none;

}



.blog-play-btn svg {

    width: 13px;

    height: 13px;

    fill: var(--p);

    margin-left: 2px;

    transition: fill 0.3s ease;

}



.blog-play-btn:hover {

    transform: translate(-50%, -50%) scale(1.1);

    background: var(--p);

    box-shadow: 0 6px 18px rgba(124, 63, 156, 0.35);

}



.blog-play-btn:hover svg {

    fill: #ffffff;

}



.blog-content {

    padding: 18px 16px 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    flex-grow: 1;

    gap: 15px;

}



.blog-card-title {

    font-size: 14.5px;

    font-weight: 700;

    color: var(--pd);

    line-height: 1.45;

    font-family: var(--f-sans);

}



.blog-card-link {

    font-size: 11px;

    font-weight: 800;

    color: #8a39ae;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;

    transition: color 0.3s ease;

    display: inline-block;

    align-self: flex-start;

}



.blog-card-link:hover {

    color: var(--p);

}



/* Slider controls on the right */



.blogs-nav {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 16px;

    flex-shrink: 0;

}



.blogs-nav-btn {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 1.5px solid rgba(124, 63, 156, 0.25);

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--p);

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}



.blogs-nav-btn svg {

    width: 14px;

    height: 14px;

    fill: currentColor;

    transition: transform 0.3s ease;

}



.blogs-nav-btn:hover {

    background: rgba(124, 63, 156, 0.08);

    border-color: var(--p);

    color: var(--pd);

    transform: translateY(-2px);

}



.blogs-nav-btn.prev:hover svg {

    transform: translateY(-2px);

}



.blogs-nav-btn.next:hover svg {

    transform: translateY(2px);

}



.blogs-nav-btn.active {

    background: linear-gradient(135deg, #7c3f9c, #522769);

    border-color: transparent;

    color: #ffffff;

    box-shadow: 0 4px 12px rgba(124, 63, 156, 0.3);

}



.blogs-nav-btn.active:hover {

    background: linear-gradient(135deg, #e84cb0, #c02c91);

    box-shadow: 0 6px 16px rgba(232, 76, 176, 0.4);

    transform: scale(1.08);

}



/* ==========================================================================

   CTA Banner Styles

   ========================================================================== */



.cta-sec {

    width: 100%;

    padding: 0 0 20px 0;

    background: transparent;

    position: relative;

    z-index: 5;

    margin-top: 60px;

}



.cta-banner {

    width: 100%;

    max-width: 1350px;

    margin: 0 auto;

    background: linear-gradient(90deg, #df489c96, #e03ca57a);

    border-radius: 40px;

    padding: 30px 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    box-shadow: 0 15px 40px rgba(152, 34, 110, 0.25);

    border: 1.5px solid rgba(255, 255, 255, 0.2);

}



.cta-butterfly {

    position: absolute;

    width: 48px;

    height: 48px;

    pointer-events: none;

    z-index: 6;

    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));

    transition: all 0.8s ease;

}



.cta-butterfly.left {

    left: -20px;

    top: -10px;

    transform: rotate(-15deg);

}



.cta-butterfly.right {

    right: 250px;

    bottom: -15px;

    transform: rotate(20deg);

}



.cta-banner:hover .cta-butterfly.left {

    transform: translate(-5px, -5px) rotate(-25deg) scale(1.1);

}



.cta-banner:hover .cta-butterfly.right {

    transform: translate(5px, 5px) rotate(30deg) scale(1.1);

}



.cta-content {

    display: flex;

    flex-direction: column;

    gap: 6px;

    color: #ffffff;

}



.cta-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 32px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.5px;

}



.cta-desc {

    font-size: 14.5px;

    font-weight: 500;

    opacity: 0.95;

    letter-spacing: 0.3px;

}



.cta-buttons {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-shrink: 0;

}



.cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 32px;

    border-radius: 30px;

    font-family: var(--f-sans);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    cursor: pointer;

}



.cta-btn.wa {

    background: linear-gradient(135deg, #25D366, #128C7E);

    color: #ffffff;

    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);

    border: none;

}



.cta-btn.wa:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);

    background: linear-gradient(135deg, #22e666, #0e9c8a);

}



.cta-btn.wa svg {

    width: 18px;

    height: 18px;

    fill: currentColor;

}



.cta-btn.consult {

    background: linear-gradient(135deg, #7c3f9c, #522769);

    color: #ffffff;

    border: 1.5px solid var(--g);

    box-shadow: 0 6px 15px rgba(124, 63, 156, 0.25);

}



.cta-btn.consult:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(124, 63, 156, 0.45);

    border-color: #ffffff;

    background: linear-gradient(135deg, #e84cb0, #c02c91);

}



.cta-btn.consult svg {

    width: 14px;

    height: 14px;

    fill: var(--g);

    transition: fill 0.3s ease;

}



.cta-btn.consult:hover svg {

    fill: #ffffff;

}



/* ==========================================================================

   Responsive Styles for Blogs & CTA

   ========================================================================== */



@media (max-width: 1400px) {

    .blogs-grid {

        grid-template-columns: repeat(3, 1fr);

    }



}



@media (max-width: 1100px) {

    .cta-banner {

        flex-direction: column;

        text-align: center;

        gap: 30px;

        padding: 35px 25px;

    }



    .cta-butterfly.right {

        right: 20px;

        top: -15px;

        bottom: auto;

    }



}



@media (max-width: 900px) {

    .blogs-container {

        flex-direction: column;

        gap: 35px;

    }



    .blogs-nav {

        flex-direction: row;

        justify-content: center;

        width: 100%;

        margin-top: 10px;

        gap: 12px;

    }



    .blogs-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .blogs-title {

        font-size: 32px;

        gap: 15px;

    }



    .blogs-h-orn {

        width: 70px;

    }



}



@media (max-width: 600px) {

    .blogs-grid {

        grid-template-columns: 1fr;

        max-width: 320px;

    }



    .cta-buttons {

        flex-direction: column;

        width: 100%;

        gap: 12px;

    }



    .cta-btn {

        width: 100%;

    }



    .cta-title {

        font-size: 26px;

    }



    .blogs-h-orn {

        display: none;

    }



}



/* ==========================================================================

   Footer Section Styles

   ========================================================================== */



.footer-sec {

    width: 100%;

    padding: 60px 0px 15px;

    background: linear-gradient(135deg, rgb(34 6 48 / 0%), rgb(65 34 108)), url(images/bg-10.webp) no-repeat center center / cover;

    border-top: 1px solid rgba(212, 175, 55, 0.2);

    position: relative;

    z-index: 10;

    overflow: hidden;

}



.footer-container {

    width: 100%;

    max-width: 1320px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 32px;

}



.footer-col {

    display: flex;

    flex-direction: column;

    gap: 20px;

    padding-right: 15px;

    border-right: 1px solid rgba(212, 175, 55, 0.15);

}



.footer-col:last-child {

    border-right: none;

    padding-right: 0;

}



/* Info Column styling */



.footer-info {

    align-items: flex-start;

}



.footer-logo {

    max-width: 150px;

    height: auto;

    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));

}



.footer-socials {

    display: flex;

    gap: 10px;

    margin-top: 10px;

}



.footer-social-link {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(124, 63, 156, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #220630;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    text-decoration: none;

}



.footer-social-link svg {

    width: 16px;

    height: 16px;

    fill: currentColor;

}



.footer-social-link:hover {

    background: var(--g);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);

}



/* Link Columns styling */



.footer-col h3 {

    font-family: var(--f-serif);

    font-size: 17px;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: 0.5px;

    margin-bottom: 5px;

    position: relative;

}



.footer-col ul {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.footer-col ul li a {

    font-family: var(--f-sans);

    font-size: 13.5px;

    font-weight: 500;

    color: #c8b8d0;

    text-decoration: none;

    transition: all 0.3s ease;

    display: inline-block;

}



.footer-col ul li a:hover {

    color: #ffffff;

    transform: translateX(4px);

}



/* Contact Column styling */



.footer-contact {

    gap: 18px;

}



.footer-contact-item {

    display: flex;

    align-items: center;

    gap: 12px;

}



.footer-contact-icon {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #220630;

    flex-shrink: 0;

    border: 1px solid rgba(124, 63, 156, 0.15);

}



.footer-contact-icon svg {

    width: 14px;

    height: 14px;

    fill: currentColor;

}



.footer-contact-text {

    font-family: var(--f-sans);

    font-size: 13.5px;

    font-weight: 500;

    color: #e5daf0;

}



.footer-contact-text a {

    color: inherit;

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-contact-text a:hover {

    color: #ffffff;

}



/* Footer Bottom styling */



.footer-bottom {

    width: 100%;

    max-width: 1320px;

    margin: 30px auto 0;

    padding-top: 15px;

    border-top: 1px solid rgba(212, 175, 55, 0.15);

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.footer-copy,

.footer-credit {

    font-family: var(--f-sans);

    font-size: 12px;

    font-weight: 500;

    color: #9d8eab;

    letter-spacing: 0.3px;

}



.footer-credit .heart {

    color: #ff3366;

    margin: 0 2px;

    display: inline-block;

    animation: heartBeat 1.5s infinite;

}



@keyframes heartBeat {



    0%,

    100% {

        transform: scale(1);

    }



    50% {

        transform: scale(1.15);

    }



}



/* ==========================================================================

   Responsive Footer Styles

   ========================================================================== */



@media (max-width: 1280px) {

    .footer-container {

        grid-template-columns: repeat(3, 1fr);

        gap: 40px;

    }



    .footer-col {

        border-right: none;

        padding-right: 0;

    }



}



@media (max-width: 768px) {

    .footer-sec {

        padding: 60px 16px 30px;

    }



    .footer-container {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px;

    }



    .footer-info {

        grid-column: span 2;

        align-items: center;

        text-align: center;

        border-bottom: 1px solid rgba(212, 175, 55, 0.15);

        padding-bottom: 25px;

    }



    .footer-bottom {

        flex-direction: column;

        gap: 12px;

        text-align: center;

        margin-top: 35px;

    }



}



@media (max-width: 480px) {

    .footer-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }



    .footer-info {

        grid-column: span 1;

    }



    .footer-contact-item {

        flex-direction: row;

        align-items: baseline;

        text-align: start;

        gap: 15px;

    }



}



.align-center {

    align-items: center !important;

}



.hero-founder-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

}



.founder-frame-container {

    position: relative;

    width: 365px;

    height: 365px;

}



.rose-gold-glow {

    position: absolute;

    top: -10px;

    left: -10px;

    right: -10px;

    bottom: -10px;

    border-radius: 50%;

    background: radial-gradient(circle, var(--pink) 0%, rgba(212, 163, 115, 0.4) 60%, transparent 100%);

    z-index: 0;

    filter: blur(8px);

    animation: pulseGlow 4s infinite alternate ease-in-out;

}



.founder-outer-circle {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    border-radius: 50%;

    border: 2px solid #D4A373;

    padding: 8px;

    background: linear-gradient(135deg, #D4A373 0%, #E9C46A 50%, #D4A373 100%);

    box-shadow: 0 8px 32px rgba(212, 163, 115, 0.15);

    z-index: 1;

}



.founder-inner-circle {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    border: 1px solid #E9C46A;

    overflow: hidden;

    position: relative;

    background: #FFF;

}



.founder-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

}



.floral-frame-overlay {

    position: absolute;

    top: 10px;

    left: -60px;

    width: calc(100% + 60px);

    height: calc(100% + 60px);

    object-fit: contain;

    z-index: 2;

    pointer-events: none;

    filter: drop-shadow(0 8px 20px rgba(59, 30, 84, 0.25));

    animation: gentleSway 15s infinite ease-in-out;

}



.butterfly-1 {

    top: 30px;

    left: -25px;

    font-size: 1.6rem;

    z-index: 3;

    animation: flutter1 6s infinite ease-in-out;

}



.butterfly-2 {

    bottom: 60px;

    right: -25px;

    font-size: 1.4rem;

    z-index: 3;

    animation: flutter2 7s infinite ease-in-out 1s;

}



/* ==========================================================================

   Global Responsiveness & Overflow Fixes

   ========================================================================== */



html,

body {

    width: 100%;

    overflow-x: hidden;

    margin: 0;

    padding: 0;

}



/* Base Hamburger button styling (hidden on desktop) */



.hamburger {

    display: none;

}



/* Responsiveness overrides */



@media (max-width: 992px) {



    /* Header menu hamburger layout */

    .header {

        flex-direction: row !important;

        justify-content: space-between !important;

        align-items: center !important;

        width: 100%;

        position: relative;

    }



    .hamburger {

        display: flex !important;

        flex-direction: column;

        justify-content: space-between;

        width: 28px;

        height: 20px;

        background: transparent;

        border: none;

        cursor: pointer;

        z-index: 1001;

        padding: 0;

    }



    .hamburger span {

        width: 100%;

        height: 3px;

        background-color: var(--primary);

        border-radius: 3px;

        transition: var(--transition);

    }



    /* Transform hamburger into 'X' when active */

    .hamburger.active span:nth-child(1) {

        transform: translateY(8.5px) rotate(45deg);

    }



    .hamburger.active span:nth-child(2) {

        opacity: 0;

    }



    .hamburger.active span:nth-child(3) {

        transform: translateY(-8.5px) rotate(-45deg);

    }



    .menu {

        display: none !important;

        flex-direction: column !important;

        position: absolute;

        top: 80px;

        left: 0;

        right: 0;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);

        border: 1.5px solid rgba(93, 55, 107, 0.15);

        border-radius: 20px;

        padding: 24px 20px !important;

        gap: 14px !important;

        z-index: 1000;

        box-shadow: 0 15px 35px rgba(93, 55, 107, 0.15);

        width: 100%;

    }



    .menu.active {

        display: flex !important;

    }



    .menu a {

        font-size: 14px !important;

        padding: 6px 0;

        width: 100%;

        justify-content: flex-start;

    }



    .menu a::after {

        display: none !important;

        /* Hide hover lines on mobile */

    }



    .header-right {

        display: none !important;

        /* Hide header book consult button to clean layout */

    }



}



/* Portrait scaling on small screens */



@media (max-width: 400px) {

    .founder-frame-container {

        width: 290px !important;

        height: 290px !important;

    }



    .floral-frame-overlay {

        left: -35px !important;

        width: calc(100% + 35px) !important;

        height: calc(100% + 35px) !important;

    }



    .butterfly-1 {

        left: -15px !important;

    }



    .butterfly-2 {

        right: -15px !important;

    }



}



/* Expert Section Portrait scaling */



@media (max-width: 1280px) {

    .expert-photo-wrapper .founder-frame-container {

        width: 100% !important;

        height: 100% !important;

        max-width: 250px;

        max-height: 250px;

    }



}



/* Angelic numbers span reset on mobile */



@media (max-width: 540px) {

    .angelic-card.long-num-card {

        grid-column: span 1 !important;

    }



}



@media (max-width: 767px) {

    .title-img {

        display: none;

    }



    .sec-title,

    .angelic-title,

    .solutions-title,

    .journey-title {

        font-size: 24px;

        color: #8a39ae;

    }



    .scan-card {

        padding: 35px 20px;

    }



    .card-title-large {

        font-size: 24px;

    }



}



/* ==========================================================================

   About Us Page Styles

   ========================================================================== */

.about-hero-section.vaastu {
    background: url(images/about-bg-5.webp) no-repeat center center;
    background-size: cover;
    background-position: right;
}

.about-hero-section {

    min-height: auto;

    padding-bottom: 100px;

    position: relative;

    display: flex;

    flex-direction: column;

    box-shadow: rgba(85, 17, 114, 0.15) 0px 10px 30px;

    z-index: 3;

    overflow: hidden;

    background: url(images/about-bg-4.webp) no-repeat center center;

    background-size: 100% auto;

}



.about-hero-content {

    display: grid;

    grid-template-columns: 1fr 1.6fr 1fr;

    align-items: center;

    gap: 30px;

    flex-grow: 1;

    margin-top: 20px;

    position: relative;

    z-index: 5;

}



.about-hero-left {

    display: flex;

    justify-content: center;

    align-items: center;

}



.about-hero-center {

    text-align: center;

    padding: 0 10px;

}



.about-main-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 54px;

    font-weight: 700;

    color: #8a39ae;

    line-height: 1.1;

    margin-bottom: 10px;

    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);

}



.about-hero-subtitle {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 20px;

    font-weight: 700;

    color: var(--accent-magenta);

    margin-bottom: 20px;

    line-height: 1.3;

}



.about-lead-desc {

    font-size: 15px;

    line-height: 1.65;

    color: #533a60;

    font-weight: 500;

    margin-bottom: 16px;

    max-width: 680px;

    margin-left: auto;

    margin-right: auto;

}



.about-sub-desc {

    font-size: 14.5px;

    line-height: 1.65;

    color: #6e587a;

    font-weight: 500;

    max-width: 660px;

    margin-left: auto;

    margin-right: auto;

}



/* Right Column Angel Illustration */



.about-hero-right {

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

}



.angel-graphic-wrap {

    position: relative;

    width: 100%;

    max-width: 380px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.pink-angel-img {

    width: 100%;

    height: auto;

    max-height: 480px;

    object-fit: contain;

    filter: drop-shadow(0 15px 35px rgba(232, 76, 176, 0.25));

    animation: gentleAngelFloat 6s ease-in-out infinite alternate;

}



@keyframes gentleAngelFloat {

    0% {

        transform: translateY(0px) rotate(0deg);

    }



    100% {

        transform: translateY(-12px) rotate(1deg);

    }



}



/* Stats Section in About Us */



.about-stats-section {

    width: 100%;

    padding: 0 40px;

    position: relative;

    z-index: 10;

    margin-top: -50px;

}



.about-stats-card {

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1.5px solid rgba(244, 213, 165, 0.6);

    border-radius: 28px;

    padding: 26px 20px;

    width: 100%;

    max-width: 1320px;

    margin: 0 auto;

    box-shadow: 0 15px 40px rgba(93, 55, 107, 0.08);

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;

    align-items: center;

}



.about-stats-card .stat {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 0 10px;

    border-bottom: none;

    border-right: 1.5px dashed rgba(93, 55, 107, 0.12);

}



.about-stats-card .stat:last-child {

    border-right: none;

}



/* Mission, Vision & Healer Grid Section */



.about-grid-section {

    width: 100%;

    padding: 40px;

    background: #FFF8F9;

}



.about-grid-container {

    width: 100%;

    max-width: 1320px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 28px;

    align-items: stretch;

}



/* Left: Mission & Vision Cards */



.mv-cards-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    height: 100%;

}



.mv-card {

    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1.5px solid rgba(255, 215, 0, 0.25);

    border-radius: 24px;

    padding: 38px 24px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.05);

    transition: var(--transition);

}



.mv-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(232, 76, 176, 0.15);

    border-color: rgba(232, 76, 176, 0.4);

    background: rgba(255, 255, 255, 0.85);

}



.mv-icon-circle {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: rgba(255, 240, 248, 0.9);

    border: 1.5px solid rgba(232, 76, 176, 0.3);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    box-shadow: 0 6px 15px rgba(232, 76, 176, 0.1);

    transition: var(--transition);

}



.mv-card:hover .mv-icon-circle {

    transform: scale(1.1);

    border-color: var(--accent);

}



.mv-icon-circle svg {

    width: 32px;

    height: 32px;

}



.mv-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 24px;

    font-weight: 700;

    color: #551172;

    margin-bottom: 14px;

}



.mv-desc {

    font-size: 13.5px;

    line-height: 1.65;

    color: #6e587a;

    font-weight: 500;

}



/* Right: Meet Your Guide & Healer Card */



.healer-card {

    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1.5px solid rgba(232, 76, 176, 0.25);

    border-radius: 24px;

    padding: 30px 24px;

    display: flex;

    flex-direction: column;

    box-shadow: 0 10px 30px rgba(93, 55, 107, 0.05);

    transition: var(--transition);

    height: 100%;

}



.healer-card:hover {

    box-shadow: 0 20px 45px rgba(93, 55, 107, 0.12);

    border-color: rgba(232, 76, 176, 0.45);

}



.healer-card-header {

    text-align: center;

    margin-bottom: 18px;

}



.healer-card-title {

    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    font-size: 26px;

    font-weight: 700;

    color: #551172;

    margin-bottom: 4px;

}



.healer-card-subtitle {

    font-size: 13px;

    font-weight: 600;

    color: #9c32a6;

}



.healer-video-wrap {

    position: relative;

    width: 100%;

    flex-grow: 1;

    min-height: 240px;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}



.healer-video-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.healer-card:hover .healer-video-img {

    transform: scale(1.03);

}



.healer-play-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;

    height: 58px;

    background: #ffffff;

    border: none;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(232, 76, 176, 0.4);

    transition: var(--transition);

    z-index: 5;

}



.healer-play-btn svg {

    width: 22px;

    height: 22px;

    fill: #e84cb0;

    margin-left: 3px;

}



.healer-play-btn:hover {

    transform: translate(-50%, -50%) scale(1.12);

    background: #e84cb0;

}



.healer-play-btn:hover svg {

    fill: #ffffff;

}



/* Why Choose Us Section */



.why-choose-section {

    width: 100%;

    padding: 0 40px;

    background: #FFF8F9;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.why-choose-card-box {

    width: 100%;

    max-width: 1320px;

    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1.5px solid rgba(212, 175, 55, 0.3);

    border-radius: 24px;

    padding: 38px 16px;

    box-shadow: 0 15px 40px rgba(93, 55, 107, 0.06);

}



.why-choose-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    width: 100%;

}



.why-feature-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 0 12px;

    border-right: 1.5px dashed rgba(212, 175, 55, 0.25);

}



.why-feature-item:last-child {

    border-right: none;

}



.why-icon-wrap {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: rgba(255, 250, 240, 0.85);

    border: 1.5px solid rgba(212, 175, 55, 0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);

    transition: var(--transition);

}



.why-feature-item:hover .why-icon-wrap {

    transform: translateY(-3px) scale(1.08);

    border-color: #d4af37;

}



.why-icon-wrap svg {

    width: 24px;

    height: 24px;

}



.why-feature-title {

    font-family: var(--font-sans);

    font-size: 14.5px;

    font-weight: 700;

    color: #551172;

    margin-bottom: 8px;

    line-height: 1.3;

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.why-feature-desc {

    font-size: 12px;

    line-height: 1.5;

    color: #6e587a;

    font-weight: 500;

}



/* Floating WhatsApp Button */



.floating-wa-btn {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 54px;

    height: 54px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);

    z-index: 999;

    transition: var(--transition);

    text-decoration: none;

}



.floating-wa-btn svg {

    width: 30px;

    height: 30px;

    fill: #ffffff;

}



.floating-wa-btn:hover {

    transform: scale(1.1);

    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);

}



/* ==========================================================================

   About Us Custom CTA Section (.abt-cta-sec)

   ========================================================================== */



.abt-cta-sec {

    width: 100%;

    background: url(images/about-bottom-bg.webp) no-repeat center center / cover;

    padding: 80px 40px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 20px;

}



.abt-cta-container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    justify-content: space-around;

    align-items: center;

    padding: 0 40px;

}



.abt-cta-content {

    display: flex;

    flex-direction: column;

    gap: 6px;

    text-align: left;

}



.abt-cta-title {

    font-family: var(--font-serif);

    font-size: 34px;

    font-weight: 700;

    color: #8a39ae;

    line-height: 1.25;

}



.abt-cta-title .highlight {

    color: #e6147cc9;

}



.abt-cta-desc {

    font-family: var(--font-sans);

    font-size: 15px;

    font-weight: 600;

    color: #551c6e;

}



.abt-cta-action {

    flex-shrink: 0;

}



.abt-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #e53c8a, #be226b);

    color: #ffffff;

    padding: 14px 34px;

    border-radius: 30px;

    font-family: var(--font-sans);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(213, 40, 126, 0.4);

    transition: var(--transition);

}



.abt-cta-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(213, 40, 126, 0.55);

    background: linear-gradient(135deg, #f04897, #cf2a77);

}



/* ==========================================================================

   Unified Responsive Media Queries

   ========================================================================== */



@media (max-width: 1280px) {

    .about-hero-section {

        background-size: cover;

    }



    .about-hero-content {

        grid-template-columns: 1fr 1.4fr;

    }



    .about-hero-right {

        display: none;

    }



    .about-stats-card {

        grid-template-columns: repeat(3, 1fr);

        gap: 20px;

    }



    .about-stats-card .stat:nth-child(3) {

        border-right: none;

    }



    .why-choose-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 24px 0;

    }



    .why-feature-item:nth-child(3) {

        border-right: none;

    }



}



@media (max-width: 992px) {

    .about-hero-content {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .about-grid-container {

        grid-template-columns: 1fr;

    }



    .why-choose-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px 0;

    }



    .why-feature-item {

        border-right: none;

        border-bottom: 1.5px dashed rgba(212, 175, 55, 0.25);

        padding-bottom: 20px;

    }



    .why-feature-item:nth-last-child(-n+2) {

        border-bottom: none;

        padding-bottom: 0;

    }



    .abt-cta-container {

        flex-direction: column;

        text-align: center;

        gap: 24px;

        padding: 0 15px;

    }



    .abt-cta-content {

        text-align: center;

    }



    .abt-cta-title {

        font-size: 26px;

    }



}



@media (max-width: 768px) {

    .about-hero-section {

        background-size: cover;

    }



    .about-main-title {

        font-size: 38px;

    }



    .about-hero-subtitle {

        font-size: 16px;

    }



    .about-stats-card {

        grid-template-columns: repeat(2, 1fr);

    }



    .about-stats-card .stat:nth-child(2) {

        border-right: none;

    }



    .mv-cards-wrapper {

        grid-template-columns: 1fr;

    }



}

.floating-wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   About Us Custom CTA Section (.abt-cta-sec)
   ========================================================================== */

.abt-cta-sec {
    width: 100%;
    background: url(images/about-bottom-bg.webp) no-repeat center center / cover;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.abt-cta-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 40px;
}

.abt-cta-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.abt-cta-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #8a39ae;
    line-height: 1.25;
}

.abt-cta-title .highlight {
    color: #e6147cc9;
}

.abt-cta-desc {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: #551c6e;
}

.abt-cta-action {
    flex-shrink: 0;
}

.abt-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e53c8a, #be226b);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(213, 40, 126, 0.4);
    transition: var(--transition);
}

.abt-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(213, 40, 126, 0.55);
    background: linear-gradient(135deg, #f04897, #cf2a77);
}

/* ==========================================================================
   Unified Responsive Media Queries
   ========================================================================== */

@media (max-width: 1280px) {
    .about-hero-section {
        background-size: cover;
    }

    .about-hero-content {
        grid-template-columns: 1fr 1.4fr;
    }

    .about-hero-right {
        display: none;
    }

    .about-stats-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-stats-card .stat:nth-child(3) {
        border-right: none;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
    }

    .why-feature-item:nth-child(3) {
        border-right: none;
    }

}

@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid-container {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .why-feature-item {
        border-right: none;
        border-bottom: 1.5px dashed rgba(212, 175, 55, 0.25);
        padding-bottom: 20px;
    }

    .why-feature-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .abt-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 0 15px;
    }

    .abt-cta-content {
        text-align: center;
    }

    .abt-cta-title {
        font-size: 26px;
    }

}

@media (max-width: 768px) {
    .about-hero-section {
        background-size: cover;
    }

    .about-main-title {
        font-size: 38px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-stats-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-card .stat:nth-child(2) {
        border-right: none;
    }

    .mv-cards-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .about-stats-card {
        grid-template-columns: 1fr;
    }

    .about-stats-card .stat {
        border-right: none;
        border-bottom: 1.5px dashed rgba(93, 55, 107, 0.12);
        padding-bottom: 12px;
    }

    .about-stats-card .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-item {
        border-right: none;
        border-bottom: 1.5px dashed rgba(212, 175, 55, 0.25);
        padding-bottom: 18px;
    }

    .why-feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

}

/* ==========================================================================
   What We Offer Section - Same-to-Same Layout as Mockup
   ========================================================================== */
.what-we-offer-section {
    padding: 60px 0px 30px 0px;
    background-color: #fdf5ff;
}

.offer-outer-card {
    max-width: 1320px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px 50px 36px;
    box-shadow: 0 10px 40px rgba(93, 55, 107, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(232, 66, 152, 0.12);
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.offer-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #3b154c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.offer-title-ornament {
    width: 65px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
}

.offer-subtitle {
    font-size: 14px;
    color: #6a5874;
    font-weight: 500;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: #ffffff;
    border: 1px solid #f9e2f0;
    border-radius: 16px;
    padding: 30px 20px 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 16px rgba(232, 66, 152, 0.03);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(232, 66, 152, 0.12);
    border-color: #f3b2d7;
}

.offer-icon-wrap {
    height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.offer-icon-wrap img {
    max-height: 105px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon-wrap img {
    transform: scale(1.06);
}

.offer-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #3b154c;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

.offer-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #5d4a65;
    margin-bottom: 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card-btn {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 43, 125, 0.25);
    cursor: pointer;
}

.offer-card-btn:hover {
    background: linear-gradient(135deg, #c2206d, #d82b7d);
    box-shadow: 0 6px 16px rgba(216, 43, 125, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
}

@media (max-width: 1100px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offer-outer-card {
        padding: 30px 24px 40px 24px;
    }
}

@media (max-width: 640px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer-outer-card {
        padding: 24px 16px 30px 16px;
        border-radius: 16px;
    }

    .offer-title {
        font-size: 22px;
        gap: 8px;
    }

    .offer-title-ornament {
        width: 40px;
    }
}

/* ==========================================================================
   Our Approach Section - Same-to-Same Layout as Uploaded Image
   ========================================================================== */
.our-approach-section {
    padding: 30px 0px 30px 0px;
    background-color: #fdf5ff;
}

.approach-outer-card {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fcf4fe 0%, #f7e6f8 50%, #faebfc 100%);
    border-radius: 24px;
    padding: 50px 48px;
    border: 1.5px solid rgba(195, 125, 215, 0.35);
    box-shadow: 0 12px 35px rgba(93, 55, 107, 0.06), inset 0 0 25px rgba(255, 255, 255, 0.7);
}

.approach-floral {
    position: absolute;
    bottom: -15px;
    width: 220px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.92;
}

.approach-floral-left {
    left: -20px;
}

.approach-floral-right {
    right: -20px;
    transform: scaleX(-1);
}

.approach-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    z-index: 2;
}

.approach-info-col {
    flex: 0 0 34%;
    max-width: 360px;
    text-align: center;
}

.approach-main-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #3b1654;
    margin-bottom: 4px;
    line-height: 1.2;
}

.approach-subtitle {
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 700;
    color: #d42278;
    margin-bottom: 12px;
    line-height: 1.3;
}

.approach-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px auto 16px auto;
    width: 85%;
}

.approach-divider-line {
    flex-grow: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.approach-divider-ornament {
    width: 36px;
    height: 10px;
}

.approach-lead-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a3656;
    font-weight: 500;
}

.approach-steps-col {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.approach-step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 6px;
}

.step-num-badge {
    width: 32px;
    height: 32px;
    background: #501d73;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: -16px;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(80, 29, 115, 0.35);
}

.step-icon-wrapper {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffffff 40%, rgba(255, 255, 255, 0.75) 75%, rgba(248, 226, 250, 0.55) 100%);
    box-shadow: 0 10px 25px rgba(184, 116, 212, 0.18), inset 0 2px 6px rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-icon-wrapper img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.approach-step-card:hover .step-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(184, 116, 212, 0.28), inset 0 2px 6px rgba(255, 255, 255, 1);
}

.step-card-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 700;
    color: #3b1654;
    margin-bottom: 8px;
    line-height: 1.25;
}

.step-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #4a3656;
    font-weight: 500;
}

.approach-connector {
    width: 55px;
    margin-top: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-connector svg {
    width: 100%;
    height: 12px;
}

@media (max-width: 1024px) {
    .approach-container {
        flex-direction: column;
        gap: 40px;
    }

    .approach-info-col {
        max-width: 100%;
    }

    .approach-steps-col {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .approach-outer-card {
        padding: 40px 24px;
    }

    .approach-steps-col {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .approach-connector {
        transform: rotate(90deg);
        margin: -8px 0;
        width: 35px;
    }

    .approach-floral {
        width: 150px;
    }

    .approach-main-title {
        font-size: 30px;
    }

    .approach-subtitle {
        font-size: 17px;
    }
}

/* ==========================================================================
   Transform Life CTA Banner Section - Same-to-Same Layout as Uploaded Image
   ========================================================================== */
.transform-cta-section {
    padding: 30px 0px;
    background-color: #fdf5ff;
}

.transform-banner-card {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #7b319d 0%, #9b3fa1 30%, #c44c9b 70%, #d85799 100%);
    border-radius: 20px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 14px 40px rgba(123, 49, 157, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.transform-banner-img-wrap {
    flex-shrink: 0;
    width: 130px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.transform-banner-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.transform-banner-card:hover .transform-banner-img-wrap img {
    transform: scale(1.08) translateY(-2px);
}

.transform-banner-content {
    flex: 1;
    color: #ffffff;
    padding-left: 10px;
    position: relative;
    z-index: 2;
}

.transform-banner-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.transform-banner-desc {
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.transform-banner-action {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.transform-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #b82676;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transform-consult-btn .btn-arrow-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.transform-consult-btn:hover {
    background: #ffffff;
    color: #9c175d;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.transform-consult-btn:hover .btn-arrow-icon {
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .transform-banner-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }

    .transform-banner-content {
        padding-left: 0;
        width: 100%;
        flex: none;
    }

    .transform-banner-title {
        font-size: 26px;
    }

    .transform-banner-img-wrap {
        display: none;
    }
}

@media (max-width: 640px) {
    .transform-banner-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .transform-banner-title {
        font-size: 22px;
    }

    .transform-banner-desc {
        font-size: 13.5px;
    }

    .transform-consult-btn {
        padding: 12px 20px;
        font-size: 11.5px;
    }
}

/* ==========================================================================
   Angelic Numbers Showcase Slider Section (Matches exact uploaded design)
   ========================================================================== */
.angelic-numbers-slider-section {
    position: relative;
    padding: 60px 0px 30px 0px;
    background: linear-gradient(135deg, #fdf5fc 0%, #f7e6f8 50%, #f4dff6 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-bg-floral-top {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 280px;
    height: auto;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.slider-wrapper-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #872e9a 0%, #531872 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(115, 30, 130, 0.35);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.slider-nav-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #a438ba 0%, #681f8e 100%);
    box-shadow: 0 8px 24px rgba(140, 35, 155, 0.5);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.angelic-cards-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding: 30px 10px 40px 10px; */
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.angelic-cards-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.angel-card {
    flex: 1 0 calc(16.666% - 15px);
    min-width: 195px;
    max-width: 220px;
    min-height: 360px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(230, 185, 235, 0.5);
    box-shadow: 0 12px 32px rgba(130, 40, 145, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px 0 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.angel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(140, 40, 160, 0.16);
    border-color: rgba(210, 120, 220, 0.8);
}

.angel-card-number {
    font-family: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #d32371 0%, #761b8c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.angel-card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    color: #8a39ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2px;
}

.angel-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.angel-card:hover .angel-card-icon {
    transform: scale(1.12);
}

.angel-card-desc {
    font-family: var(--font-sans);
    color: #52375c;
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0 4px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.card-bottom-flowers {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    margin-top: auto;
    display: block;
    height: 70px;
    object-fit: cover;
    object-position: bottom center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .angel-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .angelic-numbers-slider-section {
        padding: 50px 15px;
    }

    .slider-wrapper-container {
        gap: 8px;
    }

    .slider-nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .angel-card {
        flex: 0 0 235px;
        min-width: 235px;
        padding: 24px 12px 0 12px;
    }

    .angel-card-number {
        font-size: 36px;
    }

    .angel-card-title {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   Decode Your Angelic Message Section (Matches exact uploaded design)
   ========================================================================== */
.decode-angelic-section {
    padding: 30px 0px 30px 0px;
    background: linear-gradient(135deg, #fdf5fc 0%, #f7e6f8 50%, #f4dff6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.decode-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.decode-card {
    background: linear-gradient(180deg, #fff7fa 0%, #ffedf5 100%);
    border: 1px solid rgba(240, 190, 215, 0.7);
    border-radius: 24px;
    padding: 30px 45px;
    box-shadow: 0 10px 35px rgba(220, 150, 185, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.decode-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1 1 auto;
}

.decode-orb-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decode-orb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.decode-card:hover .decode-orb-img {
    transform: scale(1.05) rotate(2deg);
}

.decode-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.decode-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c1559;
    margin: 0 0 10px 0;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.decode-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 220px;
    margin-bottom: 12px;
}

.decode-divider-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, #dfb468 50%, transparent);
}

.decode-divider-diamond {
    color: #d4af37;
    font-size: 10px;
    line-height: 1;
}

.decode-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: #4a2760;
    line-height: 1.45;
    margin: 0;
}

.decode-right {
    flex: 0 0 460px;
    max-width: 480px;
}

.decode-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.decode-input-wrap {
    width: 100%;
}

.decode-input {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid rgba(220, 185, 215, 0.7);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: #2c1559;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.decode-input::placeholder {
    color: #9988a6;
    font-weight: 500;
}

.decode-input:focus {
    border-color: #d32371;
    box-shadow: 0 0 0 3px rgba(211, 35, 113, 0.15);
}

.decode-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #ea3888 0%, #be185d 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(234, 56, 136, 0.35);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.decode-btn:hover {
    background: linear-gradient(90deg, #f44594 0%, #cb1d6b 100%);
    box-shadow: 0 8px 25px rgba(234, 56, 136, 0.48);
    transform: translateY(-2px);
}

.decode-btn:active {
    transform: translateY(0);
}

.decode-btn .sparkle-icon {
    fill: #ffffff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

.decode-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    color: #4a2760;
    margin-top: 2px;
}

.decode-security .lock-icon {
    fill: #3c1e56;
}

/* Responsive adjustments for Decode Section */
@media (max-width: 1100px) {
    .decode-card {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }

    .decode-left {
        width: 100%;
        justify-content: center;
    }

    .decode-right {
        width: 100%;
        max-width: 500px;
    }

    .decode-title {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .decode-angelic-section {
        padding: 10px 15px 40px 15px;
    }

    .decode-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .decode-left {
        flex-direction: column;
        gap: 15px;
    }

    .decode-orb-wrapper {
        width: 120px;
        height: 120px;
    }

    .decode-title {
        font-size: 24px;
    }

    .decode-subtitle {
        font-size: 13px;
    }

    .decode-input {
        height: 46px;
        font-size: 13px;
        padding: 0 16px;
    }

    .decode-btn {
        height: 46px;
        font-size: 13px;
    }

    .decode-security {
        font-size: 11px;
    }
}

/* ==========================================================================
   How Angelic Numbers Work Section (Matches exact uploaded design)
   ========================================================================== */
.how-it-works-section {
    padding: 30px 0px 30px 0px;
    background: linear-gradient(135deg, #fdf5fc 0%, #f7e6f8 50%, #f4dff6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.how-it-works-card {
    background: linear-gradient(180deg, #fff7fa 0%, #ffedf5 100%);
    border: 1px solid rgba(240, 190, 215, 0.7);
    border-radius: 24px;
    padding: 35px 40px 45px 40px;
    box-shadow: 0 10px 35px rgba(220, 150, 185, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    width: 100%;
}

.how-title-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #dfb468);
}

.how-title-line.right {
    background: linear-gradient(90deg, #dfb468, transparent);
}

.how-title-diamond {
    color: #d4af37;
    font-size: 11px;
    line-height: 1;
}

.how-section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c1559;
    margin: 0;
    letter-spacing: -0.2px;
    text-align: center;
}

.how-steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.how-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
}

.how-step-badge {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaf3 100%);
    border: 1px solid rgba(240, 180, 215, 0.6);
    box-shadow: 0 8px 22px rgba(215, 130, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-icon-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.35s ease;
}

.how-step-item:hover .step-icon-img {
    transform: scale(1.08);
}

.how-step-item:hover .how-step-badge {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 12px 28px rgba(211, 35, 113, 0.28);
    border-color: rgba(211, 35, 113, 0.6);
}

.how-step-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c1559;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.how-step-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: #4a2760;
    line-height: 1.45;
    margin: 0;
    padding: 0 8px;
}

.how-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d32371;
    opacity: 0.6;
    margin-top: -35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.how-step-item:hover+.how-step-arrow {
    transform: translateX(4px);
    opacity: 0.9;
}

/* Responsive adjustments for How Angelic Numbers Work Section */
@media (max-width: 992px) {
    .how-steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .how-step-item:hover+.how-step-arrow {
        transform: rotate(90deg) translateY(4px);
    }

    .how-step-badge {
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 640px) {
    .how-it-works-section {
        padding: 0 15px 45px 15px;
    }

    .how-it-works-card {
        padding: 25px 18px 30px 18px;
        border-radius: 18px;
    }

    .how-section-title {
        font-size: 24px;
    }

    .how-title-line {
        width: 35px;
    }

    .how-step-title {
        font-size: 18px;
    }

    .how-step-desc {
        font-size: 12.5px;
    }
}

/* ==========================================================================
   Detailed Meanings of Popular Angelic Numbers Section (Uploaded Design)
   ========================================================================== */
.detailed-meanings-section {
    padding: 30px 0px 30px 0px;
    background: linear-gradient(135deg, #fdf5fc 0%, #f7e6f8 50%, #f4dff6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.detailed-meanings-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.detailed-meanings-card {
    background: linear-gradient(180deg, #fff7fa 0%, #ffedf5 100%);
    border: 1px solid rgba(240, 190, 215, 0.7);
    border-radius: 24px;
    padding: 35px 30px 45px 30px;
    box-shadow: 0 10px 35px rgba(220, 150, 185, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detailed-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    width: 100%;
}

.detailed-title-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #dfb468);
}

.detailed-title-line.right {
    background: linear-gradient(90deg, #dfb468, transparent);
}

.detailed-title-diamond {
    color: #d4af37;
    font-size: 11px;
    line-height: 1;
}

.detailed-section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c1559;
    margin: 0;
    letter-spacing: -0.2px;
    text-align: center;
}

.meaning-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
}

.meaning-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(235, 195, 225, 0.6);
    box-shadow: 0 10px 25px rgba(200, 130, 175, 0.12);
    padding: 24px 14px 28px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.meaning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(185, 90, 150, 0.22);
    border-color: rgba(211, 35, 113, 0.5);
}

.meaning-card-icon-wrap {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.meaning-card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(110%) brightness(102%);
    transition: transform 0.35s ease;
}

.meaning-card:hover .meaning-card-icon,
.meaning-card:hover .meaning-card-svg-icon {
    transform: scale(1.1);
}

.meaning-card-svg-icon {
    transition: transform 0.35s ease;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.meaning-card-number {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: #8b259b;
    margin: 0 0 4px 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.meaning-card-subtitle {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c1559;
    margin: 0 0 16px 0;
    line-height: 1.25;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meaning-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.meaning-card-list li {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: #4a2760;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.sparkle-bullet {
    color: #d32371;
    font-size: 10px;
    line-height: 1.4;
    flex-shrink: 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .meaning-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .meaning-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .detailed-section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .meaning-cards-grid {
        grid-template-columns: 1fr;
    }

    .detailed-meanings-section {
        padding: 45px 15px 45px 15px;
    }

    .detailed-meanings-card {
        padding: 25px 15px 30px 15px;
    }
}

/* ==========================================================================
   Need Personal Guidance CTA Banner Section (Matches exact uploaded design)
   ========================================================================== */
.guidance-banner-section {
    padding: 30px 0px;
    background: linear-gradient(135deg, #fdf5fc 0%, #f7e6f8 50%, #f4dff6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.guidance-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.guidance-banner-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #852ca2 0%, #a238b4 35%, #ad3cbc 65%, #8828a5 100%);
    border-radius: 40px;
    padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 45px rgba(135, 40, 160, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guidance-img-wrap {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guidance-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    /* object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(125%) brightness(98%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 92%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 92%); */
    transition: transform 0.4s ease;
}

.guidance-banner-card:hover .guidance-img-wrap img {
    transform: scale(1.08) translateY(-3px);
}

.guidance-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guidance-banner-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.guidance-banner-subtitle {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 20px 0;
    letter-spacing: 0.1px;
}

.guidance-banner-action {
    display: flex;
    justify-content: center;
}

.guidance-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fff2f8 100%);
    color: #b81867;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.guidance-consult-btn:hover {
    background: #ffffff;
    color: #d32371;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.guidance-arrow-icon {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.guidance-consult-btn:hover .guidance-arrow-icon {
    transform: translate(2px, -2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .guidance-banner-card {
        padding: 28px 25px;
    }

    .guidance-banner-title {
        font-size: 26px;
    }

    .guidance-img-wrap {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .guidance-banner-card {
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .guidance-img-wrap {
        display: none;
    }

    .guidance-banner-title {
        font-size: 22px;
    }

    .guidance-banner-subtitle {
        font-size: 13.5px;
    }

    .guidance-consult-btn {
        padding: 12px 24px;
        font-size: 12.5px;
    }
}

/* ==========================================================================
   Our Vaastu Services Section (Matches exact uploaded design)
   ========================================================================== */
.vaastu-services-section {
    padding: 60px 0px 30px 0px;
    background: linear-gradient(180deg, #fdf5fc 0%, #f7eaf7 50%, #fdf5fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vaastu-services-wrapper {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}

/* Header & Ornaments */
.vaastu-services-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.vaastu-services-title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.vaastu-header-line {
    display: inline-block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    position: relative;
}

.vaastu-header-line::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #d4af37;
}

.vaastu-header-line-left::after {
    right: 0;
}

.vaastu-header-line-right::after {
    left: 0;
}

.vaastu-services-main-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #3b124d;
    margin: 0;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 8px rgba(60, 20, 80, 0.08);
}

/* Card Container */
.vaastu-services-card-container {
    background: rgba(255, 247, 250, 0.7);
    border: 1px solid rgba(235, 210, 230, 0.7);
    border-radius: 36px;
    padding: 35px 30px;
    box-shadow: 0 16px 40px rgba(160, 40, 130, 0.06);
    backdrop-filter: blur(8px);
}

/* 6-Column Grid */
.vaastu-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Individual Card */
.vaastu-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 18px 25px 18px;
    border: 1px solid rgba(240, 215, 235, 0.85);
    box-shadow: 0 8px 24px rgba(140, 30, 110, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vaastu-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(160, 30, 120, 0.14);
    border-color: rgba(212, 175, 55, 0.4);
}

.vaastu-card-icon-wrap {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.vaastu-card-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.vaastu-service-card:hover .vaastu-card-icon-wrap img {
    transform: scale(1.08);
}

.vaastu-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    width: 100%;
}

.vaastu-card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #3b124d;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.vaastu-card-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: #635068;
    line-height: 1.48;
    margin: 0 0 22px 0;
}

.vaastu-card-action {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.vaastu-details-btn {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(211, 35, 117, 0.28);
    transition: all 0.3s ease;
    text-align: center;
}

.vaastu-details-btn:hover {
    background: linear-gradient(90deg, #e32882 0%, #c91c73 100%);
    box-shadow: 0 6px 18px rgba(211, 35, 117, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 1280px) {
    .vaastu-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .vaastu-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vaastu-services-card-container {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .vaastu-services-main-title {
        font-size: 28px;
    }

    .vaastu-header-line {
        width: 50px;
    }

    .vaastu-card-title {
        font-size: 18px;
    }

    .vaastu-card-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .vaastu-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Benefits of Vaastu Alignment Section (Matches exact uploaded design)
   ========================================================================== */
.vaastu-benefits-section {
    /* padding: 0 20px 70px 20px; */
    background: linear-gradient(180deg, #fdf5fc 0%, #fdf5fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vaastu-benefits-wrapper {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}

.vaastu-benefits-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ffffff 0%, #fff7fc 50%, #ffffff 100%);
    border: 1px solid rgba(238, 205, 230, 0.85);
    border-radius: 32px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 12px 35px rgba(160, 40, 130, 0.06);
}

/* Left Title Area */
.vaastu-benefits-title-wrap {
    flex-shrink: 0;
    width: 260px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vaastu-benefits-main-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #3b124d;
    margin: 0 0 10px 0;
    line-height: 1.22;
    letter-spacing: -0.2px;
}

/* Bottom Left Floral Lotus Ornament */
.vaastu-benefits-lotus-wrap {
    width: 65px;
    height: 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    margin-top: 4px;
}

.vaastu-benefits-lotus-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Right 6-Item List Container */
.vaastu-benefits-items-grid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.vaastu-benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.vaastu-benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(220, 175, 210, 0.7) 50%, transparent 100%);
}

.vaastu-benefit-item:hover {
    transform: translateY(-4px);
}

.vaastu-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.vaastu-benefit-item:hover .vaastu-benefit-icon {
    transform: scale(1.12);
}

.vaastu-benefit-icon svg {
    width: 44px;
    height: 44px;
    stroke: #d32375;
    fill: none;
    transition: stroke 0.3s ease;
}

.vaastu-benefit-label {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #3b124d;
    line-height: 1.25;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .vaastu-benefits-banner {
        flex-direction: column;
        padding: 30px 20px;
    }

    .vaastu-benefits-title-wrap {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
    }

    .vaastu-benefits-main-title {
        font-size: 26px;
    }

    .vaastu-benefits-items-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }

    .vaastu-benefit-item:not(:last-child)::after {
        display: none;
    }

    .vaastu-benefit-item {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .vaastu-benefits-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vaastu-benefit-label {
        font-size: 15px;
    }

    .vaastu-benefit-icon {
        width: 44px;
        height: 44px;
    }

    .vaastu-benefit-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   Our Vaastu Consultation Process Section (Matches exact uploaded design)
   ========================================================================== */
.vaastu-process-section {
    padding: 30px 0px 30px 0px;
    background: linear-gradient(180deg, #fdf5fc 0%, #f7e6f8 50%, #fdf5fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vaastu-process-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.vaastu-process-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Side Floral Accents */
.vaastu-process-flower-left {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.vaastu-process-flower-right {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 220px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    transform: scaleX(-1);
}

/* 5-Step Flex Row */
.vaastu-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 15px;
}

/* Step Item */
.vaastu-process-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Step Circle Badge Container */
.vaastu-step-icon-wrap {
    position: relative;
    margin-bottom: 22px;
}

/* Top Center Number Badge */
.vaastu-step-num-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4c1165 0%, #681c82 100%);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 17, 101, 0.35);
    z-index: 3;
    border: 2px solid #ffffff;
}

/* Glowing Circular Icon Box */
.vaastu-step-icon-card {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #faeafd 100%);
    box-shadow: 0 12px 30px rgba(160, 40, 130, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.vaastu-process-step-item:hover .vaastu-step-icon-card {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 36px rgba(160, 40, 130, 0.22);
    border-color: rgba(212, 175, 55, 0.6);
}

.vaastu-step-icon-card svg {
    transition: transform 0.35s ease;
}

.vaastu-process-step-item:hover .vaastu-step-icon-card svg {
    transform: scale(1.1);
}

/* Connecting Dashed Arrow Line */
.vaastu-process-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.vaastu-connector-line {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #d866a8 0, #d866a8 5px, transparent 5px, transparent 10px);
    position: relative;
}

.vaastu-connector-arrow {
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #d866a8;
}

.vaastu-connector-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: #b81867;
}

/* Step Content */
.vaastu-step-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #3b124d;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.vaastu-step-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: #635068;
    line-height: 1.48;
    margin: 0;
    max-width: 220px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .vaastu-process-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 20px;
    }

    .vaastu-process-connector {
        display: none;
    }

    .vaastu-process-step-item {
        flex: 0 0 30%;
    }
}

@media (max-width: 768px) {
    .vaastu-process-step-item {
        flex: 0 0 45%;
    }

    .vaastu-step-icon-card {
        width: 100px;
        height: 100px;
    }

    .vaastu-step-title {
        font-size: 18px;
    }

    .vaastu-step-desc {
        font-size: 12.5px;
    }
}

@media (max-width: 480px) {
    .vaastu-process-step-item {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Shop Features & Promises Bar Section (Matches exact uploaded design)
   ========================================================================== */
.shop-features-section {
    padding: 60px 0px 30px 0px;
    background: linear-gradient(180deg, #fdf5fc 0%, #fdf5fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-features-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.shop-features-banner {
    background: linear-gradient(90deg, #ffffff 0%, #fff7fc 50%, #ffffff 100%);
    border: 1px solid rgba(238, 205, 230, 0.85);
    border-radius: 24px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(160, 40, 130, 0.05);
}

.shop-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.shop-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(220, 175, 210, 0.6) 50%, transparent 100%);
}

.shop-feature-item:hover {
    transform: translateY(-3px);
}

.shop-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-feature-item:hover .shop-feature-icon {
    transform: scale(1.1);
}

.shop-feature-icon svg {
    width: 42px;
    height: 42px;
    stroke: #d32375;
    fill: none;
}

.shop-feature-label {
    display: flex;
    flex-direction: column;
}

.shop-feature-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 17.5px;
    font-weight: 700;
    color: #3b124d;
    line-height: 1.25;
}

.shop-feature-subtitle {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #3b124d;
    line-height: 1.25;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .shop-features-banner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        padding: 30px 25px;
    }

    .shop-feature-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .shop-features-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .shop-feature-item {
        justify-content: flex-start;
    }

    .shop-feature-title,
    .shop-feature-subtitle {
        font-size: 16px;
    }
}

/* ==========================================================================
   Our Spiritual Products Section (Same-to-Same as Uploaded Reference Image)
   ========================================================================== */
.spiritual-products-section {
    padding: 30px 0px 60px 0px;
    background: #fffcfd;
    position: relative;
}

.spiritual-products-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Title Header */
.spiritual-products-header {
    text-align: center;
    margin-bottom: 45px;
}

.spiritual-products-grid {
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 35px;
    align-items: start;
}

/* Left Column: Product Cards List */
.product-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #f2e1ef;
    border-radius: 18px;
    padding: 18px 24px;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(160, 40, 130, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(160, 40, 130, 0.09);
    border-color: #e3b3d9;
}

.product-thumb-wrap {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fdf5fb;
    border: 1px solid #f4e4f1;
}

.product-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-item:hover .product-thumb-wrap img {
    transform: scale(1.06);
}

.product-details {
    flex: 1;
    margin: 0 22px;
}

.product-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #2b0d3a;
    margin-bottom: 6px;
    line-height: 1.25;
}

.product-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #5e4a66;
    line-height: 1.5;
}

.product-price-wrap {
    margin-right: 24px;
    text-align: right;
    flex-shrink: 0;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #d32375;
}

.product-action-wrap {
    text-align: center;
    flex-shrink: 0;
}

.product-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(211, 35, 117, 0.3);
    text-decoration: none;
}

.product-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 35, 117, 0.45);
    background: linear-gradient(135deg, #e42883 0%, #b81e87 100%);
    color: #ffffff;
}

.product-notice-subtext {
    font-size: 11px;
    color: #7c6885;
    margin-top: 6px;
    display: block;
    max-width: 145px;
    line-height: 1.25;
    text-align: center;
}

.disclaimer-note-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #4a2856;
    margin-top: 15px;
    padding-left: 5px;
    line-height: 1.4;
}

.disclaimer-note-bar svg {
    stroke: #d32375;
    flex-shrink: 0;
}

/* Right Column: Send Order Inquiry Form Card */
.inquiry-form-card {
    background: linear-gradient(180deg, #fff9fc 0%, #fff2f9 100%);
    border: 1px solid #f3d7ec;
    border-radius: 24px;
    padding: 30px 25px 35px 25px;
    position: sticky;
    top: 90px;
    box-shadow: 0 10px 30px rgba(160, 40, 130, 0.05);
    overflow: hidden;
}

.inquiry-form-header {
    text-align: center;
    margin-bottom: 22px;
}

.inquiry-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 25px;
    font-weight: 700;
    color: #2b0d3a;
    margin-bottom: 6px;
}

.inquiry-subtitle {
    font-size: 13px;
    color: #695373;
    line-height: 1.4;
}

.inquiry-form-group {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.inquiry-form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #3b124d;
    margin-bottom: 6px;
}

.inquiry-form-group input,
.inquiry-form-group select,
.inquiry-form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ebcee3;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #3b124d;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.inquiry-form-group input:focus,
.inquiry-form-group select:focus,
.inquiry-form-group textarea:focus {
    border-color: #d32375;
    box-shadow: 0 0 0 3px rgba(211, 35, 117, 0.12);
}

.inquiry-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.inquiry-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d32375 0%, #b81867 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(211, 35, 117, 0.35);
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 35, 117, 0.45);
    background: linear-gradient(135deg, #e42883 0%, #c91873 100%);
}

.inquiry-security-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #5e4a66;
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.inquiry-floral-corner {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 140px;
    pointer-events: none;
    opacity: 0.85;
    z-index: 1;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .spiritual-products-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-form-card {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .product-card-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .product-thumb-wrap {
        width: 100%;
        height: 180px;
    }

    .product-details {
        margin: 0;
        width: 100%;
    }

    .product-price-wrap {
        margin: 0;
        text-align: left;
    }

    .product-action-wrap {
        width: 100%;
        text-align: left;
    }

    .product-order-btn {
        width: 100%;
    }

    .product-notice-subtext {
        max-width: 100%;
    }
}

/* ==========================================================================
   Shop Purple Trust Bar Section (Matches exact uploaded reference design)
   ========================================================================== */
.shop-trust-bar-section {
    padding: 30px 0px 30px 0px;
    background: linear-gradient(180deg, #fff7fb 0%, #fff7fb 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-trust-bar-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.shop-trust-banner {
    background: linear-gradient(90deg, #782688 0%, #8e2b9c 35%, #9a30a6 65%, #762385 100%);
    border-radius: 20px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(120, 30, 140, 0.18);
}

.shop-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.shop-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.shop-trust-item:hover {
    transform: translateY(-3px);
}

.shop-trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-trust-item:hover .shop-trust-icon {
    transform: scale(1.1);
}

.shop-trust-icon svg {
    width: 42px;
    height: 42px;
    stroke: #ffffff;
    fill: none;
}

.shop-trust-label {
    display: flex;
    flex-direction: column;
}

.shop-trust-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.shop-trust-subtitle {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .shop-trust-banner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
        padding: 30px 25px;
    }

    .shop-trust-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .shop-trust-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .shop-trust-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-trust-item {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Blog Main Section & Sidebar Layout (Matches reference screenshot 100%)
   ========================================================================== */
.blog-main-section {
    padding: 60px 0px 60px 0px;
    background: linear-gradient(180deg, #fff7fb 0%, #fff2f9 100%);
}

.blog-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* Top Bar: Category Pills & Search Box */
.blog-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.blog-category-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #f2d2e9;
    background: #ffffff;
    color: #3b124d;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(160, 40, 130, 0.04);
}

.blog-filter-btn:hover {
    background: #fdeaf5;
    border-color: #e91e63;
    color: #d32375;
}

.blog-filter-btn.active {
    background: linear-gradient(135deg, #d32375 0%, #a8175d 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(211, 35, 117, 0.25);
}

/* Search Box */
.blog-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #f2d2e9;
    border-radius: 25px;
    padding: 6px 16px;
    width: 320px;
    box-shadow: 0 2px 8px rgba(160, 40, 130, 0.04);
    transition: border-color 0.3s ease;
}

.blog-search-box:focus-within {
    border-color: #d32375;
}

.blog-search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #3b124d;
}

.blog-search-box input::placeholder {
    color: #a894b0;
}

.blog-search-btn {
    background: none;
    border: none;
    color: #d32375;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

/* Main 2-Column Grid */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
}

/* Left Column: Article Cards List */
.blog-articles-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-post-card {
    background: #ffffff;
    border: 1px solid #f3d7ec;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(160, 40, 130, 0.04);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(160, 40, 130, 0.1);
    border-color: #eaafd8;
}

.blog-post-thumb {
    width: 250px;
    height: 165px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
}

.blog-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-thumb img {
    transform: scale(1.05);
}

.blog-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-tag {
    align-self: flex-start;
    background: #ffe3f2;
    color: #d32375;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-post-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-post-title a {
    color: #2b0d3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #d32375;
}

.blog-post-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #63506b;
    line-height: 1.55;
    margin-bottom: 16px;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #8c7694;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    fill: #b39dba;
}

.blog-read-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #2b0d3a;
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid #f2d2e9;
    background: #ffffff;
    transition: all 0.3s ease;
}

.blog-read-btn:hover {
    background: #d32375;
    color: #ffffff;
    border-color: #d32375;
}

/* Pagination Bar */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3b124d;
    text-decoration: none;
    border: 1px solid #f2d2e9;
    background: #ffffff;
    transition: all 0.3s ease;
}

.page-num:hover {
    background: #fdeaf5;
    border-color: #d32375;
    color: #d32375;
}

.page-num.active {
    background: #8e24aa;
    color: #ffffff;
    border-color: transparent;
}

.page-num.dots {
    border: none;
    background: none;
}

.page-next {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3b124d;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #f2d2e9;
    background: #ffffff;
    transition: all 0.3s ease;
}

.page-next:hover {
    background: #d32375;
    color: #ffffff;
    border-color: #d32375;
}

/* Right Column: Sidebar Column & Widgets */
.blog-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-sidebar-widget {
    background: #ffffff;
    border: 1px solid #f3d7ec;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(160, 40, 130, 0.04);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-header-line-left,
.widget-header-line-right {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent 0%, #d4af37 100%);
}

.widget-header-line-right {
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.widget-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #2b0d3a;
    text-align: center;
    white-space: nowrap;
}

/* Widget 1: About Our Blog */
.widget-about {
    background: linear-gradient(180deg, #fff7fb 0%, #ffedf7 100%);
    position: relative;
    overflow: hidden;
}

.widget-about-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #5c4763;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.widget-about-floral {
    position: absolute;
    right: -10px;
    bottom: -15px;
    width: 140px;
    opacity: 0.85;
    pointer-events: none;
}

/* Widget 2: Popular Posts */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.popular-post-item:hover {
    transform: translateX(4px);
}

.popular-post-thumb {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-info {
    display: flex;
    flex-direction: column;
}

.popular-post-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #2b0d3a;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.popular-post-item:hover .popular-post-title {
    color: #d32375;
}

.popular-post-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #8c7694;
}

/* Widget 3: Categories */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categories-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #3b124d;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff8fc;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    background: #ffe3f2;
    color: #d32375;
    padding-left: 18px;
}

.cat-count {
    background: #ffd6ec;
    color: #d32375;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-post-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-thumb {
        width: 100%;
        height: 200px;
    }

    .blog-sidebar-column {
        grid-template-columns: 1fr;
    }

    .widget-about {
        grid-column: span 1;
    }

    .blog-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-search-box {
        width: 100%;
    }
}

/* ==========================================================================
   Blog Newsletter Banner Section (Matches exact uploaded reference design)
   ========================================================================== */
.blog-newsletter-section {
    padding: 30px 0px;
    background: linear-gradient(180deg, #fff2f9 0%, #fff7fb 100%);
    display: flex;
    justify-content: center;
}

.blog-newsletter-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.blog-newsletter-banner {
    background: linear-gradient(90deg, #742582 0%, #872895 40%, #962ea2 70%, #6e207c 100%);
    border-radius: 24px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(120, 30, 140, 0.2);
}

/* Left & Right Image Wrappers */
.newsletter-left-img-wrap {
    width: 180px;
    height: 95px;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.newsletter-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    filter: brightness(1.15) contrast(1.05);
}

.newsletter-right-img-wrap {
    width: 130px;
    height: 95px;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.newsletter-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(1.2);
}

/* Text Content */
.newsletter-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.newsletter-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.newsletter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Subscribe Form */
.newsletter-form-wrap {
    z-index: 1;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 4px 4px 4px 20px;
    width: 440px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #3b124d;
}

.newsletter-form input::placeholder {
    color: #9d8aa5;
}

.newsletter-submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.45);
}

/* Responsive Breakpoints */
/* ==========================================================================
   Blog Details Main Section (Matches exact uploaded reference design)
   ========================================================================== */
.blog-details-main-section {
    padding: 60px 0px;
    background: linear-gradient(180deg, #fff7fb 0%, #fff2f9 100%);
    display: flex;
    justify-content: center;
}

.blog-details-container {
    width: 100%;
    max-width: 1320px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin: 0 auto;
    align-items: start;
}

.blog-details-article-col {
    width: 100%;
}

.blog-article-full {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f3d7ec;
    box-shadow: 0 10px 30px rgba(180, 70, 150, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero Feature Image */
.article-hero-thumb {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header & Title */
.article-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-main-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c0b38;
    line-height: 1.25;
    margin: 4px 0 8px 0;
}

/* Meta & Share Row */
.article-meta-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #eed5e9;
}

.article-share-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5a3d66;
}

.share-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fdf5fc;
    border: 1px solid #eed2e7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #782688;
    text-decoration: none;
    transition: all 0.25s ease;
}

.share-icon-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.share-icon-btn:hover {
    background: #782688;
    color: #ffffff;
    border-color: #782688;
    transform: translateY(-2px);
}

/* Article Body Typography */
.article-body-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-intro-para,
.article-para {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #4a3554;
}

.article-section-header {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-subheading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 25px;
    font-weight: 700;
    color: #3b0c4a;
}

.example-list-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #2c0b38;
    margin-top: 10px;
}

/* Example Cards (111, 222, 333, 444) */
.example-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 20px 0;
}

.example-card-item {
    display: flex;
    align-items: center;
    background: #fffbfd;
    border: 1px solid #f6e0f0;
    border-radius: 14px;
    padding: 14px 22px;
    gap: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.example-card-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(220, 50, 160, 0.08);
}

.example-num-box {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px dashed #eacbe4;
    padding-right: 18px;
}

.ex-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    color: #c2185b;
    line-height: 1.1;
}

.ex-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: #5a2e66;
    text-transform: uppercase;
    margin-top: 3px;
    letter-spacing: 0.3px;
}

.example-num-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #4a3852;
    line-height: 1.5;
}

/* Connect Steps Grid */
.connect-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 15px 0 25px 0;
}

.connect-step-card {
    background: #ffffff;
    border: 1px solid #f3d7ec;
    border-radius: 16px;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.connect-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(180, 50, 150, 0.12);
}

.step-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff0f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.12);
}

.step-icon-circle.pink-glow {
    background: #fff0f5;
    border: 1px solid #fcdbeb;
}

.step-icon-circle.purple-glow {
    background: #f7effc;
    border: 1px solid #eccdfa;
}

.step-icon-circle svg {
    width: 24px;
    height: 24px;
}

.step-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #2c0b38;
    margin-top: 4px;
}

.step-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #6e5875;
    line-height: 1.45;
}

/* Quote Callout Box */
.article-quote-callout {
    background: linear-gradient(135deg, #fff0f7 0%, #fae6f5 100%);
    border-left: 4px solid #d81b60;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.08);
}

.quote-text-wrap {
    display: flex;
    flex-direction: column;
}

.quote-mark-icon {
    font-family: Georgia, serif;
    font-size: 48px;
    color: #782688;
    line-height: 0.8;
    margin-bottom: 4px;
}

.quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #431252;
    font-style: italic;
    line-height: 1.4;
}

.quote-img-wrap {
    width: 140px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.quote-crystal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* Sidebar Guidance CTA Widget */
.widget-guidance-cta {
    background: linear-gradient(135deg, #581468 0%, #762385 60%, #9026a0 100%);
    border-radius: 20px;
    padding: 24px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(118, 35, 133, 0.25);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guidance-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.guidance-cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.guidance-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #762385;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 20px;
    padding: 9px 18px;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guidance-cta-btn:hover {
    transform: translateY(-2px);
    background: #fff0f7;
}

.guidance-cta-img-wrap {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 130px;
    height: 100px;
    pointer-events: none;
    opacity: 0.85;
}

.guidance-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
}

/* Sidebar Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #782688;
    background: #fdf2f9;
    border: 1px solid #f3d7ec;
    border-radius: 16px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tag-pill:hover {
    background: #782688;
    color: #ffffff;
    border-color: #782688;
    transform: translateY(-2px);
}

/* Responsive Styles for Blog Details */
@media (max-width: 1024px) {
    .blog-details-container {
        grid-template-columns: 1fr;
    }

    .connect-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .connect-steps-grid {
        grid-template-columns: 1fr;
    }

    .example-card-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .example-num-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px dashed #eacbe4;
        padding-right: 0;
        padding-bottom: 10px;
        align-items: flex-start;
        text-align: left;
    }

    .article-quote-callout {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Contact Consultation & Booking Section (Matches exact uploaded reference design)
   ========================================================================== */
.contact-booking-section {
    padding: 60px 0px;
    background: linear-gradient(180deg, #fff7fb 0%, #fff2f9 100%);
    display: flex;
    justify-content: center;
}

.contact-booking-container {
    width: 100%;
    max-width: 1320px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
    margin: 0 auto;
    align-items: start;
}

/* Left Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f3d7ec;
    box-shadow: 0 10px 30px rgba(180, 70, 150, 0.08);
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-main-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c0b38;
    text-align: center;
}

/* Form Controls & Inputs */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-fields-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.col-half {
    width: calc(50% - 8px);
}

.col-full {
    width: 100%;
}

.flex-end-group {
    display: flex;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2c0b38;
    margin-bottom: 6px;
    display: block;
}

.req-star {
    color: #d81b60;
}

.input-icon-wrap {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #ebcee4;
    border-radius: 12px;
    padding: 0 40px 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #3b124d;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    appearance: none;
}

.form-control:focus {
    border-color: #9c27b0;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.12);
}

.form-control::placeholder {
    color: #a08da6;
}

.input-right-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

/* Sub-blocks (Your Details, Additional Info) */
.form-sub-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-subheading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #2c0b38;
    margin-bottom: 4px;
}

/* Phone Input Custom Styling */
.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ebcee4;
    border-radius: 12px;
    overflow: hidden;
    height: 46px;
    background: #ffffff;
    transition: border-color 0.25s ease;
}

.phone-input-wrap:focus-within {
    border-color: #9c27b0;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.12);
}

.country-code-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fdf2f9;
    padding: 0 14px;
    height: 100%;
    border-right: 1px solid #ebcee4;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3b124d;
    user-select: none;
}

.flag-icon {
    font-size: 16px;
}

.code-arrow {
    font-size: 10px;
    color: #782688;
}

.phone-control {
    border: none;
    border-radius: 0;
    padding-left: 14px;
    height: 100%;
}

.textarea-control {
    height: auto;
    padding: 12px 16px;
    resize: vertical;
    min-height: 85px;
}

/* Privacy Alert Box */
.privacy-alert-box {
    background: #fff0f5;
    border: 1px solid #fcdbeb;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 5px;
}

.privacy-shield-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.12);
    flex-shrink: 0;
}

.privacy-alert-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #431252;
}

.privacy-alert-text strong {
    font-weight: 700;
    color: #2c0b38;
}

.privacy-alert-text span {
    font-size: 12px;
    color: #6e5875;
}

/* Proceed to Payment Button */
.proceed-payment-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(90deg, #d81b60 0%, #c2185b 50%, #ad1457 100%);
    color: #ffffff;
    border: none;
    border-radius: 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 6px 22px rgba(216, 27, 96, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proceed-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(216, 27, 96, 0.48);
}

.form-trust-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5a3d66;
    margin-top: 6px;
}

.footnote-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footnote-item svg {
    color: #782688;
}

.form-trust-footnote .dot {
    color: #c4a9c6;
}

/* Right Sidebar Cards */
.contact-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.consultation-summary-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f3d7ec;
    box-shadow: 0 10px 30px rgba(180, 70, 150, 0.08);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.summary-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c0b38;
}

.summary-img-wrap {
    width: 100%;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #581468 0%, #762385 100%);
}

.summary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}

.summary-service-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #d81b60;
    margin-top: 2px;
}

.summary-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #3b124d;
}

.meta-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-time svg {
    color: #782688;
}

.meta-divider {
    color: #d0b5d3;
}

.summary-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #f0d5eb;
    margin: 4px 0;
}

.whats-included-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #2c0b38;
    align-self: flex-start;
}

.whats-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    text-align: left;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.included-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fdf2f9;
    border: 1px solid #f3d7ec;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #782688;
}

.included-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.included-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.included-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2c0b38;
}

.included-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #6e5875;
    line-height: 1.4;
}

/* Need Help Card */
.contact-help-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f3d7ec;
    box-shadow: 0 10px 30px rgba(180, 70, 150, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: #2c0b38;
}

.help-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #5a3d66;
    line-height: 1.55;
}

.help-card-desc a {
    color: #2c0b38;
    font-weight: 700;
    text-decoration: none;
}

.help-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #25d366;
    background: #f4fbf6;
    color: #1ebe5d;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    padding: 11px;
    text-decoration: none;
    margin-top: 4px;
    transition: all 0.25s ease;
}

.help-wa-btn:hover {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .col-half {
        width: 100%;
    }

    .contact-form-card {
        padding: 22px 18px;
    }
}

.about-hero-content.testimonial {
    grid-template-columns: 1fr 1fr;
}

.about-hero-content.testimonial .about-hero-center {
    text-align: left;
}

/* ==========================================
   VIDEO TESTIMONIALS SECTION (MATCHING UPLOADED DESIGN)
   ========================================== */
.video-testimonials-section {
    padding: 60px 0px 30px 0px;
    background-color: #fdf5ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vt-outer-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 1320px;
    padding: 45px 50px 40px 50px;
    box-shadow: 0 10px 40px rgba(50, 15, 65, 0.04);
    border: 1px solid #f1e4f3;
    position: relative;
}

.vt-header {
    text-align: center;
    margin-bottom: 35px;
}

.vt-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1040;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.vt-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 10px 0;
}

.vt-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #4b4466;
}

.vt-carousel-wrapper {
    position: relative;
    padding: 0 8px;
}

.vt-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0e6f2;
    cursor: pointer;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none;
}

.vt-nav-btn.prev {
    left: -22px;
}

.vt-nav-btn.next {
    right: -22px;
}

.vt-nav-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(232, 27, 110, 0.22);
}

.vt-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #e81b6e;
    stroke-width: 2.8;
    fill: none;
}

.vt-cards-container {
    overflow: hidden;
    width: 100%;
}

.vt-cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.vt-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eee4f0;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(93, 55, 107, 0.1);
}

.vt-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.vt-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.vt-card:hover .vt-thumb-img {
    transform: scale(1.04);
}

.vt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vt-play-btn svg {
    width: 18px;
    height: 18px;
    fill: #1a1040;
    margin-left: 2px;
}

.vt-thumb-wrapper:hover .vt-play-btn {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.vt-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(10, 15, 30, 0.85);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    letter-spacing: 0.4px;
}

.vt-info {
    padding: 16px 20px 20px 20px;
    text-align: left;
}

.vt-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #e81b6e;
    margin-bottom: 4px;
}

.vt-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1040;
}

/* Pagination Dots */
.vt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.vt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fce4ec;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-dot.active {
    background-color: #e81b6e;
}

/* Modal Video Player */
.vt-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 25, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vt-modal.active {
    display: flex;
}

.vt-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vt-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.vt-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.vt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.vt-video-wrapper iframe,
.vt-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vt-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .vt-outer-card {
        padding: 35px 25px 30px 25px;
    }
}

@media (max-width: 640px) {
    .vt-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .vt-title {
        font-size: 26px;
    }

    .vt-nav-btn.prev {
        left: -10px;
    }

    .vt-nav-btn.next {
        right: -10px;
    }

    .vt-outer-card {
        padding: 30px 15px 25px 15px;
    }
}

/* ==========================================
   TEXT TESTIMONIALS SECTION (MATCHING UPLOADED DESIGN)
   ========================================== */
.text-testimonials-section {
    padding: 30px 0px;
    background-color: #fdf5ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tt-outer-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 1320px;
    padding: 45px 50px 45px 50px;
    box-shadow: 0 10px 40px rgba(50, 15, 65, 0.04);
    border: 1px solid #f1e4f3;
    position: relative;
}

.tt-header {
    text-align: center;
    margin-bottom: 38px;
}

.tt-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1040;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.tt-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 0 0;
}

.tt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tt-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f2e6f3;
    padding: 26px 24px 24px 24px;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(93, 55, 107, 0.08);
}

.tt-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tt-quote-icon-top {
    color: #e81b6e;
    font-size: 65px;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, serif;
}

.tt-stars {
    display: flex;
    gap: 4px;
    color: #ffb400;
}

.tt-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffb400;
}

.tt-body-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1040;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
    padding: 0 6px;
}

.tt-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.tt-author-info {
    text-align: left;
}

.tt-author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #e81b6e;
    margin-bottom: 2px;
}

.tt-author-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1040;
}

.tt-watermark-quote {
    color: #fce5ee;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    bottom: -8px;
    right: 4px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .tt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tt-grid {
        grid-template-columns: 1fr;
    }

    .tt-outer-card {
        padding: 30px 18px 30px 18px;
    }

    .tt-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .elementor-234 .elementor-element.elementor-element-75ca667 .vaastu-benefits-items-grid {
        grid-template-columns: repeat(2, 1fr)!important;
        gap: 30px;
    }
    .vaastu-benefits-title-wrap{
        align-items: center;
    }
    .expert-sec.magicnumbers4u-expert{
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
    .energy-blocks-section .blocks-grid{
        grid-template-columns: 1fr!important;
    }
    .stats-card{
        width: 100%;
    }
    .hero-section {
        background-size: cover;
        background-position: top;
    }

    .blocks-grid {
        max-width: 100%;
        padding: 0px 15px;
    }

    .journey-section-gridbox {
        grid-template-columns: 1fr;
    }

    .journey-right {
        padding: 0px 15px;
    }

    .expert-container {
        padding: 0;
    }

    .footer-info {
        justify-content: start;
        align-items: flex-start !important;
    }

    .about-stats-section {
        padding: 0px 15px;
    }

    .about-grid-section {
        padding: 40px 15px;
    }

    .why-choose-section {
        padding: 0px 15px;
    }

    .abt-cta-sec {
        padding: 60px 15px;
    }

    .what-we-offer-section {
        padding: 60px 15px 30px 15px;
    }

    .our-approach-section {
        padding: 30px 15px 30px 15px;
    }

    .decode-right {
        flex: 0;
    }

    .about-hero-section.vaastu {
        background-position: top;
    }

    .vaastu-benefits-section {
        padding: 0px 15px;
    }

    .shop-features-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .spiritual-products-left {
        padding: 0px 15px;
    }

    .spiritual-products-right {
        padding: 0px 15px;
    }

    .shop-trust-bar-wrapper {
        padding: 0px 15px;
    }

    .blog-main-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .newsletter-left-img-wrap {
        display: none;
    }

    .newsletter-right-img-wrap {
        display: none;
    }

    .newsletter-title {
        white-space: unset;
    }

    .newsletter-subtitle {
        white-space: unset;
    }

    .blog-newsletter-banner {
        display: block;
    }

    .newsletter-form {
        width: 100%;
    }


}

.energy-blocks-section .blocks-grid {
    grid-template-columns: repeat(6, 1fr) !important;
}

.wpcf7-spinner {
    display: none !important;
}

.magicnumbers4u-testimonials {
    text-align: center !important;
}

.avatars img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 3px solid #fff !important;
    margin-left: -10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    transition: var(--transition) !important;
    object-fit: cover !important;
}

.elementor-9 .elementor-element.elementor-element-e148dd6 .test-sec {
    padding: 50px 0px 50px 0px !important;
}

.show-value {
    z-index: 9999 !important;
    position: relative !important;
}

.dob-label {
    color: #9d8ea4 !important;
    font-size: 13px !important;
    margin-bottom: 10px !important;
}

.wpcf7-response-output {
    display: none !important;
}

.nav-menu-list li {
    display: inline-block !important;
    list-style: none !important;
    padding: 0 15px !important;
    text-transform: uppercase !important;
}

#navMenu {
    text-transform: uppercase !important;
}

.elementor-9 .elementor-element.elementor-element-071ee7d .hero-section {
    padding: 0 0px 20px 0px !important;
}

.abt-cta-action {
    padding-left: 20px;
}

.header {
    position: inherit !important;
}

.decode-btn,
.inquiry-submit-btn,
.proceed-payment-btn,
.newsletter-submit-btn {
    position: relative;
}

.decode-btn .wpcf7-submit,
.inquiry-submit-btn .wpcf7-submit,
.proceed-payment-btn .wpcf7-submit,
.newsletter-submit-btn .wpcf7-submit {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
}

.wpcf7-textarea {
    height: 100px !important;
}

.inquiry-security-tag p,
.form-trust-footnote p {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.newsletter-form p {
    display: flex !important;
    align-items: center !important;
}

.inquiry-security-tag p span {
    padding-left: 5px;
}

.inquiry-floral-corner {
    transform: rotateY(180deg) !important;
}

.input-icon-wrap .form-control {
    padding: 0 16px 0 16px !important;
}
.copy-right-text{
    color: #9d8eab !important;
}
.vt-thumb-wrapper{
    height: 300px !important;
}


/* ==========================================================================
   YouTube Video Testimonials - Clients Say Widget Support
   ========================================================================== */
.magicnumbers4u-testimonials .media-wrap.has-video {
	cursor: pointer;
}

.magicnumbers4u-testimonials .video-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.magicnumbers4u-testimonials .video-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
}

.magicnumbers4u-testimonials .cs-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: #ffd700;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 5;
}

.magicnumbers4u-testimonials .cs-play-btn svg {
	width: 22px;
	height: 22px;
	fill: #0c0d14;
	margin-left: 2px;
	transition: all 0.3s ease;
}

.magicnumbers4u-testimonials .media-wrap:hover .cs-play-btn {
	background-color: #ffffff;
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

/* Modal Lightbox Popup for Clients Say Widget */
.cs-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(12, 13, 20, 0.9);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cs-lightbox.active {
	opacity: 1;
}

.cs-lightbox-content {
	position: relative;
	width: 90%;
	max-width: 850px;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-lightbox.active .cs-lightbox-content {
	transform: scale(1);
}

.cs-lightbox-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: all 0.2s ease;
}

.cs-lightbox-close:hover {
	color: #ffd700;
	border-color: #ffd700;
	background: rgba(0, 0, 0, 0.85);
	transform: scale(1.05);
}

.cs-lightbox iframe {
	width: 100%;
	height: 100%;
	border: none;
}


.magicnumbers4u-testimonials .media-wrap:hover .cs-play-btn svg {
	fill: #7e57c2;
}

.magicnumbers4u-testimonials .video-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(12, 13, 20, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 5px 10px;
	border-radius: 30px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	z-index: 4;
	line-height: 1;
	transition: all 0.3s ease;
}

.magicnumbers4u-testimonials .media-wrap:hover .video-badge {
	background: #ffd700;
	color: #0c0d14;
	border-color: #ffd700;
}


.video-testimonials-section .vt-cards-container {
    overflow: hidden;
    width: 100%;
}

.video-testimonials-section .vt-cards-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Hide the scrollbar since navigation is via arrows/dots, not a visible scrollbar */
.video-testimonials-section .vt-cards-track::-webkit-scrollbar {
    display: none;
}
.video-testimonials-section .vt-cards-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-testimonials-section .vt-card {
    flex: 0 0 auto;
    width: 320px; /* pick a fixed card width, or use a % for responsiveness */
    scroll-snap-align: start;
}

.video-testimonials-section .vt-carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}


















