:root {
    --footer-bottom-text-color: #1f3a52;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensure the body takes full height */
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* Ensure vertical scrolling is enabled */
    scroll-behavior: smooth;
    /* Smooth scrolling for better UX */
}

body::before {
    content: '';
    position: fixed;
    /* Use fixed positioning to make the background cover the entire page */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    background-size: 300% 300%;
    opacity: 1;
    /* Make the background image faint */
    z-index: -1;
    /* Position the background behind the content */
    pointer-events: none;
    /* Prevent the background from interfering with interactions */
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the track */
    border-radius: 10px;
    /* Rounded corners for the track */
}

body::-webkit-scrollbar-thumb {
    background: #1f3a52;
    /* Color of the scrollbar */
    border-radius: 10px;
    /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker color when hovered */
}

/* Firefox scrollbar (optional but recommended for scalability) */
@supports (scrollbar-width: thin) {
    body {
        scrollbar-width: thin;
        scrollbar-color: #1f3a52 #e4e4e4;
    }
}

.get-started {
    margin-left: auto;
    /* Push button to the right */
    width: 104px !important;
    height: 48px !important;
    padding: 10px;
    border-radius: 15px;
    border-style:outset !important;
   
    background: #c88e8e;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.8rem;
    animation: shake 3s ease-in-out infinite;
    animation-delay: 2s;
    margin-top: -5px !important;
}

/* Header Styling */
header {
    color: #fff;
    padding: 5px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Navigation Styling */
nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    /* Ensures spacing between links and button */
}

.nav-center {
    flex: 1;
    /* Takes up the middle space */
    display: flex;
    justify-content: center;
    /* Ensures the links stay centered */
    transform: translateX(60px);
    /* adjust as needed (10px–30px) */
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 5px;
    transition: opacity 0.5s ease-in-out;
    right: 100px;
}

.nav-links.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* Center list items */
    align-items: center;
    margin: 0;
    padding: 0;
    margin-top: -5px !important;



}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: whitesmoke;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-size: 0.875rem;
    transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    font-weight: 700;
}

nav ul li a:hover {
    transform: scale(1.1);
    color: #acc8df;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 15px;
    /* Moves underline further down */
}
.social-media-icons {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.social-media-icons a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
}

.social-media-icons a:hover h2 {
    animation: shake 0.5s forwards;
}

/* LOGO Container - Absolute Positioning */
.logo-video {
    width: 250px !important;
    height: 40px;
    border-radius: 10%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease-in-out;
}



.logo-container {
    transition: transform 0.1s ease-in-out;
}

.logo-container:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}


/*#region Background Styling*/
#therapist-backgrund {
    opacity: 1;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 30px;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: -5px;
}

.therapist-bg {
    position: absolute;
    inset: 0;
    /* top/right/bottom/left: 0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* matches background-position */
    z-index: 0;
    /* sits behind overlay & content, but above section background */
    display: block;
    pointer-events: none;
    /* (optional) never block clicks */
}

/* Semi-transparent overlay */
#therapist-backgrund::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Overlay content */
.overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* Header text */
.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ensures the text is centered horizontally */
    text-align: center;
    /* Ensures text alignment is centered */
    color: rgb(196, 187, 187);
    word-wrap: break-word;
    /* Ensures long words break and wrap within the container */
    height: 100%;
    width: 100%;
    /* Ensure it takes up the full width of its parent */
    max-width: 800px;
    /* Optional: controls wrapping width */
    line-height: 1.6;
    margin: 0 auto;
    /* Center align the content horizontally */
    padding: 0 20px;
    /* Optional: adds space on the sides if needed */
}

.header-text h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 200;
    color: rgb(216, 213, 213);
}

/* Logo slides from top to center */
.logo-slide-fade {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1s ease;
}

.logo-slide-fade.logo-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Text slides from bottom to center */
.title-slide-fade {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.title-slide-fade.title-animate {
    opacity: 1;
    transform: translateY(0);
}



.hero-background img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.intro h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 200;
}

.underline {
    width: 100px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto 20px;
    border-radius: 2px;
}

/* Styling the paragraph */
.intro p {
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/*#endregion BACKGROUND*/


/*#region*****************************************GUIDE*******************************************/


.guide {
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    margin-top:-30px;
}

.text-side {
    opacity: 0;
    transform: translateY(-50px);
    /* Slide from top */
    transition: all 0.8s ease-out;
}

.text-side.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.serif {
    font-weight: 500;
    font-style: italic;
    font-family: Newsreader, "Times New Roman", serif;
    font-size: 70px;
    color: #ffffff;
    margin-top: -15px;
    /* Optional: for tighter visual spacing */
    margin-left: 40px;
}

.text-side {
    font-size: 38px;
    color: #ffffff;
    font-weight: 200;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    margin-left: 45px !important;
    margin-top: 110px;
    white-space: nowrap;
    line-height: 1.1em;
}


.header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.serif1 {
    font-weight: 200;
    font-style: italic;
    font-family: serif;
    margin-left: 0.1rem;
    font-size: 1.6em;
    /* reduce or remove margin */
}

.brief-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 90px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.brief-column {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    box-sizing: border-box;
}

.brief-divider {
    width: 1px;
    background-color: white;
    height: auto;
}

.brief-column h3 {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 10px;
    color: white;
}

.brief-column p {
    font-size: 16px;
    color: white;
    line-height: 1.5;
    font-weight: 350;
}



/*#endregion******************************************GUIDE*****************************/

/*#region**********************************************TEAM MEMBERS***********************************************/
#ourtherapist {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 50px 20px;
    margin-top: -30px;
}


.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Forces 4 columns */
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}
.book-btn {
background: linear-gradient(
  135deg,
  rgba(0, 100, 80, 0.8) 0%,
  rgba(0, 140, 100, 0.7) 50%,
  rgba(160, 255, 200, 0.2) 100%
);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 32px; /* rounded corners */
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.book-btn:hover {
  background-color: #218838; /* darker green on hover */
}

.name-badge {
    display: inline-block;
    background-color: #0481C1; /* wine color */
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
}



.member-card {
 backdrop-filter: blur(4px); /* optional, adds soft frosted effect */

background: linear-gradient(
        135deg,
        rgba(15, 32, 39, 0.85) 0%,   /* dark moody base */
        rgba(32, 58, 67, 0.7) 50%,   /* slightly lighter mid-tone */
        rgba(112, 184, 0, 0.15) 100% /* subtle MoodPàdi green tint */
    );

    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;
transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* button edge style */
    border-style: outset;
    /* button edge style */
}
.member-card:hover {
    transform: translateY(-10px); /* slide up */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* deeper shadow */
}
.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: black solid;
    /* button edge style */
    border-style: outset;
    /* button edge style */
}
.row-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 6px 0;
  flex-wrap: nowrap; /* ✅ prevent breaking pairs unless really needed */
}

.row-info p {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  flex: 1;
}

.row-info p strong {
  margin-right: 4px;
  font-weight: 600;
}

.member-card h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.member-card p {
    font-size: 0.78rem;
    margin-bottom: 5px;
}

.stars {
    color: gold;
    font-size: 1.0rem;
}

.view-profile {
    display: inline-block;
    margin-top: 8px; 
    font-weight:lighter;
    text-decoration: none;
   color: #70B800; /* soft, friendly green */
    transition: color 0.3s ease;
    font-size: 12px;
}

.view-profile:hover {
    color: #AEDD5D; /* lighter green on hover */
}

.toggle-button {

    text-align: center;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


#toggle-btn {
    background-color: #1f3a52;
    color: #fff;
    padding: 10px 20px;
    border: black solid;
    /* button edge style */
    border-style: outset;
    /* button edge style */
    border-radius: 25px;
    cursor: pointer;
}

#toggle-btn i {
    margin-left: 10px;
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.filter-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #c88e8e;
  transition: all 0.3s ease;
}

.filter-badge:hover {
  background-color: #ddd;
}

.filter-badge.active {
  background-color: #28a745; /* green highlight */
  color: white;
}

/*#endregion Team Members*/

/*#region Corporate*********/
#corporate-booking {
    padding: 60px 20px;
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    text-align: center;
    margin-top: -32px;
}

.input-error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 0.85em;
    margin-top: 5px;
}

#corporate-booking .underline {
    width: 100px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto 20px;
    border-radius: 2px;
}

#corporate-booking p {
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.corporate-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .corporate-form {
        grid-template-columns: 1fr 1fr;
    }

    .corporate-form .corporate-form-group:nth-child(7),
    .corporate-form .corporate-form-group:nth-child(8),
    .corporate-form button {
        grid-column: span 2;
    }
}

.corporate-form-group {
    position: relative;
    width: 100%;
}

.corporate-form-group input,
.corporate-form-group select,
.corporate-form-group textarea {
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: 1px solid #ccc;
    color: white;
    font-size: 1rem;
    outline: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.corporate-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.corporate-form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #ccc;
    pointer-events: none;
    transition: 0.3s ease all;
    background-color: #1f3a52;
    padding: 0 4px;
}

.corporate-form-group input:focus+label,
.corporate-form-group input:not(:placeholder-shown)+label,
.corporate-form-group select:focus+label,
.corporate-form-group select:not(:placeholder-shown)+label,
.corporate-form-group textarea:focus+label,
.corporate-form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 10px;
    font-size: 0.75rem;
    color: #fff;
}

.corporate-form button {
    padding: 14px;
    background-color: #4ca1af;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 20%;
    /* Center the button */
    display: block;
    margin: 0 auto;
}

select option[value="chat"] {
    color: blue;
    font-weight: bold;
}

select option[value="video"] {
    color: green;
    font-weight: bold;
}

.prof-slide-fade {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.prof-slide-fade.prof-animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}


.book-slide-left,
.book-slide-fade {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.book-slide-left.book-animate {
    opacity: 1;
    transform: translateX(0);
}

.book-slide-fade.book-animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}



.corporate-form button:hover {
    background-color: #357f89;
}

/* Input validation styling */
.corporate-form-group input:invalid,
.corporate-form-group select:invalid,
.corporate-form-group textarea:invalid {
    border-color: #ff4d4f;
}

.corporate-form-group input:valid,
.corporate-form-group select:invalid,
.corporate-form-group textarea:valid {
    border-color: #4caf50;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: #ffffff;
    color: #333;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #4ca1af;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #357f89;
}

.hidden {
    display: none;
}

/*#endregion*****************************/


/*#region *****************************************************OUR APP*/
.our-app-section {
    width: 100%;
    text-align: center;
    padding: 60px 20px;

    word-wrap: break-word;
    margin-top: 35px;
    border: none;
    box-sizing: border-box;
}

.our-app-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.our-app-section .underline {
    width: 100px;
    height: 4px;
    background-color: #fff;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.our-app-section p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.store-button img {
    width: 40px;
    height: 40px;
}

.google-play {
    background-color: #111827;
}

.google-play:hover {
    background-color: #1f2937;
}

.ios-store {
    background-color: #111827;
}

.ios-store:hover {
    background-color: #1f2937;
}

.app-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.app-slide-left.our-app-section-animate {
    opacity: 1;
    transform: translateX(0);
}

/*#endregion OUR APP*****/


/*#region FAQS*************************************************FAQS SECTION****************/

#faq {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);


    background-size: 300% 300%;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -10px;
    border-radius: 55px;
}

.faq-title {
    left: 300px;
    font-size: 1.125rem;
    color: #ece7e7;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
}

/* FAQ item styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
   backdrop-filter: blur(4px); /* optional, adds soft frosted effect */

background: linear-gradient(
        135deg,
        rgba(15, 32, 39, 0.85) 0%,   /* dark moody base */
        rgba(32, 58, 67, 0.7) 50%,   /* slightly lighter mid-tone */
        rgba(112, 184, 0, 0.15) 100% /* subtle MoodPàdi green tint */
    );

    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #1f3a52;
}

/* FAQ answer styles */
.faq-answer {
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 8px;
    display: none;
    font-size: 1em;

}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Accordion animation */
.faq-item.open .faq-answer {
    display: block;
    animation: slideDown 0.4s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*#endregion*/

/*#region CONTACT AND FOOTER STYLING***************************************/
#contact {
    background: rgba(2, 2, 113, 0.772);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}


/* Form Styling */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 400px;
}

/* Input and Textarea Styling */
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.3rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: whitesmoke;
    color: Black;
    box-sizing: border-box;
}

/* Textarea Specific Styling */
#contact form textarea {
    height: 70px;
    resize: vertical;
}

/* Button Styling */
#contactForm button {
  background: linear-gradient(135deg, #ffb300, #ff6f00);
color: #ffffff;
    padding: 0.5rem 1rem;

    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 24px;
    width: 120px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

#contactForm button:hover {
    background-color: #315372;
}

/* Label Styling */
#contact form label {
    color: #555;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Social Media Icons Styling */
.social-icon {
    color: #fff !important;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.social-icon:hover {
    color: #ddd;
}

.whatsapp-qr-code {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-qr-code img {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.subfooter {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 1200px;
    margin-bottom: -130px !important;
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    /* Center it if needed */
    color: white !important;
    backdrop-filter: blur(4px); /* optional, adds soft frosted effect */

background: linear-gradient(
        135deg,
        rgba(15, 32, 39, 0.85) 0%,   /* dark moody base */
        rgba(32, 58, 67, 0.7) 50%,   /* slightly lighter mid-tone */
        rgba(112, 184, 0, 0.15) 100% /* subtle MoodPàdi green tint */
    );

    border-radius: 10px;
    overflow: hidden;
}




.subfooter-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subfooter-right {
    display: flex;
    justify-content: flex-start;
    /* Change to flex-start */
    width: 60%;
    align-items: center;
    margin-top: -65px;
    transform: translateX(-120px);
    /* Use transform instead of margin-left */
}



.subscribe-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subscribe-form {
    display: flex;
}

.email-input {
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 250px !important;
}

.subf1-button {
    height: 44px;
    width: 150px !important;
    border-radius: 35px !important;
background: linear-gradient(135deg, #ffb300, #ff6f00);
color: #ffffff;
    border: 2px solid black;
    border-style: outset;
    margin-top: 0px;
    margin-left: 7px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}


.privacy-statement {
    font-size: 14px;
}

.about-subtext-f {
    line-height: 1.1;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white !important;
    font-size: 38px !important;
    line-height: 1.1em;
    font-weight: 100;
}

.subf {
    color: white !important;
}

.serif-f {
    line-height: 1.1;
    text-align: left;
    margin-bottom: 30px;
    font-style: italic;
    font-family: Newsreader, "Times New Roman", serif;
    font-size: 38px !important;
    line-height: 1.1em;
    font-weight: 100;
    color: #fff !important;
}

.copy {
    color: white !important;
    margin-top: 28px;
}

.copy1 {
    color: white !important;
    margin-top: -20px;
}

.copy2 {
    color: white !important;
    margin-top: -20px;
}

.logo-video-1 {
    width: 170px;
    height: auto;
}



.image-placeholder1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 250px;
    height: 250px;
    border-radius: 10%;
    margin-top: 50px;
    margin-left: 60px;
}


/* Media Queries for Responsiveness */
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #contact {
        padding: 1rem;
    }

    #contact form input,
    #contact form textarea {
        font-size: 0.875rem;
    }

    #contact form button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/*#endregion CONTACT*****/

section {
    padding: 2rem;
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 1rem;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}


/*#region FOOTER******************************/
footer {
    /* Matches footer or slightly darker */
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 1.25rem;
    flex-wrap: wrap;

}

/* Custom Footer Area */
.custom_footer_area {
        background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    border-radius: 70px;

}

/* Footer Top */
.custom_footer_top {
    padding: 100px;
    position: relative;
    overflow-x: hidden;
    width: 1550px;



}



/* Adjust input fields and text area to same width */
.custom_footer_top .contact_widget input,
.custom_footer_top .contact_widget textarea {
    width: 100%;
    /* Set the width to 100% */
    max-width: 100%;
    /* Ensure they are full-width */
    padding: 12px;
    /* Optional: Adjust padding for better appearance */
    margin-bottom: 15px;
    /* Space below each input */
}

/* Footer Bottom */
.custom_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}

.custom_footer_top .contact_widget p,
.custom_footer_top .quick_links_widget p,
.custom_footer_top .support_widget p,
.custom_footer_top .social_widget p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

/* Button Hover */
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.custom_footer_top .f_widget .f_list li a:hover {
    color: #1f3a52;
}

/* Social Icons */
.custom_footer_top .f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 0.875rem;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    transition: all 0.2s linear;
}

.custom_footer_top .f_social_icon a:hover {
    background: #1f3a52;
    border-color: #1f3a52;
    color: white;
}

.custom_footer_top .f_social_icon a+a {
    margin-left: 4px;
}


/* Footer Widget Styling */
.f_widget {
    margin-bottom: 40px;

}

.f_widget h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.f_widget .f_list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.f_widget .f_list li {
    margin-bottom: 15px;

}

.f_widget .f_list li a {
    color: white;
    font-size: 0.875rem;
    text-decoration: none;
}

.f_widget .f_list li a:hover {
    color: #5e2ced;
}
.custom_footer_top .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 54px;
    color:#fff;
}
.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: #ebeef5;
    border-radius: 50%;
    color: #858da8;
    text-align: center;
    font-size: 1.25rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color: white;
}

/* Social Icons Font */
.f_social_icon a i {
    font-size: 1.25rem;
}

.footer-text {
    color: var(--footer-bottom-text-color);
    font-family: 'Nunito', sans-serif;
    font-size: 14.5px;
    margin-top: 10px;
    position: absolute;
    /* Ensures it's always visible at the bottom */
    bottom: 0;
    /* Positions at the bottom of the viewport */
    left: 50%;
    /* Starts at 50% of the viewport width */
    transform: translateX(-50%);
    /* Centers the element horizontally */
    text-align: center;
    /* Centers the text within the element */
    width: 100%;
    /* Optional: Makes it span the entire width */
}

.top-f {
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 999;
    font-size: 16px;
    background: linear-gradient(135deg, #0481C1 0%, #0f2027 100%);
    color: white;
    border: none;
    outline: none;
    padding: 5px 5px;
    border-radius: 60px;
    cursor: pointer;
    opacity: 1;
    /* <<< make it always visible */
    transition: opacity 0.3s ease-in-out;
    font-weight: 700;
}


.top-f:hover {
    background-color: #0056b3;
}

.top-f.show {
    opacity: 1;
}

/*#endregion FOOTER*********************************/



/*#region COMPLIANCE FOOTER*/

.compliance-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers vertically */
  align-items: center;       /* centers horizontally */
  text-align: center;
  color: #fff;
  margin-top: 18px;
  padding: 10px 0;
  width: 100%;
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* aligns icons vertically */
  gap: 8px;
  font-size: 13px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 6px;
}

.badge-line span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-line i {
  color: #70b800;
  font-size: 14px;
}

.compliance-note {
  font-size: 12px;
  line-height: 1.5;
  color: #dcdcdc;
  max-width: 80%;
  text-align: center;
}

/*#endregion COMPLIANCE*/

/* Custom Modal styles */
.custom-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
    z-index: 1050;
    /* Ensure it is on top of other elements */
}

.custom-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 70%;
    max-width: 300px;
    padding: 15px;
    text-align: center;
}

.custom-modal-header {
    background-color: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.custom-modal-footer {
    padding: 10px;
    text-align: center;
}

.custom-modal-footer .btn {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
}

.custom-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.25rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 50px !important;
}

.custom-modal .close-btn:hover {
    color: black;
}

.custom-modal-header.bg-danger {
    background-color: #dc3545;
}

.custom-modal-header.bg-success {
    background-color: #28a745;
}

.custom-modal-body {
    padding: 10px;
    font-size: 1rem;
}

.custom-modal-header h5 {
    font-size: 1.5rem;
    /* Increased font size */
    margin-left: 10px;
    /* Move the title a bit to the left */
    text-align: left;
    /* Align the title to the left */
    font-weight: bold;
    /* Make the font bold */
}

.custom-modal-header.bg-success h5 {
    font-size: 1.5rem;
    /* Same font size for success modal */
    margin-left: 10px;
    /* Align to the left */
    text-align: left;
    font-weight: bold;
}

.custom-modal-footer .btn {
    width: auto;
    /* Adjust button width to fit content */
    padding: 6px 12px;
    /* Reduce padding to make the button smaller */
    margin-top: 10px;
    font-size: 0.875rem;
    /* Reduce font size for the button */
}





/* ===========================
   MEDIA QUERIES FOR CUSTOM MODAL RESPONSIVENESS
   =========================== */



   /******GOOGLE STANDARD MEDIA QUERY RANGES******/
/* ✅ Small / short phones or landscape */

@media (max-width: 414px) and (min-height: 412px){

    /*#region NAV*/
/* General nav styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    background: transparent; /* or any bg color */
    height: 70px; /* adjust as needed */
}

/* Center links container */
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1; /* takes remaining space */
}

/* Links styling */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px; /* space between links */
}

.nav-links li a {
    color: whitesmoke;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #acc8df;
    text-decoration: underline;
    text-underline-offset: 5px;
    transform: scale(1.05);
}

/* Book Session button on the right */
.get-started {
  display:none;
    padding: 8px 15px;
    background-color: #acc8df;
    border: none;
    border-radius: 5px;
    color: #1f3a52;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.get-started:hover {
    transform: scale(1.05);
    background-color: #38618d;
    color: #fff;
}

/* Optional: remove old transforms/margins */
.nav-center, nav ul {
    transform: none !important;
    margin-top: 0 !important;
}
    /*#endregion NAV*/

    /*#region Background*/
   /* Section full viewport without internal padding */
  #therapist-backgrund {
    padding: 0 !important;   /* override global padding */
    margin: 0 !important;    /* override any global margin */
    width: 100vw !important; /* full width */
    height: 100vh !important;
    justify-content: center;
    align-items: center;
  }

  /* Background image full stretch */
  .therapist-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    padding: 0;
  }

  /* Overlay full width */
  .overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100% !important;
    padding: 0 !important;   /* remove overlay padding */
    gap: 15px;
  }

  /* Header text overrides */
  .header-text {
    width: 100% !important;
    max-width: none !important;  /* ignore desktop max-width */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Logo and title */
  .logo-video {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
  }

  .header-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .title-slide-fade {
    font-size: 1.2rem;
    line-height: 1.4;
  }
/*#endregion Background*/

/*#region GUIDE*/
/* Guide section adjustments */
    .guide {
        margin-top: -2px !important;
        padding: 0 10px;  /* add small side padding */
    }

    /* Header */
    .guide .header {
        text-align: center;
        margin-bottom: 20px;
    }

    .guide .header p {
        font-size: 1rem;  /* smaller on mobile */
        margin-bottom: 5px;
    }

    .guide .header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    /* Text side */
    .text-wrapper {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .text-side {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-left: 0 !important; /* reset left margin */
        margin-top: 20px;
        white-space: normal;       /* allow wrapping */
    }

    .serif {
        font-size: 1.2rem;          /* smaller serif font */
        margin-left: 0;
        display: inline-block;
    }

    /* Stack brief columns vertically */
    .brief-row {
        flex-direction: column;     /* stack instead of row */
        gap: 15px;                  /* spacing between sections */
        margin-top: 30px;
        padding: 0 10px;
    }

    .brief-column {
        width: 100%;                /* full width */
        min-width: unset;
        padding: 10px 0;            /* vertical padding */
    }

    /* Remove vertical dividers on mobile */
    .brief-divider {
        display: none;
    }

    .brief-column h3 {
        font-size: 1rem;           /* smaller heading */
        margin-bottom: 5px;
    }

    .brief-column p {
        font-size: 0.9rem;         /* smaller paragraph */
        line-height: 1.4;
    }
/*#endregion GUIDE*/


/*#region OUR THERAPIST*/
#ourtherapist {
  padding: 30px 15px;
  overflow-x: hidden; /* ✅ prevents right-side spill */
}

.team-members {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Member card */
.member-card {
  width: 100%;
  max-width: 380px; /* ✅ prevents card from stretching beyond screen width */
  margin: 0 auto;
  padding: 18px 14px;
  text-align: left;
  border-radius: 12px;
  backdrop-filter: blur(4px);

  background: linear-gradient(
    135deg,
    rgba(15, 32, 39, 0.85) 0%, 
    rgba(32, 58, 67, 0.7) 50%, 
    rgba(112, 184, 0, 0.15) 100%
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-wrap: break-word; /* ✅ wrap long words */
  word-break: break-word; /* ✅ extra safety */
}

/* Adjust info rows */
.row-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
}

.row-info p {
  margin: 0;
  font-size: 14px;
  white-space: normal; /* ✅ allow wrapping of text */
  flex: 1;
}

.row-info p strong {
  margin-right: 4px;
  font-weight: 600;
}

/* Image */
.profile-pic {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* Buttons */
.book-btn {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 0;
  text-align: center;
}

.view-profile {
  display: block;
  margin-top: 10px;
}

/* Badges */
.badge-row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

.filter-badge {
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 20px !important;
}

/* Headers */
.header, .intro {
  text-align: center;
}
/*#endregion OUR THERAPIST*/



/*#region Corporate*/
.cop-btn{
    width: 150px !important;
}
/*#endregion COPORATE*/


    /*#region FAQ*/
     #faq {
        width: 95%;
    }

    .faq-title {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /*#endregion FAQ*/

 /*#region FOOTER*/
    /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }
  #contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }
#footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }
.subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }
  /* Ensure no hidden overflow from body or parent */
  html, body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/


}

@media (max-width: 599px) and (max-height: 667px) {


  /*#region NAV*/
/* General nav styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* space between links and button */
    width: 100%;
    padding: 0 10px; /* reduced padding to prevent clipping */
    position: relative;
    z-index: 10;
    background: transparent;
    height: 70px; /* adjust as needed */
}

/* Center links container */
.nav-center {
    display: flex;
    justify-content: center; /* center links horizontally */
    flex: none; /* do not stretch */
    width: auto; /* shrink to fit links */
}

/* Links styling */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1px; /* space between links */
}

.nav-links li a {
    color: whitesmoke;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-size: 0.775rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #acc8df;
    text-decoration: underline;
    text-underline-offset: 5px;
    transform: scale(1.05);
}

/* Book Session button on the right */
.get-started {
       display:none;
    }

/* Remove old transforms/margins */
.nav-center, nav ul {
    transform: none !important;
    margin-top: 0 !important;
}
    /*#endregion NAV*/

/*#region BACKGROUND*/
  /* Section full viewport without internal padding */
  #therapist-backgrund {
    padding: 0 !important;   /* override global padding */
    margin: 0 !important;    /* override any global margin */
    width: 100vw !important; /* full width */
    height: 100vh !important;
    justify-content: center;
    align-items: center;
  }

  /* Background image full stretch */
  .therapist-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    padding: 0;
  }

  /* Overlay full width */
  .overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100% !important;
    padding: 0 !important;   /* remove overlay padding */
    gap: 15px;
  }

  /* Header text overrides */
  .header-text {
    width: 100% !important;
    max-width: none !important;  /* ignore desktop max-width */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Logo and title */
  .logo-video {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
  }

  .header-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .title-slide-fade {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  /*#endregion BACKGROUND*/

/*#region GUIDE*/
/* Guide section adjustments */
    .guide {
             margin-top: -2px !important;
        padding: 0 10px;  /* add small side padding */
    }

    /* Header */
    .guide .header {
        text-align: center;
        margin-bottom: 20px;
    }

    .guide .header p {
        font-size: 1rem;  /* smaller on mobile */
        margin-bottom: 5px;
    }

    .guide .header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    /* Text side */
    .text-wrapper {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .text-side {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-left: 0 !important; /* reset left margin */
        margin-top: 20px;
        white-space: normal;       /* allow wrapping */
    }

    .serif {
        font-size: 1.2rem;          /* smaller serif font */
        margin-left: 0;
        display: inline-block;
    }

    /* Stack brief columns vertically */
    .brief-row {
        flex-direction: column;     /* stack instead of row */
        gap: 15px;                  /* spacing between sections */
        margin-top: 30px;
        padding: 0 10px;
    }

    .brief-column {
        width: 100%;                /* full width */
        min-width: unset;
        padding: 10px 0;            /* vertical padding */
    }

    /* Remove vertical dividers on mobile */
    .brief-divider {
        display: none;
    }

    .brief-column h3 {
        font-size: 1rem;           /* smaller heading */
        margin-bottom: 5px;
    }

    .brief-column p {
        font-size: 0.9rem;         /* smaller paragraph */
        line-height: 1.4;
    }
/*#endregion GUIDE*/

/*#region OUR THERAPIST*/
#ourtherapist {
  padding: 30px 15px;
  overflow-x: hidden; /* ✅ prevents right-side spill */
}

.team-members {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Member card */
.member-card {
  width: 100%;
  max-width: 380px; /* ✅ prevents card from stretching beyond screen width */
  margin: 0 auto;
  padding: 18px 14px;
  text-align: left;
  border-radius: 12px;
  backdrop-filter: blur(4px);

  background: linear-gradient(
    135deg,
    rgba(15, 32, 39, 0.85) 0%, 
    rgba(32, 58, 67, 0.7) 50%, 
    rgba(112, 184, 0, 0.15) 100%
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-wrap: break-word; /* ✅ wrap long words */
  word-break: break-word; /* ✅ extra safety */
}

/* Adjust info rows */
.row-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
}

.row-info p {
  margin: 0;
  font-size: 14px;
  white-space: normal; /* ✅ allow wrapping of text */
  flex: 1;
}

.row-info p strong {
  margin-right: 4px;
  font-weight: 600;
}

/* Image */
.profile-pic {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* Buttons */
.book-btn {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 0;
  text-align: center;
}

.view-profile {
  display: block;
  margin-top: 10px;
}

/* Badges */
.badge-row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

.filter-badge {
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 20px !important;
}

/* Headers */
.header, .intro {
  text-align: center;
}
/*#endregion OUR THERAPIST*/

/*#region Corporate*/
.cop-btn{
    width: 150px !important;
}
/*#endregion COPORATE*/

    /*#region FAQ*/
     #faq {
        width: 95%;
    }
    .faq-title {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /*#endregion FAQ*/

 /*#region FOOTER*/
    /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .contact_widget button,
  .contact-button {
    width: 100% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: #1f3a52 !important;
    color: #fff !important;
    border: none !important;
  }

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }
#footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }
.subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }
  /* Ensure no hidden overflow from body or parent */
  html, body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/


}


@media (max-width: 599px) and (min-height: 668px) and (max-height: 812px){
 
 
    /*#region NAV*/
/* General nav styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* space between links and button */
    width: 100%;
    padding: 0 10px; /* reduced padding to prevent clipping */
    position: relative;
    z-index: 10;
    background: transparent;
    height: 70px; /* adjust as needed */
}

/* Center links container */
.nav-center {
    display: flex;
    justify-content: center; /* center links horizontally */
    flex: none; /* do not stretch */
    width: auto; /* shrink to fit links */
}

/* Links styling */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1px; /* space between links */
}

.nav-links li a {
    color: whitesmoke;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-size: 0.775rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #acc8df;
    text-decoration: underline;
    text-underline-offset: 5px;
    transform: scale(1.05);
}

/* Book Session button on the right */
.get-started {
       display:none;
    }

/* Remove old transforms/margins */
.nav-center, nav ul {
    transform: none !important;
    margin-top: 0 !important;
}
    /*#endregion NAV*/

/*#region BACKGROUND*/
  /* Section full viewport without internal padding */
  #therapist-backgrund {
    padding: 0 !important;   /* override global padding */
    margin: 0 !important;    /* override any global margin */
    width: 100vw !important; /* full width */
    height: 100vh !important;
    justify-content: center;
    align-items: center;
  }

  /* Background image full stretch */
  .therapist-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    padding: 0;
  }

  /* Overlay full width */
  .overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100% !important;
    padding: 0 !important;   /* remove overlay padding */
    gap: 15px;
  }

  /* Header text overrides */
  .header-text {
    width: 100% !important;
    max-width: none !important;  /* ignore desktop max-width */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Logo and title */
  .logo-video {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
  }

  .header-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .title-slide-fade {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  /*#endregion BACKGROUND*/

/*#region GUIDE*/
/* Guide section adjustments */
    .guide {
           margin-top: -2px !important;
        padding: 0 10px;  /* add small side padding */
    }

    /* Header */
    .guide .header {
        text-align: center;
        margin-bottom: 20px;
    }

    .guide .header p {
        font-size: 1rem;  /* smaller on mobile */
        margin-bottom: 5px;
    }

    .guide .header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    /* Text side */
    .text-wrapper {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .text-side {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-left: 0 !important; /* reset left margin */
        margin-top: 20px;
        white-space: normal;       /* allow wrapping */
    }

    .serif {
        font-size: 1.2rem;          /* smaller serif font */
        margin-left: 0;
        display: inline-block;
    }

    /* Stack brief columns vertically */
    .brief-row {
        flex-direction: column;     /* stack instead of row */
        gap: 15px;                  /* spacing between sections */
        margin-top: 30px;
        padding: 0 10px;
    }

    .brief-column {
        width: 100%;                /* full width */
        min-width: unset;
        padding: 10px 0;            /* vertical padding */
    }

    /* Remove vertical dividers on mobile */
    .brief-divider {
        display: none;
    }

    .brief-column h3 {
        font-size: 1rem;           /* smaller heading */
        margin-bottom: 5px;
    }

    .brief-column p {
        font-size: 0.9rem;         /* smaller paragraph */
        line-height: 1.4;
    }
/*#endregion GUIDE*/

/*#region OUR THERAPIST*/
#ourtherapist {
  padding: 30px 15px;
  overflow-x: hidden; /* ✅ prevents right-side spill */
}

.team-members {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Member card */
.member-card {
  width: 100%;
  max-width: 380px; /* ✅ prevents card from stretching beyond screen width */
  margin: 0 auto;
  padding: 18px 14px;
  text-align: left;
  border-radius: 12px;
  backdrop-filter: blur(4px);

  background: linear-gradient(
    135deg,
    rgba(15, 32, 39, 0.85) 0%, 
    rgba(32, 58, 67, 0.7) 50%, 
    rgba(112, 184, 0, 0.15) 100%
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-wrap: break-word; /* ✅ wrap long words */
  word-break: break-word; /* ✅ extra safety */
}

/* Adjust info rows */
.row-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
}

.row-info p {
  margin: 0;
  font-size: 14px;
  white-space: normal; /* ✅ allow wrapping of text */
  flex: 1;
}

.row-info p strong {
  margin-right: 4px;
  font-weight: 600;
}

/* Image */
.profile-pic {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* Buttons */
.book-btn {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 0;
  text-align: center;
}

.view-profile {
  display: block;
  margin-top: 10px;
}

/* Badges */
.badge-row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

.filter-badge {
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 20px !important;
}

/* Headers */
.header, .intro {
  text-align: center;
}
/*#endregion OUR THERAPIST*/

/*#region Corporate*/
.cop-btn{
    width: 150px !important;
}
/*#endregion COPORATE*/


    /*#region FAQ*/
     #faq {
        width: 95%;
    }
    .faq-title {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /*#endregion FAQ*/


 /*#region FOOTER*/
    /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

 .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }
    #contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }
#footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }
.subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }
  /* Ensure no hidden overflow from body or parent */
  html, body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/

}

@media (max-width: 599px) and (min-height: 933px) and (max-height: 1000px){
 
 
    /*#region NAV*/
/* General nav styling */
 nav {
    display: flex;
    align-items: center !important;       /* vertically center */
    justify-content: center !important;   /* center all contents horizontally */
    width: 100%;
    padding: 0 10px;
    position: relative;
    z-index: 10;
    background: transparent;
    height: 70px; /* adjust height if needed */
  }

  /* Center nav links wrapper */
  .nav-center {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    flex: none;
    width: auto;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Nav links layout */
  .nav-links {
    list-style: none;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    margin: 0;
    padding: 0;
    gap: 12px !important; /* increased spacing for mobile readability */
  }

  .nav-links li a {
    color: whitesmoke !important;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-size: 0.9rem !important;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    color: #acc8df;
    text-decoration: underline;
    text-underline-offset: 5px;
    transform: scale(1.05);
  }

  /* Hide the Book Session button */
  .get-started {
    display: none !important;
  }

  /* Reset transforms/margins */
  .nav-center, nav ul {
    transform: none !important;
    margin-top: 0 !important;
  }
  /*#endregion NAV */
    /*#endregion NAV*/

/*#region BACKGROUND*/
  /* Section full viewport without internal padding */
  #therapist-backgrund {
    padding: 0 !important;   /* override global padding */
    margin: 0 !important;    /* override any global margin */
    width: 100vw !important; /* full width */
    height: 100vh !important;
    justify-content: center;
    align-items: center;
  }

  /* Background image full stretch */
  .therapist-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    padding: 0;
  }

  /* Overlay full width */
  .overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100% !important;
    padding: 0 !important;   /* remove overlay padding */
    gap: 15px;
  }

  /* Header text overrides */
  .header-text {
    width: 100% !important;
    max-width: none !important;  /* ignore desktop max-width */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Logo and title */
  .logo-video {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
  }

  .header-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .title-slide-fade {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  /*#endregion BACKGROUND*/

/*#region GUIDE*/
/* Guide section adjustments */
    .guide {
             margin-top: -2px !important;
        padding: 0 10px;  /* add small side padding */
    }

    /* Header */
    .guide .header {
        text-align: center;
        margin-bottom: 20px;
    }

    .guide .header p {
        font-size: 1rem;  /* smaller on mobile */
        margin-bottom: 5px;
    }

    .guide .header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    /* Text side */
    .text-wrapper {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .text-side {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-left: 0 !important; /* reset left margin */
        margin-top: 20px;
        white-space: normal;       /* allow wrapping */
    }

    .serif {
        font-size: 1.2rem;          /* smaller serif font */
        margin-left: 0;
        display: inline-block;
    }

    /* Stack brief columns vertically */
    .brief-row {
        flex-direction: column;     /* stack instead of row */
        gap: 15px;                  /* spacing between sections */
        margin-top: 30px;
        padding: 0 10px;
    }

    .brief-column {
        width: 100%;                /* full width */
        min-width: unset;
        padding: 10px 0;            /* vertical padding */
    }

    /* Remove vertical dividers on mobile */
    .brief-divider {
        display: none;
    }

    .brief-column h3 {
        font-size: 1rem;           /* smaller heading */
        margin-bottom: 5px;
    }

    .brief-column p {
        font-size: 0.9rem;         /* smaller paragraph */
        line-height: 1.4;
    }
/*#endregion GUIDE*/

/*#region OUR THERAPIST*/
#ourtherapist {
  padding: 30px 15px;
  overflow-x: hidden; /* ✅ prevents right-side spill */
}

.team-members {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Member card */
.member-card {
  width: 100%;
  max-width: 380px; /* ✅ prevents card from stretching beyond screen width */
  margin: 0 auto;
  padding: 18px 14px;
  text-align: left;
  border-radius: 12px;
  backdrop-filter: blur(4px);

  background: linear-gradient(
    135deg,
    rgba(15, 32, 39, 0.85) 0%, 
    rgba(32, 58, 67, 0.7) 50%, 
    rgba(112, 184, 0, 0.15) 100%
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-wrap: break-word; /* ✅ wrap long words */
  word-break: break-word; /* ✅ extra safety */
}

/* Adjust info rows */
.row-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
}

.row-info p {
  margin: 0;
  font-size: 14px;
  white-space: normal; /* ✅ allow wrapping of text */
  flex: 1;
}

.row-info p strong {
  margin-right: 4px;
  font-weight: 600;
}

/* Image */
.profile-pic {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

/* Buttons */
.book-btn {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 0;
  text-align: center;
}

.view-profile {
  display: block;
  margin-top: 10px;
}

/* Badges */
.badge-row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

.filter-badge {
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 20px !important;
}

/* Headers */
.header, .intro {
  text-align: center;
}
/*#endregion OUR THERAPIST*/

/*#region Corporate*/
.cop-btn{
    width: 150px !important;
}
/*#endregion COPORATE*/

    /*#region FAQ*/
     #faq {
        width: 95%;
    }
    .faq-title {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /*#endregion FAQ*/

 /*#region FOOTER*/
    /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .contact_widget button,
  .contact-button {
    width: 100% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: #1f3a52 !important;
    color: #fff !important;
    border: none !important;
  }

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }
#footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }
.subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }
  /* Ensure no hidden overflow from body or parent */
  html, body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/

}

@media (max-width: 767px) and (min-width: 600px)and (max-height: 568px){

}