<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dentixa - Dental Clinic</title>
    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link
        href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap"
        rel="stylesheet">
    <!-- FontAwesome for icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        :root {
            --primary-blue: #1877F2;
            --dark: #111111;
            --text-dark: #333333;
            --text-gray: #666666;
            --bg-gray: #f7f9fc;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
            font-family: 'Outfit', sans-serif;
        }

        .logo svg {
            width: 32px;
            height: 32px;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            transition: color 0.3s ease;
        }

        nav a:hover,
        nav a.active {
            color: var(--primary-blue);
        }

        .btn {
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #145dbf;
        }

        /* Hero Section */
        .hero {
            background-color: var(--bg-gray);
            border-radius: 40px;
            margin: 10px 40px;
            padding: 60px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 64px;
            line-height: 1.1;
            color: var(--dark);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--primary-blue);
        }

        .hero p {
            color: var(--text-gray);
            font-size: 16px;
            margin-bottom: 40px;
            max-width: 450px;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .hero-stats .stat-number {
            font-size: 40px;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            display: flex;
            align-items: center;
        }

        .hero-stats .stat-number span {
            color: var(--primary-blue);
        }

        .hero-stats .stat-text {
            font-size: 14px;
            color: var(--text-gray);
            max-width: 180px;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            width: 450px;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            mix-blend-mode: multiply;
        }

        .hero-date {
            position: absolute;
            top: 40px;
            right: 80px;
            text-align: right;
            font-size: 12px;
            color: var(--text-gray);
        }

        /* Stats Row */
        .stats-row {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-item h3 {
            font-size: 56px;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .stat-item p {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.3;
            max-width: 80px;
        }

        /* Services Section */
        .services {
            background-color: var(--dark);
            border-radius: 40px;
            padding: 80px;
            margin: 0 40px;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
            color: #fff;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

        .services h2 {
            font-size: 48px;
            max-width: 500px;
            line-height: 1.1;
        }

        .services-desc {
            color: #999;
            font-size: 14px;
            max-width: 350px;
            text-align: right;
        }

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

        .service-card {
            background-color: #1a1a1a;
            border-radius: 24px;
            padding: 24px;
            transition: transform 0.3s ease;
        }

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

        .service-img {
            width: 100%;
            height: 220px;
            border-radius: 16px;
            object-fit: cover;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #888;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Discount Section */
        .discount {
            display: flex;
            gap: 60px;
            padding: 100px 40px;
            max-width: 1320px;
            margin: 0 auto;
            align-items: center;
        }

        .discount-content {
            flex: 1;
            max-width: 500px;
        }

        .discount h2 {
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .discount p {
            color: var(--text-gray);
            font-size: 15px;
            margin-bottom: 40px;
        }

        .membership-action {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .avatars {
            display: flex;
        }

        .avatars img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -12px;
            background: #eee;
            object-fit: cover;
        }

        .avatars img:first-child {
            margin-left: 0;
        }

        .arrow-text {
            font-size: 12px;
            color: var(--text-dark);
            max-width: 120px;
            line-height: 1.3;
        }

        .discount-cards {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .d-card {
            border-radius: 24px;
            padding: 40px;
            position: relative;
        }

        .d-card-1 {
            background-color: #Faf7f0;
        }

        .d-card-2 {
            background-color: #f0f8fb;
        }

        .d-card h3 {
            font-size: 64px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 15px;
            font-family: 'Outfit', sans-serif;
        }

        .d-card p {
            font-size: 14px;
            color: var(--text-gray);
            max-width: 90%;
            margin-bottom: 0;
        }

        .smile-icon {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 50px;
            opacity: 0.2;
        }

        /* Dentists Section */
        .dentists {
            padding: 0 40px;
            max-width: 1320px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 40px;
            color: var(--dark);
        }

        .arrows {
            display: flex;
            gap: 12px;
        }

        .arrow-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
            color: #666;
        }

        .arrow-btn.active {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: #fff;
        }

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

        .dentist-card {
            border-radius: 20px;
            overflow: hidden;
        }

        .dentist-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 20px;
            background: #f0f0f0;
        }

        .dentist-card.active .dentist-img {
            border: 2px solid var(--primary-blue);
            padding: 4px;
        }

        .dentist-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 8px;
        }

        .dentist-info h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .dentist-info p {
            font-size: 12px;
            color: var(--text-gray);
        }

        .dentist-social {
            display: flex;
            gap: 10px;
            color: #999;
            font-size: 14px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 40px;
            max-width: 1320px;
            margin: 0 auto;
        }

        .test-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

        .test-header h2 {
            font-size: 40px;
            max-width: 400px;
            line-height: 1.1;
        }

        .test-header p {
            color: var(--text-gray);
            font-size: 14px;
            max-width: 400px;
            text-align: left;
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .test-card {
            background: #f8fbfa;
            border-radius: 24px;
            padding: 32px;
            position: relative;
        }

        .test-card:nth-child(2) {
            background: #fcf8f0;
        }

        .test-card:nth-child(3) {
            background: #f0f2f8;
        }

        .quote-icon {
            font-size: 64px;
            color: #e0e0e0;
            font-family: serif;
            line-height: 1;
            margin-bottom: -20px;
        }

        .test-card p {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .test-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .author-details h5 {
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .author-details span {
            font-size: 12px;
            color: var(--text-gray);
        }

        .read-more {
            color: var(--primary-blue);
            font-size: 13px;
            font-weight: 500;
        }

        .test-arrows {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        /* CTA Banner */
        .cta-banner {
            background-color: var(--primary-blue);
            border-radius: 32px;
            margin: 0 40px 80px;
            padding: 60px 80px;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .cta-content p {
            font-size: 15px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 500px;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
        }

        .btn-outline {
            border: 1px solid #fff;
            color: #fff;
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-white {
            background: #fff;
            color: var(--primary-blue);
        }

        .btn-white i {
            margin-left: 8px;
        }

        .cta-image {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 120%;
            z-index: 1;
        }

        .cta-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
        }

        /* Footer */
        footer {
            padding: 60px 40px;
            max-width: 1320px;
            margin: 0 auto;
            border-top: 1px solid #eee;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 20px 0;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 12px;
            color: #999;
        }

        .social-links a {
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-blue);
        }

        .footer-links {
            display: flex;
            gap: 60px;
        }

        .link-group h5 {
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 600;
        }

        .link-group ul {
            list-style: none;
        }

        .link-group ul li {
            margin-bottom: 12px;
        }

        .link-group ul a {
            font-size: 14px;
            color: var(--text-gray);
            transition: color 0.3s;
        }

        .link-group ul a:hover {
            color: var(--primary-blue);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: 40px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
            gap: 20px;
        }

        .app-downloads {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-downloads span {
            font-size: 14px;
            font-weight: 600;
        }

        .app-buttons {
            display: flex;
            gap: 12px;
        }

        .app-btn {
            background: var(--dark);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
        }

        .app-btn i {
            font-size: 20px;
        }

        .working-hours,
        .location {
            max-width: 250px;
        }

        .footer-bottom h5 {
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .footer-bottom p i {
            margin-top: 3px;
            color: #999;
        }

        @media (max-width: 992px) {

            .hero,
            .discount,
            .cta-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px;
            }

            .hero-content,
            .discount-content,
            .cta-content {
                max-width: 100%;
                margin-bottom: 40px;
            }

            .hero-stats {
                justify-content: center;
            }

            .stats-row {
                flex-wrap: wrap;
            }

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

            .footer-links {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {

            .services-grid,
            .dentists-grid,
            .test-grid {
                grid-template-columns: 1fr;
            }

            .services-header,
            .test-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .services-desc,
            .test-header p {
                text-align: left;
            }

            header {
                flex-direction: column;
                gap: 20px;
            }
        }

        /* Mobile Optimization & Hamburger Menu (Inline) */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }

        .mobile-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--dark);
            transition: all 0.3s ease-in-out;
            border-radius: 2px;
        }

        .mobile-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 992px) {
            header {
                position: relative;
                padding: 20px;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
            }

            .mobile-toggle {
                display: block;
            }

            nav {
                position: fixed;
                left: -100%;
                top: 80px;
                gap: 0;
                flex-direction: column;
                background-color: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                z-index: 999;
                padding: 20px 0;
            }

            nav.active {
                left: 0;
            }

            nav a {
                display: block;
                margin: 15px 0;
                font-size: 18px;
            }

            header>.btn {
                display: none;
            }

            section {
                padding: 60px 20px !important;
            }

            .hero,
            .discount,
            .cta-banner {
                flex-direction: column !important;
                text-align: center !important;
                padding: 40px 20px !important;
            }

            .hero-content,
            .discount-content,
            .cta-content {
                max-width: 100% !important;
                margin-bottom: 30px !important;
            }

            .hero-stats {
                justify-content: center !important;
            }

            .hero-image {
                width: 100%;
            }

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

            h1 {
                font-size: 36px !important;
            }

            h2 {
                font-size: 32px !important;
            }

            .services-grid,
            .dentists-grid,
            .test-grid,
            .masonry-grid,
            .fac-grid,
            .blog-grid,
            .blog-cards {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            .stats-row {
                flex-wrap: wrap !important;
                gap: 20px;
                justify-content: center;
            }

            .two-col-section,
            .two-col-section.reverse {
                flex-direction: column !important;
                gap: 30px !important;
            }

            .footer-content {
                flex-direction: column;
                gap: 40px;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px !important;
            }

            h2 {
                font-size: 24px !important;
            }

            .services-grid,
            .dentists-grid,
            .test-grid,
            .masonry-grid,
            .fac-grid,
            .blog-grid,
            .blog-cards {
                grid-template-columns: 1fr !important;
            }

            .services-header,
            .test-header {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 15px !important;
            }

            .services-desc,
            .test-header p {
                text-align: left !important;
                margin-bottom: 20px;
            }

            .stat-item {
                width: 45%;
            }

            .newsletter {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter input {
                width: 100%;
            }

            .newsletter button {
                width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }
        }
    </style>
</head>

<body>

    <!-- Header -->
    <header>
        <div class="logo">
            <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M4 16C4 16 6.5 9 12 9C17.5 9 20 16 20 16" stroke="#1877F2" stroke-width="2.5"
                    stroke-linecap="round" />
                <path d="M9 16V14C9 12.5 10.5 11 12 11C13.5 11 15 12.5 15 14V16" stroke="#1877F2" stroke-width="2.5"
                    stroke-linecap="round" />
                <circle cx="12" cy="18" r="2" fill="#1877F2" />
            </svg>
            Dentixa
        </div>
        <button class="mobile-toggle">
            <span class="bar"></span>
            <span class="bar"></span>
            <span class="bar"></span>
        </button>
        <nav>
            <a href="index.html" class="active">Home</a>
            <a href="about.html">About</a>
            <a href="services.html">Our Services</a>
            <a href="blog.html">Blog</a>
            <a href="clinic.html">Our Clinics</a>
        </nav>
        <button class="btn btn-primary">Book Online</button>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-date">
            <p>July 29, 2023</p>
            <p>We're Open Clinic</p>
            <p>09 AM - 16 PM</p>
        </div>
        <div class="hero-content">
            <h1>Get a <span>Beautiful</span><br>Straight Smile<br><span>Quickly.</span></h1>
            <p>Transform your smile quickly and effortlessly with our exceptional services. We understand the importance
                of having a beautiful, straight smile, and that's why we offer efficient solutions tailored to your
                needs.</p>
            <button class="btn btn-primary">Book Now</button>

            <div class="hero-stats">
                <div class="stat-number">827<span>+</span></div>
                <div class="stat-text">Transform your smile quickly and with our exceptional services.</div>
            </div>
        </div>
        <div class="hero-image">
            <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/hero_jaw_1780204625007.jpg"
                alt="Dental Jaw Model">
        </div>
    </section>

    <!-- Stats Row -->
    <div class="stats-row">
        <div class="stat-item">
            <h3>170</h3>
            <p>Performed surgeries</p>
        </div>
        <div class="stat-item">
            <h3>85</h3>
            <p>Satisfied Patients</p>
        </div>
        <div class="stat-item">
            <h3>176</h3>
            <p>Staff Members</p>
        </div>
        <div class="stat-item">
            <h3>98</h3>
            <p>Yearly Surgeries</p>
        </div>
    </div>

    <!-- Services Section -->
    <section class="services">
        <div class="services-header">
            <h2>We specialize in you,<br>whatever your specialty</h2>
            <p class="services-desc">At our company, we take pride in providing individually customized solutions that
                are specifically tailored to meet your unique expertise, requirements, and preferences</p>
        </div>
        <div class="services-grid">
            <div class="service-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/service_checkup_1780204656455.jpg"
                    alt="Checkups" class="service-img">
                <h3>Vibrant Checkups</h3>
                <p>At our dental practice, we believe that regular dental exams are the cornerstone of a healthy and
                    radiant smile.</p>
            </div>
            <div class="service-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/service_cleaning_1780204673161.jpg"
                    alt="Cleaning" class="service-img">
                <h3>Revitalized Cleaning</h3>
                <p>At our dental practice, we understand that maintaining optimal oral health is essential for a radiant
                    smile and overall well-being.</p>
            </div>
            <div class="service-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/service_fillings_1780204688970.jpg"
                    alt="Fillings" class="service-img">
                <h3>Reinforced Fillings</h3>
                <p>At our dental practice, we prioritize the longevity and functionality of your smile. Our reinforced
                    fillings offer a robust</p>
            </div>
        </div>
    </section>

    <!-- Discount Section -->
    <section class="discount">
        <div class="discount-content">
            <h2>Your Family's Dental Health Matters: Discover Our Budget-Friendly Discount Plan.</h2>
            <p>Unlock Optimal Dental Wellness For Your Loved Ones Embrace Our Budget-Friendly Discount Plan for
                Comprehensive Care and Radiant Smiles!</p>

            <div class="membership-action">
                <div class="avatars">
                    <img src="https://i.pravatar.cc/100?img=1" alt="Avatar">
                    <img src="https://i.pravatar.cc/100?img=2" alt="Avatar">
                    <img src="https://i.pravatar.cc/100?img=3" alt="Avatar">
                    <img src="https://i.pravatar.cc/100?img=4" alt="Avatar">
                    <img src="https://i.pravatar.cc/100?img=5" alt="Avatar">
                </div>
                <div class="arrow-text">
                    <i class="fa-solid fa-arrow-turn-down"></i><br>
                    Embark on a Journey of Savings and Brighter Smiles
                </div>
                <button class="btn btn-primary">Join Membership</button>
            </div>
        </div>
        <div class="discount-cards">
            <div class="d-card d-card-1">
                <svg class="smile-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path
                        d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
                        stroke="#333" stroke-width="2" />
                    <path d="M8 14C8 14 9.5 16 12 16C14.5 16 16 14 16 14" stroke="#333" stroke-width="2"
                        stroke-linecap="round" />
                    <circle cx="9" cy="9" r="1" fill="#333" />
                    <circle cx="15" cy="9" r="1" fill="#333" />
                </svg>
                <h3>80%</h3>
                <p>Exclusive Member Savings Save 30% - 80% on Dental Procedures, Including Oral Exams, Cleanings, and
                    X-Rays</p>
            </div>
            <div class="d-card d-card-2">
                <svg class="smile-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path
                        d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
                        stroke="#333" stroke-width="2" />
                    <path d="M8 14C8 14 9.5 16 12 16C14.5 16 16 14 16 14" stroke="#333" stroke-width="2"
                        stroke-linecap="round" />
                    <circle cx="9" cy="9" r="1" fill="#333" />
                    <circle cx="15" cy="9" r="1" fill="#333" />
                </svg>
                <h3>40%</h3>
                <p>Enhanced Member Benefits: Save 40% on All Other Dental Services, including Cosmetic, Restorative, and
                    Specialty Dental Procedures.</p>
            </div>
        </div>
    </section>

    <!-- Dentists Section -->
    <section class="dentists">
        <div class="section-header">
            <h2>Introducing Our<br>Dedicated Dentists</h2>
            <div class="arrows">
                <button class="arrow-btn"><i class="fa-solid fa-arrow-left"></i></button>
                <button class="arrow-btn active"><i class="fa-solid fa-arrow-right"></i></button>
            </div>
        </div>
        <div class="dentists-grid">
            <div class="dentist-card active">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/dentist_1_1780204705915.jpg"
                    alt="Ricardo Dray" class="dentist-img">
                <div class="dentist-info">
                    <div>
                        <h4>Ricardo Dray</h4>
                        <p>Practical Nurse</p>
                    </div>
                    <div class="dentist-social">
                        <i class="fa-brands fa-instagram"></i>
                        <i class="fa-brands fa-facebook"></i>
                        <i class="fa-brands fa-twitter"></i>
                    </div>
                </div>
            </div>
            <div class="dentist-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/dentist_2_1780204720355.jpg"
                    alt="Marcel Bryan" class="dentist-img">
                <div class="dentist-info">
                    <div>
                        <h4>Marcel Bryan</h4>
                        <p>Patient Services Manager</p>
                    </div>
                    <div class="dentist-social">
                        <i class="fa-brands fa-instagram"></i>
                        <i class="fa-brands fa-facebook"></i>
                        <i class="fa-brands fa-twitter"></i>
                    </div>
                </div>
            </div>
            <div class="dentist-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/dentist_3_1780204736019.jpg"
                    alt="Mariana Jola" class="dentist-img">
                <div class="dentist-info">
                    <div>
                        <h4>Mariana Jola</h4>
                        <p>Dental Hygienist</p>
                    </div>
                    <div class="dentist-social">
                        <i class="fa-brands fa-instagram"></i>
                        <i class="fa-brands fa-facebook"></i>
                        <i class="fa-brands fa-twitter"></i>
                    </div>
                </div>
            </div>
            <div class="dentist-card">
                <img src="http://orisdentalcares.com/wp-content/uploads/2026/06/dentist_4_1780204756778.jpg"
                    alt="Serbian Yale" class="dentist-img">
                <div class="dentist-info">
                    <div>
                        <h4>Serbian Yale</h4>
                        <p>Dentist</p>
                    </div>
                    <div class="dentist-social">
                        <i class="fa-brands fa-instagram"></i>
                        <i class="fa-brands fa-facebook"></i>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials Section -->
    <section class="testimonials">
        <div class="test-header">
            <h2>See What Our<br>Clients Have to Say:</h2>
            <p>Embark on a Journey through Heartfelt Experiences - Unveil the Praises and Testimonials from Our Esteemed
                Clients, Unraveling the Unmatched Quality of Our Services!</p>
        </div>
        <div class="test-grid">
            <div class="test-card">
                <div class="quote-icon">“</div>
                <p>The clinic is also exceptionally clean and prioritizes hygiene. They follow strict cleanliness
                    protocols, which gives me added confidence that I am in a safe environment for dental care.</p>
                <div class="test-author">
                    <div class="author-info">
                        <img src="https://i.pravatar.cc/100?img=9" alt="Crysty Harly">
                        <div class="author-details">
                            <h5>Crysty Harly</h5>
                            <span>Product Manager</span>
                        </div>
                    </div>
                    <a href="#" class="read-more">Read More <i class="fa-solid fa-angle-right"></i></a>
                </div>
            </div>
            <div class="test-card">
                <div class="quote-icon">“</div>
                <p>The clinic is also exceptionally clean and prioritizes hygiene. They follow strict cleanliness
                    protocols, which gives me added confidence that I am in a safe environment for dental care.</p>
                <div class="test-author">
                    <div class="author-info">
                        <img src="https://i.pravatar.cc/100?img=10" alt="Selina Martin">
                        <div class="author-details">
                            <h5>Selina Martin</h5>
                            <span>Product Manager</span>
                        </div>
                    </div>
                    <a href="#" class="read-more">Read More <i class="fa-solid fa-angle-right"></i></a>
                </div>
            </div>
            <div class="test-card">
                <div class="quote-icon">“</div>
                <p>The clinic is also exceptionally clean and prioritizes hygiene. They follow strict cleanliness
                    protocols, which gives me added confidence that I am in a safe environment for dental care.</p>
                <div class="test-author">
                    <div class="author-info">
                        <img src="https://i.pravatar.cc/100?img=11" alt="Yacob">
                        <div class="author-details">
                            <h5>Yacob S</h5>
                            <span>Product Manager</span>
                        </div>
                    </div>
                    <a href="#" class="read-more">Read More <i class="fa-solid fa-angle-right"></i></a>
                </div>
            </div>
        </div>
        <div class="test-arrows">
            <button class="arrow-btn"><i class="fa-solid fa-arrow-left"></i></button>
            <button class="arrow-btn active"><i class="fa-solid fa-arrow-right"></i></button>
        </div>
    </section>

    <!-- CTA Banner -->
    <section class="cta-banner">
        <div class="cta-bg-pattern"></div>
        <div class="cta-content">
            <h2>Seize the opportunity for a<br>brighter smile starting now!</h2>
            <p>Embracing the Now or Never Moment: Unlocking the Gateway to a Brighter, More Captivating Smile Beyond
                Your Wildest Dreams!</p>
            <div class="cta-btns">
                <button class="btn btn-outline">Schedule</button>
                <button class="btn btn-white">Book Now <i class="fa-solid fa-arrow-right"></i></button>
            </div>
        </div>
        <div class="cta-image"
            style="position: absolute; right: 0; bottom: 0; width: 50%; height: 120%; background-image: url('http://orisdentalcares.com/wp-content/uploads/2026/06/banner_smile_1780204640303.jpg'); background-repeat: no-repeat; background-position: right bottom; background-size: contain; z-index: 1;">
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="footer-top">
            <div class="footer-brand">
                <div class="logo">
                    <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M4 16C4 16 6.5 9 12 9C17.5 9 20 16 20 16" stroke="#1877F2" stroke-width="2.5"
                            stroke-linecap="round" />
                        <path d="M9 16V14C9 12.5 10.5 11 12 11C13.5 11 15 12.5 15 14V16" stroke="#1877F2"
                            stroke-width="2.5" stroke-linecap="round" />
                        <circle cx="12" cy="18" r="2" fill="#1877F2" />
                    </svg>
                    Dentixa
                </div>
                <p>Transforming Your Family's Dental Care Experience with Our Comprehensive One-Stop Solution!</p>
                <div class="social-links">
                    <a href="#"><i class="fa-brands fa-twitter"></i></a>
                    <a href="#"><i class="fa-brands fa-linkedin"></i></a>
                    <a href="#"><i class="fa-brands fa-facebook"></i></a>
                    <a href="#"><i class="fa-brands fa-github"></i></a>
                    <a href="#"><i class="fa-solid fa-peace"></i></a>
                    <a href="#"><i class="fa-brands fa-dribbble"></i></a>
                </div>
            </div>

            <div class="footer-links">
                <div class="link-group">
                    <h5>Phone Number</h5>
                    <ul>
                        <li><a href="#">(+123) 9230 821</a></li>
                    </ul>
                </div>
                <div class="link-group">
                    <h5>Email</h5>
                    <ul>
                        <li><a href="#">Dental.dentix@gmail.co</a></li>
                    </ul>
                </div>
                <div class="link-group">
                    <h5>About Us</h5>
                    <ul>
                        <li><a href="#">Our Services</a></li>
                        <li><a href="#">Our Clinics</a></li>
                        <li><a href="#">Dentists</a></li>
                    </ul>
                </div>
                <div class="link-group">
                    <h5>Location</h5>
                    <ul>
                        <li><a href="#">Career</a></li>
                        <li><a href="#">Privacy Policy</a></li>
                        <li><a href="#">Terms of Services</a></li>
                    </ul>
                </div>
                <div class="link-group">
                    <h5>Social Media</h5>
                    <ul>
                        <li><a href="#">Twitter</a></li>
                        <li><a href="#">Instagram</a></li>
                        <li><a href="#">Facebook</a></li>
                    </ul>
                </div>
            </div>
        </div>

        <div class="footer-bottom">
            <div class="app-downloads">
                <span>Get the app</span>
                <div class="app-buttons">
                    <div class="app-btn">
                        <i class="fa-brands fa-apple"></i>
                        <div>
                            <div style="font-size: 8px;">Download on the</div>
                            <div>App Store</div>
                        </div>
                    </div>
                    <div class="app-btn">
                        <i class="fa-brands fa-google-play"></i>
                        <div>
                            <div style="font-size: 8px;">GET IT ON</div>
                            <div>Google Play</div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="working-hours">
                <h5>Working Days</h5>
                <p><i class="fa-regular fa-calendar"></i> Monday - Sunday</p>
                <p><i class="fa-regular fa-clock"></i> 09:00 WIB - 20:00 WIB</p>
            </div>
            <div class="location">
                <h5>Location</h5>
                <p><i class="fa-solid fa-location-dot"></i> Blok M, Jl. Majapahit III No.20, RT.9/RW.3, Maja, Malang
                    Raya, South Malang City, Malang 2397, Indonesia</p>
            </div>
        </div>
    </footer>
    <script>
        document.addEventListener('DOMContentLoaded', () => {
            const mobileToggle = document.querySelector('.mobile-toggle');
            const nav = document.querySelector('nav');
            if (mobileToggle && nav) {
                mobileToggle.addEventListener('click', () => {
                    mobileToggle.classList.toggle('active');
                    nav.classList.toggle('active');
                });
            }
        });
    </script>
</body>

</html>