* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: var(--body-font);
    font-optical-sizing: auto;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    /* scroll-behavior: auto !important; */
}

body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: var(--secondary);
}

body a {
    color: var(--theme-primary1);
}

.IJYOW {
    display: none !important;
}

/* ul  */
ul {
    font-family: var(--body-font);
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

ul li {
    list-style: none;
    font-size: clamp(1.6rem, 2vw, 2rem) !important;
}


/* Font sizes for headings and paragraph */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(1.6rem, 2vw, 2rem) !important;
    margin-bottom: 0 !important;
}

/* color variable */
:root {
    --theme-color: #04CE78;
    --theme-color2: #1F5FFF;
    --title-color: #02562E;
    --body-color: #788094;
    --smoke-color: #F5F7FA;
    --smoke-color2: #f9f9f9;
    --black-color: #000000;
    --gray-color: #bdbdbd;
    --grey-dark-color: #e8e8e8;
    --white-color: #ffffff;
    --light-color: #bdbdbd;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #D8DDE1;
    --bg-light: #f5fef7;
    --body-font: "Lato", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    --body-font-size: 1.6rem;

    --theme-primary1: #295a9e;
    --theme-primary2: #1977f3;
    --theme-primary3: #4d99fd;
    --theme-primary4: #c5deff;

    --light: #DAE3F2;

    --bg1: linear-gradient(180deg, #e6f0d8 0%, #fff 100.13%);
    --bg1-border: 1px solid #c9de6e;

    --bg2: linear-gradient(-180deg, #fff8e6, #fdfdff);
    --bg2-border: 1px solid #fae9be;

    --bg3: linear-gradient(180deg, #DAE3F2 0%, #FFFFFF 100.13%);
    --bg3-border: 1px solid #A3C9D9;

    --bg4: linear-gradient(-180deg, #FFFFFF, #DAE3F2);
    --bg4-border: 1px solid #A3C9D9;

    --bg5: linear-gradient(-180deg, #FFF, #dbdbdb 100.13%);
    --bg5-border: 1px solid #acaaaa;

    --bg6: linear-gradient(-180deg, #FFF, #C8D7F0 100.13%);

}

.background-primary {
    background: var(--theme-primary1);
}

.bg-white {
    background: var(--white-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-grey {
    background: #f3f1fb;
}

.green-gradient {
    background: var(--bg1);
    border: 1px solid var(--bg1-border);
}

.golden-gradient {
    background: var(--bg2);
}

.heading {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

h3.title {
    font-size: clamp(2.8rem, 5vw, 4rem) !important;
    font-weight: 800;
    line-height: 1.25;
}

h3.title,
p.subtitle {
    display: block;
    color: var(--black-color);
}

:is(h3.title, p.subtitle) span {
    color: var(--theme-primary1);
}


/* owl */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.owl-nav {
    margin-top: 30px !important;
}

.owl-prev,
.owl-next {
    width: 40px;
    height: 40px;
    font-size: 20px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    color: var(--theme-primary1) !important;
    border: 1px solid var(--theme-primary1) !important;
    line-height: 0px !important;
    letter-spacing: 0px !important;
    z-index: 9999 !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-prev span,
.owl-next span {
    display: none;
}

.owl-prev::before {
    content: "\f060";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

.owl-next::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

.owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
}

.owl-theme .owl-dots .active span {
    width: 35px !important;
    transition: all 0.3s ease-in-out !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--theme-primary1) !important;
}


.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}


/* Hide the large play icon overlay shown on some browsers */
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

section {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    margin: 0 auto;
}

section:empty {
    padding: 0 !important;
    margin: 0 !important;
}

.background-dark {
    background: var(--title-color);
}

.background-dark :is(h3.title, p.subtitle, p:not(.sk-post__owners-text), h1) {
    color: var(--white-color);
}

.background-primary :is(h3.title, p.subtitle, p:not(.sk-post__owners-text), h1) {
    color: var(--white-color);
}

/* img default  */
img {
    height: auto;
    display: block;
}


/* free-assessment-content */

.free-assessment-content h3.title {
    font-size: clamp(3rem, 5vw, 5rem) !important;
}

/* .free-assessment-content .cta-primary {
    font-size: clamp(2rem, 3vw, 3rem) !important;
} */

/* header section */

.sticky {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 9999;
    animation: fadeInBackground 0.2s ease-in-out forwards;
}

@keyframes fadeInBackground {
    0% {
        opacity: 0.9;
        background: transparent;
    }

    100% {
        opacity: 1;
        background: var(--white-color);
    }
}

.header {
    display: block;
    width: 100%;
    background: var(--white-color);
}

.topbar-container {
    background: var(--theme-primary1);
    padding: 10px 0;
}

.topbar-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    padding-right: 60px;
    font-size: 1.5rem;
    color: #fff;
}

.marquee-track a {
    color: var(--yellow-color);
    font-weight: 600;
    text-decoration: none;
}

.topbar-marquee:hover .marquee-track {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* topbar end */

:root {
    --menu-heading-size: 1.4rem;
    --menu-font-size: 1.4rem;
    --menu-gap: 1.5rem;
    --submenu-radius: 0 0 20px 20px;
    --submenu-shadow: -2px 2px 70px -25px rgba(0, 0, 0, .3);
}

.menumain {
    display: block;
    width: 100%;
}

.header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 10px;
}

.v-center {
    align-items: center;
}

/* logo menu */
.header .item-right {
    display: flex;
    justify-content: flex-end;
}

/* header img */
.header .logo a img {
    width: 150px;
    height: auto;
}

/* menu right */
.header .menu>ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-left: 0rem;
    margin-bottom: 0rem;
}

.header .menu>ul>li {
    line-height: 6rem;
    text-align: left;
    text-transform: uppercase;
}

/* main menu */
.header .menu ul li a {
    position: relative;
    color: var(--black-color);
    padding: 1rem 0rem;
    font-size: var(--menu-heading-size);
}

.menu-item-has-children i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover>a i {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    z-index: 400;
    box-shadow: var(--submenu-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, margin-top .25s ease;
    background-color: var(--white-color);
    border-radius: var(--submenu-radius);
    margin-top: 2.5rem;
}

.sub-menu ul li {
    line-height: 20px !important;
}

.sub-menu ul li a {
    display: block;
    padding: 1rem 1rem;
    font-size: var(--menu-font-size) !important;
    color: var(--body-color);
    text-transform: capitalize;
}

.sub-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--light-color);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0rem;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.sub-menu.mega-menu-column-4,
.sub-menu.mega-menu-2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sub-menu .list-item {
    padding: 2rem;
}

.sub-menu.mega-menu-column-4 .list-item {
    flex: 1;
    flex-basis: calc(16.6% - 1rem);
}

.list-item {
    position: relative;
}

.list-item:not(:last-child)::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 2px;
    height: 80%;
    background-color: var(--grey-dark-color);
}

.sub-menu.mega-menu.mega-menu-2 .list-item {
    flex: 1;
    flex-basis: calc(50% - 1rem);
}

.single-column-menu {
    min-width: 250px;
    max-width: 450px;
}

.header-sidebar-btn-flex {
    display: none;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

h4.menu-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--menu-heading-size);
    font-weight: bold;
    color: var(--theme-primary1);
    margin-bottom: 1.5rem;
    position: relative;
}

h4.menu-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 2px;
    background: var(--theme-primary1);
}

.toggle-icon {
    display: none;
}

/* cta menu  */

.small,
small {
    font-size: 1rem !important;
}

/* this cta use every where */

.cta-button {
    width: auto;
    height: auto;
}

.cta-primary {
    padding: 1rem 1.5rem;
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border-radius: 2.5rem;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-transform: uppercase;
}

.dark-btn {
    background-color: var(--theme-primary1);
}

.golden-btn {
    background-color: var(--yellow-color);
}

.light-btn {
    background-color: var(--black-color);
}

.cta-button .cta-primary:hover {
    opacity: 0.8;
}


.cta-flexbutton {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-flexbutton .cta-button {
    flex: 1;
    flex-basis: 150px;
}

/* --------------------------------------------------------------- */

/* home-slider  */


.home-slider {
    position: relative;
}

.home-slider .owl-dots {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

.slider-wrap {
    width: 100%;
    height: auto;
}

.slider-wrap a img {
    width: 100%;
    display: block !important;
}

/* home-ctabox  */

.home-ctabox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}


.home-ctabox .cta-box {
    flex: 0 0 50%;
    max-width: 50%;
    align-self: stretch;
    padding: 4rem;
    position: relative;
    transition: opacity 0.4s ease;
}


.home-ctabox .cta-box::after {
    position: absolute;
    inset: 10px;
    content: ' ';
    border: 2px solid var(--white-color);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
    pointer-events: none;
}

.home-ctabox .cta-box:hover::after {
    opacity: 1;
    transform: scale(1);
}

.home-ctabox .cta-box a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--white-color);
    text-transform: uppercase;
}

.home-ctabox .cta-box:nth-child(1) {
    background: var(--theme-primary2);
}

.home-ctabox .cta-box:nth-child(2) {
    background: var(--theme-primary3);
}

.home-ctabox .cta-box:nth-child(3) {
    background: var(--theme-primary4);
}

.home-ctabox .cta-box:nth-child(3) a {
    color: var(--black-color);
}

.home-ctabox .cta-box:nth-child(4) {
    background: var(--theme-primary1);
}


.home-ctabox .cta-box a h2 {
    font-size: clamp(1.4rem, 1.8vw, 1.6rem);
    line-height: 1.5;
}


/* uspNumber */

.usp-heading {
    border-right: 4px solid var(--theme-primary1);
}

.uspNumber h4 {
    font-size: clamp(2.5rem, 5vw, 3rem) !important;
    font-weight: 800;
    line-height: 1.25;
    color: var(--theme-primary1);
}

/* home service section  */

.service-item {
    width: 100%;
    height: 100%;
    background: var(--smoke-color2);
    text-align: center;
    padding-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: auto;
}

.service-item p {
    margin-top: 1.5rem;
    font-weight: bold;
    padding: 0 10px;
}

.service-item p span {
    display: block;
    font-size: clamp(1.4rem, 2vw + 0.5rem, 1.6rem) !important;
    color: var(--body-color);
}

/* --------------------------------------------------------------- */


/* team section  */

.team-card {
    background: linear-gradient(-180deg, #DAE3F2 0%, #FFFFFF 100.13%);
    border-radius: 12px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    overflow: hidden;
    border-radius: 6px;
}

.team-card img {
    margin: auto;
    object-position: top;
    object-fit: contain;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-info h4 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem) !important;
    margin-bottom: 1rem;
    font-weight: bold;
}

p.dr-edu {
    color: var(--body-color);
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
}

p.team-experience {
    position: absolute;
    left: 10px;
    top: 20px;
    content: ' ';
    background: var(--bg3);
    font-size: 1rem !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}


.js-hidden {
    padding: 0 !important;
}


/* whatcontainercta */

.whatcontainercta {
    background: var(--bg3);
    border: var(--bg3-border);
    border-radius: 1rem;
    padding: 1rem;
}

.cta-image {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* .yt-tabs  */

.yt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding-left: 0;
}

.yt-tabs li {
    padding: 8px 18px;
    background: var(--bg5-border);
    border: var(--bg5-border);
    color: var(--black-color);
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
    font-size: var(--body-font-size);
}

.yt-tabs li.active {
    background: var(--bg3);
    color: var(--theme-primary1);
    border: var(--bg3-border);
    font-weight: bold;
}


/* Tab Content */
.yt-tab-content {
    display: none;
}

.yt-tab-content.active {
    display: block;
}

/* Grid Layout */
.yt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Thumbnail */
.yt-thumb {
    position: relative;
    cursor: pointer;
}

.yt-thumb img {
    width: 100%;
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: var(--theme-primary1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg6);
    display: grid;
    place-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}


/* Popup */
.yt-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.yt-popup.active {
    display: flex;
}

.yt-popup-inner {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
}

.yt-popup-inner iframe {
    width: 100%;
    height: 450px;
    border-radius: 16px;
}

.yt-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .yt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yt-grid {
        grid-template-columns: 1fr;
    }
}


/* google review section  */

.diGWoM span,
.ijNHLt {
    font-size: 1.6rem !important;
}

.diGWoM span {
    color: var(--black-color) !important;
}

.ijNHLt {
    height: auto !important;
}

.keqcxy,
.xiHng {
    display: none !important;
}


/* blog section  */

.parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-grid-box {
    flex: 1 1 calc(33.3% - 20px);
}


.blog-post {
    background: var(--white-color);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    border-radius: 10px;
    position: relative;
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.post-image img {
    width: 100%;
    height: auto;
}

.blog-content-box {
    width: 100%;
    height: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post-info {
    position: absolute;
    top: 10px;
    background: var(--white-color);
    padding: 0.8rem;
    border-radius: 5px;
    color: var(--theme-primary1);
}

.post-date {
    font-size: 1rem;
    font-weight: 500;
}

.post-title a {
    color: #222;
    font-size: 1.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-teaser {
    color: #1c1c1c;
    font-size: var(--body-font-size);
}


/* treatment-item  */

.treatment-item {
    padding: 1rem;
    width: 100%;
    height: auto;
    color: var(--white-color);
    position: relative;
}

.treatment-item .treatment-number {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
    font-size: 8rem;
    font-weight: bold;
    line-height: normal;
    color: rgba(255, 255, 255, 0.326);
}

.treatment-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.treatment-content h4 {
    font-size: 2.5rem;
    color: var(--yellow-color);
}


/*timeline section*/

.timeline-container {
    position: relative;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--body-color);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--theme-primary1);
    animation: fillLine 3s ease forwards;
}

.timeline-container.animate .timeline-line::before {
    animation-play-state: running;
}

@keyframes fillLine {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-item-wrapper {
    position: relative;
    height: 100%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #dee6f3;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 8px #ffffff;
    opacity: 0;
    animation: fadeInDot 0.5s ease forwards;
    animation-play-state: paused;
}

.timeline-container.animate .timeline-dot {
    animation-play-state: running;
}

.timeline-dot.active {
    background: var(--title-color);
    animation: activateDot 0.5s ease forwards;
    animation-play-state: paused;
}

.timeline-container.animate .timeline-dot.active {
    animation-play-state: running;
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

@keyframes activateDot {
    0% {
        background: #e0e0e0;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }

    100% {
        background: var(--theme-primary1);
        transform: translate(-50%, -50%) scale(1);
    }
}

.timeline-card {
    background: var(--bg3);
    border: var(--bg3-border);
    border-radius: 16px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 100px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 2s ease forwards;
    animation-play-state: paused;
}

.timeline-container.animate .timeline-card {
    animation-play-state: running;
}

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

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(1) .timeline-card {
    animation-delay: 0s;
}

.timeline-item:nth-child(1) .timeline-dot {
    animation-delay: 0s;
    animation-name: fadeInDot, activateDot;
    animation-duration: 0.5s, 0.5s;
    animation-delay: 0s, 0.5s;
}

.timeline-item:nth-child(2) .timeline-card {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(2) .timeline-dot {
    animation-delay: 0.5s;
    animation-name: fadeInDot, activateDot;
    animation-duration: 0.5s, 0.5s;
    animation-delay: 0.5s, 1s;
}

.timeline-item:nth-child(3) .timeline-card {
    animation-delay: 1s;
}

.timeline-item:nth-child(3) .timeline-dot {
    animation-delay: 1s;
    animation-name: fadeInDot, activateDot;
    animation-duration: 0.5s, 0.5s;
    animation-delay: 1s, 1.5s;
}

.timeline-item:nth-child(4) .timeline-card {
    animation-delay: 1.5s;
}

.timeline-item:nth-child(4) .timeline-dot {
    animation-delay: 1.5s;
    animation-name: fadeInDot, activateDot;
    animation-duration: 0.5s, 0.5s;
    animation-delay: 1.5s, 2s;
}

.timeline-item:nth-child(5) .timeline-card {
    animation-delay: 2s;
}

.timeline-item:nth-child(5) .timeline-dot {
    animation-delay: 2s;
    animation-name: fadeInDot, activateDot;
    animation-duration: 0.5s, 0.5s;
    animation-delay: 2s, 2.5s;
}

.timeline-day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: start;
}

.timeline-day h5 {
    font-size: 2.5rem;
    color: var(--theme-primary1);
    font-weight: 600;
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    right: 8px;
    top: 8px;
    content: ' ';
    font-size: 5rem;
    z-index: -1;
    font-weight: 800;
    line-height: 1;
    color: #a7b7d0;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-bottom: 350px;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-top: 350px;
}

@media (max-width: 992px) {
    .timeline-items {
        flex-direction: column;
        gap: 0;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        height: auto;
        right: auto;
        transform: translateX(-50%);
    }

    .timeline-line::before {
        width: 100%;
        height: 0;
        animation: fillLineVertical 3s ease forwards;
        animation-play-state: paused;
    }

    .timeline-container.animate .timeline-line::before {
        animation-play-state: running;
    }

    @keyframes fillLineVertical {
        0% {
            height: 0%;
        }

        100% {
            height: 100%;
        }
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        margin: 0 0 30px 0;
    }

    .timeline-dot {
        top: auto;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }
}

/* Whychoosebox  */

.Whychoosebox {
    background: var(--smoke-color2);
    border-radius: 1rem;
}


.treatment-model {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.layer-card {
    flex: 1;
    flex-basis: 350px;
    padding: 1.5rem;
    border-radius: 18px;
    background: var(--white-color);
    transition: 0.3s ease;
}

.layer-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--theme-primary1);
}

.layer-content p {
    margin-bottom: 0;
    color: #555;
    font-size: clamp(1.4rem, 1.8vw, 1.6rem) !important;
}


.Whychoosebox .whychooseimg img {
    width: 100%;
}

.whychoosetext {
    width: 100%;
    padding: 2rem;
}

.whychoosetext h4 {
    font-size: 2rem !important;
    color: var(--theme-primary1);
    font-weight: bold;
}

.whychooseslider {
    background: #fff;
    border-radius: 20px;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.swiper-pagination {
    bottom: -30px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.5s ease;
    position: relative;
}

.swiper-pagination-bullet-active {
    width: 30px !important;
    background: #000;
    opacity: 1;
    border-radius: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--theme-primary1) !important;
}


/* clinic-card  */


.pagination {
    margin: 3rem auto
}

.page-link {
    font-size: clamp(1.3rem, 1.4rem, 1.6rem);
    color: var(--theme-primary1) !important;
}

.active>.page-link,
.page-link.active {
    background: var(--bg3);
    color: var(--theme-primary1);
    border: var(--bg3-border);
    font-weight: bold;
}

.page-link:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* faq  */
.accordion-item {
    margin-bottom: 12px;
    padding: 10px 0px;
    border-radius: 0px !important;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background-color: transparent !important;
}

/* .accordion-item:not(:first-of-type) {
    border: 1px solid #e0e0e0 !important;
} */

.accordion-button {
    background: none !important;
    font-weight: 600;
    font-size: clamp(1.6rem, 1vw + 1rem, 2rem) !important;
    padding: 1rem 0rem;
    border: none;
    box-shadow: none !important;
    color: var(--black-color);
}

.accordion-button:not(.collapsed) {
    color: var(--black-color);
}

.accordion-body {
    font-size: clamp(1rem, 1vw + 1rem, 1.6rem) !important;
    color: var(--body-color);
    padding: 0 1.25rem 1rem 1.25rem;
}


/* .pdm-card */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.pdm-card {
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all .3s ease;
    /* background: linear-gradient(-125deg, #f4fff8, #f0fff8, #fff8ec, #fff6e8); */
    background: linear-gradient(-180deg, #DAE3F2 0%, #FFFFFF 100.13%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.pdm-card img {
    width: 100%;
    border-radius: 1rem;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.pdm-card h3 {
    font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
    font-weight: bold;
    color: var(--theme-primary1);
}

.pdm-card p {
    font-size: clamp(1.3rem, 0.5vw + 1rem, 1.8rem) !important;
}



.sericelink a {
    font-size: clamp(1rem, 5vw, 1.4rem);
    color: var(--bs-body-color);
}

/* footer  */

footer {
    padding: 5rem 0;
    background: var(--theme-primary1);
    width: 100%;
}

.main-footer-container {
    width: 100%;
    height: auto;
}


.custom-col {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}


h5.footer-heading {
    font-size: 2.3rem;
    font-weight: bold;
    color: var(--white-color);
}

h5.footer-heading span {
    display: none;
}

.footer-box :where(.footer-logo, .payment-flex) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.footer-box :where(.footer-logo img, .payment-flex img) {
    max-width: 250px;
}

.footer-logo p {
    color: var(--white-color);
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon a i {
    width: 3rem;
    height: 3rem;
    background-color: var(--white-color);
    color: var(--theme-primary1);
    display: grid;
    place-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    font-size: var(--menu-font-size);
}




.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0px;
}

.flex-link {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-links li {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    padding-bottom: 1rem;
}

.footer-links li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.385);
}

.footer-links a,
.servicelink ul li a {
    color: var(--white-color);
    font-size: var(--menu-font-size) !important;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--theme-color);
}


.servicelink ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--white-color);
    padding-left: 0;
}

.servicelink ul li:last-child .sep {
    display: none;
}

.footer-bottom {
    width: 100%;
    height: auto;
    padding: 1.5rem 0;
}


.copyright {
    width: 100%;
    font-size: 2rem;
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.gtranslate_wrapper a {
    color: var(--white-color);
}


.footer-cta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: opacity 0.5s ease;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.footercta-flex {
    width: 100%;
    display: flex;
    align-items: center;
}

.footercta-flex a {
    flex: 1;
    align-self: stretch;
    padding: 10px;
    font-size: 2rem;
    color: var(--white-color);
    text-align: center;
    background: var(--theme-primary1);
}

.footercta-flex a:last-child {
    background: var(--theme-color);
}


/* service page */

.mainservice-hero {
    background: url("../media/main-assets/shape.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mainservice-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--theme-primary1);
}

.mainservice-hero :where(h1, p) {
    color: var(--white-color);
}

.service-hero-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-hero-text h1 {
    font-size: clamp(3.5rem, 6vw, 4rem) !important;
    line-height: normal;
    margin-bottom: 0;
    font-weight: bold;
}

.service-hero-text h3.title {
    margin: 0;
}

.heroFeaturedimg {
    width: 100%;
    height: auto;
}

.heroFeaturedimg img {
    width: 100%;
    margin: auto;
    max-width: 550px;
}

/* number section  */

.numberbox {
    background: var(--theme-primary1);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 5px 5px 0px #000c4460;
    height: 100%;
}

.number-icon i {
    font-size: 2rem;
}

.numbervalue h5 {
    font-size: 3.5rem;
}

.numbervalue h5 span {
    color: var(--yellow-color);
}


/* expend content */

.review-box .cta-button {
    display: inline-block;
}

.review-box[open] .review-content {
    max-height: 350px;
}


/* content closed */
.review-content {
    margin-top: 2rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.review-content h3.title {
    text-align: left;
    font-size: 2rem !important;
    margin: 0;
}

.pointerul {
    margin-bottom: 0;
    padding-left: 2rem;
}

.pointerul li {
    font-size: 1.8rem !important;
    color: var(--black-color);
    list-style: decimal;
}

.pointerul li span {
    font-weight: bold;
    color: var(--theme-primary1);
}

.pointerul li:not(:last-child) {
    margin-bottom: 1rem;
}

.background-dark .pointerul li {
    color: var(--white-color);
}


/* --------------------------------------------------------------- */

.service-comparison-table> :not(caption)>*>* {
    border: none !important;
    background-color: transparent !important;
}

.service-comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    background-color: var(--white-color) !important;
    padding: 20px;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

.service-comparison-table thead th {
    font-size: clamp(1.2rem, 2vw, 2rem) !important;
}

.service-comparison-table tbody tr td {
    font-size: clamp(1rem, 2vw, 1.8rem) !important;
}

/* ---------------------------------------------------------------- */

.causes-item {
    width: 100%;
    height: 100%;
    background: var(--smoke-color2);
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
}

.causes-item img {
    width: 5rem !important;
    height: 5rem;
}

.causes-item p {
    font-size: 2rem !important;
}



/* Common Triggers section  */

.imgblock {
    border-radius: 1rem;
    overflow: hidden;
}

.imgblock img {
    width: 100%;
}

.pointerblock .heading {
    text-align: left;
    align-items: flex-start;
}

.pointerblock .heading h3.title {
    margin: 0;
}


/* cta-box */

.cta-box-service {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/*contact us page*/

.footercontact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

h4.contact-info-heading {
    font-size: 2.5rem;
    font-weight: bold;
}

.location-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

.location-cta:not(:last-child) {
    margin-bottom: 1rem;
}

.location-cta i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-primary4);
    color: var(--theme-primary1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.location-cta a {
    color: var(--black-color);
}

/* form edit */

.formbox {
    padding: 1rem;
    background: var(--white-color);
}

h3.form-heading {
    font-size: 2.3rem !important;
    font-weight: bold;
}

.homeformcard {
    background: transparent;
}

.serviceform {
    padding: 2rem;
    background: var(--white-color);
    border-radius: 2rem;
    max-width: 450px;
    margin: auto;
}

.serviceform h3.title {
    color: var(--title-color);
}

.servicebelowform .formcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row;
}

.servicebelowform .formcontainer .input-box {
    flex: 1 1 350px;
    max-width: 100%;
    position: relative;
}

.servicebelowform .formcontainer .input-box .error {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    pointer-events: none;
}

.formcontainer,
.formcontainer .input-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    color: var(--black-color);
    font-size: 1.6rem;
    justify-content: start;

}

.formcontainer .form-control {
    border-color: transparent;
    outline: none;
    position: relative;
}

.formcontainer .form-control,
.formcontainer .form-select {
    background-color: var(--smoke-color2);
    color: var(--body-color);
    font-size: 1.4rem;
    border-width: 2px;
    border-color: var(--light-color);
    outline: none;
    border-radius: 1rem;
    padding: 1.3rem !important;
}

.formcontainer .form-select option {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.367);
    color: white;
}

.formcontainer .form-control:focus,
.formcontainer .form-select:focus {
    box-shadow: none;
    color: var(--text-color-light);
    border-color: var(--theme-primary1);
}

.submitbtn {
    border: none;
    font-size: 1.8rem;
    font-weight: bolder;
}

/* Fix for iOS input styling */
.formcontainer :is(input, select, textarea) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Fix for select arrow */
.formcontainer select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23007bff' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1em !important;
}

.error {
    color: red;
    font-size: 10px;
    text-align: center;
}

.success {
    color: green;
    font-size: 14px;
}

.iti {
    width: 100%;
}

.iti__country-name,
.iti__flag-box {
    color: #000;
}

.iti input,
.iti input[type="tel"],
.iti input[type="text"] {
    padding-left: 50px !important;
}

/* .trust-info */

.trust-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--body-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.trust-item i {
    font-size: 16px;
    color: var(--theme-primary1);
}

.trust-item strong {
    font-weight: 600;
    color: var(--black-color);
}

.divider {
    width: 1px;
    height: 16px;
    background: #ccc;
}

.custom-md-border {
    border: none;
}

@media (min-width: 768px) {
    .custom-md-border {
        border-right: 4px solid var(--bs-border-color) !important;
    }
}



/* popup form  */

.popup-img {
    border-radius: 2rem;
    width: 100%;
    overflow: hidden;
}

.popup-img :where(img) {
    width: 100%;
}

.form-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.formimg {
    width: 35%;
    text-align: center;
}

.formimg img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.formimg .subheading {
    font-size: clamp(1.8rem, 2.3vw, 2rem);
    margin-top: 10px;
    font-weight: 600;
}

.counsellingflex {
    flex: 1;
    padding-left: 0;
    margin: 0;
}

.counsellingflex li {
    padding: 1rem 1.5rem 1rem 4rem;
    border-radius: 1rem;
    border: 1px solid var(--black-color);
    position: relative;
    padding-left: 4rem;
    background: var(--white-color);
}

.counsellingflex li:not( :last-child) {
    margin-bottom: 1rem;
}

.counsellingflex li::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2bb673;
    font-size: 18px;
}

.counselling-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    flex-basis: calc(50% - 2rem);
    padding: 1rem 0px;
    border-radius: 1rem;
    background: var(--white-color);
    border: 2px solid var(--black-color);
}

.counselling-info h5 {
    margin-bottom: 0;
    font-size: clamp(1.5rem, 2vw, 2rem) !important;
    color: var(--theme-primary1);
}


/* fssessment*/

.stepbody,
.step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.progress-bar {
    background: var(--theme-primary1);
}

.step h5 {
    font-size: clamp(1.8rem, 3vw, 3rem) !important;
    font-weight: bold;
}


.stepquiz {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stepquiz .option-btn {
    flex: 1;
    flex-basis: calc(50% - 1rem);
    padding: 8px 18px;
    border-radius: 20px;
    text-align: center;
    background: var(--bg3);
    color: var(--theme-primary1);
    border: var(--bg3-border);
    font-weight: bold;
    font-size: 1.6rem;
}

.option-btn.active {
    background: var(--theme-primary1);
    color: var(--white-color);
}


.summary-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-box ul li {
    flex: 1;
    flex-basis: 400px;
}

.modal {
    z-index: 999999;
}

/* policy pages  */
.policy-card {
    padding: 2rem;
    line-height: 1.7;
}

.policy-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-content h4.policy-subheading {
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
}

.policy-card a {
    color: var(--theme-primary1);
}

.policy-section h5 {
    font-weight: 600;
}

.policy-list {
    padding-left: 18px;
}

.policy-list li {
    margin-bottom: 10px;
    list-style: decimal;
}

.innerulbox {
    padding: 1rem 3rem;
    background: linear-gradient(to top, #fff8e6, #fdfdff);
    border-left: 2px solid #fae9be;
    margin: 2rem 0;
    width: min(100%, 800px);
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
}


/* location details  */

.clinic-info {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clinic-info h4 {
    font-size: clamp(1.4rem, 1.6rem + 1vw, 2.5rem);
}

.clinic-info p {
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem) !important;
    color: black;
}

.clinic-info p a {
    color: black;
}

.clinic-featured-img {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
}

.clinic-featured-img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.clinic-img-form-container {
    padding: 1rem;
    background: var(--bg3);
    border: var(--bg3-border);
    border-radius: 1rem;
    position: relative;
}

.clinic-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}


.clinic-image-wrapper::after {
    position: absolute;
    top: 0rem;
    left: 0rem;
    right: 0rem;
    bottom: 0rem;
    content: "";
    border-radius: 1rem;
    background: linear-gradient(to bottom, transparent, rgba(101, 149, 216, 0.485));
    pointer-events: none;
    z-index: 2;
}

.clinic-image-wrapper img {
    width: 100%;
    height: 450px;
    object-position: center;
    object-fit: cover;
    display: block;
}

.location-form {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    content: ' ';
    padding: 1.5rem;
    border: 1px solid white;
    background: rgba(238, 238, 238, 0.75);
    backdrop-filter: blur(10px);
    width: clamp(300px, 40vw, 450px);
    border-radius: 1rem;
    z-index: 99;
}

.map-wrapper {
    padding: 1rem;
    background: var(--bg3);
    border: var(--bg3-border);
    border-radius: 1rem;
}

.map-wrapper iframe {
    transition: 0.3s ease-in-out;
    width: 100%;
    height: clamp(300px, 40vw, 450px);
}

.map-wrapper iframe:hover {
    transform: scale(1.01);
}

/* about us page */

h3.about-us-heading {
    font-size: clamp(3rem, 5vw, 6rem) !important;
    color: transparent;
    background: linear-gradient(90deg, var(--theme-primary1), var(--theme-primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.aboutus-herosection {
    padding: 2rem 1rem;
    position: relative;
    border-radius: 1rem;
}


.doctor-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.degree {
    color: #777;
}

.designation {
    font-size: 14px;
    color: #555;
}

.why-pdm-card {
    background: var(--bg3);
    border: var(--bg3-border);
    padding: 30px 25px;
    border-radius: 12px;
    height: 100%;
    transition: all .3s ease;
}

.why-pdm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--theme-primary4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-box i {
    font-size: 24px;
    color: var(--theme-primary1);
}

.why-pdm-card h5 {
    font-size: 18px;
    color: var(--theme-primary1);
    font-weight: 600;
    margin-bottom: 10px;
}


/* 404 page */

.error404 {
    max-width: 550px;
    margin: auto;
}

.popularServiceslink {
    width: 100%;
    margin-top: 3rem;
}

.popularServiceslink :where(h5.footer-heading, .servicelink ul li a, .sep) {
    color: var(--black-color) !important;
}

.popularServiceslink h5.footer-heading {
    justify-content: center;
    text-align: center;
}

.popularServiceslink .servicelink ul {
    margin-bottom: 0;
    justify-content: center;
}

/* result page */

.before-thumb,
.before-thumb img {
    width: 100%;
    border-radius: 8px;
}

.before-thumb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    background: var(--theme-primary1);
    padding: 1rem;
    color: var(--white-color);
}

.before-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* thankyou page */

.thankyoublock {
    width: 100%;
    border-radius: 10px 10px 20px 20px;
    padding: 8rem 3rem;
}

.thankyoucheck {
    position: relative;
}

.thankyoucheck::before {
    content: "✓";
    position: absolute;
    top: -52.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--theme-primary1);
    border: 10px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 5rem;
}

.payment-success {
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.payment-details {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 15px;
}

.payment-note {
    font-size: 14px;
    color: #555;
    margin: 2rem auto;
}


/* payment page */

.sectionheading {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
}

.filterflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.filterflex .searchinput {
    height: 40px;
    font-size: clamp(1.6rem, 2vw, 2rem);
    border-radius: 1rem;
    padding-left: 1rem;
}

.filterflex .searchinput:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid var(--theme-primary1);
}

.filterbtn {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    border: 2px solid var(--theme-primary1);
    border-radius: 1rem;
    color: var(--theme-primary1);
}

.filterbtn:hover {
    background: none;
}


.no-result {
    display: none;
    color: red;
}

.no-result.show {
    display: block;
}


.service-card {
    position: sticky;
    top: 100px;
}

.service-list-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: var(--white-color);
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid #eee;

    transition: 0.3s;
}

.service-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.service-info h5 {
    font-size: 16px;
    font-weight: 600;
}

.category-badge {
    background: #eef2ff;
    color: #295a9e;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
}

.service-tags {
    margin-top: 5px;
    display: flex;
    gap: 5px;
}

.service-tags span {
    font-size: 12px;
    background: #eef2ff;
    color: var(--theme-primary1);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
}

.service-tags i {
    margin-right: 3px;
}

/* RIGHT */
.service-right {
    min-width: 140px;
}

/* PRICE */
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}

.new-price {
    color: var(--theme-primary1);
    font-size: 18px;
}

.save-badge {
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 5px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .service-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-list-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .price-box {
        font-size: 14px;
    }

    .pay-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* checkour page  */

.checkout-box {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-box {
    background: #f1f6ff;
    border-radius: 10px;
    padding: 20px;
}