/* =========================================================
   ROOT VARIABLES & GLOBAL SETTINGS
   ========================================================= */
:root {
    --yellow: #cdb202;
    --logo-yellow: #ffc900;
    --bs-font-montserrat: "Montserrat", serif;
    --bs-font-archivo: "Archivo Black", serif;
    --light-orange-shade: #fff3e6;
    --blue: #87d6f7;
    --text-color: #5e5e5d;
    --light-gray: #ededed;
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --dark-blue: #0079ca;
    --gray: #909091;
    --light-gray: #efefef;
    --text-color-gray: #292f36;
    --text-color-dark-gray: #292f36;
    --light: #cce4f5;
    --info: #0075ba;
    --warning: #f9aa0b;
    --white: #fff;
    --text-dark: #212529;
    --google: #ea4335;
    --facebook: #1877f2;
    --twitter: #1da1f2;
    --youtube: #ff0000;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --instagram: #e1306c;
    --yelp: #af0606;
    --sharecare: #1aba9c;
    --healthgrades: #0202ea;
    --covid-info-bg: #ffed76;
    --covid-info-color: #8a6d3b;
    --implants-gray-color: #808184;
    --guru-gray-color: #6d6e70;
    --screw-gray-color: #58595b;
    --gray-6c6c6c: #6c6c6c;
    --Carattere-font: 'Carattere', cursive;

    /* Brand + glass UI */
    --primary-brand: #f0b90b; /* gold */
    --primary-dark: #c28b00;
    --text-light: #fff;
    --text-muted: #d7d7d7;
    --glass-background: rgba(18, 18, 18, .55);
    --dropdown-background: rgba(255, 255, 255, 0.96);
    --hover-background: rgba(255, 255, 255, .07);
    --glass-border: rgba(255, 255, 255, .16);
}

/* Global scroll behaviour override (for JS scroll effects) */
html,
body {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
    overscroll-behavior: none;
    height: auto !important;
}

/* Slight performance helper for reveal animations */
.reveal {
    will-change: transform;
    transform: translateZ(0);
}

/* =========================================================
   FONTS & BASE TYPOGRAPHY
   ========================================================= */

/* Custom font */
@font-face {
    font-family: 'Artifact';
    src: url('artifact_2/Artifact.otf') format('opentype');
    font-display: swap;
}

.text-yellow {
    color: var(--yellow);
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.ph-num {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-decoration: none;
}

strong {
    font-weight: 500 !important;
}

/* General helper classes */
.text-brown {
    color: var(--yellow);
}

.sp-hidden {
    display: none;
}

.max-width {
    max-width: 1700px;
}

/* =========================================================
   BUTTON STYLES (btn2, btn3, btn4 + helpers)
   ========================================================= */

.btn2 {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--yellow);
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px;
    padding: 8px 27px;
    text-decoration: none;
    border: 1px solid var(--yellow);
    background: none;
    border-radius: 0;
    transition: 0.5s;
}

.btn2.btn2-custom::before,
.btn2.btn2-custom::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: 0.5s;
}

.btn2.btn2-custom::before {
    bottom: -5px;
    right: -5px;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
}

.btn2.btn2-custom::after {
    top: -5px;
    left: -5px;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}

.btn2.btn2-custom:hover::after,
.btn2.btn2-custom:hover::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-color: var(--yellow);
}

.btn2.btn2-custom:hover {
    background: var(--yellow);
    color: #fff;
}

/* Button 3 (filled → outline on hover) */
.btn3 {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 27px;
    text-decoration: none;
    border: 1px solid var(--yellow);
    background: var(--yellow);
    border-radius: 0;
    transition: 0.5s;
}

.btn3.btn3-custom::before,
.btn3.btn3-custom::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    transition: 0.5s;
    border-color: var(--yellow);
}

.btn3.btn3-custom::before {
    bottom: -5px;
    right: -5px;
    border-bottom: 1px solid var(--yellow);
    border-right: 1px solid var(--yellow);
}

.btn3.btn3-custom::after {
    top: -5px;
    left: -5px;
    border-top: 1px solid var(--yellow);
    border-left: 1px solid var(--yellow);
}

.btn3.btn3-custom:hover::after,
.btn3.btn3-custom:hover::before {
    width: 0;
    height: 0;
    border-color: transparent;
}

.btn3.btn3-custom:hover {
    background: none;
    color: var(--yellow);
}

/* Button 4 (white variant) */
.btn4 {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 27px;
    text-decoration: none;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 0;
    transition: 0.5s;
}

.btn4.btn4-custom::before,
.btn4.btn4-custom::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    transition: 0.5s;
    border-color: #fff;
}

.btn4.btn4-custom::before {
    bottom: -5px;
    right: -5px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.btn4.btn4-custom::after {
    top: -5px;
    left: -5px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

.btn4.btn4-custom:hover::after,
.btn4.btn4-custom:hover::before {
    width: 0;
    height: 0;
    border-color: transparent;
}

.btn4.btn4-custom:hover {
    background: none;
    color: #fff;
}

/* Appointment primary button hover */
.appointment-btn:hover {
    background: #6fa035;
}

/* Service contact button overrides */
.service-contactbtn .btn3 {
    color: #fff !important;
}

.service-contactbtn .btn3:hover {
    color: var(--yellow) !important;
}

.service-contactbtn .btn2 {
    color: var(--yellow) !important;
}

.service-contactbtn .btn2:hover {
    color: #fff !important;
}

/* =========================================================
   NAVBAR (GLASS STYLE)
   ========================================================= */

.custom-navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #00000080;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
    z-index: 1000;
}

/* Brand logo */
.custom-brand img {
    width: 65%;
    height: auto;
    display: block;
    transition: transform .25s ease;
}

.custom-brand:hover img {
    transform: scale(1.04);
}

/* Desktop nav menu */
.custom-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.custom-nav-item {
    position: relative;
}

.custom-nav-link {
    position: relative;
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: .7rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.custom-nav-link:hover,
.custom-nav-link.active {
    color: var(--yellow);
}

.custom-nav-link::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .38rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-brand), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.custom-nav-link:hover::before,
.custom-nav-link.active::before {
    transform: scaleX(1);
}

/* Dropdown */
.custom-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .35rem;
    cursor: pointer;
}

.custom-dropdown-arrow {
    transition: transform .25s ease;
    font-size: .8rem;
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + .65rem);
    left: 0;
    min-width: 280px;
    padding: .75rem;
    border-radius: 14px;
    background: var(--dropdown-background);
    border: 2px solid rgba(240, 185, 11, .9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 12px rgba(240, 185, 11, .25) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1001;
}

.custom-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: var(--dropdown-background);
    border-left: 2px solid rgba(240, 185, 11, .9);
    border-top: 2px solid rgba(240, 185, 11, .9);
    transform: rotate(45deg);
}

.custom-dropdown.open > .custom-dropdown-toggle .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown.open > .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem .8rem;
    border-radius: 10px;
    text-decoration: none;
    color: #815f00;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.custom-dropdown-item:hover {
    background: rgb(255 195 5 / 53%);
    color: #000000;
    transform: translateX(6px);
}

/* Mobile toggler */
.custom-mobile-toggler {
    display: none;
    border: 0;
    padding: .45rem;
    border-radius: 8px;
    background: rgb(240 185 11 / 0%);
    cursor: pointer;
}

.custom-mobile-toggler:hover {
    background: rgb(240 185 11 / 0%);
}

.custom-toggler-icon {
    width: 35px;
    height: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler-bar {
    height: 2px;
    background: var(--white);
    transition: transform .3s ease, opacity .2s ease, top .3s ease;
}

.custom-mobile-toggler.active .custom-toggler-bar:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.custom-mobile-toggler.active .custom-toggler-bar:nth-child(2) {
    opacity: 0;
}

.custom-mobile-toggler.active .custom-toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* Desktop dropdown hover (>= 992px) */
@media (min-width: 992px) {
    .custom-dropdown:hover > .custom-dropdown-menu,
    .custom-dropdown:focus-within > .custom-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .custom-dropdown:hover > .custom-dropdown-toggle .custom-dropdown-arrow,
    .custom-dropdown:focus-within > .custom-dropdown-toggle .custom-dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile & tablet nav (<= 991.98px) */
@media (max-width: 991.98px) {
    .custom-mobile-toggler {
        display: block;
        z-index: 1002;
        border: none;
        background: transparent;
        padding: .5rem;
    }

    .custom-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(335deg, var(--yellow), #6c757d);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        padding: 2rem 1rem;
        height: 100vh;
        z-index: 1001;
        overflow-y: auto;
    }

    .custom-nav-menu.show {
        display: flex;
        animation: menuSlideIn .3s ease forwards;
    }

    @keyframes menuSlideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .custom-nav-link {
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        padding: 1rem;
        color: #fff !important;
    }

    .custom-dropdown {
        width: 100%;
        text-align: center;
    }

    .custom-dropdown-menu {
        position: static;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease, padding .3s ease;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .custom-dropdown.open > .custom-dropdown-menu {
        max-height: 300px;
        padding: .5rem 0;
    }

    .custom-dropdown-menu::before {
        display: none;
    }

    .custom-dropdown-item {
        justify-content: center;
        text-align: center;
        color: #815f00;
        width: 100%;
    }

    .custom-dropdown-item:hover {
        background: rgb(255 195 5 / 53%);
        color: #000;
    }
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    position: relative;
    background: linear-gradient(
            1deg,
            #1c1b19 12%,
            rgba(244, 240, 233, 0) 67%
        ),
        url("/img/banner/banner-1.webp") center/cover no-repeat;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(39 39 36 / 14%);
}

.postioning {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 10px;
    top: 80px;
}

.hero h2 {
    font-size: 60px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    margin-bottom: -18px;
}

.hero h2 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
}

.hero-content p {
    font-size: 22px;
}

.img-fluidd {
    max-width: 30%;
    height: auto;
}

/* =========================================================
   INDEX / INTRO SECTION
   ========================================================= */

.index-section {
    background: url(/img/banner/grayBg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.index-section .heading-para {
    font-size: 60px;
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
}

.index-section h1 {
    color: var(--text-color);
    font-weight: 500;
    font-family: "Jost", sans-serif;
    font-size: 50px;
    text-transform: capitalize;
}

.index-section img {
    border-radius: 20px;
}

/* === Clinic interior carousel === */
.clinic-carousel-wrapper {
  width: 100%;
}

/* Rounded container + aspect ratio similar to sample */
.clinic-carousel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

/* Make image fill nicely & stay responsive */
.clinic-carousel .carousel-item {
  /* keeps a nice proportion across devices */
  aspect-ratio: 4 / 3;
}

.clinic-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom nav buttons (bottom-right) */
.clinic-carousel-nav {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.clinic-carousel-nav .nav-btn {
  width: 48px;
  height: 44px;
  border-radius: 30%;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.clinic-carousel-nav .nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  background: #f5f5f5;
}

.clinic-carousel-nav .nav-arrow {
  font-size: 30px;
 height: 48px;
  color: var(--yellow); /* blue arrow like screenshot */
}

/* Small screens: keep same look, just slightly smaller */
@media (max-width: 575.98px) {
  .clinic-carousel {
    border-radius: 24px;
  }

  .clinic-carousel-nav .nav-btn {
    width: 34px;
    height: 28px;
  }
}

/* =========================================================
   APPOINTMENT PARALLAX SECTIONS
   ========================================================= */

.appointment-section .parallax1,
.appointment-section .parallax2 {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.appointment-section .parallax1 {
    background-image: url('/img/banner/overlay1.webp');
}

.appointment-section .parallax2 {
    background-image: url('/img/banner/overlay2.webp');
}

.appointment-section .parallax1::before,
.appointment-section .parallax2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.appointment-section .parallax1::before {
    background: #bca905b5;
}

.appointment-section .parallax2::before {
    background: #434340d6;
}

.appointment-section .overlay {
    position: relative;
    z-index: 2;
}

.appointment-section .parallax1 img,
.appointment-section .parallax2 img {
    max-width: 100px;
    margin-bottom: 20px;
    position: relative;
    top: -57px;
    margin-top: -73px;
    border-radius: 50%;
    border: 2px solid #c9b10d;
}

.appointment-section .parallax2 img {
    border-color: rgb(97, 97, 95);
}

.appointment-section h2 {
    font-size: 45px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}

.appointment-section .heading-para {
    font-family: 'Artifact';
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0;
}

/* =========================================================
   SERVICE SECTIONS (HOME & SERVICE PAGE)
   ========================================================= */

.service-section {
    padding: 100px 0;
}

.styled-h2,
.service-section h2,
.banner-item-sub h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

.styled-h2 span,
.service-section h2 span,
.banner-item-sub h2 span {
    font-size: 60px;
    font-weight: 500;
    font-family: 'Artifact';
    color: var(--yellow);
}

.service-section h3 {
    font-size: 24px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

/* Service highlight card color override */
.service-card1 h2 {
    color: var(--yellow) !important;
}

.service-card1 h2:hover {
    color: var(--text-color) !important;
}

/* Service “view all” link */
.service-pageaa a {
    text-decoration: none;
    color: var(--yellow);
    font-weight: 600;
}

.service-pageaa a:hover {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

/* Service card hover block */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #cdb2020f;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 100px var(--yellow);
}

/* Service page content typography */
.service-page ul {
    padding-left: 0 !important;
}

.service-page ul li,
.service-page ol li {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 45px;
    list-style: none;
}

.service-page ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #cdb202;
    font-size: 1.2rem;
    margin-top: 2px;
    margin-right: 10px !important;
}

.service-page ul li strong,
.service-page ol li strong {
    color: var(--yellow);
    font-weight: 500;
}

.service-page h2 {
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--yellow);
    margin-bottom: 20px;
}

.service-page h3,
.service-page h4 {
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

/* Divider under service / headings */
.custom-divider {
    border: none;
    height: 4px;
    width: 580px;
    background: linear-gradient(to right, #1b1a12, #c4b897);
    border-radius: 2px;
    margin: 30px auto;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
}

/* =========================================================
   HELP SECTION
   ========================================================= */

.help-section {
    padding: 100px 0;
    background: url(/img/banner/grayBg2.jpg);
    text-align: center;
}

.help-section h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

.help-section h2 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
    font-size: 60px;
}

.help-item {
    display: flex;
    align-items: flex-start;
    text-align: start;
    margin-bottom: 40px;
}

.help-number {
    font-size: 80px;
    font-weight: 400;
    color: var(--yellow);
    margin-right: 15px;
    line-height: 1;
}

.help-content h5 {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Jost", sans-serif;
    color: var(--yellow);
}

.help-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */

.why-choose {
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") repeat,
        linear-gradient(#616060, var(--text-color));
    background-size: auto, cover;
    background-position: top left, center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.why-choose h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #fff;
    margin-bottom: 50px;
}

.why-choose h2 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.choose-card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 15px 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed #ccc;
}

.choose-icon img {
    width: 40px;
    height: auto;
}

.choose-card h5 {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: "Jost", sans-serif;
}

.choose-card p {
    font-size: 0.95rem;
    color: #555;
}

.choose-divider {
    width: 40px;
    height: 2px;
    background: #77b43f;
    margin: 10px auto 20px;
}

.choose-divider-heading {
    width: 80px;
    height: 2px;
    background: var(--yellow);
    margin: 10px auto 20px;
}

.choose-divider-heading-service {
    width: 250px;
    height: 4px;
    background: var(--yellow);
    clip-path: polygon(5% 50%, 0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    box-shadow: 0 2px 10px rgba(245, 166, 35, 0.4);
    margin-top: -14px;
    margin-bottom: 15px;
}

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */

#testimonialSection {
    padding: 70px 0 0;
    background: url(/img/banner/grayBg2.jpg);
    text-align: center;
}

#testimonialSection h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

#testimonialSection h2 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
    font-size: 60px;
}

#testimonialSection h6 {
    letter-spacing: 2px;
    font-weight: 600;
    color: #495862;
}

#testimonialSection .testimonial-item {
    padding: 20px 15px;
    max-width: 800px;
    margin: 0 auto;
}

#testimonialSection .testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

#testimonialSection .testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#testimonialSection .testimonial-author span {
    color: var(--yellow);
    font-weight: bold;
}

#testimonialSection .stars {
    color: var(--yellow);
    margin-top: 8px;
}

/* Testimonial dots */
#testimonialSection .owl-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

#testimonialSection .owl-dots .owl-dot span {
    width: 35px;
    height: 4px;
    background: #6d4c41;
    border-radius: 3px;
    display: block;
    opacity: 0.4;
    transition: all 0.3s ease;
}

#testimonialSection .owl-dots .owl-dot.active span {
    opacity: 1;
    width: 45px;
    background: #a04a3c;
}

/* =========================================================
   BEFORE & AFTER SLIDER (DERMACARE STYLE)
   ========================================================= */

.dermacare-main-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.dermacare-comparison-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dermacare-image-column {
    flex: 1;
}

.dermacare-before-after-slider {
    position: relative;
    width: 300px;
    height: 199px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
    user-select: none;
    background: #000;
    margin: 0 auto;
}

.dermacare-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.dermacare-before-image,
.dermacare-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dermacare-before-image {
    z-index: 1;
}

.dermacare-after-image {
    z-index: 2;
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
}

.dermacare-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.dermacare-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    z-index: 4;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.1s ease;
}

.dermacare-slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.6);
}

.dermacare-slider-handle:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.dermacare-slider-handle::before {
    content: '⟷';
    font-size: 18px;
}

.dermacare-image-label {
    position: absolute;
    top: 15px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}

.dermacare-before-label {
    right: 15px;
}

.dermacare-after-label {
    left: 15px;
}

.dermacare-content-area {
    padding-left: 40px;
}

.dermacare-section-tag {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.dermacare-section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    border-radius: 2px;
}

.dermacare-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(45deg, #2c3e50, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dermacare-description {
    line-height: 1.8;
}

.dermacare-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    margin-bottom: 30px;
}

.dermacare-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.dermacare-journey-text {
    font-size: 18px;
    color: #34495e;
    font-weight: 600;
    margin-top: 20px;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */

#gallerySection h6 {
    letter-spacing: 2px;
    font-weight: 600;
    color: #495862;
}

#gallerySection h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

#gallerySection h2 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
    font-size: 60px;
}

.gallerySection {
    padding: 70px 0 70px 0;
    background: url(/img/banner/grayBg1.png);
}

#gallerySection {
    padding: 70px 0 70px 0;
  
}

/* Smile gallery images/videos */
.smile-section img {
    transition: transform 0.4s ease;
    display: block;
    border-radius: 8px;
    border: 2px solid var(--yellow);
    border-radius: 20px;
}

.smile-section img:hover {
    transform: scale(1.05);
}

.smile-section video {
    transition: transform 0.4s ease;
    display: block;
    border-radius: 8px;
}

.gallery-page h3 a {
    color: var(--yellow);
    text-decoration: none;
}

.gallery-page h3 a:hover {
    color: var(--text-color);
}

/* =========================================================
   CONTACT & FORM SECTION
   ========================================================= */

.section-con {
    padding: 100px 0;
    background: linear-gradient(335deg, #d3bd3357, #fdfafa);
}

.section-con h1 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

.section-con h1 span {
    color: var(--yellow);
    font-family: 'Artifact';
    font-weight: 500;
    font-size: 60px;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0 !important;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.form-section {
    padding: 40px;
    background: linear-gradient(178deg, #cdb3055c, #ffffff);
}

.map-section {
    padding: 0;
    height: 100%;
    min-height: 400px;
}

.form-floating > .form-control {
    border: 2px solid #c9b429;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-floating > .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.form-floating > label {
    color: #6c757d;
    font-weight: 500;
}

.btn-submit {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.map-placeholder p {
    opacity: 0.9;
    margin-bottom: 0;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.contact-container h4 {
    color: #7f6e07;
    text-shadow: 2px 2px 5px rgb(205 178 2);
}

/* =========================================================
   FOOTER & FIXED ACTION BUTTONS
   ========================================================= */

footer {
    background: #fff;
    padding: 70px 0 30px 0;
}

#footerSection a {
    text-decoration: none;
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

#footerSection h4 {
    font-family: "Jost", sans-serif;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--yellow);
}

#footerSection a:hover {
    color: var(--yellow);
    text-decoration: none;
}

footer h2 {
    font-weight: 400;
    color: var(--yellow);
    font-size: 64px;
}

footer h5 {
    font-weight: 400;
    font-size: 20px;
}

footer img {
    width: 45%;
}

footer p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
}

footer .contact p {
    font-weight: 600;
    font-size: 20px;
}

footer i {
    background: var(--yellow);
    font-size: 18px;
    color: #fff;
    padding: 3%;
    border-radius: 50%;
    transition: all 0.2s ease !important;
    border: 1px solid var(--yellow);
}

footer i:hover {
    background: #fff;
    color: var(--yellow);
    transition: all 0.2s ease !important;
    border: 1px solid var(--yellow);
}

footer .last-part a {
    font-weight: 400;
    font-size: 18px;
}

footer .last-part a:hover {
    font-weight: 400;
    font-size: 18px;
    color: var(--yellow);
}

/* Back to top button */
.back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: var(--yellow);
    color: #fff;
    cursor: pointer;
    width: 49px;
    height: 44px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top-btn:hover {
    border: 2px solid var(--yellow);
    background: #fff;
    transform: scale(1.05);
    color: var(--yellow);
}

/* Footer links in text blocks */
.main-main-section p a {
    color: #000;
    text-decoration: none;
}

.main-main-section p a:hover {
    color: #3a4b73;
    text-decoration: none;
}

/* Fixed WhatsApp & Call buttons */
.fixedbutton-whatsapp {
    position: fixed;
    bottom: 110px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 9;
    background: #41c051 !important;
    border: 2px solid #fff !important;
    border-radius: 12px 12px 12px 0 !important;
}

.fixedbutton-call {
    position: fixed;
    bottom: 50px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 9;
    background: var(--yellow) !important;
    border: 2px solid #fff !important;
    border-radius: 12px 12px 12px 0 !important;
}

@keyframes shake {
    0% {
        box-shadow: 0 0 0 -3px #000000;
    }
    50% {
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
        transform: scale(1.15);
    }
    100% {
        box-shadow: 0 0 0 -3px #000000;
    }
}

.fixedbutton-whatsapp footer i {
    background: #f7c84a !important;
    font-size: 18px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease !important;
}

.fixedbutton-whatsapp footer i:hover {
    background: #f7c84a !important;
    font-size: 18px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease !important;
}

/* =========================================================
   MODALS & SPECIAL TEXT
   ========================================================= */

#vedantaModal a {
    color: var(--yellow);
    font-weight: 500;
}

#vedantaModal h4 {
    color: var(--yellow);
    font-weight: 600;
}

#appointmentModal .modal-title,
#bhavanaModal .modal-title,
#puneethModal .modal-title {
    font-family: "Jost", sans-serif;
    color: var(--yellow);
}

/* Doctor about image */
.abt-dr img {
    border-radius: 20px;
}

/* PT management icons & list */
.pt-mg i {
    color: var(--yellow);
}

.pt-mg li {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

/* Anchor highlight */
.anch {
    color: var(--yellow);
}

.anch:hover {
    color: var(--text-color);
}

/* =========================================================
   VENEERS COMPARISON TABLE (veners)
   ========================================================= */

.veners .table-responsive {
    overflow-x: auto;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", sans-serif;
}

.veners .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-family: "Poppins", sans-serif;
}

.veners .comparison-table th,
.veners .comparison-table td {
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    text-align: left;
}

.veners .comparison-table th {
    background-color: #cdb202;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.veners .comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.veners .comparison-table tr:hover {
    background-color: #e8f0fe;
    transition: background 0.3s ease;
}

.veners .comparison-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 25%;
}

.veners h3.text-center {
    text-align: center;
    color: #0d6efd;
    margin-top: 20px;
    font-weight: 700;
}

/* =========================================================
   THANK YOU OVERLAY (ty-*)
   ========================================================= */

.ty-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 12, 20, .7);
    backdrop-filter: blur(6px);
    z-index: 1055;
}

.ty-overlay[hidden] {
    display: none;
}

/* Card */
.ty-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    width: min(92vw, 520px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    animation: ty-pop .35s ease-out;
}

.ty-title {
    margin: 10px 0 6px;
    font-weight: 700;
}

.ty-desc {
    margin: 0 0 18px;
    color: #4a5568;
}

/* Animated check */
.ty-icon {
    margin: -6px auto 10px;
    position: relative;
    width: 96px;
    height: 96px;
}

.ty-icon .circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 6px solid #28a745;
    opacity: .9;
}

.ty-icon .check {
    position: absolute;
    left: 28px;
    top: 42px;
    width: 34px;
    height: 17px;
    border-left: 6px solid #28a745;
    border-bottom: 6px solid #28a745;
    transform: rotate(-45deg);
    transform-origin: left bottom;
    animation: ty-draw .45s ease .25s both;
}

/* Confetti */
.ty-confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ty-confetti i {
    position: absolute;
    width: 8px;
    height: 14px;
    background: #ff6b6b;
    opacity: .95;
    transform: translateY(-110vh) rotate(0);
    animation: ty-fall linear infinite;
}

/* Check tick offset fix */
.msg-chk {
    width: 44px !important;
    position: relative;
    left: 38px !important;
    top: 49px !important;
    height: 17px !important;
}

/* Animations */
@keyframes ty-pop {
    0% {
        transform: scale(.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ty-draw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 34px;
        height: 0;
    }
    100% {
        width: 34px;
        height: 17px;
    }
}

@keyframes ty-fall {
    to {
        transform: translateY(120vh) rotate(360deg);
    }
}

/* =========================================================
   SERVICE PAGE ACCORDION (.ridhi-accordion)
   ========================================================= */

.ridhi-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ridhi-accordion .accordion-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.ridhi-accordion .accordion-header {
    margin: 0;
}

.ridhi-accordion .accordion-button {
    width: 100%;
    padding: 18px 22px;
    background: linear-gradient(135deg, #cdb202, #a89302);
    border: none;
    color: #fff !important;
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.ridhi-accordion .accordion-button:hover {
    background: linear-gradient(135deg, #b8a002, #958202);
}

.ridhi-accordion .accordion-button::after {
    /* icon can be added via FontAwesome if needed */
}

.ridhi-accordion .accordion-button.active::after {
    transform: rotate(180deg);
}

.ridhi-accordion .accordion-body {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.ridhi-accordion .accordion-body.show {
    max-height: 150000px;
}

.ridhi-accordion .accordion-content {
    padding: 25px;
}

.ridhi-accordion .accordion-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #cdb202, #a89302);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    padding-bottom: 12px;
    font-weight: 500;
}

.ridhi-accordion .accordion-content h3 {
    color: var(--text-color);
    font-weight: 500;
    margin: 40px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
}

.ridhi-accordion .accordion-content h3::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #cdb202, #a89302);
    border-radius: 2px;
}

.ridhi-accordion .accordion-button:focus {
    z-index: 3;
    border-color: var(--yellow);
    outline: 0;
    box-shadow: var(--yellow);
}

.ridhi-accordion .accordion-content h4 {
    font-weight: 500;
    font-family: "Jost", sans-serif;
    margin: 18px 0 8px;
    color: var(--text-color);
}

.ridhi-accordion .accordion-content p,
.service-page p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 18px;
}

.ridhi-accordion .accordion-content strong {
    color: #a89302;
}

.service-page p strong {
    color: #a89302;
}

/* Lists inside accordion */
.ridhi-accordion .accordion-content ul,
.ridhi-accordion .accordion-content ol {
    margin: 35px 0 12px 0;
    padding-left: 0;
    list-style: none;
}

.ridhi-accordion .accordion-content ul li,
.ridhi-accordion .accordion-content ol li {
    padding: 6px 14px;
    margin: 15px 0 !important;
    background: linear-gradient(135deg, rgb(205 178 2 / 26%), rgba(168, 147, 2, 0.08));
    border-radius: 8px;
    color: var(--text-color);
    line-height: 1.75;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.ridhi-accordion .accordion-content ul li:hover,
.ridhi-accordion .accordion-content ol li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgb(205 178 2 / 55%), rgba(168, 147, 2, 0.15));
}

/* Bullet icon */
.ridhi-accordion .accordion-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #cdb202;
    font-size: 0.85em;
    margin-top: 2px;
}

/* Numbered list */
.ridhi-accordion .accordion-content ol {
    counter-reset: item;
}

.ridhi-accordion .accordion-content ol li::before {
    counter-increment: item;
    content: counter(item);
    background: linear-gradient(135deg, #cdb202, #a89302);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 4px;
}

/* CTA box inside accordion */
.ridhi-accordion .accordion-content a {
    color: #a89302;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.ridhi-accordion .accordion-content a:hover {
    color: #cdb202;
}

.ridhi-accordion .cta-box {
    margin-top: 20px;
    padding: 22px;
    background: linear-gradient(135deg, #cdb202, #a89302);
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.ridhi-accordion .cta-box p {
    color: #fff !important;
    margin: 8px 0 0 !important;
}

.ridhi-accordion .cta-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #a89302;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ridhi-accordion .cta-box a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    margin: 50px auto;
    padding: 0 20px;
    font-family: "Poppins", sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

.faq-container {
    border-radius: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--yellow);
    outline: none;
}

.faq-icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #00aaff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

.faq-answer p {
    margin: 15px 0 0;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================================================
   COMPARE TABLE SECTION
   ========================================================= */

.compare-section {
    margin: 50px auto;
    padding: 0 16px;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.compare-header h2 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    color: #222;
}

.compare-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Top cards */
.compare-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.compare-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.compare-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.compare-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Scrollable table wrapper */
.compare-table-wrapper {
    margin-top: 10px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Scroll hint text */
.scroll-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    display: none;
}

/* Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    font-size: 0.93rem;
}

.compare-table thead {
    background: var(--yellow);
    color: #fff;
}

.compare-table th,
.compare-table td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.compare-table th:first-child,
.compare-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
}

/* rows – fix invalid :nth-child(every) to proper pattern */
.compare-table tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.compare-table tbody tr:nth-child(even) {
    background: #fff;
}

.compare-table tbody tr:hover {
    background: #fff6b8;
}

/* =========================================================
   BANNER SUB PAGE & HEADING STYLES
   ========================================================= */

.mt-125 {
    margin-top: 125px !important;
}

/* Sub page banner */
.banner-item-sub {
    position: relative;
    background: url('/img/banner/layout-banner.webp') no-repeat center center;
    background-size: cover;
    height: 543px;
    font-family: "Jost", sans-serif;
    overflow: hidden;
}

.banner-item-sub::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4130007d;
    z-index: 1;
}

.banner-item-sub > * {
    position: relative;
    z-index: 2;
}

/* Ridhi heading */
.ridhi-heading {
    font-weight: 700;
    position: relative;
}

.ridhi-heading .yellow {
    color: var(--yellow);
}

/* =========================================================
   MEDIA QUERIES (RESPONSIVE TWEAKS)
   ========================================================= */

/* Large screens <= 1439px */
@media (max-width: 1439px) {
    .hero-content {
        position: relative;
        z-index: 1;
        padding: 2rem;
        border-radius: 10px;
        top: 70px;
    }

    .index-section h1 {
        color: var(--text-color);
        font-weight: 500;
        font-family: "Jost", sans-serif;
        font-size: 33px;
        text-transform: capitalize;
    }

    .index-section .heading-para {
        font-size: 57px;
        color: var(--yellow);
        font-family: 'Artifact';
        font-weight: 500;
    }
}

/* Help section mobile */
@media (max-width: 767.98px) {
    .help-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .help-number {
        margin: 0 0 10px 0;
    }
}

/* Contact / map section responsive */
@media (max-width: 768px) {
    .contact-container {
        padding: 50px 0;
    }

    .form-section {
        padding: 30px 20px;
    }

    .map-section {
        min-height: 300px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

/* Dermacare slider & layout responsive */
@media (max-width: 1024px) {
    .dermacare-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .dermacare-comparison-wrapper {
        justify-content: center;
        flex-direction: column;
    }

    .dermacare-content-area {
        padding-left: 0;
    }

    .dermacare-main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .dermacare-before-after-slider {
        width: 280px;
        height: 185px;
    }

    .dermacare-main-heading {
        font-size: 2rem;
    }

    .dermacare-happy-patients-section {
        padding: 40px 15px;
    }

    .dermacare-comparison-wrapper {
        flex-direction: column;
    }
}

/* Veneers table */
@media (max-width: 768px) {
    .veners .comparison-table th,
    .veners .comparison-table td {
        font-size: 14px;
        padding: 10px;
    }
}

/* Compare cards & scroll hint */
@media (max-width: 768px) {
    .compare-cards {
        grid-template-columns: 1fr;
    }

    .compare-header h2 {
        font-size: 1.5rem;
    }

    .scroll-hint {
        display: block;
    }
}

/* Heading/font size adjustments (mobile) */
@media (max-width: 767px) {
    .hero h2 {
        font-size: 57px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .service-section h2,
    .banner-item-sub h2,
    .styled-h2,
    .help-section h2,
    #testimonialSection h2,
    .why-choose h2,
    #gallerySection h2,
    .section-con h1,
    .appointment-section h2 {
        font-size: 35px;
    }

    #gallerySection h2 span,
    .section-con h1 span,
    .why-choose h2 span {
        font-size: 52px;
    }

    .ridhi-accordion .accordion-content h2 {
        font-size: 19px;
    }

    .ridhi-accordion .accordion-content ul li,
    .ridhi-accordion .accordion-content ol li {
        font-size: 16px;
    }
}


/* testimonial section */

    .testimonial-wrapper {
      max-width: 900px;
      margin: 0 auto;
     
    }
      .google-section{
        margin: 50px 0px 30px 0px !important;
      }
    .google-section img{
width: 12%;
    }

       .google-section h4{
font-family: "Jost", sans-serif;
    }


    .testimonial-quote {
      font-size: 26px;
      line-height: 1.4;
      /* font-weight: 500; */
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: start;
      font-family: "Poppins", sans-serif;
      padding: 40px 0px 40px 1.5rem;
    }
.btn-outline-yellow{
    border: 2px solid var(--yellow) !important;
}
.btn-yellow-bg{
    background-color: var(--yellow) !important;
    color: #fff !important;
}
    .testimonial-quote::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.2rem;
      bottom: 0.2rem;
      width: 3px;
      background-color: var(--yellow);
    }

    .testimonial-quote::after {
   content: "“";
    position: absolute;
    left: 1.25rem;
    top: -0.7rem;
    font-size: 5rem;
    opacity: 0.18;
    line-height: 1;
    color: #b9a107;
    }

    .testimonial-footer {
      font-size: 0.95rem;
      color: #555;
    }

    .testimonial-footer cite {
      font-style: normal;
      color: #777;
    }

    .testimonial-controls .btn {
      min-width: 80px;
      border-radius: 999px;
    }

    @media (max-width: 576px) {
      section.testimonials-section {
     .google-section img {
    width: 39%;
}
      }
    }

    
    @media (min-width: 577px) and (max-width: 1439px)  {
      section.testimonials-section {
     .google-section img {
    width: 22%;
}
      }
    }

    #projects img {
    transition: 
ease-out 0.2s;
}


#projects img:hover {
    transform: scale(0.9);
}