* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", sans-serif;
    color: #101828;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================
   HEADINGS
========================= */
h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h2 {
    font-weight: 600;
    color: #fff;
}

h3 {
    font-weight: 600;
    color: black;
}

h2 {
    font-size: 28px;
}

p {
    font-size: 14px;
    color: #667085;
}

/* ==================================navbar========================================= */

/* ======================
   TOPBAR
====================== */
.topbar {
    background: #c59265;

    color: #fff;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar-content {
    height: 35px;
    display: flex;
    align-items: center;
}

.topbar-content a {
    color: white;
}

/* ======================
   NAVBAR
====================== */
.navbar {
    background: #fff;
    /* border-bottom: 1px solid #B77800; */
    border-bottom: 1px solid #b77800;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 35px;
    z-index: 999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/* LOGO */
.logo img {
    height: auto;
    /* width: 100px; */
	    width: 130px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #079181;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.nav-menu a {
    padding: 10px 0;
    transition: 0.3s;
}



@media (max-width: 768px) {
    .logo {
        padding: 20px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;

        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 20px;
        padding: 25px 0;

        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
        padding: 20px;
    }
}

/* ===================================topbar==================================== */

#topbar-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;

    background: #079181;
    color: #fff;
    font-size: 18px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 999;
}

#topbar-btn.show {
    opacity: 1;
    visibility: visible;
}

#topbar-btn:hover {
    transform: scale(1.1);
}

/* ================= WHATSAPP ================= */

.whatsapp-btn {
    position: fixed;
    bottom: 200px;
    right: 20px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ===========================================footer======================================== */
.footer {
    background: rgba(197, 146, 101, 0.16);
    /* #C59265 16% */
    padding: 50px 20px 20px;
    font-family: "Open Sans", sans-serif;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    max-width: 500px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 15px;
}

.footer-address p {
    line-height: 2;
}

.footer-contact p {
    font-size: 15px;
    margin: 5px 0;
    color: #000;
    line-height: 2;
}

.footer-social {
    margin: 15px 0;
}

.footer-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}

.footer-address {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-address .icon {
    width: 40px;
    height: 40px;
    /* border: 2px solid #000; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    /* background-color: black; */
    justify-content: center;
}

.footer-right {
    min-width: 250px;
}

.footer-right h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.footer-right h3::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #c59265;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #000;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #c59265;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-logo {
        width: 150px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
    }

    .footer-right h3 {
        font-size: 18px;
    }
}

/* ===============================================indexpage section1=========================================== */

.hero-section {
    background: #c592650d;
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
}

.hero-content h1 span {
    color: #079181;
}

.hero-content p {
    font-size: 16px;
    color: #667085;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

.btn.primary {
    background: #079181;

    color: #fff;
}

.btn.outline {
    border: 1px solid #079181;
    background: #fff;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-left: auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-img-wrapper {
        max-width: 300px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-img-wrapper {
        margin: 20px auto 0;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        width: 100%;
    }
}

/* ============================philosophy section======================================== */
.philosophy-section {
    background: #ffff;
    padding: 80px 20px;
}

.philosophy-container {
    max-width: 800px;
    margin: 0 auto;

    padding: 0 10px;
}

.sub-heading {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.main-heading {
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #079181;
    margin-bottom: 20px;
    line-height: 1.3;
}

.description {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
}

@media (max-width: 992px) {
    .philosophy-section {
        padding: 60px 20px;
    }

    .main-heading {
        font-size: 32px;
    }

    .description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .philosophy-section {
        padding: 40px 15px;
    }

    .sub-heading {
        font-size: 14px;
    }

    .main-heading {
        font-size: 24px;
        line-height: 1.4;
    }

    .description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ====================================scroll section============================================= */

.cta-section {
    overflow: hidden;
    padding: 20px 0;
}

.cta-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
}

.cta-container::-webkit-scrollbar {
    display: none;
}

.cta-box {
    min-width: 260px;
    flex-shrink: 0;
}

.cta-container::-webkit-scrollbar {
    display: none;
}

.cta-box {
    min-width: 400px;
    flex-shrink: 0;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    /* border-radius: 10px; */
}

.gradient-box {
    background: linear-gradient(90deg, #c59265 0%, #5f4631 100%);
}

.cta-box h3 {
    color: white;
}

.cta-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
}

.cta-container {
    scroll-behavior: auto;
    /* keep auto, NOT smooth */
}

/* =================smile section========================== */

.smile-section {
    /* background: #F8F9FA; */

    padding: 60px 20px;
}

.smile-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.smile-image {
    flex: 1;
}

.smile-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    display: block;
}

.smile-content {
    flex: 1;
}

.smile-content h2 {
    font-size: 32px;
    color: #079181;
    font-weight: 700;
    margin-bottom: 10px;
}

.smile-content h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    background: #079181;
    margin-top: 10px;
}

.smile-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 15px 0;
}

.smile-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .smile-container {
        flex-direction: column;
        text-align: center;
    }

    .smile-content h2::after {
        margin: 10px auto 0;
    }

    .smile-image img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .smile-section {
        padding: 40px 15px;
    }

    .smile-content h2 {
        font-size: 26px;
    }

    .smile-content h4 {
        font-size: 16px;
    }

    .smile-content p {
        font-size: 14px;
    }
}

/* ====================================story section====================================== */
.story-section {
    position: relative;
    background: #c5926530;
    padding: 80px 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.story-bg-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    z-index: 0;
}

.story-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    z-index: 0;
}

.story-box {
    position: relative;
    z-index: 2;

    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #079181;
    margin-bottom: 10px;
}

.story-subtitle::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #079181;
    display: block;
    margin: 8px auto 0;
}

.story-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.story-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .story-section {
        padding: 60px 20px;
    }

    .story-box {
        padding: 35px 25px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-text {
        font-size: 15px;
    }

    .story-bg-left,
    .story-bg-right {
        width: 60%;
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .story-section {
        padding: 40px 15px;
    }

    .story-box {
        padding: 20px 15px;
        border-radius: 4px;
    }

    .story-subtitle {
        font-size: 14px;
    }

    .story-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .story-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .story-bg-left,
    .story-bg-right {
        display: none;
    }
}

/* ============================================tritment===================================== */
.treatment-section {
    background: #c5926530;
    padding: 60px 20px;
}

.treatment-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title1 {
    font-size: 28px;
    font-weight: 700;
    color: #079181;
    margin-bottom: 40px;
    position: relative;
}

.section-title1::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #079181;
    display: block;
    margin: 10px auto 0;
}

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

.treatment-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px 15px;
    border: 1px solid #eee;
    transition: 0.3s;
    cursor: pointer;
}

.treatment-card img {
    /* width: 40px; */
    margin-bottom: 10px;
}

.treatment-card p {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.treatment-card.active,
.treatment-card:hover {
    border: 2px solid #c08a5b;
}

@media (max-width: 992px) {
    .treatment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================================about section===================================== */

.about-section {
    position: relative;
    padding: 80px 20px;
    background: #f9f9f9;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* .about-content::after {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80%;
    height: 70%;

    background: url("../images/teeth.png") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
} */

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #444;

}

.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0B82AD;
    font-weight: bold;
}

.about-content h2 {
    font-size: 30px;
    color: #079181;
    font-weight: 700;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #079181;
    margin-top: 10px;
}

.about-content p {
    padding-top: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-content h2::after {
        margin: 10px auto 0;
        width: 60px;
    }

    .underline {
        margin: 10px auto 20px;
    }

    .about-content::after {
        width: 70%;
        height: 60%;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 260px;
    }

    .about-content::after {
        width: 80%;
        height: 60%;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 10px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-content h2::after {
        width: 50px;
    }

    .about-content p {
        font-size: 13px;
    }

    .about-image img {
        max-width: 220px;
    }

    .about-content::after {
        display: none;
    }
}

/* ================================feature section============================== */
.features-section {
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #079181;
    letter-spacing: 1px;
}

.features-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #079181;
    margin-top: 10px;
}

.features-content p {
    padding-top: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
    display: block;
}

@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        text-align: center;
    }

    .features-content h2 {
        text-align: center;
    }

    .features-content h2::after {
        margin: 10px auto 0;
        width: 60px;
    }

    .underline {
        margin: 10px auto 20px;
    }

    .features-image img {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 50px 15px;
    }

    .features-content h2::after {
        width: 50px;
        /* even smaller */
    }

    .features-content h2 {
        font-size: 20px;
    }

    .features-content p {
        font-size: 14px;
    }
}

/* ======================================cirecle section================================= */
.circle-feature-section {
    padding: 100px 20px;
    margin-top: 30px;
}

.circle-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.circle-card {
    position: relative;
    width: 320px;
    height: 320px;
    border: 6px solid #c08a5b;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-shadow:
        inset 0 10px 20px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.circle-card:hover {
    transform: translateY(-10px);
}

.circle-icon {
    position: absolute;
    top: -35px;
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 50%;
    border: 2px solid #118a7e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


.circle-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.circle-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.badge-title {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.badge {
    background: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.title {
    background: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    color: #222222;
}

.center {
    transform: scale(1.1);
}

.circle-card::after {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.circle-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.circle-card:nth-child(2) {
    animation-delay: 0.3s;
}

.circle-card:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .circle-container {
        justify-content: center;
        gap: 50px;
    }

    .circle-card {
        width: 280px;
        height: 280px;
        padding: 30px;
    }

    .circle-icon {
        width: 70px;
        height: 70px;
        top: -30px;
    }

    .circle-icon img {
        width: 35px;
    }

    .center {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .circle-feature-section {
        padding: 80px 15px;
    }

    .circle-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .circle-card {
        width: 260px;
        height: 260px;
        padding: 25px;
    }

    .circle-content h4 {
        font-size: 15px;
    }

    .circle-content p {
        font-size: 13px;
    }

    .badge,
    .title {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .circle-feature-section {
        padding: 60px 10px;
    }

    .circle-card {
        width: 220px;
        height: 220px;
        padding: 20px;
        border-width: 4px;
    }

    .circle-icon {
        width: 55px;
        height: 55px;
        top: -25px;
    }

    .circle-icon img {
        width: 28px;
    }

    .circle-content h4 {
        font-size: 14px;
    }

    .circle-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .badge,
    .title {
        font-size: 10px;
        padding: 4px 7px;
    }

    .circle-card::after {
        width: 22px;
        height: 22px;
        bottom: -12px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .circle-card {
        width: 200px;
        height: 200px;
    }

    .circle-content p {
        font-size: 11px;
    }
}

/* ===============================docter========================================= */
.doctor-section {
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.doctor-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.doctor-image img {
    width: 600px;
    border-radius: 16px;
    object-fit: cover;
}

.doctor-content h2,
.services h3 {
    font-size: 28px;
    font-weight: 600;
    color: #079181;
    position: relative;
    padding-bottom: 10px;
}

.doctor-content h2::after,
.services h3::after {
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    background: #079181;
    margin-top: 5px;
}

.doctor-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.services {
    margin-top: 25px;
}

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

.services-grid ul {
    list-style: none;
    padding: 0;
}

.services-grid li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.services-grid li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #000;
}

@media (max-width: 992px) {
    .doctor-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .doctor-content h2,
    .services h3 {
        text-align: center;
    }

    .doctor-content h2::after,
    .services h3::after {
        margin: 10px auto 0;
        /* center */
        width: 60px;
    }

    .doctor-image img {
        width: 260px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .doctor-content h2::after,
    .services h3::after {
        width: 50px;

        .doctor-content p {
            font-size: 14px;
        }
    }
}

/* =========================================testimonial==================================== */
.testimonial-section {
    background: #c5926530;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 26px;
    font-weight: 600;
    color: #079181;
    position: relative;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    width: 120px;
    height: 3px;
    background: #079181;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slide {
    min-width: calc(33.333% - 14px);
    background: #000;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #c08a5b;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .slide {
        min-width: 100%;
    }

    .slide img {
        height: 200px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* ============================help=========================== */
.help-section {
    position: relative;
    padding: 100px 20px;
    background-image: url("../images/teeth.png");
    background-size: contain;
    background-position: center;
    width: 100%;
    min-height: 700px;
}

.help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
}

.container {
    position: relative;
    z-index: 2;
}

.title1 {
    font-size: 28px;
    font-weight: 600;
    color: #079181;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.title1::after {
    content: "";
    width: 180px;
    height: 3px;
    background: #079181;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: transparent;
    border: 1.5px solid#079181;
    border-radius: 12px;
    padding: 30px 15px;
    transition: 0.3s ease;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card img {
    width: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.card p {
    font-size: 14px;
    color: #333;
}

.card:hover,
.card.active {
    border: 2px solid #c08a5b;
    transform: translateY(-5px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .title1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 70px 15px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 25px;
    }

    .card img {
        width: 35px;
    }

    .card p {
        font-size: 13px;
    }
}

/* ===================================================servicess==================================== */

.services-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.services-hero .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.services-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 146, 101, 0.56);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.services-hero h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.container h2 span {
    color: #c08a5b;
}

.services-hero p {
    font-size: 18px;
    color: #222;
    font-family: "Poppins", sans-serif;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .services-hero {
        min-height: 400px;
    }

    .services-hero h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 320px;
        padding: 40px 15px;
    }

    .services-hero h2 {
        font-size: 24px;
    }

    .services-hero p {
        font-size: 14px;
    }
}

.services-wrap {
    max-width: 1300px;
    margin: 10px auto;
    padding: 30px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

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

.services-card {
    background: #f4f4f4;
    border: 1.5px solid #27b3a5;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.services-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
    display: block;
}

.services-body {
    padding: 28px 24px 30px;
    text-align: center;
    background-color: #ffffff;
}

.services-title {
    font-size: 18px;
    font-weight: 700;
    color: #6d6d6d;
    margin-bottom: 14px;
}

.services-text {
    font-size: 15px;
    color: #7a7a7a;
    line-height: 1.6;
    margin-bottom: 26px;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    background: #079181;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.services-btn:hover {
    background: #148a78;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.services-page-wrap {
    background: #fff;
    padding: 30px 38px 44px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.services-page-box {
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-cta {
    background: #C5926530;
    border-radius: 2px;
    min-height: 120px;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.services-page-cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-page-cta-title {
    margin: 0 0 6px;
    color: #069886;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.services-page-cta-text {
    margin: 0;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

.services-page-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 137px;
    min-height: 45px;
    padding: 15px 16px;
    background: #0b9788;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    line-height: normal;
    font-weight: 500;
    box-sizing: border-box;
    white-space: nowrap;
    transition:
        background 0.2s ease, transform 0.2s ease;
}

.services-page-cta-btn:hover {
    background: #087d70;
    transform: translateY(-1px);
}

.services-page-content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 40px;
    align-items: center;
}

.services-page-illustration-card {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.services-page-illustration {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.services-page-text-side {
    width: 100%;
    padding-top: 6px;
    animation: services-page-slide-right 0.9s ease both;
    animation-delay: 0.15s;
}

.services-page-heading {
    margin: 0 0 14px;
    color: #d09a66;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55),
        0 2px 2px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(208, 154, 102, 0.18);
}

.services-page-paragraph {
    margin: 0;
    color: #2f2f2f;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
}

@keyframes services-page-slide-left {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes services-page-slide-right {
    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .services-page-wrap {
        padding: 24px 18px 34px;
    }

    .services-page-cta {
        padding: 18px 20px;
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
    }

    .services-page-content {
        grid-template-columns: 1fr;
        row-gap: 24px;
        text-align: center;
    }

    .services-page-illustration-card {
        max-width: 100%;
        width: 100%;
        height: 260px;
    }
}

@media (max-width: 600px) {
    .services-page-wrap {
        padding: 20px 12px 28px;
    }

    .services-page-illustration-card {
        height: 220px;
    }

    .services-page-heading {
        font-size: 18px;
    }

    .services-page-paragraph {
        font-size: 12px;
        line-height: 2;
    }

    .services-page-cta-title {
        font-size: 18px;
    }
}

/* ==============================contact=============================== */

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-form-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 6px;
}

.contact-input {
    width: 100%;
    height: 44px;
    margin-bottom: 12px;
    padding: 0 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
}

.contact select.contact-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: #fff;
    cursor: pointer;
}

.contact-textarea {
    width: 100%;
    height: 140px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    resize: none;
    margin-bottom: 18px;
    background: #fff;

    box-sizing: border-box;
}

.contact-btn {
    display: inline-block;
    padding: 14px 24px;
    background: #0ea293;
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 220px;
    }
}

/* ====================================blog====================================== */

.blog-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-hero .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

.blog-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 146, 101, 0.4);
    z-index: 1;
}

.blog-hero .content {
    position: relative;
    z-index: 2;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.blog-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-hero p {
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .blog-hero {
        height: 250px;
    }

    .blog-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        height: 200px;
        padding: 20px;
    }

    .blog-hero h1 {
        font-size: 22px;
    }

    .blog-hero p {
        font-size: 12px;
    }
}

.blog-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 18px 40px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
    align-items: stretch;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #84d7cc;
    border-radius: 12px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    border-color: #57c8bb;
}

.blog-img-link {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f4f4f4;
    text-decoration: none;
    flex-shrink: 0;
}

.blog-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.35s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.blog-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

.blog-title {
    margin: 0 0 10px;
    min-height: 68px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #bf7e47;

}

.blog-card:hover .blog-title a {
    color: #a86732;
}

.blog-text {
    margin: 0 0 16px;
    min-height: 92px;
    font-size: 16px;
    line-height: 1.65;
    color: #787878;
    flex: 1;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: auto;
    height: 30px;
    padding: 20px;
    border-radius: 999px;
    background: #10b39f;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(16, 179, 159, 0.18);
    transition:
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.blog-card:hover .blog-btn {
    background: #0d9c8b;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(16, 179, 159, 0.24);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 34px;
}

.blog-page-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #d9ad87;
    background: #ffffff;
    color: #d19a68;
    font-size: 17px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.blog-page-btn:hover {
    background: #f8efe8;
}

.blog-page-btn.blog-active {
    background: #c98f5d;
    border-color: #c98f5d;
    color: #ffffff;
}

.blog-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-wrap {
        padding: 16px 12px 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-img-link {
        height: 200px;
    }

    .blog-title,
    .blog-text {
        min-height: auto;
    }

    .blog-pagination {
        margin-top: 28px;
    }
}

/* ==================================blog details====================================== */
.article-page-wrap {
    max-width: 1200px;
    margin: 5px auto;
    padding: 0 0 40px;
    padding: 40px;

    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #6f6f6f;
    box-sizing: border-box;
}

.article-page-inner {
    max-width: 760px;
    padding: 8px 0 0;
    box-sizing: border-box;
}

.article-page-title {
    margin: 0 0 10px;
    color: #079181;

    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}

.article-page-cover {
    width: 100%;
    max-width: 455px;
    display: block;
    margin: 0 0 18px;
}

.article-page-cover img {
    width: 100%;
    display: block;
}

.article-page-text {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.article-page-text strong {
    color: #4b4b4b;
    font-weight: 700;
}

.article-page-section-title {
    margin: 18px 0 10px;
    color: #079181;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.article-page-subtitle {
    margin: 18px 0 10px;
    color: #079181;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.article-page-point-title {
    margin: 14px 0 8px;
    color: #079181;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.article-page-faq-q {
    margin: 14px 0 6px;
    color: #4e4e4e;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.article-page-divider-space {
    height: 2px;
}

@media (max-width: 768px) {
    .article-page-inner {
        padding: 12px 18px 0;
    }

    .article-page-title {
        font-size: 18px;
    }

    .article-page-cover {
        max-width: 100%;
    }
}

/* ==========================================gallary=============================================== */

.gallery-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.gallery-container {
    max-width: 1200px;
    margin: auto;

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

    grid-auto-rows: 150px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(197, 146, 101, 0.16);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.small {
    grid-row: span 1;
}

.gallery-item.medium {
    grid-row: span 2;
}

.gallery-item.large {
    grid-row: span 3;
}

@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
}



/* our feature below section */
.circle-feature-section {
    padding: 100px 20px;
    margin-top: 30px;
    background: #e6e8ec;
    /* 🔥 important for neumorphism */
}

/* ================= CONTAINER ================= */
.circle-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ================= CARD ================= */
.circle-card {
    position: relative;
    width: 320px;
    height: 320px;

    /* 🔥 neumorphism base */
    background: #e6e8ec;
    border-radius: 30px;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;

    /* 🔥 soft outer shadow */
    box-shadow:
        10px 10px 25px rgba(0, 0, 0, 0.08),
        -10px -10px 25px rgba(255, 255, 255, 0.9);

    transition: 0.4s ease;

    /* animation */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* 🔥 hover → pressed (inner shadow) */
.circle-card:hover {
    box-shadow:
        inset 8px 8px 20px rgba(0, 0, 0, 0.08),
        inset -8px -8px 20px rgba(255, 255, 255, 0.9);

    transform: translateY(-6px);
}

/* ================= ICON ================= */
.circle-icon {
    position: absolute;
    top: -35px;

    width: 80px;
    height: 80px;

    background: #e6e8ec;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* 🔥 neumorphism shadow */
    box-shadow:
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
}

/* ================= TEXT ================= */
.circle-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.circle-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding-top: 20px;
}

/* ================= BADGES ================= */
.badge,
.title {
    background: #e6e8ec;
    padding: 6px 1px;
    border-radius: 20px;
    font-size: 12px;

    box-shadow:
        4px 4px 10px rgba(0, 0, 0, 0.08),
        -4px -4px 10px rgba(255, 255, 255, 0.9);

    margin-bottom: 20px;
}

.title {
    font-weight: 500;
    color: #222;
}

.center {
    transform: scale(1.05);
}

/* ❌ remove old circle bubble */
.circle-card::after {
    display: none;
}

/* ================= ANIMATION ================= */
.circle-card:nth-child(2) {
    animation-delay: 0.3s;
}

.circle-card:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .circle-container {
        justify-content: center;
        gap: 50px;
    }

    .circle-card {
        width: 280px;
        height: 280px;
        padding: 30px;
    }

    .circle-icon {
        width: 70px;
        height: 70px;
        top: -30px;
    }

    .circle-icon img {
        width: 35px;
    }

    .center {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .circle-feature-section {
        padding: 80px 15px;
    }

    .circle-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .circle-card {
        width: 260px;
        height: 260px;
        padding: 25px;
    }

    .circle-content h4 {
        font-size: 15px;
    }

    .circle-content p {
        font-size: 13px;
    }

    .badge,
    .title {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .circle-feature-section {
        padding: 60px 10px;
    }

    .circle-card {
        width: 220px;
        height: 220px;
        padding: 20px;
    }

    .circle-icon {
        width: 55px;
        height: 55px;
        top: -25px;
    }

    .circle-icon img {
        width: 28px;
    }

    .circle-content h4 {
        font-size: 14px;
    }

    .circle-content p {
        font-size: 12px;
    }

    .badge,
    .title {
        font-size: 10px;
    }
}
/* end our feature below section */
.testimonial-section {
    padding: 40px 20px;
    text-align: center;
    background: #f8fafc;
}

.testimonial-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #079181;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 50px;
}

/* WRAPPER */
.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
}

/* SCROLL TRACK */
.testimonial-container {
    display: flex;
    gap: 30px;
    width: max-content;

    animation: scrollLeft 25s linear infinite;
}

/* CARD */
.testimonial-card {
    width: 350px;
    flex-shrink: 0;

    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: left;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* STARS */
.stars {
    color: #facc15;
    font-size: 18px;
    margin-bottom: 20px;
}

/* TEXT */
.text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user h4 {
    margin: 0;
    font-size: 16px;
}

.user span {
    font-size: 13px;
    color: #6b7280;
}

/* ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

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

/* PAUSE ON HOVER */
.testimonial-wrapper:hover .testimonial-container {
    animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 240px;
    }

    .testimonial-section h2 {
        font-size: 24px;
    }
}
.treatment-img{
	width: 50px;
	height: 50px;
}
.location{
	width: 30px;
	height: auto;
}