

/* Luxury Color Palette */
:root {
    --gold: #D4AF37;
    --platinum: #E5E4E2;
    --dark-charcoal: #333333;
    --ivory: #FFFFF0;
    --deep-emerald: #046307;
    --crystal-blue: #A0D6EB;
}

/* Luxury Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    /*background-color: var(--ivory);*/
    color: var(--dark-charcoal);
    margin: 0;
    padding: 0;
}

.header-wrapper {
    position: relative;
    top:150px;
}

.page-heading {
    padding: 3px 10px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #60898b;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    z-index: 1;
}

.stats-fixed {
    padding: 3px 15px;
    background: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

/* Fixed state when scrolled */
.header-wrapper.scrolled .page-heading {
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
}

.header-wrapper.scrolled .stats-fixed {
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/*popup style start*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center; /* Changed from center to flex-end for bottom alignment */
    z-index: 9999;
    overflow: hidden;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    height: 92%;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}
.popup-box-content{
    justify-content:center;
    margin: 36% 146px;
}

/* When popup is active */
.popup-overlay.active {
    display: flex;
}

.popup-overlay.active .popup-box {
    transform: translateY(0); /* Slide up */
}

/* Rest of your existing CSS remains same */
.back-btn {
    cursor: pointer;
    color: #0a0a0a;
    font-weight: bold;
    float: left;
    font-size: 20px;
    margin-top: 0px;
}

.movable-box-option-heading {
    text-align: center;
    font-size: 1.5rem;
    margin: 10px 10px 20px 10px;
}

.option-btn {
    display: block;
    margin: 10px auto;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.option-btn:hover {
    background: #0056b3;
}
/*popup style end*/


/*share icon style start*/
.share-container {
    position: relative;
    display: inline-block;
    margin: 0;
}

.share-icon-button {
    background-color: #4a6baf;
    color: white;
    margin-right: 5px;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.share-icon-button:hover {
    background-color: #3a5691;
}

.share-options {
    display: none;
    position: absolute;
    transform: translateX(-50%);
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 8px;
    z-index: 100;
    margin-top: 5px;
    margin-left: -5px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    color: #333;
}

.share-option:hover {
    background-color: #f0f0f0;
}

.share-option i {
    font-size: 1.1em;
}

.share-option.whatsapp { color: #25D366; }
.share-option.facebook { color: #3b5998; }
.share-option.instagram { color: #E1306C; }
.share-option.twitter { color: #1DA1F2; }
/*share icon style end*/

/* Custom dropdown styles */
.custom-dropdown {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.custom-dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 100;
}
.custom-dropdown-options .option {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.custom-dropdown-options .option:hover {
    background-color: #f5f5f5;
}
/* Location suggestions styles */
.locationwise-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f5f5f5;
}

.verified-therapist {
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: green;
    margin-top: 0px;
    margin-left: 30px;
}


.therapist-container {
    display: flex;
    max-width: 1400px;
    margin-top: 135px;
    padding: 20px;
    background: linear-gradient(135deg, var(--platinum) 0%, white 100%);
    border-radius: 15px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.therapist-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--gold), var(--deep-emerald), var(--crystal-blue));
}

.therapist-paragraphs {
    width: 35%;
    padding: 30px;
    background-color:white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-right: 30px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.therapist-paragraphs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #A67C00, #D4AF37);
}
.therapist-paragraphs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #A67C00, #D4AF37);
}
.luxury-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.luxury-line-heading img {
    width: 75px;
    margin-top: -30px;
    margin-left: -36px;
    margin-right: -90px;
}
.luxury-message {
    text-align: center;
    margin-bottom: 30px;
}
.luxury-line {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: #333;
    margin: 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: relative;
}

.luxury-line-heading {
    display:flex;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: relative;
}
.gold-text {
    color: #D4AF37;
    font-weight: 700;
    font-size: 40px;
    margin-top: 15px;
    margin-left: -5px;
    z-index: 100;
}

.exclusive-line {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-top: 25px;
    letter-spacing: 1px;
    font-weight: 700;
}
.jiifit-brand {
    color: #60898b;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.jiifit-brand::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #60898b, #D4AF37);
}
.luxury-button {
    background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
.luxury-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.luxury-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.luxury-button:hover::before {
    left: 100%;
}
@keyframes sparkle {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.8; transform: scale(1); }
}
.therapist-main-card {
    display: flex;
    width: 65%;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0px;
    height: 420px;
    overflow-y: auto;
    padding-right: 10px;
}
/* Custom scrollbar styling */
.therapist-main-card::-webkit-scrollbar {
    width: 8px;
}
.therapist-main-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.therapist-main-card::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.therapist-main-card::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.therapist-card {
    display: flex;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.therapist-card:hover {
    transform: translateY(-4px);
}

.therapist-card-left {
    padding: 8px 0px 0px 20px;
}

.therapist-card-left img.therapist-pic {
    width: 130px;
    padding: 0px;
    height: 160px;
    border: 1px solid #a8a1a1;
}

.therapist-card-right {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.therapist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.therapist-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.verified-badge {
    background-color: #e6f7ff;
    color: #0077cc;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 12px;
}

.therapist-stats-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin: 0px 0;
    font-size: 12px;
    color: #333;
    padding: 2px 5px;
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.06);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    color: #ffb400;
    font-size: 18px;
}

.stat-item.duration i {
    color: #1f8feb;
}

.light-text {
    color: #888;
    font-weight: 500;
}

.therapist-details {
    display:flex;
    gap: 40px;
    font-size: 12px;
    line-height: 2.6;
    margin-bottom: 0px;
}

.detail-item-working-location{
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #ff3860, #ff1443);
    padding: 0 5px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
    overflow: hidden;
}

.detail-item-hometown,
.detail-item-experience{
    margin-bottom: 1px;
}


.detail-label-hometown,
.detail-label-experience {
    font-weight: 600;
    color: #444;
}

.therapist-buttons {
    display: flex;
    width:300px;
    gap: 10px;
    margin-top: 0px;
}

.book-appointment-btn,
.about-me-btn {
    flex: -1;
    background-color: #007bff;
    color: white;
    padding: 6px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-appointment-btn:hover {
    background-color: #0056b3;
}

.about-me-btn:hover {
    background-color: #0056b3;
}

.friends-only-note {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}
.detail-item-working-location {
    position: absolute;
    bottom: 145px;
    left: 0;
    width: 75%;
    height: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #ff3860, #ff1443);
    color: white;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-marquee .marquee-content {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    animation: scrollUpLocation 8s steps(2) infinite;
}

.vertical-marquee .marquee-content span {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation to scroll one line at a time */
@keyframes scrollUpLocation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-60px);
    }
}

/* Combined Stats Container */
.stats-combined-container {
    margin: 5px auto;
    cursor:pointer;
}
.stats-combined-card {
    display: flex;
    width: fit-content;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.stats-section {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 0px;
}
.stats-divider {
    width: 2px;
    background:#958585;
    margin: 15px 0;
}
.stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.rating-section .stats-icon {
    color: #FFC107;
}
.bookings-section .stats-icon {
    color: #4CAF50;
}
.stats-content {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.stats-value {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
}
.stats-details {
    display: flex;
}
.stats-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.stats-count {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.faqSection {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0 10px;
}
.faqSection h4 {
    text-align: left;
    font-size: 2rem;
    font-weight: 900;
}
.faq-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.parent-tab {
    width: 100%;
    box-sizing: border-box; 
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
}
.parent-tab label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    transition: background-color 0.3s ease;
}
.parent-tab label:hover {
    background-color: #f1f1f1;
}

.parent-tab .dropdown-icon {
    transition: transform 0.3s ease;
}

.parent-tab.active .dropdown-icon {
    transform: rotate(180deg);
}
.toggle-content span {
    font-size: 15px;
}
.content p {
    font-size: 14px;
}
.dropdown-icon {
    display: inline-block;
}
.parent-tab .content {
    display: none;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}
.parent-tab.active .content {
    display: block;
}
.content {
    width: 100%;
    height: auto; 
}
.content a {
    text-decoration: none;
}
.content a:hover {
    text-decoration: underline;
}
.faq-btn {
    display: flex;
    justify-content: flex-end;
}
#toggleButton-viewmore {
    padding: 10px 20px;
    color: blue;
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 14px;
    border: none;
}


/*responsive for i pad*/
    
@media only screen and (max-width: 1024px){
    .therapist-paragraphs {
        width: 50%;
    }
    .therapist-main-card {
        display: flex;
        width: 73%;
    }
    .header-wrapper.scrolled .stats-fixed{
        top:135px;
    }
}

@media only screen and (max-width: 820px){
    .therapist-container {
        display: flow;
    }
    .therapist-paragraphs {
        width: 100%;
        margin-top: 30px;
    }
    .therapist-main-card {
        display: flex;
        width: 100%;
        margin-top: 10px;
    }
    .header-wrapper.scrolled .stats-fixed{
        top:141px;
    }
}


/* Mobile Responsive Styles */
@media only screen and (max-width: 520px) {
    
    .share-icon-button {
        padding: 8px 10px;
        margin-left:5px;
        font-size: 1em;
    }

    .header-wrapper.scrolled .stats-fixed{
        top:108px;
    }
    
    .header-wrapper {
        top: 120px;
        font-size: 2rem;
    }
    
    .page-heading {
        font-size:1.8rem;
    }
    
    .stats-icon i {
        font-size:20px;
    }    
    
    .therapist-card {
        padding: 10px;
    }
    
    .stats-value {
        font-size: 15px;
        margin-bottom: 0px;
        margin-top:-3px;
    }
    .stats-count {
        font-size: 10px;
        margin-top:-2px;
    }
    .stats-label {
        font-size: 10px;
        margin-top:-2px;
    }
    .therapist-container {
        margin-top: 125px;
        display: block;
    }
    .therapist-paragraphs {
        width: 100%;
        margin-top: 5px;
    }
    .gold-text {
        font-size: 23px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .luxury-line {
        font-size: 2rem;
        margin: 5px 0;
    }
    .luxury-line-heading img {
        width: 60px;
        margin-top: -33px;
        margin-left: -20px;
        margin-right: -30px;
    }
    .luxury-message {
        margin-bottom: 15px;
    }
    .jiifit-brand {
        font-size: 20px;
    }
    .exclusive-line {
        margin-top: 10px;
        margin-bottom: -30px;
    }
    .therapist-main-card {
        width: 105%;
        height:auto;
        margin-top: 20px;
    }
    .therapistSection h3 {
        font-size: 1.5rem;
        display:flow;
    }
    .therapist-card-left {
        padding: 10px 0px 0px 5px;
    }
    .therapist-card-right {
        padding: 10px 10px;
    }
    .therapist-card-left img.therapist-pic {
        width: 100px;
        height: 160px;
    }
    .therapist-name {
        font-size: 12px;
    }
    .verified-therapist {
        font-size: 11px;
        margin-left: 20px;
        color:green;
    }
    
    .stat-item i {
        font-size: 13px;
    }
    .therapist-stats-premium {
        display: flow;
        font-size: 9px;
    }
    .therapist-details {
        display: flow;
        font-size: 10px;
        line-height: 1.8;
    }