/* ===============================
   BASE HTML & BODY
================================ */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html, body {
    overflow-x: hidden !important;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
}

/* ===============================
   INPUT / FOCUS STATES
================================ */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #ffffff, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: #6b7280;
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===============================
   GOV TOP BAR
================================ */
.gov-top-bar,
.gov-strip {
    background: #0f172a;
    color: ghostwhite;
    font-size: 14px;
    padding: 8px 0;
    white-space: nowrap;
    border-bottom: 1px solid #e5e7eb;
}

.gov-top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
}

.gov-top-bar a,
.gov-right a {
    color: ghostwhite;
    text-decoration: none;
    margin-left: 15px;
}

.gov-top-bar a:hover,
.gov-right a:hover {
    text-decoration: underline;
}

.gov-links {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
}

.gov-links::-webkit-scrollbar {
    display: none;
}

/* ===============================
   MAIN NAVBAR
================================ */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.nav-link {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

/* ===============================
   MOBILE NAV FIX
================================ */
@media (max-width: 991px) {

    #mainNav {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .main-nav .nav-link {
        padding: 8px 12px;
        display: inline-flex;
        width: auto;
    }

    .main-nav .nav-item {
        padding: 0;
        margin: 0;
    }

    .navbar-nav {
        overflow-x: auto;
    }

    .navbar-nav::-webkit-scrollbar {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .dropdown-item {
        color: #000000;
        padding: 6px 0;
    }
}

/* ===============================
   DROPDOWN
================================ */
.dropdown-menu {
    min-width: 180px;
}

.dropdown-item {
    font-size: 15px;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ===============================
   HERO SECTION
================================ */
.hero-bg-advanced {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding: 60px 0;
    overflow: hidden;
}

.hero-bg-advanced::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(229,231,235,0.8) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229,231,235,0.8) 1px, transparent 1px),
        radial-gradient(circle 500px at 0% 20%, rgba(139,92,246,0.3), transparent),
        radial-gradient(circle 500px at 100% 0%, rgba(59,130,246,0.3), transparent);
    background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
}

.hero-section-content {
    position: relative;
    z-index: 2;
    color: #111111;
}

.hero-section-badge {
    font-size: 16px;
    border-radius: 10px;
}

/* ===============================
   ROTATING TEXT
================================ */
.rotate-wrapper {
    display: inline-block;
    font-weight: 700;
    font-size: 46px;
    color: #7c3aed;
    position: relative;
    top: 4px;
}

.rotate-word {
    display: inline-block;
    opacity: 0;
    animation: rotateWords 10s ease-in-out infinite;
}

@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(10px); }
    5% { opacity: 1; transform: translateY(0); }
    20% { opacity: 1; }
    25% { opacity: 0; transform: translateY(-10px); }
    30% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    55% { opacity: 1; }
    70% { opacity: 1; }
    75% { opacity: 0; }
    80% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

/* ===============================
   IMAGE SLIDER
================================ */
.ux4g-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -20px;
}

.ux4g-slider {
    display: flex;
    gap: 50px;
    animation: slideLoop 10s linear infinite;
}

.slide-item {
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ux4g-slider-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    pointer-events: none;
}

@keyframes slideLoop {
    from { transform: translateX(0); }
    to { transform: translateX(-40%); }
}

/* ===============================
   MEGA PANEL
================================ */
.mega-panel {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 88vw;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    padding: 40px 50px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
    transition: all .25s ease;
    z-index: 99999;
}

.mega-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===============================
   MEGA PANEL ITEMS
================================ */
.mega-item {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-size: 15px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

.mega-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #6a4ff7;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: 0.25s ease;
}

.mega-item:hover {
    padding-left: 10px;
    font-weight: 600;
    color: #000000;
}

.mega-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* ===============================
   MEGA PANEL TEXT
================================ */
.mega-title {
    font-size: 28px;
    font-weight: 800;
}

.mega-sub {
    font-size: 14px;
    opacity: 0.7;
}

.mega-heading {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ===============================
   PAGE BLUR OVERLAY
================================ */
#pageBlurOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.25);
    z-index: 9990;
    visibility: hidden;
}

#pageBlurOverlay.active {
    visibility: visible;
}


        body {
            font-family: Segoe UI, Arial, sans-serif;
        }

        /* ---------- TOP GOV BAR ---------- */
        .gov-top-bar {
            background: #111827;
            color: ghostwhite;
            font-size: 14px;
            padding: 10px 0;
        }

            .gov-top-bar a {
                color: ghostwhite;
                text-decoration: none;
                margin-left: 15px;
            }

                .gov-top-bar a:hover {
                    text-decoration: underline;
                }

        /* ---------- MAIN NAV ---------- */
        .main-nav {
            background: white;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: bold;
            color: black !important;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link {
            color: black !important;
            font-weight: 500;
            margin-right: 16px;
        }

            .navbar-nav .nav-link:hover {
                text-decoration: underline;
               
            }

        footer {
            background: #212529;
            color: white;
            padding: 39px ;
            margin-top: 40px;
             margin-bottom: 0 !important;
             padding-bottom: 15 !important;
        }

            footer a {
                color: white;
                text-decoration: none;
            }

                footer a:hover {
                  text-decoration: underline;
                }

 :last-child {
    margin-bottom: 0 !important;
}

 .hero-section {
        background: linear-gradient(to bottom right, #4B0082, #7715A1);
        color: white;
        padding: 100px 40px;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }

        .hero-section::after {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(255,255,255,0.06);
            right: -60px;
            top: -60px;
            border-radius: 50%;
            filter: blur(5px);
        }

    

        .metric-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 24px rgba(0,0,0,0.15);
        }

    .feature-card {
        padding: 25px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(0,0,0,0.08);
        transition: .3s ease;
    }

        .feature-card:hover {
            transform: translateY(-8px);
        }

    .section-title {
        font-weight: 700;
        margin-bottom: 25px;
    }

    .subtle-bg {
        background: #F8F9FC;
        padding: 50px 30px;
        border-radius: 16px;
    }

    .page-wrapper {
  height: 60vh;
  overflow-y: auto;
}

.sticky-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 16px;
  text-align: center;
  background: linear-gradient(to bottom, #3b82f6, #2563eb);
  color: white;
}

.sticky-banner a {
  color: white;
  text-decoration: underline;
}


.solution-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

