@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 40px;
    color: #886EAF;
}

h2 {
    font-size: 40px;
    font-weight: 500;
    color: #886EAF;
}

h4 {
    color: #886EAF;
}

h3 {
    color: #886EAF;
}

.topbar {
    background: #7c68af;
    padding-top: 5px;
    padding-bottom: 5px;
}

.topbar p {
    margin-bottom: 0px;
    color: #fff;
}

.topbar p a {
    margin-bottom: 0px;
    color: #fff;
}

.topbar i {
    color: #7561ab;
    background: #fff;
    padding: 5px;
    width: 30px;
    height: 30px;
    line-height: 22px;
    border-radius: 50%;
}

.logo {
    width: 200px;
}

.btn-theme {
    background: #d4bada;
    border: none;
    font-weight: bold;

    box-shadow: 2px 8px 10px #ccc;
}

p {
    text-align: justify;
}

.banner-section {
    background-color: #7c68af;
    padding-top: 100px;
    padding-bottom: 100px;
}

.banner-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.banner-section .btn-theme {
    box-shadow: 2px -1px 10px #d4bada;
}

.vision {
    background: linear-gradient(#d4badad6, #d4badab8), url(../images/breadcrumb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.service .box {

    --bgsize: 0.38rem;
    padding: 2rem;
    border: 7px solid #312869;
    position: relative;
    background: white;
    border-radius: var(--borderradius, 14px);
    transform: translateY(-2px);
    z-index: 2;
    margin-bottom: 20px;
}

.service .box:hover {
    transform: translateY(-4px);
}

.service .box::before,
.service .box::after {
    border-radius: var(--borderradius, 14px);
    background-image: linear-gradient(45deg, #fff 33.33%, rgba(0, 0, 0, 0.95) 33.33%, rgba(0, 0, 0, 0.95) 50%, #fff 50%, #fff 83.33%, rgba(0, 0, 0, 0.95) 83.33%, rgba(0, 0, 0, 0.95) 100%);
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    top: 0.75rem;
    left: 0.75rem;
    width: 100%;
    height: 100%;
    background-size: var(--bgsize, 0.28rem) var(--bgsize, 0.28rem);
}

.service .box::before {
    top: 0rem;
    left: 0rem;
    background: white;
    z-index: -1;
}




.contact h3 {
    font-size: 20px;
    color: #886EAF;
}

a {
    text-decoration: none;
}

.contact a {
    color: #000;
}

@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.gallery .slider {
    background: transparent;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    margin: auto;
    overflow: hidden;
    position: relative;

}

.gallery .slider::before,
.gallery .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: auto;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.gallery .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.gallery .slider::before {
    left: 0;
    top: 0;
}

.gallery .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.gallery .slider .slide {
    height: auto;
    width: 250px;
}


:root {
    --page-bg: #ffffff;
    --card-bg: #f6f6f6;
    --text-main: #0d0d0d;
    --border-color: #e5e5e5;
    --radius: 16px;
    --padding: 24px;
    --transition: 0.22s ease-out;
}



.faq-section {
    padding: 60px 16px 80px;
}

.faq-container {
    max-width: 960px;
    margin: 0 auto;
}


/* List layout */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.faq-item {
    background: linear-gradient(90deg, #ddd1ff4d, #ffffff, #fbedff, #ffff, #8456ff38);

    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: border-color var(--transition), background-color var(--transition);
}

/* Optional slight border when open for clarity */
.faq-item.is-open {
    border-color: var(--border-color);
}

/* Header (clickable area) */
.faq-header {
    width: 100%;
    padding: var(--padding);
    border: none;
    outline: none;
    background: #d4bada;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.faq-header:hover {
    /* background: linear-gradient(90deg, #ddd1ff4d, #ffffff, #fbedff, #ffff, #8456ff38); */
    background: #e5c6ec;
}

.faq-header:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.faq-question {
    flex: 1;
}

/* Icon base */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Horizontal line */
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* Horizontal line (before) */
.faq-icon::before {
    transform: translate(-50%, -50%);
}

/* Vertical line (after) */
.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* WHEN OPEN → X ICON */
.faq-item.is-open .faq-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Body */
.faq-body {
    padding: 0 var(--padding);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding-bottom var(--transition),
        padding-top var(--transition);
    will-change: max-height;
    color: var(--text-main);
}

.faq-item.is-open .faq-body {
    padding-top: 0;
    padding-bottom: var(--padding);
}

/* Text inside body */
.faq-body p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-main);
    max-width: 720px;
}



.card-domo {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #fff5fd0d, #ffd7f91f, #ffffff12, #886eaf1f);
    min-height: calc(100vh - var(--vh-offset, 0px));

    overflow-x: hidden;
    font-weight: 400;
    top: 0;
    color: #252525;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.025em;
}

.header-design {
    background-color: #a4508b;
    background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
    height: 120px;
    text-align: center;
}

.listar-map-button {
    width: 100%;
    position: absolute;
    display: table;
    right: 0;
    top: 0;
    height: 200px;
    line-height: 164px;
    white-space: nowrap;
    font-size: 0;
}

.listar-map-button {
    right: auto;
    /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

header .footer-wave {
    max-width: 102%;
    width: 100%;
    height: 187.8px;
    left: 0;
    z-index: 1;
    bottom: -67px;
    background: url(https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png) repeat-x;
    animation: wave 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
}

@keyframes wave {
    0% {
        background-position: 0;
    }

    100% {
        background-position: 1440px;
    }
}

.listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item {
    height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link~.listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
}

.listar-feature-item a {
    position: absolute;
    top: -12px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% + 4px);
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item a:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 1000px;
    z-index: 10;
    animation: ripple 0.7s linear infinite;
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
        -5px -5px 10px rgba(255, 255, 255, 0.5);
}


@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
    }

    100% {
        box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
    }
}



.listar-feature-item .listar-feature-item-inner {
    padding: 50px 30px;
    border-radius: 6px;
    z-index: 5;
    position: relative;
    height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
    border: 0;
    box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
        10px 0px 10px rgba(80, 80, 80, 0.02);
    border-radius: 1000px;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top,
            right top,
            color-stop(0%, rgba(255, 255, 255, 0)),
            color-stop(40%, rgba(255, 255, 255, 0)),
            color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.listar-feature-right-border {
    position: absolute;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    top: -12px;
    left: 50%;
    overflow: hidden;
}

.listar-feature-items {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before {
    border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before,
.listar-hovering-features-grey .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 11px solid #30276a;
    border-radius: 800px;
    left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    margin: -30px;
    padding: 30px;
    height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    content: "";
    background-color: #fff;
    z-index: 6;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
}

.listar-feature-icon-wrapper {
    width: 148px;
    height: 148px;
    line-height: 148px;
    border-radius: 500px;
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 50%;
    vertical-align: middle;
    margin-left: -74px;
    top: -66px;
    margin-top: -74px;
}

.listar-feature-icon-inner {
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 500px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
    background: #fff;
}

.listar-feature-icon-inner div {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: left;
}

.listar-feature-icon-inner img {
    position: relative;
    margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
    width: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
    position: relative;
    display: inline-block;
    border-bottom: 0;
    font-size: 40px;
    top: 0;
    padding: 0;
    color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
    top: 0;
}

.listar-feature-content-wrapper {
    position: relative;
    margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
    padding-top: 0;
    margin: 0 0 30px;
    text-align: center;
    line-height: 1.5;
}

.listar-feature-item .listar-feature-item-title.listar-feature-counter-added>span {
    margin-left: 0px;
    border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title>span {
    box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
        5px 0px 40px rgba(80, 80, 80, 0.1);
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title>span span {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
        5px 0px 80px rgba(80, 80, 80, 0.15);
    padding: 10px 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 30px;
    white-space: nowrap;
    position: absolute;
    top: 0px;
    left: -40px;
    border-radius: 50px;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    text-shadow: none;
    border-radius: 50px;
    color: #252525;
    font-size: 18px;
}

.listar-feature-item-excerpt {
    padding: 0 20px;
}

.listar-feature-item-excerpt {
    color: #252525;
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    text-align: start;
}

.contact .card {
    height: 180px;
}

.contact .card i {
    color: #30276a;
    font-size: 40px;
}

.pset {
    padding-top: 100px;
    padding-bottom: 80px;
}

.top-banner {
    background-color: #7c68af;
    padding-top: 150px;
    padding-bottom: 150px;
    color: #fff;
}

.top-banner h1 {
    color: #fff;
}

.top-banner a {
    color: #fff;
}

.call-btn {
    position: fixed;
    bottom: 10px;
    left: 20px;
    background-color: #30276a;
    color: #fff;
    border-radius: 50%;
    z-index: 999999;
}

.call-btn i {
    background-color: #30276a;
    color: #fff;
    width: 35px;
    height: 35px;
    padding: 10px 2px;
    border-radius: 50%;
    z-index: 9999999;
}

.whatsaap-btn {
    position: fixed;
    bottom: 50px;
    left: 20px;
    background-color: #1d9c01;
    color: #fff;
    border-radius: 50%;
    z-index: 999999;
}

.whatsaap-btn i {
    background-color: #1d9c01;
    color: #fff;
    width: 35px;
    height: 35px;
    padding: 10px 2px;
    border-radius: 50%;
    z-index: 999999;
}

#button {
    display: inline-block;
    background-color: #30276a;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
    border: 12px solid #fff;
}

.listar-map-button-text span:after {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
    padding: 10px 43px 10px 51px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
        15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
    bottom: -30px;
    background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
    background-size: 40%;
    color: #555;
    line-height: 52px;
}





.why span {
    padding: 10px;
    box-shadow: 4px 5px 12px #30266e52;
    margin-right: 10px;
    border-radius: 50%;
    border: 10px solid #f9f4ff;
    margin-bottom: 30px;
}




.doctor {
    --color: rgba(30, 30, 30);
    --bgColor: rgba(245, 245, 245);
    min-height: 100vh;

    display: grid;
    align-content: center;
    gap: 2rem;
    padding: 2rem;

    font-family: "Jura", sans-serif;
    color: var(--color);
    background: linear-gradient(45deg, #fff5fd0d, #ffd7f91f, #ffffff12, #886eaf1f);
    position: relative;
}


.doctor ul.product-plans {
    width: min(60rem, 90%);
    margin-inline: auto;
    display: flex;
    row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.doctor ul.product-plans li.product-plan:nth-child(1) {
    --accent-color: #312869
}

.doctor ul.product-plans li.product-plan:nth-child(2) {
    --accent-color: #164fa9
}

.doctor ul.product-plans li.product-plan:nth-child(3) {
    --accent-color: #1a9b8b
}

.doctor ul.product-plans li.product-plan {
    --overlap-size: 1.5rem;
    --border-radius: 5rem;
    width: 100%;
    margin-inline: var(--overlap-size);
    padding-block: 2rem;
    display: grid;
    grid-template-rows: max-content max-content 1fr max-content;
    gap: 0.5rem;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.doctor ul.product-plans li.product-plan .title {
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.doctor ul.product-plans li.product-plan .price {
    margin-right: calc(var(--overlap-size) * -1);
    justify-self: end;
    padding-block: 0.25rem;
    padding-inline: var(--overlap-size);
    background-color: #7c68af;
    color: white;
    position: relative;
}

.doctor ul.product-plans li.product-plan .price::after {
    content: "";
    position: absolute;
    height: var(--overlap-size);
    width: var(--overlap-size);
    right: 0;
    top: 100%;
    background-color: inherit;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.doctor ul.product-plans li.product-plan .btn {
    justify-self: start;
    margin-left: calc(var(--overlap-size) * -1);
    padding-block: 0.5rem;
    padding-inline: 2.5rem;

    border: none;
    font-family: inherit;
    color: white;
    font-size: 1.1rem;

    background-color: #7c68af;
    background-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.25) 0);
    background-size: 100% 200%;
    transition: background-position 100ms ease;

    position: relative;
    cursor: pointer;
}

.doctor ul.product-plans li.product-plan .btn:focus-visible {
    outline-offset: 5px;
    outline: 2px solid var(--accent-color);
    background-position: 0 100%;
}

.doctor ul.product-plans li.product-plan .btn:hover {
    background-position: 0 100%;
}

.doctor ul.product-plans li.product-plan .btn::after {
    content: "";
    position: absolute;
    height: var(--overlap-size);
    width: var(--overlap-size);
    left: 0;
    bottom: 100%;
    background-color: inherit;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.doctor ul.product-plans li.product-plan .btn:active {
    transform: scale(0.95);
}

.doctor ul.product-plans li.product-plan .btn:active::after {
    transform-origin: left bottom;
    transform: scale(0.9);
}

.doctor ul.product-plans li.product-plan .features {
    align-self: flex-start;
    list-style: none;
    padding-inline: 2rem;
    display: grid;
}

.doctor ul.product-plans li.product-plan .features li:not(:first-child) {
    border-top: 1px solid rgb(200, 200, 200);
}

.doctor ul.product-plans li.product-plan .features li {
    padding: 0.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1rem 1fr;
}

.doctor ul.product-plans li.product-plan .features li::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    display: grid;
    place-items: center;
}

.doctor ul.product-plans li.product-plan .features li.check::before {
    content: "\2713";
    color: green;
}

.doctor ul.product-plans li.product-plan .features li.cross::before {
    content: "\d7";
    color: red;
}

.doctor .credits {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.doctor .credits a {
    color: var(--color);
}

.contact .card {
    border: none;
}

/* footer {
    background: linear-gradient(45deg, #fff5fd0d, #ffd7f91f, #ffffff12, #886eaf1f);
    padding-top: 100px;
} */

footer a {
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .doctor {

        padding: 1px;
    }

    .topbar p a {

        font-size: 13px;
    }

    .doctor ul.product-plans li.product-plan {
        width: 100%;
        margin-inline: 10px;

    }

    .doctor ul.product-plans {
        width: 100%;

    }

    .faq-section {
        padding: 40px 12px 56px;
    }

    .faq-header {
        padding: 20px;
        font-size: 15px;
    }

    .faq-body {
        padding: 0 20px;
    }

    .faq-item.is-open .faq-body {
        padding-bottom: 20px;
    }

    .why p {
        font-size: 14px;
    }
}

/* new */

.nav-link {
    color: #312869;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
}

footer {
    background: #392c5b;
    color: #fff;
}

footer p {
    font-size: 14px;
}

.foot-p {
    text-align: justify;
    color: #fff;
    font-size: 14px;
}

marquee a {
    color: #333333;
}

.ser-right a {
    color: #886EAF;

}

.banner {
    padding-top: 50px;
    padding-bottom: 45px;
    background: ;

}

.banner h1 {
    font-size: 35px;
}

#gallery img {
    border-radius: 10px;
}


/* about css */

.bottom-doctor-details {
    border-left: 4px solid #7c69af;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-doctor-details:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(13, 110, 253, 0.15);
}

/* Clinic Details Title */
.bottom-doctor-details .title {
    letter-spacing: 0.5px;
}

/* Schedule Items */
.single-shedule {
    padding-bottom: 10px;
    border-bottom: 1px dashed #dee2e6;
}

.single-shedule:last-child {
    border-bottom: none;
}

/* About Doctor Section */
.doctor-all-details-area {
    padding-left: 15px;
}

/* About Pre-title */
.doctor-all-details-area .pre-title {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 40px;
}

.doctor-all-details-area .pre-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #7c69af;
    transform: translateY(-50%);
}

/* Doctor Name */
.doctor-all-details-area .name {
    font-size: 2.2rem;
    color: #7c69af;
}

/* Paragraph Styling */
.doctor-all-details-area p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}

/* Info Cards */
.single-details-content-info {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Accent Line */
.single-details-content-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #7c69af;
}

/* Hover Effect */
.single-details-content-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.18);
}

/* Titles */
.single-details-content-info .title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #7c69af;
}

/* List Text */
.single-details-content-info p {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #6c757d;
}

.banner {
    background: #886EAF;
    padding: 50px 0;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.vision .slider:hover .slides {
    animation-play-state: paused;
}

/* Responsive l */
@media (max-width: 991px) {
    .doctor-all-details-area {
        padding-left: 0;
    }

    .doctor-all-details-area .name {
        font-size: 1.9rem;
    }
}

@media (max-width: 575px) {
    .bottom-doctor-details {
        margin-bottom: 20px;
    }

    .single-details-content-info {
        padding: 16px;
    }
}

@media (max-width: 728px) {

    h2 {
        font-size: 30px;
    }

}