@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');


:root {
    --brand: #0ea5e9;
    /* sky-500 */
    --brand-dark: #0284c7;
    /* sky-600 */
    --ink: #0f172a;
    /* slate-900 */
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);

}



/* navbar */
.nav-item a {
    color: #0f172a;
    font-weight: 500;
}

.nav-item a.active {
    color: #0ea5e9;
    font-weight: 700;
}

.nav-item a:hover {
    color: #0ea5e9;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff
}

.badge-soft {
    background: rgba(14, 165, 233, .12);
    color: var(--brand);
    border: 1px solid rgba(14, 165, 233, .25)
}

.badge-soft span {
    white-space: normal;
    font-size: 0.85rem;
}

.section-title {
    font-weight: 700;
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(2, 132, 199, .08)
}

.rounded-4 {
    border-radius: 1.25rem
}

/* Hero */
.hero {
    background: radial-gradient(1200px 700px at 80% -20%, rgba(14, 165, 233, .30), transparent 60%),
        linear-gradient(180deg, rgba(2, 132, 199, .06), rgba(2, 132, 199, 0));
}

.hero .doc-card {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(2, 132, 199, .12);
}

.doc-card img {
    width: 205px;
    height: 210px;
}

.checklist i {
    color: var(--brand);
}

/* Sticky CTA */
.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1030;
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

@media (max-width: 576px) {
    .floating-cta .btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        border-radius: 50px;
    }

    .floating-cta i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}

/* Navbar */
.navbar-brand b {
    color: var(--brand-dark)
}

/* Cards */
.feature-card:hover {
    transform: translateY(-4px);
    transition: .2s ease;
}

/* Small utilities */
.text-brand {
    color: var(--brand)
}



#about p {
    text-align: justify;
    font-size: 16px;
}


.hover-shadow:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-3px);
}

.transition {
    transition: all 0.3s ease-in-out;
}



.condition-badge {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #0284c7;
}

.condition-badge:hover {
    background-color: var(--bs-primary-bg-subtle, #e7f1ff);
    border-color: var(--bs-primary, #0d6efd);
    color: var(--bs-primary, #0d6efd);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}




@media (max-width: 576px) {

    /* Make badge text wrap nicely and center */
    .hero .badge {
        display: block;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
    }

    /* Reduce heading size for mobile */
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    /* Reduce lead paragraph padding */
    .hero p.lead {
        font-size: 0.95rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Make doc-card take full width and add margin */
    .hero .doc-card {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }

    /* Adjust phone number size for smaller screens */
    .hero .doc-card span.fw-bold {
        font-size: 1.4rem !important;
    }

    /* Checklist items - smaller text & spacing */
    .hero .doc-card ul.checklist li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    /* Make icons and text features align nicely */
    .hero .row.g-3.small.text-muted>div {
        font-size: 0.85rem;
    }
}


.logo {
    font-size: 25px;
}