/* ====================================
   GLOBAL
==================================== */

:root {
    /* --primary: #0d4c81; */
    --primary: #468729;
    --secondary: #1a6fb3;
    --dark: #073894;
    /* --dark: #0d2e4f; */
    --light: #f7fafd;
    --text: #5f6b7a;
    --white: #ffffff;
    --border: #e6edf4;
    --heading-font: "PT Serif", serif;
    /* --paragarph-font: "Google Sans", sans-serif; */
    /* --paragarph-font: "Inter", sans-serif; */ 
    /* --paragarph-font: "Roboto Condensed", sans-serif; */
    --paragarph-font: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.dropdown:hover .dropdown-menu-procedures-dropdown {
    display: grid !important;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    grid-auto-columns: 260px;
    column-gap: 10px;
    left: -50%;
}
/* body {
    font-family: "Segoe UI", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
} */
html {
    overflow-x: hidden;
}
body {
    max-width: 100%;
}
.container-fluid {
    padding: 0 5%;
}

a {
    text-decoration: none;
    letter-spacing: -0.5px;
}

img {
    max-width: 100%;
}

p {
    font-family: var(--paragarph-font);
    margin-bottom: 0;
    /* letter-spacing: -0.5px; */
}

/* ====================================
   TOP BAR
==================================== */

.topbar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 9;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: #fff;
    transition: 0.3s;
    font-family: var(--paragarph-font);
    font-size: 14px;
}

.topbar a:hover {
    opacity: 0.8;
}

.topbar i {
    margin-right: 6px;
}

/* ====================================
   HEADER
==================================== */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    max-height: 75px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    font-family: var(--paragarph-font);
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary);
}

.header-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ====================================
   BUTTONS
==================================== */

.btn-blue-Stroke {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--paragarph-font);
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px !important;
    background: transparent;
}

.btn-blue-Stroke:hover {
    background: var(--primary) !important;
    color: #fff;
}

.btn-blue-filled {
    font-size: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 25px 10px;
    border-radius: 50px;
    font-weight: 600;
    /* box-shadow: 0 8px 25px rgba(13, 76, 129, 0.25); */
    font-family: var(--paragarph-font);
    line-height: 25px;
    border: none;
    letter-spacing: 0px !important;
}

.btn-blue-filled:hover {
    background: var(--dark);
    color: #fff;
}

/* ====================================
   HERO
==================================== */

.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f7fafd 0%, #ffffff 100%);
}

.internal-hero-section{
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #f7fafd 0%, #ffffff 100%);
    overflow: hidden;
}

.internal-hero-section .container-fluid{
    z-index: 2;
    position: relative;
}

.hero-content {
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    font-family: var(--heading-font);
}

.hero-content p {
    font-size: 20px;
    color: var(--text);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-tag {
    width: fit-content;
    background: #eef5fb;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-family: var(--paragarph-font);
    font-size: 14px;
}

.hero-image-wrapper {
    position: relative;
}

.procedure-section {
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 20px 20px 30px;
}

.procedure-section h1 {
    font-size: 26px;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 600;
    /* text-transform: uppercase; */
    margin-bottom: 12px;
    color: #fff;
    margin: 0 0 20px;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 15px;
}

/* ====================================
   SWIPER
==================================== */

.heroSwiper {
    margin-bottom: 20px;
}

.imageSwiper {
    overflow: hidden;
    border-radius: 24px;
}

.imageSwiper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.swiper-pagination {
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ====================================
   PROCEDURE GRID
==================================== */

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.procedure-card {
    background: #f0f7ff;
    border-radius: 16px;
    padding: 30px 20px 20px;
    text-align: center;
    color: var(--dark);
    transition: all 0.35s ease;
    transition: 0.35s;
    border: 1px solid transparent;
}

.procedure-card:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

.procedure-card i {
    display: block;
    font-size: 26px;
    margin-bottom: 12px;
}

.procedure-card span {
    font-family: var(--paragarph-font);
    display: block;
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   ABOUT + TRUST SECTION
=================================== */

.trust-bar {
    background: var(--dark);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Optional background accent */

.trust-bar::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.trust-bar .about-content {
    text-align: center;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.trust-bar .section-tag,
.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--paragarph-font);
}

.trust-bar .about-content h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--heading-font);
}

.trust-bar .about-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    font-family: var(--paragarph-font);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.trust-bar .btn-blue-filled {
    margin-top: 15px;
}

.about-content .btn-blue-Stroke {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 25px;
}

/* ===================================
   STATS
=================================== */

.trust-item {
    position: relative;
    text-align: center;
    padding: 20px 20px;
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ffffff42;
}

.trust-item:hover h3,
.trust-item:hover p {
    color: var(--dark);
}

.trust-item:hover::after {
    top: -100px;
    right: -35px;
}

.trust-item::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -360px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: right 0.6s ease-in-out;
    z-index: 1;
}

.trust-item h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    font-family: var(--heading-font);
}

.trust-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    font-family: var(--paragarph-font);
}

/* =====================================
   TREATMENT SECTION
===================================== */

.treatment-section {
    padding: 60px 0;
    background: #f8fbfd;
}

.section-heading {
    margin: 0 auto 20px;
}

.section-heading h2 , h2, .section-heading h1 {
    font-size: 45px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 10px;
    font-family: var(--heading-font);
}
.about-banner .section-heading h1{
    color: #fff;
    margin: 0 0 20px;
}
 p {
    /* max-width: 1000px; */
    margin: auto;
    color: #667085;
    line-height: 25px;
    font-family: var(--paragarph-font);
    font-size: 15px;
}

/* ==========================
   CARD
========================== */

.treatment-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.treatment-card::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);

    top: -150px;
    right: -320px;

    transition: all 0.6s ease;
    z-index: 1;
}

.treatment-card:hover {
    background: var(--dark);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.treatment-card:hover::before {
    right: -80px;
}

.treatment-icon,
.treatment-card h3,
.treatment-card p,
.treatment-card a {
    position: relative;
    z-index: 2;
}

/* .treatment-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(13, 76, 129, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    transition: 0.4s ease;
}

.treatment-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: 0.4s ease;
} */

.treatment-card h3 {
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 15px;
    transition: 0.4s ease;
    font-family: var(--paragarph-font);
    font-weight: 500;
}

.treatment-card p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 15px;
    font-family: var(--paragarph-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    transition: 0.4s ease;
}

.treatment-card a {
    color: var(--primary);
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: 0.4s ease;
}

.treatment-card a i {
    transition: 0.4s ease;
}

/* Hover */

.treatment-card:hover h3,
.treatment-card:hover p,
.treatment-card:hover a {
    color: #fff;
}

/* .treatment-card:hover .treatment-icon {
    background: rgba(255, 255, 255, 0.1);
}

.treatment-card:hover .treatment-icon i {
    color: #fff;
} */

/* .treatment-card:hover a i {
    transform: translateX(6px);
} */

/* =====================================
   MEET THE DOCTOR
===================================== */

.doctor-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.doctor-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

.doctor-section .head-text {
    text-align: center;
    justify-content: center;
}

.doctor-section .head-text .hero-tag, .aboutpage-doctor .head-text span {
    margin-bottom: 15px;
}

.doctor-quote{
    margin: 0 0 30px;
    padding: 12px 25px;
    background: #f8fbfd;
    /*border-left: 4px solid var(--primary);*/
    border-radius: 12px;
    color: var(--dark);
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    font-family: var(--heading-font);
    width: fit-content;
    font-weight: 600;
}

.doctor-section .head-text h2 {
    margin: 0px 0 20px;
    line-height: 1.2;
    font-size: 45px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--heading-font);
}

.doctor-name {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: var(--heading-font);
    font-weight: 700;
}

.doctor-credentials {
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--paragarph-font);
}

.doctor-content p {
    color: #667085;
    line-height: 1.9;
    margin: 0 0px 10px 0;
    font-size: 16px;
}

.doctor-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #f8fbfd;
    border-radius: 14px;
    border: 1px solid #edf2f7;
}

.highlight-item i {
    color: var(--primary);
    font-size: 18px;
}

.highlight-item span {
    font-family: var(--paragarph-font);
    font-weight: 500;
    color: var(--dark);
}

.doctor-content .btn-blue-filled {
    padding: 15px 25px;
}

.doctor-content {
    margin: 0 0 0 30px;
}

/* =====================================
   Why choose
===================================== */
.why-choose-section {
    padding: 60px 0;
    background: #f8fbfd;
}

.why-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all .4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 52px;
    font-weight: 700;
    color: rgba(13, 76, 129, .08);
    font-family: var(--heading-font);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(13, 76, 129, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.why-icon i {
    font-size: 30px;
    color: var(--primary);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--paragarph-font);
}

.why-card p {
    color: #667085;
    line-height: 26px;
}

/* =====================================
   REVIEWS SECTION
===================================== */

.reviews-section {
    padding: 60px 0;
    background: #fff;
}

.review-summary {
    background: var(--dark);
    border-radius: 24px;
    padding: 40px 35px;
    color: #fff;
    height: fit-content;
}

.rating-number {
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.rating-stars {
    margin: 10px 0 15px;
    color: #f5b301;
    font-size: 20px;
}

.review-summary h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.review-summary p {
    color: rgba(255, 255, 255, .75);
    line-height: 28px;
}

.review-card {
    background: #f8fbfd;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 20px 30px 30px;
    height: max-content;
}

.review-stars {
    color: #f5b301;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-card p {
    color: #667085;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-footer h4 {
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 20px;
    font-family: var(--heading-font);
}

/* .review-footer span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
} */

.review-pagination {
    margin-top: 35px;
    position: relative;
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* =====================================
   FAQ SECTION
===================================== */

.faq-section {
    padding: 60px 0;
    background: #f8fbfd;
}

.faq-wrapper {
    /* max-width: 1000px; */
    margin: 0 auto;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}
.faq-section .accordion-item .accordion-header {
    margin: 0;
    font-family: var(--heading-font);
}
.faq-section .accordion-button.collapsed {
    background: #fff;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 20px;
    line-height: 28px;
    box-shadow: none;
    font-family: var(--paragraph-font);
}

.faq-section .accordion-button {
    padding: 18px 20px 5px;
    background: #fff;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-body {
    padding: 0 20px 15px;
    color: #667085;
    line-height: 25px;
    font-size: 15px;
    font-family: var(--paragarph-font);
}

.faq-section .accordion-button::after {
    transition: .3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* =====================================
   FINAL CTA
===================================== */


.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 55px;
    line-height: 60px;
    margin: 10px 0 30px;
    font-family: var(--heading-font);
}

.cta-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 25px;
    max-width: 100%;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn-blue-Stroke, .cta-buttons .btn-blue-Stroke:hover {
    border-color: #fff;
    color: #fff !important;
}

.cta-buttons .btn-blue-filled {
    color: #fff;
}

.cta-buttons .btn-blue-Stroke:hover,
.cta-buttons .btn-blue-filled:hover {
    background: #fff;
    color: var(--dark);
}

/* =====================================
   FOOTER
===================================== */
.footer-map {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    display: block;
}

.division {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer {
    background: var(--dark);
    color: #fff;
    padding-top: 50px;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 25px;
}

.footer-about p {
    color: #ffffff;
    line-height: 1.9;
    padding-right: 36px;
    font-family: var(--paragarph-font);
    font-size: 13px !important;
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 22px;
    font-family: var(--heading-font);
}

.site-footer ul, .why-loaction {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 7px;
    font-family: var(--paragarph-font);
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.site-footer a {
    color: rgb(255, 255, 255);
    transition: .3s;
    font-size: 14px;
    font-family: var(--paragarph-font);
    font-weight: 300;
    letter-spacing: 0;
}



.site-footer ul li  a:hover {
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);

    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social a:hover {
    background: white;
    color: var(--dark);
    padding: 0;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .75);
}

.footer-contact i {
    color: #7dc2ff;
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.shifft-left {
    padding-left: 6%;
}

/* ====================================
   SECTION SPACING
==================================== */

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.section-title p {
    color: var(--text);
    max-width: 700px;
    margin: 15px auto 0;
}
/* mega menu */
.dropdown-menu {
    border: 0;
    border-radius: 20px;
    padding: 20px 20px 10px;
    min-width: 250px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, .1); */
    margin: 0;
    background: var(--dark);
}
 .dropdown:hover .dropdown-menu{
        display: block;
        margin-top: 0;
        border: 2px solid #fff;
    }
.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    background: #ffffff1c;
    border-radius: 10px;
    margin-bottom: 10px;
    color: white;
}
.dropdown-toggle::after{
    display: none;
}
.dropdown-item:hover{
    background: #f5f7fa;
    color: #4d8b31;
}
.nav-item.dropdown .fa-chevron-down{
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .fa-chevron-down{
    transform: rotate(180deg);
}

/* ==========================
   MOBILE MENU
========================== */

.menu-toggle {
    border: 0;
    background: transparent;
    font-size: 28px;
    color: var(--dark);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: .4s ease;
}

.mobile-menu.active {
    right: 0;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.mobile-menu-header {
    padding: 10px 20px;
    border-bottom: 1px solid #edf2f7;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-header img {
    height: 55px;
}

.close-menu {
    border: 0;
    background: transparent;
    font-size: 26px;
}

.mobile-menu-actions {

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-actions .btn-blue-Stroke {
    background: transparent;
    border: 2px solid #fff;
}

.mobile-menu-actions a {
    text-align: center;
}

.mobile-nav {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav li {
    border-bottom: 1px solid #edf2f7;
}

.mobile-nav a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    color: var(--dark);
    font-size: 18px;
    font-weight: 500;

    border: 0;
    background: transparent;
}

.mobile-submenu a {
    background: #e9f4ff;
    border-radius: 15px;
    margin: 10px 0;
    padding: 0 15px;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
}

.mobile-submenu li {
    border: 0;
}

.mobile-submenu a {
    padding: 10px 15px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--paragarph-font);
}

.mobile-assistance {
    margin: 25px 20px;

    background: var(--dark);
    color: #fff;

    border-radius: 20px;
    padding: 20px;
}

.mobile-assistance h5 {
    margin-bottom: 10px;
}

.mobile-assistance p {
    margin-bottom: 15px;
    color: #fff;
}

.mobile-assistance a {
    color: #fff;
    font-weight: 600;
}

.mobile-menu-header.scrolled {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

@media(min-width:1000px) {

    .mobile-menu,
    .menu-overlay,
    .menu-toggle {
        display: none !important;
    }
}

/* =====================================
   APPOINTMENT Page Start Here
===================================== */
.internal-hero-section::after {
    content: "";
    position: absolute;
    top: -110px;
    right: -160px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(195 227 255);
    /* filter: blur(99px); */
    z-index: 1;
}

.internal-hero-section::before {
    content: "";
    position: absolute;
    top: -430px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(77 135 41);
    /* filter: blur(99px); */
    z-index: 1;
}

.apointment-info {
    padding-right: 50px;
}

.apointment-info h5 {
    font-size: 22px;
    font-family: var(--paragarph-font);
    font-weight: 600;
    margin: 20px 0 -10px;
}

.apointment-info h2 {
    margin: 10px 0 10px;
    font-family: var(--heading-font);
    font-weight: 600;
}

#apointmentForm p {
    text-align: center;
    font-family: var(--paragarph-font);
    font-size: 15px;
    margin: 0 0 10px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apointment-info {
    /* color: rgba(255,255,255,.8); */
    line-height: 1.9;
}

.apointment-highlights {
    margin-top: 35px;
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    grid-template-columns: repeat(2, 3fr) !important;
}

.apointment-highlight {
    display: flex;
    gap: 12px;
    /* margin-bottom: 18px; */
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 10px 20px;
    background: #f1f7ff;
    border-radius: 100px;
    font-size: 16px;
    font-family: var(--paragarph-font);
    white-space: nowrap;
}

.apointment-highlight i {
    color: #7dc2ff;
    margin: 0;
    padding: 0;
    line-height: 10px;
}

.apointment-form-wrap {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.apointment-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 24px;
    z-index: 10;
    color: white;
}

.form-control,
.form-select {
    min-height: 45px;
    border-radius: 14px;
    margin-bottom: 13px;
    border: 1px solid #dbe4ec;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--paragarph-font);
}

textarea.form-control {
    min-height: 130px;
}

.apointment-notice {
    background: #fff1f1;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0 20px;
    font-size: 14px;
    color: #dc3545;
    font-family: var(--paragarph-font);
}

.apointment-submit {
    width: 100%;
}

.apointment-success {
    display: none;
    text-align: center;
    padding: 30px;
}

/* input::placeholder{
    color: #a3a3a3 !important;
} */
.success-icon {
    font-size: 60px;
    color: #22c55e;
    margin-bottom: 15px;
}

.apointment-success h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.treatment-card-head img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 20px;
    position: relative;
}
.treatment-card .consult-btn{ 
    display: none;
    position: absolute;
    top: -20px;
    left: 32%;
    color: white;
    transition: all 0.6s ease;
}
.treatment-card:hover .consult-btn{
    display: block;
    transform: translateY(-10px);
    top: 180px;
}

/* =====================================
   WHAT HAPPENS NEXT
===================================== */

.process-section {
    padding: 60px 0;
    background: #f8fbfd;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Connecting Line */

.process-timeline::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: #d8e6f2;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-number {
    font-size: 70px;
    font-weight: 800;
    color: rgba(13, 76, 129, .08);
    line-height: 1;
    margin-bottom: -25px;
    font-family: var(--heading-font);
}

.process-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d8e6f2;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.process-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: .4s ease;
}

.process-step h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.process-step p {
    color: #667085;
    line-height: 1.8;
    max-width: 280px;
    margin: auto;
}

/* Hover */

.process-step:hover .process-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.process-step:hover .process-icon i {
    color: #fff;
}

/* =====================================
   CONTACT & LOCATION
===================================== */

.contact-location-section {
    padding: 50px 0 22px;
    background: var(--dark);
}

.contact-location-section h2,
.contact-location-section p {
    color: white;
    max-width: 100%;
}

.contact-location-info {
    /* height: 100%; */
    display: grid;
    flex-direction: column;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr) !important;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #0f419f;
    padding: 15px;
    border-radius: 18px;
    /* border: 1px solid #edf2f7; */
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, .04); */
    transition: .35s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    background: white;
}

.contact-card:hover .contact-icon {
    border: 2px solid transparent;
    background: rgba(13, 76, 129, .08);
}

.contact-icon {
    width: 60px;
    height: 60px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.08);
    border: 2px solid white;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.contact-card:hover .contact-icon i {
    color: var(--primary);
}

.contact-icon i {
    color: #fff;
    font-size: 22px;
}

.contact-card:hover h4 {
    color: #000000;
}

.contact-card h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0px;
    font-family: var(--heading-font);
}

.contact-card:hover p,
.contact-card:hover a {
    color: #667085;
}

.contact-card p,
.contact-card a {
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--primary);
}

.office-map iframe {
    width: 100%;
    height: 412px;
    border: 0;
    display: block;
    border-radius: 17px;
}
/* ====================================
   Service Page
==================================== */
/* .Service-hero-section {
    background: #073894;
    padding: 50px 0 ;
} */
 .Service-hero-section {
    background: linear-gradient(284deg, #468729, #073894 53%);
    padding: 50px 0;
    overflow: hidden;
}
.Service-hero-section .container-fluid{
    padding: 0 0 0 5%;
}
.Service-hero-section img {
    border-radius: 250px 0 0 250px;
    width: auto;
    height: 400px;
    float: right;
    box-shadow: 0 0 0px 10px #fff;
    object-position: center;
    object-fit: cover;
}
.Service-hero-section .section-heading{
    margin: 0;
}
.Service-hero-section .section-heading h1, .Service-hero-section .section-heading p, .what-implant .section-heading h2, .what-implant .section-heading p, .what-implant .about-content p, .Reviews-hero-section .section-heading h1, .Reviews-hero-section .section-heading p{
    color: #fff;
}
 .what-implant .about-content p{
    margin: 10px  auto 0 ;
    max-width: 100%;
 }
 .what-implant .contact-card{
    gap: 10px;
    padding: 30px;
    flex-direction: column;
    height: -webkit-fill-available;
    text-align: center;
}
 .what-implant .contact-card h4 {
    font-weight: 500;
    font-size: 25px;
}
 .what-implant .section-heading h2 {
    margin: 0 0 20px;}
.Service-hero-section p
 {margin: 0 0 30px;}
.Service-hero-section .btn-blue-Stroke{
    border: 2px solid white;
    color: white;
    padding: 10px 25px ; 
    background: transparent;
}
.what-implant .about-content{
    padding:10px 0 0;
}


/*=============================
    Services Section
==============================*/

.services-section{
    padding: 60px 0;
    background: #fff;
}

.services-section .container-fluid{
    padding: 0 5%;
}

.services-layout{
    display: flex;
    gap: 40px;
}

/*=============================
    Sticky Columns
==============================*/

.services-intro,
.services-nav, .Expertpage-doctor .doctor-image-wrapper{
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
.services-intro, .Doctor-Intro{
    flex: 0 0 35%;
    padding-right: 35px;
    border-right: 2px solid #ececec;
    height: 76vh;
}
.services-intro img{
    height: 250px ;
    width: 100%;
    border-radius: 20px;
    margin: 20px 0 0;
}
.services-nav {
    flex: 0 0 20%;
    padding-right: 35px;
    border-right: 2px solid #ececec;
    height: 76vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services-nav h3{
    font-size: 18px;
    font-family: var(--paragarph-font);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.services-content {
    padding: 50px 0 0;
    width: -webkit-fill-available;
}
/*=============================
    Navigation Card
==============================*/

.services-nav-card{
    background: #fff;
    border-radius: 24px;
}

.service-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 58px; */
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 400;
    transition: .35s;
    font-size: 17px;
    background: #ededed75;
}

.service-nav-item:last-child{
    margin-bottom: 0;
}

.service-nav-item::before{
    content: "";
    width: 4px;
    height: 0;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    left: 0;
    transition: .35s;
}

.service-nav-item:hover{
    background:#F3F8FF;
    color: var(--primary-color);
}

.service-nav-item.active{
    background:var(--primary);
    color: #fff;
    font-weight:600;
}

.service-nav-item.active::before{
    height:70%;
}

/*=============================
    Right Content
==============================*/

.service-block{
    padding-bottom:60px;
}
.service-block img{
    width: 100%;
    height: 250px;
    margin: 30px 0 0;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.service-block h2{
    font-size: 35px ;
}
.service-block p{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-block .buttons{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 0;
}

.service-block:last-child{
    padding-bottom:0;
}
.Service-hero-inner {
    padding: 60px 0;
}
.Service-hero-inner .align{
    display: flex;
    align-items: center;
}
.Service-hero-inner .align img{
    border-radius: 25px;
    border: 4px solid #ececec;
}
.Service-hero-inner .align .content-sec{
    padding-left: 40px;
}
.content-sec .buttons{
    margin-top: 20px ;
    display: flex;
    gap: 20px;
}
.TreatmentSwiper {
    overflow: visible;
}
.TreatmentSwiper .swiper-pagination{
    position: relative;
    margin: 40px 0 0 ;
}
.service-procedure{
    overflow: hidden;
}
.emergency-cta {
    background: linear-gradient(45deg, #1e3794, #0c3b6d);
    padding: 0 0 40px;
}
.emergency-cta-wrapper {
    display: flex;
    align-items: flex-start;
}
.emergency-cta img{
    border-radius: 0px 0px 100px 100px;
    width: auto;
    height: 250px;
}
.emergency-content .btn-blue-Stroke{
    border: 2px solid white;
    padding: 10px 25px ;
    color: white;
    background: transparent;
}
.emergency-content .section-tag{
    margin: 20px 0 10px;
}
.emergency-content {
    text-align: center;
    padding: 20px 0;
}
.emergency-content h2{
    color: #fff;
    margin-top: 0;
}
.emergency-content p{
    color: #fff;
    margin: 0 0 15px;
}
.emergency-content ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
} 
.emergency-content ul li{
    padding: 10px 20px;
    background: #ffffff14;
    border-radius: 100px;
    font-family: var(--paragarph-font);
    color: #fff;
    font-weight: 500;
}
.call-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: #0c3b6d;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.call-btn:hover{
    transform: translateY(-2px);
}
.aboutpage-doctor .doctor-image-wrapper{
    position: relative;
}
.aboutpage-doctor .doctor-quote {
    margin: 0 23px;
    padding: 12px 25px;
    background: #1e3794ed;
    border-left: navajowhite;
    border-radius: 12px;
    color: #ffffff;
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    font-family: var(--heading-font);
    width: fit-content;
    font-weight: 600;
    position: absolute;
    bottom: 20px;
    width: 90%;
    text-align: center;
}
.about-banner img {
    width: 80%;
}
.aboutpage-doctor .doctor-highlights {
    margin: 20px 0 20px;
}
.aboutpage-doctor p{
    margin: 0 0 30px;
}
.aboutpage-trust .about-content p{
    overflow: visible;
    display: inherit;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
}
.aboutpage-trust {
    background: #eff5fb;
}
.aboutpage-trust .section-tag{
    background: rgb(255 255 255);
    margin: 0;
    color: var(--dark);
}
.aboutpage-trust .about-content h2, .aboutpage-trust .trust-item h3, .aboutpage-trust .trust-item p{
    color: var(--dark);
}
.aboutpage-trust .trust-item:hover h3, .aboutpage-trust .trust-item:hover p {
    color: #fff;
}
.aboutpage-trust .about-content p{
    color: #667085;
}
.aboutpage-trust .trust-item {
    background: rgb(30 55 148 / 7%);
}
.aboutpage-trust .about-content {
    padding-bottom: 0px;
}
.aboutpage-trust .trust-item::after{
    background: var(--dark);
}
.aboutpage-trust::before {
    background: rgb(255 255 255);
}
.aboutemergency-cta {
    padding: 20px 0 55px;
}
.aboutemergency-cta p {
    color: #fff;
    margin: 0 auto 30px;
    max-width: 100%;
}
.about-gallery{
    padding:60px 0;
}

.about-gallery img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:20px;
}

.about-gallery .row{
    row-gap:25px;
}
.image-wrapper-2{
    /* width:700px; */
    margin:auto;
    position:relative;
}

.beer-slider{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.beer-slider > img,
.beer-reveal img{
    width:100%;
    display:block;
}

.beer-reveal{
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:-webkit-fill-available;
    overflow:hidden;
}

/* .beer-reveal img{
    width:100%;
    height:100%;
    object-fit:cover;
} */
.beer-reveal img{
    position:absolute;
    top:0;
    left:0;
    width:fit-content;
    max-width:none;
    height:100%;
    object-fit:cover;
}
.beer-range{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:ew-resize;
    z-index:5;
}

.beer-handle{
    position:absolute;
    top:0;
    left:50%;
    width:4px;
    height:100%;
    background:var(--dark);
    z-index:4;
    transform:translateX(-50%);
}

.beer-handle:before{
    content:"⇄";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--dark);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.before-label, .after-label {
    position: absolute;
    top: 20px;
    z-index: 10;
    background: #1e3794;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    font-family: var(--paragarph-font);
}

.before-label{
    left:20px;
}

.after-label{
    right:20px;
}
.about-gallery::before{
    display: none;
}
.contactpage .contact-location-info {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.contactpage .contact-location-info .contact-card {
    flex: 0 1 300px;
}
.location {
    background: linear-gradient(180deg, var(--dark) 50%, transparent 40%);
    padding: 0px 0 20px;
    position: relative;
}
.location .office-map iframe {
    box-shadow: 0px 3px 20px #1e37932b;
}
.contactpage .section-tag{
    margin-bottom: 0;
}
.contactpage-form {
    padding: 40px 0 60px;
    background: white;
}
.contactpage-form::after, .contactpage-form::before{
    display: none;
}
.Candidate img{
    height: 400px;
    width: 90%;
    object-fit: cover;
    object-position: left;
    border-radius: 30px;
    float: right;
}
.types .treatment-card {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}
.types .treatment-card:hover {
    background: var(--dark);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.types .treatment-card h3{
    margin: 0 0 5px;
}
.types  .treatment-card p{
    margin: 0;
}
.procedure-steps{
    background: white;
}
.wisdom-tooth-cndid{
    margin: 0 auto !important;
    float: none !important;
    display: flex;
    object-position: center !important;
}
.IV-Sed-highlights .doctor-highlights {
    grid-template-columns: repeat(1, 1fr);
}
.Reviews-hero-section{
    background: #073894;
    padding: 50px 0;
    overflow: hidden;
}
.Reviews-hero-section .review-summary {
    background: #ffffff1a;
}
.Reviews-hero-section .btn-blue-Stroke {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.reviews-list{
    padding: 50px 0;
}
.reviews-list .review-card p {
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
    transition: all .4s ease;

}
.reviews-list .review-card{
    margin: 0 0 30px;
}
.reviews-list .review-text.expanded  {
    -webkit-line-clamp: unset !important;
    overflow: visible;
    height: fit-content;
}
.instruction-card ul{
    display: grid;
    grid-template-columns: repeat(2, 2fr) !important;
    list-style: none;
    padding: 0;
    margin: 0;
    row-gap: 10px;
    column-gap: 20px;
}
.instruction-card{
    padding: 10px 0 20px ;
    border-bottom: 2px solid #ececec;
}
.instruction-card ul li{
    padding: 10px 20px;
    background: aliceblue;
    border-radius: 13px;
    font-size: 16px;
    font-family: var(--paragarph-font);
    transition: all 0.4ms ease;
}
.instruction-card h3 {
    font-family: var(--paragarph-font);
    font-size: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 0 5px;
    color: #073894;
}

.instruction-card h3 i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  background: linear-gradient(135deg, #eff8eb, #e4f1de);
    color: var(--primary);
    border-radius: 12px;
}
.instruction-card .instruction-highlight {
    padding: 15px 20px;
    background: #f1f8ff;
    border-radius: 10px;
}
.instruction-card .instruction-highlight h4{
    font-size: 18px;
    font-family: var(--paragarph-font);
    margin: 0 0 10px;
}
.instruction-card .instruction-highlight ul{
    display: flex;
}
.instruction-card .instruction-highlight ul li {
    background: rgb(255, 255, 255);
    width: -webkit-fill-available;
}
.instruction-card .instruction-highlight ul li:hover, .instruction-card ul li:hover {
    background: var(--dark);
    color: #fff;
    width: -webkit-fill-available;
}
.pre-opnav{
    flex: 0 0 30%;
}
.pre-operative .service-block p{
    max-width: 100%;
}

.pre-operative .services-content {
    padding: 0 0 0;
}
.areas-serve-section{
    padding: 60px 0;
    overflow: hidden;
}
.areas-serve-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.areas-serve-section ul li .treatment-card {
    padding: 10px 21px;
}
.areas-serve-section ul li .treatment-card h3{
    margin: 0 !important;
    line-height: normal;
}
.scroll-top-progress {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.scroll-top-progress.active {
    opacity: 1;
    visibility: visible;
}

.progress-ring {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-bg,
.progress-bar {
    fill: none;
    stroke-width: 3;
}

.progress-bg {
    stroke: rgba(255,255,255,.15);
}

.progress-bar {
    stroke: var(--primary-color, #1f4e79);
    stroke-linecap: round;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset .15s linear;
}

.scroll-top-btn {
    position: absolute;
    inset: 6px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color, #1f4e79);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.why-loaction li, .Paper-Form h2{
    margin: 0 0 10px;
}
.why-loaction li:last-child, .content-categories p {
    margin: 0;
}
.area-service .treatment-card p{
    display: block;
    margin: 0;
}
.image-sec img{
    border-radius: 20px;
}
.Paper-Form {
    background: #f2f7ff;
    padding: 20px 20px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 50px 0 0;
}
.Paper-Form p{
    margin: 0 auto 25px;
}
.doctor-section .Expertpage-doctor{
    display: flex;
    justify-content: space-between;
}
.doctor-section .Expertpage-doctor .doctor-image-wrapper{
    position: sticky;
    width: 36%;
}
.doctor-section .Expertpage-doctor .doctor-content{
    width: 62%;
    margin: 0;
}
.content-categories h3{
    font-size: 22px;
    font-family: var(--paragarph-font);
    font-weight: 600;
}
.content-categories .doctor-highlights {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 10px 0 0;
}
.content-categories .procedure-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    margin: 20px 0;
}
.content-categories .doctor-highlights .highlight-item {
    padding: 12px 18px;
}
.doctor-section .Expertpage-doctor .doctor-quote {
    position: static;
    margin: 10px auto 14px;
}
.doctor-section .Paper-Form p{
    margin: 0 !important;
    max-width: 100%;
}
.Team-member-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
}
.Team-card{
    padding: 15px;
}
.Team-card img{
    border-radius: 14px;
    margin: 0 0 15px;
}
.Team-card .team-content h3{
    font-size: 22px;
    font-family: var(--paragarph-font);
    font-weight: 600;
    margin: 0;
}
.What-TMF .doctor-highlights {
    display: flex;
    gap: 15px;
    margin: 20px 0 0px !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.What-TMF .doctor-highlights .highlight-item:hover {
    background: #f8fbfd;
}
.What-TMF .doctor-highlights .highlight-item:hover span {
    color: var(--dark);
}
.What-TMF .doctor-highlights .highlight-item span {
    color: #ffffff;
}
.What-TMF .doctor-highlights .highlight-item {
    padding: 10px 18px !important;
    background: #f8fbfd2b;
    border: 1px solid #edf2f730;
}
.symtoms-TMF h3{
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2.5px;
}
.What-TMF-effect .doctor-highlights {
    grid-template-columns: repeat(3, 1fr);
}
.container-img-card {
 
  width: 100%;
  
  margin: 0 auto;
}
.modal.show{
    display: block;
    background: #0c0c0cc9;
}

.container-img-card{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.card {
  color: #252a32;
  padding: 0;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
.card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
.card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#galleryImageModal .modal-dialog {
  max-width: min(95vw, 1200px);
}

#galleryModalImage {
  display: block;
  width: 100%;
  height: calc(100vh - 8rem);
  height: calc(100svh - 8rem);
  object-fit: contain;
  margin: 0 auto;
}
/* ====================================
   small screens
==================================== */

@media (min-width: 1600px){
    .treatment-card-head img {
    height: 300px;
    
}
.container-img-card{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
} 
@media (max-width: 1550px) {
    .navbar-brand img {
        max-height: 56px !important;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .procedure-card {
        padding: 30px 13px 20px !important;
    }

    .trust-bar .about-content h2,
    .section-heading h2, .section-heading h1,
    .doctor-section .head-text h2, h2 {
        font-size: 40px;
        font-weight: 600 !important;
    }
    .treatment-card .consult-btn{
        left: 27%;
    }
    .what-implant .contact-card h4 {
    font-weight: 500;
    font-size : 22px;
}
.header-btns a{
    font-size: 14px !important;
}
.nav-link{
    padding: 0 !important;
}
}

@media (max-width: 1300px) {
    .Team-card .team-content h3 {
    font-size: 18px;
}
    .navbar-brand img {
        max-height: 50px !important;
    }

    .nav-link {
        font-size: 14px !important;
       
    }

    .btn-blue-filled,
    .btn-blue-Stroke {
        font-size: 14px !important;
        line-height: 18px !important;
        padding: 8px 20px !important;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px !important;
        line-height: 30px !important;
    }

    .hero-content p {
        font-size: 17px;
        color: var(--text);
        line-height: 30px;
    }

    .trust-bar .about-content h2,
    .section-heading h2, .section-heading h1,
    .doctor-section .head-text h2, h2 {
        font-size: 35px;
    }

    p {
        line-height: 25px !important;
        font-size: 15px !important;
    }

    .highlight-item {
        padding: 12px 15px !important;
    }

    .highlight-item span {
        font-size: 15px !important;
    }

    .treatment-card h3,
    .why-card h3 {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }

    .treatment-icon,
    .why-icon {
        width: 60px !important;
        height: 60px !important;
    }
    .services-intro{
        flex: 0 0 30%;
    }
    .services-intro h2, .service-block h2{
        font-size: 30px;
    }
    .services-nav{
        flex: 0 0 25%;
    }
    .services-intro, .services-nav {
    top: 80px;
}
.services-intro img {
    height: 170px;
}
.service-nav-item {
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 15px;
}
.cta-content h2 {
    font-size: 46px;
    line-height: 45px;
}
}
@media(min-width: 992px) and (max-width: 1200px){
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0 !important;

}
    .header-btns a {
        font-size: 13px !important;
    }
        .btn-blue-filled, .btn-blue-Stroke {
        padding: 10px 20px !important;
    }
.trust-bar .about-content h2, .section-heading h2, .section-heading h1, .doctor-section .head-text h2, h2 {
        font-size: 29px;
    }
    .apointment-highlights {
    margin-top: 25px;
    grid-template-columns: repeat(1, 3fr) !important;
}
.process-step h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.contact-location-info {
    grid-template-columns: repeat(1, 1fr) !important;
}
.contact-card {
    padding: 6px 10px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.contact-icon i {
    font-size: 15px;
}
.contact-location-section .section-tag{
    margin: 0 ;
}
.review-summary {
    padding: 20px 25px;
}
.rating-number {
    font-size: 50px;
}
.review-summary h3 {
    font-size: 25px;
}
.site-footer h4 {
    margin-bottom: 12px;
    font-size: 18px;
}
.cta-content h2 {
    font-size: 45px;
    line-height: 50px;
    margin: 10px 0 20px;
}
.areas-serve-section ul {
    gap: 10px;
}

}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 1000px) {
    body {
        padding-bottom: 60px;
    }
    /* .container-fluid {
        padding: 0 4%;
    } */

    .hero-section {
        padding: 40px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
        text-align: center;
        line-height: 48px;
        margin: 0 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-buttons a {
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        text-align: center;
    }

    .hero-tag {
        text-align: center;
        margin: 0 auto 20px;
    }

    .imageSwiper img {
        height: 270px;
        border-radius: 15px;
    }

    .procedure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-left,
    .topbar-right {
                justify-content: space-around;
        flex-wrap: wrap;
                gap: 58px;
    }

    .procedure-grid {
        padding: 0px !important;
        grid-template-columns: repeat(2, 3fr) !important;
        gap: 10px !important;
    }

    .procedure-card {
        padding: 20px 10px !important;
    }

    .mobile-fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 12px;
        display: flex;
        gap: 10px;
        z-index: 999;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.24);
    }

    .mobile-fixed-cta a {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 10px;
        border-radius: 100px;
        font-weight: 600;
    }

    .btn-blue-Stroke {
        border: 2px solid var(--dark);
        color: var(--dark);
        background: #fff;
    }

    /* .btn-blue-filled {
        background: var(--dark);
        color: #fff;
    } */

    .btn-blue-filled:hover,
    .btn-blue-Stroke:hover {
        color: inherit;
    }

    .mobile-fixed-cta .btn-blue-Stroke {
        flex: 0 0 40%;
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .mobile-fixed-cta .btn-blue-filled {
        flex: 0 0 calc(60% - 10px);
        background: white;
        color: var(--dark);
    }

    .procedure-section {
        margin: 20px 0 0;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0px !important;
        padding: 0 !important;
    }

    .trust-bar {
        padding: 45px 0 40px;
    }

    .trust-bar .about-content h2,
    .section-heading h2, .section-heading h1,
    .doctor-section .head-text h2 {
        font-size: 26px;
        line-height: 35px;
        margin: 0 0 10px;
    }

    .trust-item {
        border: 1px solid #ffffff42;
        padding: 30px 15px;
    }

    .about-content .btn-blue-Stroke {
        background: transparent;
    }

    .treatment-section,
    .doctor-section,
    .why-choose-section,
    .reviews-section,
    .faq-section {
        padding: 40px 0;
    }

    .treatment-card-head {
        display: flex;
        gap: 0px;
        align-items: center;
        margin-bottom: 10px !important;
        flex-direction: column;
    }

    .trust-item h3 {
        font-size: 30px !important;
        margin: 0 !important;
    }

    .treatment-card {
        padding: 20px;
    }

    /* .treatment-icon i {
        font-size: 25px;
    } */

    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        margin: 0 0 25px;
    }

    /* .treatment-icon {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 0px !important;
    } */

    .treatment-card h3 {
        font-size: 20px !important;
        margin-bottom: 0px !important;
    }

    .doctor-highlights {
        grid-template-columns: repeat(1, 1fr) !important;
        margin: 10px 0 30px !important;
    }

    .doctor-image-wrapper img{
        margin: 0 auto 30px !important;
        width: auto;
        height: 500px;
    }
    .doctor-quote {
        width: 90% !important;
        margin: 0 auto 30px !important;
    }

    .doctor-name {
        font-size: 25px;
    }

    .why-choose-section .section-heading h2,
    .reviews-section .section-heading h2,
    .faq-section .section-heading h2 {
        margin-top: 15px;
    }

    .doctor-content {
        margin: 0;
        text-align: center;
    }

    .why-card {
        padding: 15px;
    }

    .why-icon {
        margin-bottom: 14px;
    }

    .why-number {
        top: 0px;
        right: 21px;
        font-size: 40px;
    }

    .review-summary {
        padding: 25px 25px;
        text-align: center;
    }

    .rating-number {
        font-size: 50px;
    }

    .rating-stars {
        margin: 7px 0 10px;
    }

    .review-summary h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .review-card {
        padding: 20px;
        text-align: center;
    }

    .faq-section .accordion-button.collapsed {
        padding: 13px 20px;
    }

    .cta-content h2 {
        font-size: 38px;
        line-height: 47px;
    }

    .cta-buttons .btn-blue-Stroke {
        background: transparent;
    }

    .division {
        margin-top: 35px;
        padding-top: 30px;
        gap: 20px;
    }

    .footer-about,
    .site-footer h4 {
        TEXT-ALIGN: center;
    }

    .footer-social {
        justify-content: center;
    }

    .site-footer ul li {
        margin-bottom: 12px;
        padding: 10px;
        background: #ffffff0f;
        border-radius: 15px;
        text-align: center;
    }

    .shifft-left {
        padding-left: 0px !important;
    }

    .footer-bottom-wrap {
        flex-direction: column;
    }

    .footer-bottom p {
        text-align: center;
    }
    .footer-bottom-links a{
            background-color: #16449a;
    padding: 8px 15px;
    border-radius: 10px;
    }
.footer-bottom-links a:last-child {
  grid-column: 1 / -1;
  text-align: center;
}
    .footer-bottom-links {
         display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  row-gap: 12px;
  width: 100%;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 20px 0 30px;
    }

.apointment-info .apointment-highlights{
    grid-template-columns: repeat(1, 1fr) !important;
}
    .Service-hero-section img {
        width: 100%;
        height: 250px;
        box-shadow: 0 0 0px 5px #fff;
        margin: 30px 0 0;
    }
.Service-hero-section .section-heading{
    margin: 0 0 40px;
}
.services-layout {
    gap: 20px;
    flex-direction: column;
}
.services-intro {
    position: relative;
    flex: 0 0 100%;
    padding-right: 0;
    border-right: none;
    height: auto;
    top: 0;
}
.services-nav .support{
    display: none;
}
    .emergency-cta .image-area {
        display: flex;
        justify-content: center;
    }
.services-nav{
    display: none;
}
.service-block {
    padding-bottom: 20px;
}
.services-content {
    padding: 0;
}
.service-block h2 {
    font-size: 25px;
    margin: 0px 0 10px;
}
.TreatmentSwiper .treatment-card-head {
        align-items: flex-start;
        flex-direction: column;
    }
.Service-hero-inner .align {
    flex-direction: column-reverse;
}
    .Service-hero-inner .align .content-sec {
        padding: 0px 10px;
        text-align: center;
    }
    .content-sec .buttons {
    justify-content: center;
}
    .btn-blue-filled, .btn-blue-Stroke {
        padding: 10px 25px !important;
    }
    .Service-hero-inner {
    padding: 30px 0 40px;
}
.Service-hero-inner .align img {
        border-radius: 25px;
        border: 4px solid #ececec;
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
    .emergency-content {
    text-align: center;
    padding:10px 0px 0; 
}
.emergency-content h2 {
    font-size: 25px;
}
.Service-hero-section {
    padding: 10px 0 20px;
}
.aboutpage-trust::before{
    display: none;
}
.aboutpage-trust .section-tag{
    margin: 0 0 20px;
}
/* .aboutpage-doctor{
    display: flex;
    flex-direction: column-reverse;
} */
.aboutpage-doctor .doctor-image-wrapper img, .doctor-quote {
        width: 100% !important;
        margin: 0 auto 30px !important;
        position: relative !important;
        bottom: inherit !important;
    }
    .trust-bar .about-content h2, .section-heading h2, .doctor-section .head-text h2, h2, .section-heading h1 {
        font-size: 30px;
    }
.contactpage .contact-location-info {
    grid-template-columns: repeat(2, 1fr) !important;
}
.what-implant .contact-card {
    padding: 20px;
}
.what-implant .contact-card h4 {
    font-size: 20px;
}
.Candidate img{
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 20px;
    float: right;
}
.all-on-types .why-card {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}
.faq-section .accordion-button, .faq-section .accordion-button.collapsed{
    font-size: 15px;
    line-height: 21px;
}
.Candidate, .Candidate .highlight-item{
    text-align: center;
    justify-content: center;
} 
.areas-serve-section ul li .treatment-card {
    border-radius: 20px;
    padding: 15px 25px;
    border: 1px solid #edf2f7;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.05);
}
.areas-serve-section ul li .treatment-card h3 {
        font-size: 17px !important;
    }
.areas-serve-section .office-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    border-radius: 17px;
}
.areas-serve-section ul {
    gap: 14px;
}
.emergency-cta-wrapper {
    align-items: center;
    flex-direction: column-reverse;
}
.about-banner .content-sec{
    padding-right: 7% !important;
    text-align: center;
}
.footer-about p {
    padding-right: 0px;
}
.Team-member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
}
.doctor-section .aboutpage-doctor {
    flex-direction: column;
}
.doctor-section .doctor-image-wrapper{
    position: relative;
    width: 100%;
    top: 0;
}
.doctor-section .doctor-content {
    width: 100%;
}
.content-categories .doctor-highlights .highlight-item{
    justify-content: center;
}
.content-categories .procedure-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin: 20px 0;
}
.doctor-section .Paper-Form{
    margin: 0;
}
.scroll-top-progress {
    bottom: 80px;
}
.symtoms-TMF h3 {
    font-size: 17px;
    letter-spacing: 0;
}
.padd-above{
    padding-top: 20px ;

}
}

@media (max-width: 767px) {
    .treatment-card .consult-btn{
        display: none !important;
    }
    .instruction-card .instruction-content h3 {
        position: relative;
        cursor: pointer;
        padding-right: 22px;
        margin-bottom: 0;
        font-size: 17px;
        color: #073894;
    }
    .instruction-card ul li {
        margin-bottom: 12px;
    }
    .instruction-card .instruction-content h3::after {
        content: "";
        width: 16px;
        height: 16px;
        position: absolute;
        right: 0;
        top: 50%;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 16px;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    .instruction-card .instruction-content.open h3::after {
        transform: translateY(-50%) rotate(-180deg);
    }
    .instruction-card {
        padding: 4px 9px;
        margin-bottom: 14px;
        border: 1px solid #07389466;
        border-radius: 14px;
        margin-top: 10px;
    }
    .instruction-card h3 i {
        flex-shrink: 0;
        width: 39px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
       
        border-radius: 12px;
    }
    .footer-acco-collapse {
        margin-top: 0;
        background-color: #073180;
        padding: 10px !important;
        border-radius: 10px;
    }
    .instruction-card .instruction-content > *:not(h3) {
        display: none;
    }
    .instruction-card .instruction-content.open > *:not(h3) {
        display: block;
                margin-top: 8px;
    }
    .doctor-section .Expertpage-doctor {
        flex-direction: column;
    }
    .doctor-section .Expertpage-doctor .doctor-image-wrapper {
        position: static;
        width: 100%;
    }
    .doctor-section .Expertpage-doctor .doctor-image-wrapper img {
        width: 100%;
        height: auto;
        margin: 0 auto 20px !important;
    }
    .doctor-section .Expertpage-doctor .doctor-content {
        width: 100%;
    }
    .content-categories .procedure-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .instruction-card ul {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .instruction-card .instruction-highlight ul {
        flex-direction: column;
    }
    .areas-serve-section ul li {
        flex: 0 0 calc(50% - 7px);
    }
    .areas-serve-section ul li .treatment-card {
        width: 100%;
        border-radius: 10px;
        padding: 15px 10px;
        border: 1px solid #0738943b;
        box-shadow: none;
    }
    .footer-acco-item {
        border-bottom: 1px solid gray;
        padding: 0px;
    }
    .site-footer h4 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .Service-hero-section .hero-tag {
        display: none;
    }
    .Service-hero-section .btn-blue-Stroke {
        display: none;
    }
    .Service-hero-section .section-heading h1 {
        padding-right: 20px;
        text-align: center;
    }
    .Service-hero-section .section-heading p {
        padding-right: 20px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-book,
    .hero-buttons .btn-call {
        width: 100%;
        text-align: center;
    }
    .service-block img {
    height: 200px;
    border: 4px solid #ececec;
}
/* .emergency-cta-wrapper {
    align-items: center;
    flex-direction: column-reverse;
} */
.image-area {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.contactpage .contact-location-info {
    grid-template-columns: repeat(1, 1fr) !important;
}
.faq-section .accordion-button, .faq-section .accordion-button.collapsed{
        font-size: 17px;
        line-height: 25px;
        gap: 5px;
    }
    .faq-section .accordion-body{
        font-size: 14px;
        line-height: 21px;
    }
.trust-item h3 {
        font-size: 25px !important;
        margin: 0 !important;
        line-height: 37px !important;
    }
.cta-content h2 {
        font-size: 22px;
        line-height: 25px;
        margin: 10px 0 20px;
    }
.Candidate{
    text-align: center;
}
.trust-bar .about-content h2, .section-heading h2, .doctor-section .head-text h2, h2, .section-heading h1 {
        font-size: 25px;
    }
    
    .doctor-image-wrapper img {
        height: 400px;
    }
    .emergency-content ul {
    flex-direction: column;
}
}

@media(max-width:991px) {
    .content-sec .section-heading{
        text-align: center !important;
    }

    .content-sec .section-tag{
        margin: 0;
        text-align: center;
        /* display: flex; */
        /* justify-content: center; */
        display: flex;
        justify-content: center;
        width: 160px !important;
        /* justify-content: center; */
        margin: 0px auto 4px !important;
    }
    .service-block img {
    height: 300px;
    border: 4px solid #ececec;
}

    .appointment-info .hero-tag,
    .appointment-highlights {
        display: none;
    }

    .appointment-modal {
        width: 100%;
        height: 100vh;
        max-width: none;
        border-radius: 0;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
        height: 100%;
        overflow: auto;
    }

    .appointment-info {
        padding: 0 30px 20px;
    }

    .appointment-form-wrap {
        padding: 30px;
    }

    .appointment-info h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .topbar-right{
        display:none;
    }
.instruction-card .instruction-highlight{
        padding: 9px 11px;
}
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    }

    .internal-hero-section::after,
    .internal-hero-section::before,
    .apointment-highlights,
    .apointment-info h5 {
        display: none;
    }

    .contact-location-info {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .internal-hero-section {
        padding: 40px 0 30px;
    }

    .internal-hero-section .section-heading {
        margin: 0 auto 20px;
        text-align: center;
        padding: 0;
    }

    .section-heading h2 {
        margin: 20px 0 10px;
    }

    .section-tag {
        margin: 0;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .apointment-form-wrap {
        border-radius: 25px;
        border: 4px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
    }
}

/* Mobile */

@media (max-width: 767px) {
   
    .process-section {
        padding: 40px 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        text-align: left;
        padding: 25px;
        position: relative;
    }

    .process-icon {
        margin: 0 0 20px;
        width: 70px;
        height: 70px;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .process-icon i {
        font-size: 24px;
    }

    .process-number {
        font-size: 50px;
        margin-bottom: 5px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p, .Service-hero-section .section-heading {
        max-width: 100%;
        margin: 0;
    }
    .content-sec .buttons {
               margin: 0 0px 17px;
    flex-direction: column;
    align-items: center;
}
.treatment-card h3, .why-card h3 {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }
    .Team-member-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
    margin-top: 20px;
}
.Team-card .team-content h3 {
        font-size: 15px;
    }
.Team-card {
    padding: 0px;
}

    .navbar-expand-lg .navbar-nav .show.treatment {
    display: grid;
    column-gap: 13px;
    grid-template-columns: repeat(2, 1fr);
}

/* Footer collapse (all viewports) */
.footer-acco-header {
    position: relative;
    cursor: pointer;
    padding-right: 25px;
}

.footer-acco-header::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.footer-acco-header:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.footer-acco-collapse {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .footer-acco-header {
        cursor: default;
        pointer-events: none;
    }

    .footer-acco-header::after {
        display: none;
    }

    #footerQuickLinks.collapse,
    #footerProcedures.collapse {
        display: block !important;
    }
}