    body {
            background: #f4f4f4;
        }

        /* ---------------- TOP BAR ---------------- */
        .top-bar {
            background: #0a4a67;
            color: #fff;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar i {
            margin-right: 6px;
        }

        /* ---------------- NAVBAR ---------------- */
        .main-navbar {
            background: #ffffff;
            padding: 20px 30px;
            border-radius: 50px;
            width: 94%;
            margin: 20px auto;
            box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            margin: 0 12px;
            font-weight: 600;
            color: #004d6f !important;
            font-size: 18px;
        }

        .nav-link:hover {
            color: #00a6a6 !important;
        }

        .remix-btn {
            background: #2ad2c9;
            color: #fff;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
        }

        /* MOBILE TOGGLE */
        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .main-navbar {
                padding: 10px 20px;
                border-radius: 20px;
            }

            .nav-link {
                padding: 10px 0;
                font-size: 16px;
                text-align: center;
            }

            .remix-btn {
                margin-top: 10px;
                width: 100%;
            }
        }

        /* -------- HERO SECTION -------- */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.55);
        }

        .hero-section .container {
            color: #fff;
            position: relative;
        }

        .hero-heading {
            font-size: 60px;
            font-weight: 800;
        }

        .hero-subtitle {
            font-size: 22px;
            max-width: 500px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .hero-heading {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 18px;
            }
        }


        /* wp, call */
        .floating-btn {
            position: fixed;
            bottom: 90px;
            right: 25px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: 0.3s;
        }

        .float-icon:hover {
            transform: scale(1.1);
        }

        .float-call {
            background: #0A57D0 !important;
        }

        .float-icon i {
            color: #fff;
            font-size: 26px;
        }

        @media(max-width: 768px) {
            .float-icon {
                width: 50px;
                height: 50px;
            }

            .float-icon i {
                font-size: 23px;
            }
        }


        /* why chuse us */

        .why-box {
            background: #f9fafc;
            transition: 0.3s ease;
            border-radius: 28px !important;
        }

        .why-box.dark {
            background: #064b67;
            color: #fff;
            border-radius: 28px !important;
        }

        .why-icon {
            font-size: 40px;
            color: #00a6c0;
            margin-bottom: 12px;
        }

        .why-icon.light {
            color: #4cdfff !important;
        }

        .why-title {
            font-weight: 700;
            color: #004d6f;
            margin-bottom: 8px;
        }

        .why-title.light {
            color: #ffffff !important;
        }

        .why-text {
            color: #6d7a8a;
            font-size: 16px;
            line-height: 1.6;
        }

        .why-text.light {
            color: #d8edf5 !important;
        }

        .why-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }


        /* service section */

        .service-wrapper {
            background: #eef9ff;
            border-radius: 40px;
        }

        .service-title {
            font-size: 32px;
            font-weight: 700;
            color: #00557a;
        }

        .service-subtitle {
            color: #6b7a8c;
            max-width: 650px;
            margin: 0 auto;
        }

        .service-box {
            background: #ffffff;
            padding: 35px 30px;
            border-radius: 20px;
            text-align: left;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            border: 1px solid #e6f0f5;
        }

        /* Background Image Layer */
        .service-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--service-img);
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: 0.35s ease-in-out;
            z-index: 1;
        }

        /* Overlay */
        .service-box::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            opacity: 0;
            transition: 0.35s ease-in-out;
            z-index: 1;
        }

        /* Show image + overlay on hover */
        .service-box:hover::before,
        .service-box:hover::after {
            opacity: 1;
        }

        /* Text above image */
        .service-box i,
        .service-box h4,
        .service-box p {
            position: relative;
            z-index: 2;
            transition: 0.3s;
        }

        .service-box i {
            font-size: 40px;
            color: #00a6d6;
        }

        .service-box h4 {
            font-weight: 700;
            color: #004d6f;
            margin-top: 10px;
        }

        .service-box p {
            color: #6b7a8c;
            margin-top: 8px;
            font-size: 15px;
        }

        /* Hover text color change */
        .service-box:hover h4,
        .service-box:hover p,
        .service-box:hover i {
            color: #ffffff !important;
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        /* OUR TREATMENTS SECTION */
        .treatment-area {
        background: #f2fff8;
    }

    .treatments-title {
        font-size: 45px;
        font-weight: 700;
        color: #0e395f;
    }

    /* Flip Card */
    .flip-card {
        width: 100%;
        height: 250px;
        perspective: 1000px;
    }

    .flip-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transition: transform .7s;
        transform-style: preserve-3d;
        border-radius: 12px;
    }

    .flip-card:hover .flip-inner {
        transform: rotateY(180deg);
    }

    /* FRONT & BACK */
    .flip-front, .flip-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border: 1px solid #cfe8dc;
        background: #ffffff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px;
    }

    .flip-back {
        transform: rotateY(180deg);
        background: #0e395f;
        color: #fff;
        border: none;
    }

    .icon {
        width: 75px;
        margin-bottom: 12px;
    }

    h4 {
        font-size: 20px;
        font-weight: 700;
        color: #0e395f;
        margin-top: 10px;
    }

    .flip-back p {
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        padding: 0 15px;
    }

    .flip-front h4 {
        color: #0e395f;
    }
/* home about section */

.about-unique {
        background: linear-gradient(to bottom right, #e7fff6, #eef9ff);
        padding: 100px 0;
        overflow: hidden;
    }

    /* FLOATING BLOBS */
    .blob {
        position: absolute;
        width: 250px;
        height: 250px;
        background: #00b8a980;
        filter: blur(70px);
        border-radius: 50%;
        z-index: 0;
    }
    .blob1 { top: -50px; left: -40px; }
    .blob2 { bottom: -50px; right: -60px; background: #0077ff80; }

    /* IMAGE CONTAINER */
    .img-wrapper-unique {
        position: relative;
        padding: 15px;
        background: #ffffff;
        border-radius: 28px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        transform: rotate(-2deg);
    }
    .unique-img {
        border-radius: 22px;
        transform: rotate(2deg);
    }

    /* GLASS CARD */
    .glass-card {
        background: rgba(255,255,255,0.55);
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        backdrop-filter: blur(15px);
        position: relative;
        z-index: 2;
    }

    .mini-title {
        color: #01657f;
        font-size: 20px;
        font-weight: 700;
    }

    .title {
        font-size: 38px;
        font-weight: 800;
        color: #002c45;
        margin-bottom: 15px;
    }

    .desc {
        color: #4f5b67;
        font-size: 16px;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .unique-list {
        padding-left: 0;
        list-style: none;
        margin-bottom: 25px;
    }

    .unique-list li {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #00354e;
    }

    .unique-list i {
        color: #00c29e;
        font-size: 19px;
    }

    .unique-btn {
        background: #00334a;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 40px;
        font-size: 17px;
        font-weight: 600;
        transition: 0.3s;
    }

    .unique-btn:hover {
        background: #001c28;
    }

    @media(max-width: 768px) {
        .title { font-size: 30px; }
        .unique-img { width: 100%; }
    }

    /* PREMIUM DARK CTA SECTION */
.cta-section {
        background: #04254a;
        padding: 110px 20px;
        color: #fff;
    }

    .cta-heading {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .cta-subheading {
        font-size: 58px;
        font-weight: 800;
        margin: 10px 0 30px;
    }

    .cta-desc {
        font-size: 24px;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 40px;
        color: #d9e6f5;
    }

    .cta-desc span {
        color: #63d896;
        font-weight: 700;
    }

    .cta-btn {
        background: #ffffff;
        color: #002544;
        border: none;
        border-radius: 40px;
        font-size: 20px;
        padding: 14px 40px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(255,255,255,0.15);
    }

    .cta-btn:hover {
        background: #e8e8e8;
        transform: translateY(-3px);
    }

    @media(max-width: 768px) {
        .cta-heading { font-size: 38px; }
        .cta-subheading { font-size: 42px; }
        .cta-desc { font-size: 18px; }
        .cta-btn { font-size: 18px; padding: 12px 30px; }
    }
/* revew */
/* Background */
.expert-team-section {
    background: #e9f7ff;
    padding: 80px 0;
    border-radius: 40px;
}

/* LEFT SIDE */
.team-title {
    font-size: 38px;
    font-weight: 700;
    color: #03375a;
}

.team-desc {
    color: #4d616f;
    max-width: 500px;
}

.view-link {
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    color: #0d5a8a;
}

/* Doctor Card */
.doctor-card {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.doc-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

.doc-name {
    font-size: 20px;
    color: #103b55;
    font-weight: 700;
    margin-top: 12px;
}

.doc-role {
    color: #6c7b89;
    margin-top: -5px;
}

/* Working Hours Box */
.hours-box {
    background: #003f5c;
    padding: 23px;
    border-radius: 25px;
    color: #fff;
}

.hours-title {
    font-size: 26px;
    font-weight: 700;
}

.hours-desc {
    font-size: 15px;
    color: #c6ddeb;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hours-list li {
    background: #025072;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}

.hours-btn {
    background: #fff;
    color: #00385b;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
}

.hours-btn:hover {
    background: #e9e9e9;
}

.contact-info-section {
    background: #ffffff;
}

.contact-box {
    padding: 20px 10px;
}

.contact-icon {
    font-size: 40px;
    color: #00aef5;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 20px;
    color: #003b5c;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-main {
    font-size: 16px;
    color: #3b5163;
    margin-bottom: 3px;
}

.contact-sub {
    font-size: 15px;
    color: #6b7a88;
}

/* Mobile center spacings */
@media(max-width: 768px) {
    .contact-box {
        margin-bottom: 30px;
    }
}

/* footer css */
.footer-main {
    background: #003f5c;
    color: #cfe8ff;
}

.footer-logo img {
    filter: brightness(100%);
}

.footer-heading {
    color: #48c78e;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-text {
    color: #bcd4e6;
    font-size: 16px;
    margin: 3px 0;
}

.footer-address li {
    list-style: none;
    margin: 10px 0;
    font-size: 17px;
    color: #d6e7f5;
}
.footer-address i {
    color: #48c78e;
    margin-right: 8px;
}
.footer-address hr {
    border-color: rgba(255,255,255,0.15);
}

.newsletter-box {
    display: flex;
    margin-top: 10px;
}
.newsletter-input {
    padding: 12px;
    width: 65%;
    border-radius: 30px 0 0 30px;
    border: none;
    outline: none;
}
.newsletter-btn {
    width: 35%;
    border-radius: 0 30px 30px 0;
    border: none;
    background: #48c78e;
    color: #fff;
    font-weight: 600;
}

.footer-social a {
    margin: 0 5px;
    display: inline-block;
}
.footer-social i {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    background: #7ed4a4;
    color: #002b3d;
    text-align: center;
    padding: 12px 0;
    font-weight: 500;
    font-size: 16px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
    }
    .newsletter-input, .newsletter-btn {
        width: 100%;
        border-radius: 30px;
        margin-bottom: 8px;
    }
}

.experience-section {
  background: #ffffff;
}

.exp-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2447;
  letter-spacing: 2px;
}

.exp-img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.exp-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2447;
}

.exp-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  max-width: 540px;
}

.exp-btn {
  background: #06224a;
  padding: 12px 30px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.exp-btn:hover {
  background: #0b3d7e;
}


.join-team-section {
  background: #ffffff;
}

.jt-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2447;
  margin-bottom: 18px;
}

.jt-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  max-width: 540px;
  margin: auto;
}

.jt-btn {
  background: #06224a;
  padding: 14px 38px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.jt-btn:hover {
  background: #0b3d7e;
}

.jt-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* LEFT TEXT CENTER IN MOBILE */
@media (max-width: 992px) {
  .jt-desc { margin-bottom: 25px; }
}


.connect-section {
  background: #ffffff;
}

.connect-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0b2447;
}

.connect-heading span {
  font-style: italic;
}

.connect-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.connect-form-box {
  background: #06224a;
  border-radius: 12px;
  padding: 35px;
}

.connect-form-box .form-label {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.connect-form-box .form-control,
.connect-form-box .form-select {
  border-radius: 8px;
  height: 50px;
  font-size: 15px;
}

.submit-btn {
  background: #8cd9a4;
  border: none;
  color: #ffffff;
  font-size: 18px;
  padding: 12px 0;
  border-radius: 35px;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
  cursor: pointer;
}


/* SLIDING RIGHT PANEL */
.appointment-panel {
    position: fixed;
    top: 0;
    right: -430px;   /* Hidden position */
    width: 430px;
    height: 100vh;
    background: #06224a;
    color: #fff;
    padding: 28px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: 0.45s ease;
    z-index: 9999;
    overflow-y: auto;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.appointment-panel.open {
    right: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.panel-header h4 {
    font-size: 23px;
    font-weight: 700;
}

.close-panel {
    font-size: 22px;
    cursor: pointer;
    background: #fff;
    color: #06224a;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
}

.submit-btn {
    background: #8cd9a4;
    padding: 12px;
    border-radius: 35px;
    color: #fff;
    font-size: 18px;
    border: none;
}
@media(max-width:520px){
    .appointment-panel{
        width: 100%;
    }
}

/* service */

.teeth-section {
  background: #ffffff;
}

.teeth-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
}

.teeth-title {
  font-size: 42px;
  font-weight: 700;
  color: #003b5c;
}

.teeth-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #4c5b67;
  margin-top: 12px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  font-size: 17px;
  font-weight: 500;
  color: #003550;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list li::before {
  content: "●";
  font-size: 14px;
  color: #01a7c5;
}

.treatment-section {
    border-radius: 20px;
}

.treatment-title {
    font-size: 40px;
    font-weight: 700;
    color: #004b6d;
    margin-bottom: 18px;
}

.treatment-desc {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

.treat-list {
    list-style: none;
    padding: 0;
}

.treat-list li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #275673;
    position: relative;
    padding-left: 22px;
}

.treat-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b3ff;
    font-size: 28px;
    line-height: 15px;
}

.treat-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}


/* fqn */
.faq-section {
    padding: 0;
    width: 100%;
}

.faq-banner {
    background-image: url('images/service.jpeg');
    background-size: cover;
    background-position: center;
    height: 55vh;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    position: relative;
}

.faq-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #fff 100%);
}

.faq-container {
    display: flex;
    justify-content: space-between;
    margin-top: -60px;
    padding: 60px 20px;
}

.faq-left {
    width: 40%;
}

.faq-left h2 {
    font-size: 38px;
    color: #003d5c;
    font-weight: 700;
}

.faq-left p {
    font-size: 17px;
    color: #6b7a88;
    margin-top: 10px;
}

.faq-right {
    width: 55%;
}

.faq-item {
    border-bottom: 1px solid #e0e6f0;
    padding: 18px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #003d5c;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 8px 5px 0;
}

.faq-answer p {
    font-size: 16px;
    color: #5c6977;
    line-height: 1.5;
}

.plus {
    font-size: 25px;
    font-weight: 700;
    transition: 0.3s;
}

/* Active state */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .plus {
    transform: rotate(45deg);
    color: #008dd0;
}

/* Mobile */
@media(max-width: 768px) {
    .faq-container { flex-direction: column; }
    .faq-left, .faq-right { width: 100%; }
    .faq-banner { font-size: 45px; padding-left: 20px; }
}

