@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
:root {
    --brand: #1172b6;
    --brand-dark: #469dc5;
    --brand-light: #a5b4fc;
    --accent: #46a1c5;
    --accent-light: #fbbf24;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --ink: #ffffff;
    --text:#001d9e;
    --ink-light: #64748b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}



h1, h2 ,h3 {
     font-family: "Roboto Flex", sans-serif;
}

/* Ensure anchored sections aren't hidden behind navbar */
:where(header, section, div, footer)[id] {
    scroll-margin-top: 96px; /* approx navbar height on desktop */
}

@media (max-width: 991.98px) {
    :where(header, section, div, footer)[id] {
        scroll-margin-top: 72px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}



/* navbar */
.navbar {
    backdrop-filter: blur(10px);
    background: #004aab  !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #004aab  !important;
    box-shadow: var(--shadow-lg);
}

.nav-item a {
    color: var(--ink);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
}

/* Mobile navbar improvements */
@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        height: 56px;
        width: auto;
    }

    .navbar .navbar-toggler {
        border: 2px solid rgb(255 255 255 / 80%);
        padding: 0.35rem 0.5rem;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
    }

    .navbar .navbar-toggler-icon {
        filter: invert(35%);
        width: 1.5rem;
        height: 1.5rem;
    }

    .navbar .collapse.show {
        background: rgb(0 74 171);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        padding: 0.5rem 0.25rem;
        border-radius: 0 0 12px 12px;
    }

    #navMenu .nav-link {
        padding: 0.75rem 0.75rem !important;
        margin: 0.125rem 0.25rem;
        border-radius: 10px;
    }

    #navMenu .btn.btn-brand {
        width: 100%;
        margin-top: 0.25rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
}

.nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item a:hover::before,
.nav-item a.active::before {
    width: 80%;
}

.nav-item a.active {
    color: var(--brand);
    font-weight: 600;
    background: rgba(180, 181, 197, 0.05);
}

.nav-item a:hover {
    color: var(--brand);
    background: rgba(71, 73, 211, 0.05);
    transform: translateY(-1px);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-brand:hover::before {
    left: 100%;
}

.btn-brand:hover {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: #fff;
}

.btn-outline-dark {
    border: 2px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.badge-soft {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--brand);
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.badge-soft:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(245, 158, 11, 0.15));
}

.badge-soft span {
    white-space: normal;
    font-size: 0.85rem;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--brand);
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 2px;
}

.shadow-soft {
    box-shadow: var(--shadow-lg);
}

/* Section backgrounds */
.bg-light {
    background: linear-gradient(135deg, var(--gray-50), rgba(255, 255, 255, 0.8)) !important;
    position: relative;
}

/* Mobile footer (bottom nav) */
.mobile-footer {
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.96)) !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
}

.mobile-footer .nav-item {
    flex: 1 1 0;
}

.mobile-footer a {
    position: relative;
    color: var(--ink);
    transition: all 0.25s ease;
}

.mobile-footer a i {
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-footer a:active i,
.mobile-footer a.active i {
    transform: translateY(-2px) scale(1.05);
    color: var(--brand);
}

.mobile-footer a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 28px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: translateX(-50%);
}

.mobile-footer .call-fab {
width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    top: -18px;
    border: none;
    left: 10px;
}

.mobile-footer .call-fab::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(0,0,0,0.08), transparent 70%);
    z-index: -1;
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 106, 178, 0.35); }
    70% { box-shadow: 0 0 0 16px rgba(0, 106, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 106, 178, 0); }
}

.mobile-footer .call-fab {
    animation: ringPulse 2.2s infinite;
}

/* Safe area for iOS */
@supports (padding: max(0px)) {
    .mobile-footer {
        padding-bottom: max(env(safe-area-inset-bottom), 8px);
    }
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.rounded-4 {
    border-radius: 1.25rem
}

/* Hero */
.hero {
    background:
        radial-gradient(1200px 700px at 80% -20%, rgba(99, 102, 241, 0.15), transparent 60%),
        radial-gradient(800px 500px at 20% 100%, rgba(245, 158, 11, 0.1), transparent 50%),
        linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(245, 158, 11, 0.05)),
        linear-gradient(180deg, var(--gray-50), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
}

/* Headline and sub-headline colors */
.hero h1,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand);
}

.lead {
    color: var(--brand-dark) !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236366f1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%236366f1" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23f59e0b" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero .doc-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.hero .doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.doc-card img {
    width: 205px;
    height: 210px;
}

.checklist i {
    color: var(--brand);
}

/* Sticky CTA */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1030;
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25b0d3, #122f8c);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.floating-cta a:hover::before {
    left: 100%;
}

.floating-cta a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

@media (max-width: 576px) {
    .floating-cta a {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        border-radius: 50px;
    }

    .floating-cta i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Prevent content hidden behind mobile footer */
    body {
        padding-bottom: 84px; /* mobile footer height + spacing */
    }
}

/* Navbar */
.navbar-brand b {
    color: var(--brand-dark)
}

/* Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card i {
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--brand) !important;
}

/* 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.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--brand);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.condition-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.condition-badge:hover::before {
    left: 100%;
}

.condition-badge:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1));
    border-color: var(--brand);
    color: var(--brand-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}




@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;
    }


}


@media (max-width: 768px) {
    .logo img {
        height: 56px !important;
        width: auto;
    }
}


@media (max-width: 767.98px) {
    /* Disable sticky navbar on mobile */
    #mainNav.sticky-top,
    .navbar.sticky-top {
        position: static !important;
        top: auto !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
}


#faq {
    text-align: justify;
}