/* =========================================================
   AnswerX Design System Overrides
   Bootstrap handles layout; this file handles branding,
   glassmorphism, gradients, and custom components.
   ========================================================= */

/*============ Root / Base ============*/
:root {
    /* Brand */
    --ax-blue: #1f6fff;              /* deep electric blue */
    --ax-blue-soft: rgba(31, 111, 255, 0.12);
    --ax-blue-strong: #0b3ea6;
    --ax-cyan: #4fd3ff;

    /* Surfaces */
    --ax-bg-offwhite: #f5f7fa;
    --ax-bg-white: #ffffff;
    --ax-bg-silver: #e2e6ee;
    --ax-bg-soft-silver: #eceff4;

    /* Darks */
    --ax-dark: #0b0d10;
    --ax-dark-soft: #14171d;
    --ax-footer: #05070b;

    /* Text */
    --ax-text: #0f172a;
    --ax-muted: #6b7280;
    --ax-on-dark: #f9fafb;

    /* Borders / Glass */
    --ax-border-light: rgba(255, 255, 255, 0.36);
    --ax-border-subtle: #d2d8e3;
    --ax-glass-bg: rgba(255, 255, 255, 0.72);
    --ax-glass-soft: rgba(255, 255, 255, 0.55);
    --ax-glass-dark: rgba(15, 23, 42, 0.6);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--ax-bg-offwhite);
    color: var(--ax-text);
    margin: 0;
}

/*============ NAVBAR / HEADER ============*/

.ax-nav-glass {
    background: rgba(245, 247, 250, 0.85) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    z-index: 1030;
}

.ax-nav-glass .navbar-brand {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 20px;
    color: #0b1220 !important;
}

.logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: radial-gradient(circle at 10% 0%, #4fd3ff, var(--ax-blue));
    box-shadow: 0 0 20px rgba(79, 211, 255, 0.65);
    color: #f9fafb;
    font-size: 14px;
}

.logo-text {
    color: var(--ax-blue);
    font-size: medium;
    margin-top: 10px;
}

.ax-nav-glass .nav-link {
    font-size: 14px;
    color: #4b5563 !important;
}

.ax-nav-glass .nav-link:hover {
    color: var(--ax-blue) !important;
}

/*============ HERO ============*/

.hero-section {
    padding-top: 110px; /* original value — hero spacing */
    padding-bottom: 85px;
    background: radial-gradient(circle at top left, #ffffff 0, #f5f7fa 38%, #e5edf8 100%);
}

.hero-title {
    font-size: clamp(2.6rem, 3.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--ax-blue), var(--ax-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 40px;
}

.hero-subtitle
 {
    font-size: 16px;
    max-width: 520px;
    background: #ffffffa8;
    padding: 10px;
    border-radius: 10px;
}

.hero-metrics span {
    font-size: 13px;
    color: var(--ax-muted);
}

/*============ Pills & Badges ============*/

.ax-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(15, 23, 42, 0.03);
    color: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.ax-pill i {
    color: var(--ax-blue);
}

.ax-card-pill {
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(248, 250, 252, 0.9);
    color: #4b5563;
}

.ax-success-pill {
    background-color: rgba(34, 197, 94, 0.06);
    color: #166534;
    border: 1px solid rgba(74, 222, 128, 0.5);
}

/*============ Buttons ============*/

.ax-btn-primary {
    border-radius: 999px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 15px;
    border: none;
    background: radial-gradient(circle at 0% 0%, #4fd3ff, var(--ax-blue));
    color: #fff;
    box-shadow: 0 12px 30px rgba(31, 111, 255, 0.35);
    position: relative;

    overflow: hidden;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.ax-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.65), transparent);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.18s ease-out, left 0.5s ease-out;
}

.ax-btn-primary:hover::after {
    opacity: 1;
    left: 140%;
}

.ax-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(31, 111, 255, 0.48);
    color: #fff;
}

.ax-btn-ghost {
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(255, 255, 255, 0.85);
    color: #111827;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.15s ease-out, color 0.15s ease-out, background-color 0.15s ease-out;
}

.ax-btn-ghost:hover {
    border-color: var(--ax-blue);
    color: var(--ax-blue);
    background-color: rgba(255, 255, 255, 1);
}

/*============ HERO MOCKUP (VisionOS glass) ============*/

.hero-mockup-wrapper {
    position: relative;
}

.hero-mockup-background {
    position: absolute;
    inset: -18px;
    background:
        radial-gradient(circle at 20% 0%, rgba(79, 211, 255, 0.4), transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(31, 111, 255, 0.45), transparent 60%);
    filter: blur(20px);
    opacity: 0.9;
    z-index: -1;
}

.ax-glass,
.hero-mockup {
    border-radius: 22px;
    border: 1px solid var(--ax-border-light);
    background: linear-gradient(145deg, var(--ax-glass-bg), var(--ax-glass-soft));
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
	border-color: #FF6E00;
}

.hero-mockup-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-avatar {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: radial-gradient(circle at 10% 0%, #4fd3ff, var(--ax-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 18px rgba(79, 211, 255, 0.55);
}

.hero-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(22, 163, 74, 0.06);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

/* Chat bubbles */
.chat-bubble {
    border-radius: 14px;
    padding: 9px 12px;
    font-size: 13px;
}

.chat-bubble.client {
    background-color: rgba(15, 23, 42, 0.06);
    align-self: flex-start;
}

.chat-bubble.agent {
    background: linear-gradient(135deg, rgba(31, 111, 255, 0.12), rgba(79, 211, 255, 0.14));
    border: 1px solid rgba(31, 111, 255, 0.4);
    align-self: flex-end;
}

.hero-badges {
    font-size: 11px;
}

.hero-badge {
    border-radius: 999px;
    padding: 4px 9px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(255, 255, 255, 0.75);
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/*============ Sections / Titles ============*/

.section-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ax-text);
}

.section-subtitle {
    font-size: 14px;
    color: var(--ax-muted);
    max-width: 540px;
}

/* Section backgrounds */

.services-section {}

.fix-section {
    background-color: var(--ax-bg-soft-silver);
}

.onboarding-section.ax-dark-section {
    background: radial-gradient(circle at top, #1f2937 0, var(--ax-dark) 52%, #05070b 100%);
    color: var(--ax-on-dark);
}

.pricing-section {}

.contact-section {
    background-color: var(--ax-bg-offwhite);
}

/*============ Cards ============*/

.ax-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ax-card-dark {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: radial-gradient(circle at top left, rgba(31, 111, 255, 0.18), rgba(15, 23, 42, 0.94));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--ax-on-dark);
}

.ax-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: radial-gradient(circle at 10% 0%, #e0ecff, #c6d4f8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ax-blue);
    box-shadow: 0 8px 18px rgba(31, 111, 255, 0.25);
}

/* Complaint cards */

.ax-contrast-card {
    border-radius: 16px;
    border: 1px solid rgba(248, 113, 113, 0.4);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

/* Pricing cards */

.ax-price-card {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at 0% 0%, rgba(79, 211, 255, 0.12), rgba(255, 255, 255, 0.9));
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ax-price-card.muted {
    background: rgba(248, 250, 252, 0.96);
}

.highlight-card {
    box-shadow: 0 22px 50px rgba(31, 111, 255, 0.25);
    border-color: rgba(31, 111, 255, 0.68);
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
}

/*============ Timeline ============*/

.ax-timeline-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ax-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 11px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: radial-gradient(circle at 20% 0%, #4fd3ff, var(--ax-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #f9fafb;
    box-shadow: 0 0 14px rgba(31, 111, 255, 0.7);
}

.text-light-muted {
    color: #cbd5f5 !important;
}

/*============ Form / Inputs ============*/

.ax-input {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.ax-input:focus {
    border-color: var(--ax-blue);
    box-shadow: 0 0 0 1px rgba(31, 111, 255, 0.18);
}

/*============ Footer ============*/

.ax-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background-color: var(--ax-footer);
    color: #9ca3af;
    font-size: 13px;
}

.ax-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.ax-footer a:hover {
    color: var(--ax-blue);
}

/*============ Responsive Tweaks ============*/

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

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

    .hero-mockup-wrapper {
        margin-top: 12px;
    }
}

/* =========================================================
   NAVBAR OVERLAP FIX (FINAL)
   ========================================================= */

body {
    padding-top: 150px; /* Adjust this to match your live navbar height */
}

@media (max-width: 991px) {
    body {
        padding-top: 120px;
	}
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
    }
}
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

}
a {
	color: #FF6E00;
}
.footer {
	background-color: #000;
	color: #FFF;
	position: relative;
	padding-top: 10px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0; /* Positioned at the very top */
    left: 0;
    width: 100%;
    height: 10px; /* Adjust for the desired size */
    background-color: #3d73eb; /* Divider color */
	border-radius: 0 0 100% 100%; /* Rounded bottom edge */
	transform: translateY(0px); /* Pull the rounded divider upward */
	margin: 0 auto; /* Center the divider */
    z-index: 1; /* Ensure it appears above all elements */
}

.footer-title {
    color: #FF6E00; /* Accent color for headings */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
}

.footer-link:hover {
    color: #FF6E00; /* Accent color on hover */
    text-decoration: underline;
}

/* Social Media Icons */
.footer-icon {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-icon:hover {
    color: #FF6E00; /* Accent color on hover */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}
 #fix .container {
            position: relative;
            z-index: 2;
        }

        /* STATIC BACKGROUND IMAGE (NO PARALLAX) */
        .fix-bg-layer {
            position: absolute;
            inset: 0;
            background: url('https://primedispatching.com/assets/fix_background.webp') center center / cover no-repeat;
            z-index: 0;
        }

        .fix-particles {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }