/* ============================================================
   SEO Slider — style.css
   
   ============================================================ */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ── MAIN LAYOUT ─────────────────────────────────────────── */
.dental-seo-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 40px;
    font-family: 'Inter', sans-serif;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.seo-sidebar {
    flex: 0.8;
}

.sidebar-content {
    position: sticky;
    top: 100px;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-left: 25px;
    border-left: 2px solid #eee;
}

/* ── NAV ITEMS ───────────────────────────────────────────── */
.nav-item {
    position: relative;
    opacity: 0.3;
    filter: blur(1px);
    transition: 0.4s;
}

.nav-item.active {
    opacity: 1;
    filter: blur(0);
}

.active-bar {
    position: absolute;
    left: -27px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1a73e8;   /* ← blue bar  */
    border-radius: 2px;
    display: none;
}

.nav-item.active .active-bar {
    display: block;
}

.nav-item h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.nav-item p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

/* ── RIGHT CONTENT AREA ──────────────────────────────────── */
.seo-content-area {
    flex: 2;
}

/* ── BLOCKS ──────────────────────────────────────────────── */
.content-block {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* First block extra top padding */
.first-block {
    align-items: flex-start;
    padding-top: 0px;
}

/* ── BLOCK INNER (image + text row) ─────────────────────── */
.block-inner {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* ── TEXT SIDE ───────────────────────────────────────────── */
.text-side {
    flex: 1.2;
}

.text-side p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ── CHECKLIST ───────────────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.check {
    color: #34a853;   /* ← checkmark ka color yahan badlein */
}

/* ── IMAGE SIDE ──────────────────────────────────────────── */
.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    border-radius: 10px;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .dental-seo-section {
        flex-direction: column;
    }

    .seo-sidebar {
        display: none;
    }

    .content-block {
        min-height: auto;
        padding: 40px 0;
    }
}
