:root {
    --primary: #0D1B2A;
    --secondary: #1B4965;
    --accent: #00B4D8;
    --gold: #D4AF37;
    --light: #F8FBFF;
    --white: #fff;
    --text: #253044;
    --muted: #687489;
    --border: rgba(13, 27, 42, .12);
    --shadow: 0 20px 60px rgba(13, 27, 42, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7
}

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

.container {
    width: min(1180px, 92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--border)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow)
}

.brand strong {
    display: block;
    color: var(--primary);
    line-height: 1.1
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.main-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    font-weight: 650
}

.main-nav a {
    color: var(--primary)
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 16px;
    /* border-radius: 999px */
}

.nav-toggle {
    display: none;
    background: none;
    border: 0
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    margin: 6px
}
/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 10px;
    transition: .3s;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    border: 1px solid #eee;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 7px 20px;
    color: var(--primary);
    font-weight: 500;
    transition: .25s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f7f8fb;
    color: var(--accent);
    padding-left: 28px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #222222;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f3f6f8;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.25s ease;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 90%;
    }

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

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 0;
        padding: 6px 0 6px 15px;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.04);
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown.active .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.active:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        white-space: normal;
        padding: 10px 15px;
    }
}




.hero {
    position: relative;
    overflow: hidden
}

.premium-hero {
    background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, .35), transparent 30%), linear-gradient(135deg, #07111f, #123b55);
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .5
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
    min-height: 720px;
    padding: 90px 0
}

.eyebrow {
    display: inline-flex;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px
}

.hero h1 {
    font-size: clamp(24px, 6vw, 48px);
    line-height: 1.05;
    margin: 0 0 22px
}

.hero p {
    font-size: 18px;
    /* color: rgba(255, 255, 255, .82); */
    max-width: 720px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 999px; */
    padding: 13px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0277a8);
    color: #fff
}

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

.credential-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.credential-strip span {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    padding: 8px 12px;
    /* border-radius: 999px; */
    font-size: 13px
}

.placeholder-photo {
    min-height: 440px;
    border-radius: 34px;
    background: linear-gradient(135deg, #dff8ff, #fff);
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-weight: 900;
    border: 10px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow)
}

.placeholder-photo.small {
    min-height: 300px
}

.card-glass {
    margin-top: -90px;
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    color: var(--primary);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow)
}

.section {
    padding: 50px 0px;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.section-heading h2,
.split h2,
.cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: var(--primary);
    margin: 0 0 16px;
}

.cards {
    display: grid;
    gap: 24px
}

.three {
    grid-template-columns: repeat(3, 1fr)
}

.four {
    grid-template-columns: repeat(4, 1fr)
}

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

.service-card,
.info-card,
.blog-card,
.tech-card,
.profile-panel,
.contact-card,
.medical-form,
.service-aside {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: .3s
}

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

.service-card h3,
.info-card h3,
.blog-card h3 {
    color: var(--primary);
    margin-top: 0
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(0, 180, 216, .12);
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 20px
}

.stats-section {
    background: #fff;
    padding: 42px 0
}

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

.stat {
    padding: 28px;
    border-left: 4px solid var(--accent);
    background: var(--light);
    border-radius: 22px
}

.stat strong {
    font-size: 38px;
    color: var(--secondary);
    display: block
}

.stat span {
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: start
}

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

.tick-list li {
    padding: 10px 0 10px 34px;
    position: relative
}

.tick-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--accent);
    font-weight: 900
}

.timeline {
    display: grid;
    gap: 18px
}

.timeline div {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow)
}

.timeline h4{
    margin: 5px 0px;
    line-height: 16px;
}
.timeline p{
    margin: 0px;
    line-height: 16px;
}
.timeline span {
    background: var(--primary);
    color: #fff;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900
}

.dark-section {
    background: var(--primary);
    color: #fff
}

.dark-section h2 {
    color: #fff
}

.tech-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none
}

.tech-card h3 {
    color: #fff
}

.tech-card p {
    color: rgba(255, 255, 255, .75)
}

.light-section {
    background: #fff
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #fff, #e8f9ff);
    padding: 54px;
    border-radius: 34px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

/* =========================================================
   PREMIUM INNER HERO
========================================================= */

.inner-hero {
    --hero-dark: #082f2e;
    --hero-dark-deep: #042322;
    --hero-green: #0d5350;
    --hero-gold: #c99746;
    --hero-gold-light: #f0d59c;
    --hero-white: #ffffff;

    position: relative;
    padding: 65px 0 45px;
    overflow: hidden;
    color: var(--hero-white);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 151, 70, 0.2),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--hero-dark-deep) 0%,
            var(--hero-dark) 52%,
            var(--hero-green) 100%
        );
}

/* Premium grid pattern */
.inner-hero::before {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    content: "";
    pointer-events: none;
    border: 0;
    border-radius: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

/* Decorative circular shape */
.inner-hero::after {
    position: absolute;
    top: -230px;
    right: -180px;
    bottom: auto;
    left: auto;
    width: 600px;
    height: 600px;
    content: "";
    pointer-events: none;
    border: 90px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    background: transparent;
}

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

/* Remove previous rotated decorative box */
.inner-hero .container::before {
    display: none;
}

/* Eyebrow */
.inner-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--hero-gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-hero .eyebrow::before {
    width: 38px;
    height: 1px;
    content: "";
    background: currentColor;
}

.inner-hero h1 {
    max-width: 980px;
    margin: 0 0 20px;
    color: var(--hero-white);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -2px;
}

.inner-hero p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
}

/* =========================================================
   RESPONSIVE INNER HERO
========================================================= */

@media (max-width: 767px) {
    .inner-hero {
        padding: 50px 0 35px;
    }

    .inner-hero::after {
        top: -180px;
        right: -240px;
        width: 480px;
        height: 480px;
        border-width: 70px;
    }

    .inner-hero h1 {
        margin-bottom: 16px;
        font-size: 38px;
        line-height: 1.16;
        letter-spacing: -1.3px;
    }

    .inner-hero p {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .inner-hero {
        padding: 45px 0 35px;
    }

    .inner-hero h1 {
        font-size: 32px;
    }

    .inner-hero p {
        font-size: 15px;
    }

    .inner-hero .eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start
}

.article-content {
    background: #fff;
    border-radius: 30px;
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.article-content h2 {
    font-size: 34px;
    color: var(--primary);
    margin: 0px;
}

.article-content h2:first-child {
    margin-top: 0
}

.article-content h3 {
    color: var(--secondary)
}

.article-content li {
    margin-bottom: 8px
}

.service-aside {
    position: sticky;
    top: 100px
}

.compact {
    gap: 18px
}

.compact .info-card {
    padding: 22px
}

.education-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.education-timeline div {
    background: var(--light);
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border)
}

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

.gallery-item {
    min-height: 240px;
    border-radius: 28px;
    background: linear-gradient(135deg, #dff8ff, #fff);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--secondary);
    box-shadow: var(--shadow)
}

.faq-list {
    max-width: 900px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden
}

.faq-item button {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: #fff;
    border: 0;
    font-weight: 900;
    color: var(--primary);
    font-size: 17px;
    cursor: pointer
}

.faq-item div {
    display: none;
    padding: 0 24px 20px
}

.faq-item.active div {
    display: block
}

.blog-card span {
    color: var(--gold);
    font-weight: 900
}

.blog-card a {
    color: var(--accent);
    font-weight: 900
}

.form-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: start
}

.medical-form {
    display: grid;
    gap: 16px
}

.medical-form label {
    font-weight: 800;
    color: var(--primary)
}

input,
select,
textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    font: inherit;
    background: #fff
}

.form-note {
    color: var(--secondary);
    font-weight: 800
}

.map-placeholder {
    padding: 0 0 80px
}

.map-placeholder .container div {
    height: 300px;
    border-radius: 30px;
    background: #dceef6;
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-weight: 900
}

.footer {
    background: #07111f;
    color: #fff;
    padding: 70px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px
}

.footer a {
    display: flex;
    color: rgba(255, 255, 255, .75);
    margin: 8px 0
}

.footer p {
    color: rgba(255, 255, 255, .72)
}

.footer .brand strong {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 15px;

    border-radius: 60px;

    background: linear-gradient(
        135deg,
        #0f8f61,
        #25d366
    );

    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, .35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    color: #fff;

    box-shadow:
        0 18px 36px rgba(37, 211, 102, .45);
}

.floating-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width:768px) {

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 14px;
        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }

}

/* =========================================================
   PREMIUM FOOTER CONTACT
========================================================= */

.footer-premium-contact-list {
    display: grid;
    gap: 5px;
    margin-top: 18px;
}

.footer-premium-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

a.footer-premium-contact-item:hover {
    transform: translateX(4px);
    border-color: rgba(240, 213, 156, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.footer-premium-contact-icon {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(240, 213, 156, 0.2);
    border-radius: 13px;
    background: rgba(201, 151, 70, 0.12);
    color: #f0d59c;
}

.footer-premium-contact-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-premium-contact-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.footer-premium-contact-text small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.footer-premium-contact-text strong {
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.footer-premium-contact-text em {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-style: normal;
    line-height: 1.4;
}

.footer-premium-contact-arrow {
    color: #f0d59c;
    font-size: 18px;
    transition: transform 0.25s ease;
}

a.footer-premium-contact-item:hover
.footer-premium-contact-arrow {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .footer-premium-contact-item {
        align-items: flex-start;
        padding: 12px;
    }

    .footer-premium-contact-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .footer-premium-contact-arrow {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:1000px) {
    .main-nav {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 78px;
        background: #fff;
        box-shadow: var(--shadow);
        border-radius: 24px;
        padding: 22px;
        display: none;
        flex-direction: column;
        align-items: flex-start
    }

    .main-nav.open {
        display: flex
    }

    .nav-toggle {
        display: block
    }

    .hero-grid,
    .split,
    .article-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .stats-grid,
    .four,
    .three,
    .two,
    .education-timeline,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .service-aside {
        position: static
    }

    .hero-grid {
        min-height: auto
    }

    .premium-hero {
        padding: 30px 0
    }
}

@media(max-width:640px) {

    .stats-grid,
    .four,
    .three,
    .two,
    .education-timeline,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column
    }

    .section {
        padding: 30px 0
    }

    .article-content {
        padding: 26px
    }

    /* .brand small {
        display: none
    } */

    .hero h1 {
        font-size: 34px
    }

    .placeholder-photo {
        min-height: 320px
    }
}
/* Stats Strip */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-num {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-divider {
    width: 32px;
    height: 2px;
    background: var(--accent);
    margin: 12px auto 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
}

/* Doctor About Section */
.doctor-about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: start;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.gold-rule {
    width: 46px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 24px;
}

.section-title {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 22px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 18px;
}

.credential-list {
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.credential-list li {
    position: relative;
    padding: 13px 0 13px 32px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.credential-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--accent);
    font-weight: 900;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-stat-card {
    background: var(--primary);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat-num {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 12px;
    color: #fff;
    opacity: .9;
    font-weight: 600;
}

.urgent-box {
    margin-top: 20px;
    background: rgba(0, 150, 136, .12);
    border-left: 4px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    padding: 22px 24px;
}

.urgent-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.urgent-box strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

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

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

@media (max-width: 575px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

.explore-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 10px 18px;
    /* border-radius: 999px; */
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.service-card:hover .explore-btn {
    background: var(--accent);
    transform: translateX(4px);
}


.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #10243e;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: #071f3d;
}

.article-content h3 {
    margin: 30px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
    color: #071f3d;
}

.article-content ul,
.article-content ol {
    display: block;
    margin: 0 0 24px;
    padding-left: 28px;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    display: list-item;
    margin-bottom: 12px;
    padding-left: 6px;
    line-height: 1.7;
}

.article-content li::marker {
    color: #0d6b68;
    font-weight: 700;
}

.article-content li p {
    display: inline;
    margin: 0;
}

.article-content strong {
    font-weight: 700;
    color: #071f3d;
}

@media (max-width: 767px) {
    .article-content {
        font-size: 16px;
        line-height: 1.7;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 22px;
    }

    .article-content li {
        margin-bottom: 10px;
        padding-left: 3px;
    }
}