/* GLOBAL */

:root {
    --font-family: "Lato", sans-serif;
    --primary-color: rgba(9, 123, 153, 1);
    --gradient-background: linear-gradient(
        90deg,
        rgba(81, 190, 205, 1) 0%,
        rgba(29, 108, 158, 1) 50%,
        rgba(48, 65, 133, 1) 100%
    );
}

* {
    font-family: var(--font-family);
    box-sizing: border-box;
}

body {
    margin: 0px;
}

/* HERO SECTION */

.hero-section {
    width: auto;
    height: 100vh;
    background-color: #ffffff;
    background-image: url("../images/home/BeatsLight.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-section-main {
    position: relative;
    top: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section-gif {
    position: relative;
}

.hero-section-heading {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
}

.hero-section-heading span {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.hero-section-subheading {
    margin-top: 32px;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

.hero-section-subheading span {
    color: var(--primary-color);
}

.hero-section-subheading-2 {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Quicksand", sans-serif;
    padding: 0px 180px;
    text-align: center;
}

.hero-section-bac-button {
    border: none;
    height: 80px;
    color: #ffffff;
    background: linear-gradient(
        90deg,
        rgba(48, 65, 133, 1) 0%,
        rgba(29, 108, 158, 1) 50%,
        rgba(8, 125, 153, 1) 100%
    );
    border-radius: 50px;
    width: auto;
    padding: 0px 48px;
    font-size: 28px;
    font-weight: 700;
    margin-top: 32px;
    cursor: pointer;
}

.hero-section-bac-button:hover {
    background: linear-gradient(
        90deg,
        rgb(39, 52, 105) 0%,
        rgb(19, 77, 114) 50%,
        rgb(5, 100, 124) 100%
    );
}
.hero-discount {
    font-size: 17px;
}

/* ABOUT US SECTION */
.about-us-section {
    width: auto;
    height: 100%;
    background-color: #ffffff;
    background-image: url("../images/home/About.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.about-us-main {
    width: 55%;
    color: #ffffff;
    position: relative;
    left: 8%;
}

.about-us-main span {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #ffffff;
    line-height: 16px;
}

.about-us-name {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #ffffff;
    margin-top: 16px;
}

.about-us-main p {
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
    font-family: "Quicksand", sans-serif;
}

.about-us-image img {
    width: 100%;
    border-radius: 30px 0 0 30px;
    position: relative;
    right: 0;
    bottom: 60px;
}

/* WHY ME SECTION */

.why-me-section {
    width: auto;
    background-color: #ffffff;
    background-image: url("../images/home/whyme.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.why-me-text {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-family);
    color: var(--primary-color);
    margin-bottom: 16px;
}

.why-me-image {
    position: relative;
    top: 50px;
    left: 128px;
    padding-top: 50px;
}

.why-me-image img {
    width: 75%;
    border-radius: 30px;
}

.why-me-image-mobile {
    display: none;
}

.why-me-main {
    width: 52%;
}

.why-me-name-desktop {
    width: 50%;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #000000de;
}

.why-me-name-mobile {
    display: none;
}

.why-me-bullets-container {
    display: flex;
    gap: 32px;
}

.why-me-bullets {
    width: 40%;
    gap: 48px;
}

.why-me-bullets-services {
    display: flex;
    align-items: center;
    margin: 16px 0px;
}

.why-me-bullets-services span {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

.why-me-bullets p {
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin: 0px;
}

.why-me-bullets-icon {
    margin-right: 10px;
}

.why-me-workex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 250px;
    height: 300px;
    background: var(--gradient-background);
}

.why-me-workex {
    text-align: center;
}

.why-me-workex-count {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-family);
    color: #ffffff;
    display: block;
    margin-bottom: 16px;
}

.why-me-workex-text {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #ffffff;
    display: block;
}

/* Therapy Session */

.therapy-session-elements-container-main {
    display: none;
}

.therapy-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    background-color: #f8f9fa;
}

.therapy-section-main {
    text-align: center;
    max-width: 80%;
}

.therapy-section-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(79, 120, 171, 1);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.therapy-section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}

.therapy-section-subheading {
    font-size: 22px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 48px;
}

.therapy-section-image img {
    width: 80%;
}
.therapy-section-image-mobile img {
    display:none;
}

/* Services Section */
.services-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(
        90deg,
        rgba(107, 141, 193, 0.12) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.services-section-main {
    text-align: center;
    max-width: 80%;
}

.services-section-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(79, 120, 171, 1);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.services-section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 48px;
}

.services-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    text-align: left;
}

.service-card img {
    width: 100%;
    border-radius: 16px 16px 0 0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    padding: 24px 24px 12px 24px;
    color: rgba(10, 19, 22, 1);
    margin: 0px;
}

.service-card p {
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
    line-height: 1.5;
    padding: 0px 24px 24px 24px;
    margin: 0px;
}

/* Personalized Care Section */
.personalizedcare-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
}

.personalizedcare-section-main {
    text-align: center;
    max-width: 80%;
}

.personalizedcare-section-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(79, 120, 171, 1);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.personalizedcare-section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 48px;
}

.personalizedcare-cards-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 32px;
    margin: 0 auto;
}

.personalizedcare-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.personalizedcare-card img {
    width: 100px;
    height: auto;
}

.personalizedcare-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 0 16px;
}

.personalizedcare-card p {
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    color: black;
    opacity: 0.87;
    line-height: 1.5;
    text-align: left;
    margin: 16px 0 0 16px;
}

.lottie-card {
    width: 28%;
}

/* Experience Section */
.experience-section-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.experience-section-content {
    width: 65%;
    background-image: url("../images/home/experience.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    text-align: left;
}

.experience-section-content span {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-family);
    color: #ffffff;
    line-height: 16px;
    text-align: left;
}

.experience-section-title {
    font-size: 48px;
    font-weight: 700;
    margin: 16px 0 0 0;
}

.experience-section-title-mobile {
    display: none;
}

.experience-badge {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    color: green;
    font-size: 22px;
    gap: 8px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 24px;
    margin: 24px 0 16px 0;
}

.experience-badge span {
    color: black;
}

.experience-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #ffffff;
    margin: 0px;
}

.experience-list li {
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 4px 0;
    line-height: 1.5;
}

.experience-section-image {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.experience-section-image-mobile {
    display: none;
}

/* TESTIMONIALS SECTION */
.testimonials-section-container {
    background-image: url("../images/home/testimonials.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 80px 0;
}

.testimonials-section-main {
    text-align: center;
    max-width: 80%;
}

.testimonials-section-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(79, 120, 171, 1);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.testimonials-section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 48px;
}

.testimonials-cards-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 3fr));
    gap: 0 20px;
    justify-content: center;
    align-items: stretch;
}

.testimonial-card-big {
    height: 100px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    max-width: 450px;
    min-height: 50px;
    max-height: auto;
    margin: 16px auto;
    min-height: 130px;
}

.testimonial-card-border-light {
    border-left: 4px solid rgba(97, 133, 189, 1);
}

.testimonial-card-border-dark {
    border-left: 4px solid rgba(39, 61, 88, 1);
}

.testimonial-card p {
    font-size: 20px;
    font-family: "Quicksand", sans-serif;
    color: #555555;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.owl-carousel {
    display: grid; /* Hide carousel by default */
}

/* Common Queries */

.commonqueries-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: 500px;
}
.commonqueries-content {
    display: flex;
    flex-direction: column;
    padding: 80px 80px 80px 0px;
    width: 40%;
}

.commonqueries-name {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-family);
    color: rgba(79, 120, 171, 1);
    line-height: 16px;
    text-align: left;
    margin: 16px 0 0 0;
    text-transform: uppercase;
}

.commonqueries-title {
    font-size: 48px;
    margin: 24px 0;
}

.commonqueries-subheading {
    font-size: 18px;
    line-height: 1.5;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    margin: 0;
}

/* Accordion */
.accordion {
    margin: 1rem 0;
    padding: 24px;
    list-style: none;
    border: 1px solid rgba(228, 230, 231, 1);
    border-radius: 16px;
    /* width: 100%; */
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-thumb {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 24px 0;
    font-size: 22px;
    cursor: pointer;
    font-weight: 600;
}

.accordion-thumb::before {
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: 1rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-45deg);
    transition: transform 0.2s ease-out;
}

.accordion-panel {
    margin: 0;
    padding-bottom: 12px;
    padding-right: 24px;
    display: none;
    font-size: 18px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    margin-left: 24px;
}

.accordion-item.is-active .accordion-thumb::before {
    transform: rotate(45deg);
}

.accordion-item.is-active .accordion-panel {
    display: block;
}

.accordion-page-container {
    font-family: sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    padding: 64px 48px 64px 0;
    width: 40%;
}

.page-header {
    font-family: serif;
    margin-top: 15%;
}

/* Appointment */
.appointment-container {
    position: relative;
    height: auto;
    background-color: white;
    box-sizing: border-box;
}

.appointment-mobile-image {
    display: none;
}

.appointment-bg {
    width: 60%;
}

.appointment-bg-container {
    text-align: right;
}

.appointment-left-content {
    position: absolute;
    width: 56%;
    height: max-content;
    background-image: url("../images/home/Appointment.png");
    background-size: cover;
    border-radius: 0 32px 32px 0;
    padding: 80px 64px 80px 128px;
    top: 50%;
    transform: translate(0, -50%);
}

.appointment-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0px;
}
.appointment-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 16px 0 22px 0;
    color: #ffffff;
}
.appointment-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
}

.appointment-button {
    border: none;
    padding: 22px 28px 22px 28px;
    border-radius: 96px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.appointment-button:hover {
    background: #dadada;
}
.appointment-discount {
    font-size: 15px !important;
}
.appointment-discount strong {
    color: #f2ddbe;
}

/* contact us */

.contact-us-container {
    padding: 90px;
}

.contact-us-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-details-container {
    width: 550px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    border: 2px solid #dadada;
    border-radius: 16px;
    background-color: #fff;
}

.contact-us-map {
    border: 1px solid #dadada;
    border-radius: 16px 0 0 16px;
}

.contact-us-map iframe {
    border-radius: 16px 0 0 16px;
}

.contact-us-name h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0px;
    color: rgba(79, 120, 171, 1);
    text-transform: uppercase;
}

.divider {
    width: 100%;
    margin: 16px 0;
}

.contact-us-heading h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0px 0px 12px 0;
    color: #000;
}

.call-details-subheading {
    font-size: 22px;
    font-weight: 400px;
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
}

.call-details-subheading img {
    width: 22px;
    margin-right: 18px;
}

.call-details p {
    font-size: 22px;
    font-weight: 500;
}

/* .call-details,
.email-details,
.address-details {
    margin: 20px 0;
} */

.call-details p,
.email-details p,
.address-details p {
    margin: 12px 0;
}

.call-details-subheading a {
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    color: black;
    margin-left: 5px;
}

.call-details-subheading a:hover {
    text-decoration: underline;
}

.ticker-wrap {
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: 136px;
    background: linear-gradient(
        90deg,
        rgba(81, 190, 205, 1) 0%,
        rgba(29, 108, 158, 1) 50%,
        rgba(48, 65, 133, 1) 100%
    );
    box-sizing: content-box;
}

.ticker__item p {
    text-transform: uppercase;
    font-family: "Quicksand", sans-serif;
    /* margin-left: 32px; */
}

.ticker-wrap .ticker__item {
    display: flex;
    font-size: 2rem;
    color: white;
}
.ticker-wrap .ticker {
    display: flex;
    align-items: center;
    height: 4rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 10s;
    animation-duration: 30s;
}
.ticker-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0px 32px;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}
/* MEDIA QUERIES */
@media (max-width: 480px) {
    .navbar {
        padding: 0px 16px;
    }
    .hero-section {
        padding: 48px 16px;
        height: 100%;
        margin-top: 14%;
    }

    .hero-section-heading {
        font-size: 32px;
        line-height: 1.3;
    }
    s .hero-section-heading span {
        font-size: 32px;
    }

    .hero-section-subheading,
    .hero-section-subheading-2 {
        font-size: 22px;
        padding: 0px 20px;
        line-height: 1.5;
        margin: 24px 0;
    }

    .hero-section-subheading {
        margin: 16px 0 24px 0;
    }

    .hero-section-subheading-2 {
        margin: 0px;
        font-size: 18px !important;
    }

    .hero-section-main a {
        text-decoration: none;
    }

    .hero-section-bac-button {
        height: 50px;
        font-size: 20px;
        padding: 16px 32px;
        margin: 24px 0 0px 0;
        display: flex;
        align-items: center;
    }
    .hero-discount {
        text-align: center;
        font-size: 14px;
        margin-bottom: 48px;
    }
    .about-us-main span {
        font-size: 16px;
    }
    .about-us-name {
        font-size: 30px;
    }
    .about-us-main p {
        font-size: 18px;
        line-height: 1.5;
    }
    .about-us-image img {
        width: 80%;
        height: auto;
    }
    .why-me-image {
        display: none;
    }
    .why-me-image-mobile-container {
        display: flex;
        justify-content: center;
    }
    .why-me-image-mobile {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
        border-radius: 16px;
    }
    .why-me-section {
        flex-direction: column;
        padding: 48px 16px;
    }
    .why-me-image {
        order: 2;
        margin: 20px 0;
    }
    .why-me-main {
        width: 100%;
        text-align: center;
        margin: 0px;
    }
    .why-me-text {
        font-size: 18px;
    }
    .why-me-name-desktop {
        display: none;
    }

    .why-me-name-mobile {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 32px;
    }
    .why-me-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .why-me-bullets-container {
        flex-direction: column;
        width: 100%;
        gap: 0px;
    }
    .why-me-bullets {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0px;
    }

    .why-me-bullets p {
        text-align: left;
        font-size: 18px;
        line-height: 1.5;
        font-family: "Quicksand", sans-serif;
    }

    .why-me-bullets-services {
        margin: 24px 0 16px 0;
    }

    .why-me-bullets-services p {
        font-size: 18px;
        line-height: 1.5;
        font-family: "Quicksand", sans-serif;
    }

    .why-me-bullets-services span {
        font-size: 22px;
        font-weight: 600;
    }
    .why-me-bullets p {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        padding: 16px 0 16px 16px;
        height: 60px;
        width: auto;
        overflow: hidden;
        border-bottom: 2px solid #dadada;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .navbar img {
        width: 35%;
    }
    .bacButton {
        display: none;
        padding: 0px 12px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    /* HERO SECTION */
    .hero-section {
        padding: 64px 16px;
        height: 100%;
        margin-top: 10%;
    }

    .hero-section-heading {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-section-main {
        top: 7%;
    }

    .hero-section-heading span {
        font-size: 32px;
    }

    .hero-section-subheading,
    .hero-section-subheading-2 {
        font-size: 20px;
        padding: 0px 40px;
    }

    .hero-section-main a {
        text-decoration: none;
    }

    .hero-section-bac-button {
        height: 60px;
        font-size: 24px;
        padding: 16px 32px;
        display: flex;
        align-items: center;
        margin: 24px 0 0px 0;
    }
    .hero-discount {
        text-align: center;
        font-size: 14px;
        margin-bottom: 48px;
    }

    /* ABOUT SECTION */
    .about-us-main span {
        font-size: 16px;
    }
    .about-us-name {
        font-size: 36px;
    }
    .about-us-main p {
        width: 100%;
        font-size: 18px;
        line-height: 1.5;
    }
    .about-us-image img {
        height: auto;
        left: 48%;
        bottom: -5px;
    }

    /* WHY ME SECTION */
    .why-me-image {
        display: none;
    }
    .why-me-image-mobile-container {
        display: flex;
        justify-content: center;
    }
    .why-me-image-mobile {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        position: relative;
    }
    .why-me-section {
        flex-direction: column;
        padding: 48px 16px;
    }
    .why-me-image {
        order: 2;
        margin: 20px 0;
    }
    .why-me-main {
        width: 100%;
        text-align: center;
        margin: 0px;
    }
    .why-me-text {
        font-size: 18px;
    }
    .why-me-name-desktop {
        display: none;
    }

    .why-me-name-mobile {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 32px;
    }
    .why-me-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .why-me-bullets-container {
        flex-direction: column;
        width: 100%;
        gap: 0px;
    }
    .why-me-bullets {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0px;
    }

    .why-me-bullets p {
        text-align: left;
        font-size: 18px;
        line-height: 1.5;
        font-family: "Quicksand", sans-serif;
    }
    .why-me-bullets-services {
        margin: 24px 0 16px 0;
    }

    .why-me-bullets-services p {
        font-size: 18px;
        line-height: 1.5;
        font-family: "Quicksand", sans-serif;
    }
    .why-me-bullets-services span {
        font-size: 22px;
        font-weight: 600;
    }
    .why-me-workex-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 32px;
        padding: 48px 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-background);
    }

    .why-me-workex {
        text-align: center;
    }

    .why-me-workex-count {
        font-size: 48px;
        font-weight: 700;
        font-family: var(--font-family);
        color: #ffffff;
        display: block;
        margin-bottom: 4px;
    }

    .why-me-workex-text {
        font-size: 22px;
        font-weight: 500;
        font-family: var(--font-family);
        color: #ffffff;
        display: block;
    }

    /* THERAPY SECTION */
    .therapy-section-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 48px 0px;
        background-color: #f8f9fa;
    }
    .therapy-session-elements-container-main {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .therapy-session-elements-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border: 1px solid #dadada;
        padding: 16px;
        border-radius: 16px;
    }

    .therapy-section-main {
        text-align: center;
        max-width: 100%;
        padding: 0 16px;
    }

    .therapy-section-name {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: rgba(79, 120, 171, 1);
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .therapy-session-image {
        width: 20%;
    }

    .therapy-section-heading {
        font-size: 28px;
        font-weight: 600;
        color: #000000;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .therapy-section-subheading {
        font-size: 18px;
        font-weight: 500;
        color: #333333;
        margin-bottom: 32px;
        line-height: 1.5;
    }
    .therapy-section-image img {
        display: none;
    }
    .therapy-section-image-mobile img {
        display: block;
        width: 100%;
    }
    .therapy-session-heading {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        font-family: "Lato", sans-serif;
    }
    .therapy-session-subheading {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        font-family: "Quicksand", sans-serif;
    }

    /* SERVICE SECTION */
    .services-cards-container {
        grid-template-columns: 1fr;
    }
    .services-section-name {
        font-size: 18px;
    }
    .services-section-heading {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 32px;
    }
    .services-section-container {
        padding: 48px 16px;
    }
    .services-section-main {
        max-width: none;
    }
    .service-card h3 {
        font-size: 20px;
        font-weight: 600;
        padding: 16px 16px 0 16px;
        color: rgba(10, 19, 22, 1);
        margin: 0px;
    }

    .service-card p {
        font-family: "Quicksand", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.87);
        line-height: 1.5;
        padding: 16px;
        margin: 0px;
    }
    
    /* PERSONALIZED SECTION */
    .personalizedcare-section-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 48px 16px;
        background: #ffffff;
    }

    .personalizedcare-section-main {
        text-align: center;
        max-width: 100%;
    }

    .personalizedcare-section-heading {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .personalizedcare-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .personalizedcare-card-text {
        text-align: center;
    }

    .personalizedcare-card-text h3 {
        margin: 12px 0px;
        font-size: 20px;
    }
    .personalizedcare-card-text p {
        margin: 0 auto;
        text-align: center;
    }

    .personalizedcare-cards-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0 auto;
    }
    .personalizedcare-card img {
        width: 100px;
    }

    /* EXPERIENCED SECTION */
    .experience-section-container {
        display: flex;
        justify-content: center;
        align-items: stretch;
        width: 100%;
    }
    .experience-section-content {
        width: 100%;
        background-image: url("../images/home/experience.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        text-align: left;
        padding: 48px 16px;
    }
    .experience-section-image {
        display: none;
    }
    .experience-section-image-mobile {
        display: flex;
        width: 100%;
    }
    .experience-section-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    .experience-section-title {
        display: none;
    }
    .experience-section-title-mobile {
        display: block;
        font-size: 28px;
        text-align: center;
        margin-top: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
    }
    .experience-section-content span {
        margin: 0 auto;
    }
    .experience-section-subtitle {
        padding: 16px 16px 0 16px;
    }
    .experience-list li {
        padding: 4px 0;
    }
    .experience-badge {
        padding: 12px 20px;
        border-radius: 36px;
    }
    .experience-badge span {
        margin-left: 8px;
        font-size: 18px;
    }

    /* TESTIMONIALS AND OWL SECTION */
    .testimonials-section-container {
        padding: 48px 16px;
    }

    .testimonials-section-name {
        font-size: 18px;
    }

    .testimonial-card {
        width: 100%;
        margin: 0;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .testimonials-cards-container {
        display: none;
        min-width: 250px;
    }
    .testimonials-section-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .owl-carousel {
        display: block; /* Show carousel on mobile */
    }

    .owl-carousel .owl-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .owl-carousel .owl-nav button {
        display: none;
    }

    .owl-dots {
        text-align: center;
        margin-top: 24px;
        color: #4f78ab;
    }

    .owl-dot {
        display: inline-block;
        height: 12px;
        width: 12px;
        background-color: #ccc;
        border-radius: 50%;
        margin: 5px;
        cursor: pointer;
    }

    .owl-dot active {
        background-color: #ffffff;
    }

    .owl-carousel button.owl-dot {
        background: #a8bbd2 !important;
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit;
    }
    .owl-carousel button.owl-dot.active {
        background: #4f78ab !important;
    }

    /* COMMONQUERIES AND ACCORIDAN SECTION */
    .commonqueries-container {
        flex-direction: column;
        align-items: center;
        display: block;
        padding: 48px 16px 80px 16px;
    }
    .commonqueries-content {
        width: unset;
        padding: 0;
    }

    .commonqueries-title {
        font-size: 28px;
        line-height: 1.5;
        text-align: center;
        margin: 16px 0 24px 0;
    }
    .commonqueries-name {
        margin: 0 auto;
    }

    .commonqueries-subheading {
        font-size: 20px;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 32px;
    }

    .accordion-page-container {
        width: 100%;
        padding: 0;
    }

    .accordion {
        padding: 16px;
        border-radius: 12px;
        margin: 0;
    }

    .accordion-thumb {
        font-size: 20px;
        color: black;
        width: 100%;
        padding: 0px 0px 20px 0;
    }

    .accordion-panel {
        font-size: 18px;
        line-height: 1.5;
        color: black;
        padding-right: 0;
        margin: unset;
        padding-bottom: 20px;
    }
    .accordion-item:nth-child(2),
    .accordion-item:nth-child(3) {
        margin-top: 20px;
    }

    /* APPOINTMENT SECTION */
    .about-us-main {
        left: unset;
        width: 100%;
    }
    .appointment-container-main {
        display: flex;
        flex-direction: column;
        background-image: url("../images/home/Appointment-mobile-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        padding: 48px 16px 0 16px;
    }
    .appointment-bg {
        display: none;
    }
    .appointment-content {
        display: block;
        position: relative;
        bottom: 24px;
    }
    .appointment-content h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .appointment-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .appointment-mobile-image {
        display: flex;
        position: relative;
        bottom: 97px;
        /* left: 16px; */
        border-radius: 16px;
        align-items: flex-start;
        flex-direction: column-reverse;
        align-content: center;
        justify-content: center;
    }
    .appointment-left-content {
        display: block;
        background-image: none;
        position: relative;
        padding: unset;
        width: unset;
        align-items: center;
        text-align: center;
        transform: translate(0, 0%) !important;
    }
    .about-us-image {
        position: relative;
        transform: translate(-38%, 0);
        top: -50px;
    }
    .about-us-content {
        padding: 0 16px;
        text-align: center;
    }
    .about-us-image img {
        border-radius: 30px;
    }

    /* CONTACT US SECTION */
    .contact-us-container {
        padding: 48px 16px;
    }
    .contact-us-main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 24px;
    }
    .divider {
        margin: 0 auto;
        margin-bottom: 24px;
    }
    .contact-us-details-container {
        padding: 0;
        border: none;
        width: auto;
        height: auto;
    }
    .contact-us-heading h1 {
        font-size: 28px;
        line-height: 1.5;
    }
    .contact-us-map {
        width: 100%;
        border-radius: 16px;
        border: none;
    }
    .contact-us-map iframe {
        height: 500px;
        width: 100%;
        border-radius: 16px;
    }
    .contact-us-main {
        font-size: 18px;
    }
    .contact-us-name {
        margin: 0 auto;
    }
    .contact-us-heading {
        margin: 0 auto;
    }
    .call-details p {
        font-size: 20px;
        margin: 8px;
    }
    .call-details .call-details-subheading {
        font-size: 18px;
        margin: 8px 8px 16px 8px;
    }
    .call-details-subheading a {
        text-decoration: none;
    }
    .ticker-wrap {
        height: 100px;
     }
}

@media (max-width: 1024px) {
    .about-us-section {
        flex-direction: column-reverse;
        align-items: center;
        padding-bottom: 48px;
    }
    .about-us-main {
        text-align: center;
        width: 100%;
    }
    .about-us-main span {
        font-size: 16px;
    }
    .about-us-name {
        font-size: 40px;
    }
    .about-us-main p {
        font-size: 18px;
        line-height: 1.5;
    }
    .service-card h3 {
        font-size: 20px;
        font-weight: 600;
        padding: 16px 16px 0 16px;
        color: rgba(10, 19, 22, 1);
        margin: 0px;
    }

    .service-card p {
        font-family: "Quicksand", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.87);
        line-height: 1.5;
        padding: 16px;
        margin: 0px;
    }
}
