html, body {
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    
    background-color: white;
    background-attachment: fixed;
    position: relative;
}

    body::before,
    body::after {
        content: "";
        position: fixed;
        pointer-events: none;
        z-index: 0;
        transition: opacity 0.7s;
        mix-blend-mode: lighten;
    }

    body::before {
        top: 30vh;
        left: -35vw;
        width: 110vw;
        height: 80vh;
        background: radial-gradient(circle at 20% 70%, rgba(0,112,185,0.11) 0, transparent 85%);
        opacity: 0.85;
        filter: blur(8px);
        animation: bgGlow1 9s ease-in-out infinite alternate;
    }

    body::after {
        top: -18vh;
        right: -35vw;
        width: 85vw;
        height: 70vh;
        background: radial-gradient(circle at 80% 30%, rgba(86,192,69,0.07) 0, transparent 80%);
        opacity: 0.75;
        filter: blur(10px);
        animation: bgGlow2 8s ease-in-out infinite alternate;
    }

@keyframes bgGlow1 {
    0% {
        opacity: 0.90;
        filter: blur(0px);
    }

    60% {
        opacity: 1;
        filter: blur(5px);
    }

    100% {
        opacity: 0.8;
        filter: blur(2px);
    }
}

@keyframes bgGlow2 {
    0% {
        opacity: 0.80;
        filter: blur(0px);
    }

    60% {
        opacity: 1;
        filter: blur(7px);
    }

    100% {
        opacity: 0.7;
        filter: blur(2.5px);
    }
}

.main-content {
    min-height: 1px;
    padding-bottom: 0;
}

footer.footer, .footer {
    width: 100%;
    background: none;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 48px;
    z-index: 10;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem 1rem 1rem;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0.75rem 0.5rem 1rem 0.5rem;
    }
}

/* Header container */
.topnav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 2.5vw;
    background-color: #fff;
    border-bottom: 1px solid var(--light-border);
    box-sizing: border-box;
}

.topnav-left {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-size: 1.25rem;
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--blue-600);
    margin-left: 0.8rem;
    letter-spacing: -0.5px;
}

.topnav-center {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    flex: 1;
    justify-content: center;
}

/* Right Section for Login/Logout - Flex Layout */
.topnav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    justify-content: flex-end;
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* Nav Dropdown for Admin */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--blue-600);
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}

    .nav-dropdown-toggle:hover {
        background: #f5f6f8;
    }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 120%;
    background: #fff;
    border: 1px solid var(--light-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 6px;
    padding: 0.3rem 0;
    z-index: 10;
}

    .nav-dropdown-menu .nav-link {
        padding: 8px 16px;
        color: var(--light-text);
        display: block;
        font-family: 'DM Sans', system-ui, sans-serif;
    }

        .nav-dropdown-menu .nav-link:hover {
            background: #eaf0fa;
            color: var(--blue-600);
        }

.nav-dropdown-toggle.active + .nav-dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .topnav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .topnav-center {
        margin-top: 10px;
        justify-content: flex-start;
        gap: 1rem;
    }

    .topnav-right {
        margin-top: 10px;
        justify-content: flex-start;
        gap: 1rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}

/* Login/Logout Styling */
.nav-user {
    font-size: 1rem;
    color: var(--light-text);
    margin-right: 0.5rem;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.logout-btn {
    background: none;
    border: none;
    color: var(--blue-600);
    font-size: 1rem;
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

    .logout-btn:hover {
        background: #f5f6f8;
        color: var(--red-600);
    }

.topnav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    white-space: nowrap;
    margin-right: 1rem;
}

    .topnav-right .nav-link,
    .topnav-right .nav-user {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

.nav-dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    margin: 0;
}

:root {
    --primary-blue: #0070B9;
    --primary-green: #56C045;
}

/* Section Card Layout */
.section {
    max-width: 900px;
    margin: 0 auto 2.7rem auto;
    padding: 2.6rem 1.5rem 2.6rem 1.5rem;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 10px 48px 0 rgba(0,112,185,0.08), 0 1.5px 3px 0 rgba(0,0,0,0.03);
    position: relative;
}

    .section.alt {
        background: linear-gradient(115deg, #f7fafb 70%, #e5f4e9 100%);
        box-shadow: 0 10px 48px 0 rgba(86,192,69,0.06), 0 1.5px 3px 0 rgba(0,0,0,0.03);
    }

    .section h2 {
        font-family: 'Montserrat', 'DM Sans', sans-serif;
        font-size: 2rem;
        margin-bottom: 1.4rem;
        color: var(--primary-blue);
        font-weight: 500;
        letter-spacing: -0.7px;
    }

/* === HERO CARD SECTION === */
#hero, .hero-card {
    position: relative;
    background: linear-gradient(111deg, #f3f8fc 0%, #f8fcf3 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0 4rem 0;
    border-radius: 32px;
    margin-bottom: 2rem;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px 0 rgba(0,112,185,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
    overflow: hidden;
    z-index: 1;
}

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/index-hero2.jpg') center center/cover no-repeat;
        opacity: 0.55;
        border-radius: 32px;
        z-index: 0;
        transition: opacity 0.4s;
    }

    #hero .marketing-container {
        position: relative;
        z-index: 1;
        background: none;
        box-shadow: none;
    }

    #hero h1 {
        font-family: 'Montserrat', 'DM Sans', sans-serif;
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 1.1rem;
        letter-spacing: -1px;
        color: var(--primary-blue);
        text-align: center;
        text-shadow: 0 8px 32px rgba(0,32,80,0.22), 0 1.5px 3px rgba(0,0,0,0.13);
    }

.hero-highlight {
    color: var(--primary-blue);
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 14px rgba(255,255,255,0.29), 0 0.5px 3px rgba(0,64,120,0.13);
}

#hero .subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 2.25rem;
    color: var(--primary-green);
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 6px 22px rgba(0,32,80,0.19), 0 1.5px 3px rgba(0,0,0,0.14);
}


#hero .cta-button {
    margin-top: 1rem;
    box-shadow: 0 4px 16px 0 rgba(0,112,185,0.09);
}

/* Animate hero headline, subtitle, button */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    65% {
        opacity: 1;
        transform: translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero h1,
#hero .subtitle,
#hero .cta-button {
    opacity: 0;
    animation: fadeUp 1.05s cubic-bezier(.18,.65,.41,1.02) forwards;
}

#hero h1 {
    animation-delay: 0.15s;
}

#hero .subtitle {
    animation-delay: 0.35s;
}

#hero .cta-button {
    animation-delay: 0.60s;
}


#hero h1,
#hero .subtitle,
#hero .cta-button {
    opacity: 0;
    animation: fadeUp 1.05s cubic-bezier(.18,.65,.41,1.02) forwards;
}

#hero h1 {
    animation-delay: 0.15s;
}

#hero .subtitle {
    animation-delay: 0.35s;
}

#hero .cta-button {
    animation-delay: 0.60s;
}

/* CTA Button */
.cta-button {
    font-family: 'Montserrat', 'DM Sans', system-ui, sans-serif;
    background: var(--primary-blue);
    color: #fff;
    padding: 1em 2.6em;
    font-size: 1.09rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1px;
    box-shadow: 0 4px 28px 0 rgba(0,112,185,0.11);
    transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.16s;
    display: inline-block;
    margin-top: 18px;
    cursor: pointer;
}

    .cta-button:hover, .cta-button:focus {
        background: var(--primary-green);
        color: #fff;
        transform: scale(1.03);
        box-shadow: 0 6px 36px 0 rgba(86,192,69,0.13);
    }

/* === PACKAGE CARDS === */
.package-card {
    background: #f7fafb;
    margin: 1.5rem 0;
    padding: 2.2rem 2rem 1.8rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,112,185,0.07), 0 0.7px 2.5px 0 rgba(0,0,0,0.03);
    text-align: left;
    border-left: 7px solid var(--primary-blue);
    transition: box-shadow 0.13s, border-color 0.18s;
}

    .package-card h3 {
        font-family: 'Montserrat', 'DM Sans', sans-serif;
        color: var(--primary-blue);
        font-weight: 500;
        font-size: 1.13rem;
        letter-spacing: -0.2px;
        margin-bottom: 0.5rem;
    }

    .package-card .package-price {
        font-size: 1.05rem;
        color: var(--primary-green);
        font-weight: 600;
        margin-bottom: 0.7rem;
    }

    .package-card:hover {
        box-shadow: 0 7px 32px 0 rgba(0,112,185,0.15);
        border-color: var(--primary-green);
    }

/* Premium Add-Ons Button */
#premium-add-ons a {
    font-family: 'Montserrat', 'DM Sans', system-ui, sans-serif;
    background: var(--primary-blue);
    color: white;
    padding: 1em 2.4em;
    font-size: 1.04rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 20px 0 rgba(0, 112, 185, 0.08);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

    #premium-add-ons a:hover {
        background: var(--primary-green);
        color: white;
        box-shadow: 0 4px 24px 0 rgba(86, 192, 69, 0.15);
    }

/* Remove default bullets, keep only our accent dots */
#why-choose-us ul,
#how-it-works ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

    #why-choose-us ul li {
        font-size: 1.09rem;
        margin-bottom: 1.05rem;
        padding-left: 2.3rem;
        position: relative;
        font-family: 'DM Sans', system-ui, sans-serif;
    }

        /* Blue checkmark as bullet */
        #why-choose-us ul li:before {
            content: '';
            position: absolute;
            left: 0.4rem;
            top: 0.43em;
            width: 1.35em;
            height: 1.35em;
            background: url('/Images/Icons/blue-check.png') center center/contain no-repeat;
            display: inline-block;
            opacity: 0.96;
            border-radius: 0.2em;
            box-shadow: 0 1.5px 7px rgba(0,112,185,0.07);
        }
    #why-choose-us ul li {
        font-size: 1.09rem;
        margin-bottom: 1.05rem;
        padding-left: 2.3rem;
        position: relative;
        font-family: 'DM Sans', system-ui, sans-serif;
    }

        #why-choose-us ul li:before {
            content: '';
            position: absolute;
            left: 0.4rem;
            top: 0.43em;
            width: 1.35em;
            height: 1.35em;
            background: url('/Images/Icons/blue-check.png') center center/contain no-repeat;
            display: inline-block;
            opacity: 0.96;
            border-radius: 0.2em;
            box-shadow: 0 1.5px 7px rgba(0,112,185,0.07);
        }

#how-it-works ol {
    counter-reset: li;
}

    #how-it-works ol li {
        padding-left: 2.1rem;
        position: relative;
        font-family: 'DM Sans', system-ui, sans-serif;
        font-size: 1.09rem;
        margin-bottom: 1.05rem;
    }

        #how-it-works ol li:before {
            content: counter(li, decimal-leading-zero) " ";
            counter-increment: li;
            position: absolute;
            left: 0;
            top: 0.3em;
            color: var(--primary-blue);
            font-weight: 600;
            font-family: 'Montserrat', 'DM Sans', sans-serif;
            font-size: 1.02em;
        }



/* Premium colored, refined emphasized text */
.section strong {
    color: var(--primary-blue);
    font-family: 'Montserrat', 'DM Sans', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: color 0.15s;
}

/* Testimonial style */
#testimonials blockquote {
    font-size: 1.10rem;
    color: #2b4a33;
    background: linear-gradient(88deg, #e8f6ec 80%, #f7fafb 100%);
    border-left: 4px solid var(--primary-green);
    margin: 1.1rem 0;
    padding: 1.2rem 1.7rem;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 2px 12px 0 rgba(86,192,69,0.06);
}

footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    font-family: 'DM Sans', system-ui, sans-serif;
}

    footer a {
        color: var(--primary-green);
        text-decoration: none;
    }

        footer a:hover {
            color: white;
        }

/* Links for Development and Production Tenants */
.dev-links h2, .prod-links h2 {
    color: var(--primary-blue);
}

.dev-links, .prod-links {
    border: 1px solid #ccc;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 8px;
    color:purple;
}

    .dev-links h2 {
        color: var(--primary-blue);
    }

    .prod-links h2 {
        color: var(--primary-green);
    }

.tenant-links {
    opacity: 0.9;
    font-size: 0.9em;
    position: relative;
    width: 100%;
    margin-top: 6rem;
    pointer-events: none;
    user-select: none;
    text-align: center;
}

    .tenant-links h2 {
        font-size: 1.1em;
        margin-bottom: 0.5em;
        color: #bbb;
    }

    .tenant-links ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .tenant-links li {
        display: inline-block;
        margin: 0 0.7em;
    }

    .tenant-links a {
        color: #bbb;
        text-decoration: underline;
        pointer-events: all;
    }

@media (max-width: 800px) {
    .section, .section.alt {
        padding: 1.5rem 0.8rem 1.8rem 0.8rem;
        max-width: 100vw;
    }

    #hero, .hero-card {
        padding: 2.2rem 0 2.2rem 0;
        min-height: 210px;
    }

        #hero h1 {
            font-size: 1.35rem;
        }

    .package-card {
        padding: 1.2rem 0.8rem 1rem 0.8rem;
    }
}
