/* =============================================
   Zenithora Inc. - Main Stylesheet
   assets/css/style.css
   
   Core styles for the Zenithora website
   Includes: Base styles, navigation, hero, sections, components
   ============================================= */

/* =============================================
   TABLE OF CONTENTS
   1. CSS Variables & Root
   2. Base Styles
   3. Background Layers
   4. Particles Background
   5. Navigation
   6. Hero Section
   7. Buttons
   8. Service Cards
   9. About Section
   10. Stats Section
   11. Why Choose Us
   12. Portfolio
   13. Testimonials
   14. CTA Section
   15. Footer
   16. Blog
   17. Contact Form
   18. Utilities
   19. Animations
   ============================================= */

/* =============================================
   1. CSS VARIABLES & ROOT
   ============================================= */

:root {
    --primary-color: #0A84FF;
    --primary-dark: #0066CC;
    --primary-light: #4DA6FF;
    --secondary-color: #7A2EFF;
    --accent-color: #00E0FF;
    --dark-bg: #05070d;
    --dark-surface: #0a0f1a;
    --glass-bg: rgba(10, 10, 15, 0.65);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-color: rgba(10, 132, 255, 0.25);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition-speed: 0.3s;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* =============================================
   2. BASE STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--text-primary);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =============================================
   3. BACKGROUND LAYERS
   ============================================= */

/* Cyber background with gradient layers */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(10, 132, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(122, 46, 255, 0.08), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0, 224, 255, 0.06), transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Moving glow layer */
body::after {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(120deg, transparent 30%, rgba(10, 132, 255, 0.05) 50%, transparent 70%);
    animation: moveGlow 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes moveGlow {
    0% {
        transform: translateX(-30%) translateY(-30%) rotate(0deg);
    }
    100% {
        transform: translateX(30%) translateY(30%) rotate(360deg);
    }
}

/* =============================================
   4. PARTICLES BACKGROUND
   ============================================= */

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: -3;
    pointer-events: none;
}

/* =============================================
   5. NAVIGATION
   ============================================= */

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: all var(--transition-speed) ease;
    z-index: 1050;
}

.glass-nav.scrolled {
    background: rgba(5, 7, 13, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glass-nav .navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.glass-nav .navbar-brand:hover {
    color: var(--primary-light);
}

.glass-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.glass-nav .nav-link:hover,
.glass-nav .nav-link.active {
    color: var(--text-primary);
    background: rgba(10, 132, 255, 0.12);
}

.glass-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Mobile navigation */
@media (max-width: 991.98px) {
    .glass-nav .nav-link {
        padding: 12px 16px;
    }
    .glass-nav .nav-link.active::after {
        display: none;
    }
    .glass-nav .navbar-collapse {
        background: rgba(5, 7, 13, 0.95);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 12px;
        border: 1px solid var(--border-color);
    }
}

/* =============================================
   6. HERO SECTION
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(10, 132, 255, 0.2), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 224, 255, 0.1), transparent 45%),
        linear-gradient(135deg, var(--dark-bg), var(--dark-surface), #000000);
    padding: 100px 0 60px;
}

/* Glow effect behind hero content */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.15), transparent 70%);
    filter: blur(80px);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 255, 0.03), transparent);
    animation: scanMove 10s linear infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes scanMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(10, 132, 255, 0.2);
}

.hero .typed-text {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 400;
    min-height: 50px;
}

.hero .lead {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    max-width: 700px;
    margin: 16px auto;
}

/* Trust badge */
.hero .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 132, 255, 0.12);
    border: 1px solid rgba(10, 132, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.hero .trust-badge i {
    color: var(--primary-color);
}

/* =============================================
   7. BUTTONS
   ============================================= */

.btn-glow {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
}

.btn-glow::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.btn-glow.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
}

.btn-glow.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-glow.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.btn-glow.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-primary);
}

/* Button sizes */
.btn-glow.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-glow.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* =============================================
   8. SERVICE CARDS
   ============================================= */

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.service-content {
    padding: 24px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content .icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-content h4 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 12px;
}

.service-content .btn-outline-primary {
    align-self: flex-start;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.85rem;
    border-color: rgba(10, 132, 255, 0.3);
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.service-content .btn-outline-primary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* =============================================
   9. ABOUT SECTION
   ============================================= */

.about-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, var(--dark-surface), var(--dark-bg));
    position: relative;
}

.about-section .about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.about-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section .floating-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--shadow-color);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.about-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
}

.about-section .feature-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* =============================================
   10. STATS SECTION
   ============================================= */

.stats-section {
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(10, 132, 255, 0.08);
    border-color: rgba(10, 132, 255, 0.2);
}

.stat-box .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-box .number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.2;
}

.stat-box .label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* =============================================
   11. WHY CHOOSE US
   ============================================= */

.why-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-6px);
    background: rgba(10, 132, 255, 0.08);
    border-color: rgba(10, 132, 255, 0.2);
}

.why-box .icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-box h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.why-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   12. PORTFOLIO
   ============================================= */

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay h5 {
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-item .overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   13. TESTIMONIALS
   ============================================= */

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 10px 40px var(--shadow-color);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 12px;
}

.testimonial-card .content {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card .author .position {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =============================================
   14. CTA SECTION
   ============================================= */

.cta-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, var(--dark-surface), #000000);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 132, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

/* =============================================
   15. FOOTER
   ============================================= */

.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer h6 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-size: 1rem;
}

.social-icons .social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-speed) ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* =============================================
   16. BLOG
   ============================================= */

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-card .blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-body {
    padding: 20px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card .blog-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-card .blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.blog-card .blog-title a:hover {
    color: var(--primary-color);
}

.blog-card .blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Blog single page */
.blog-single .content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-single .content h2 {
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-single .content h3 {
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-single .content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.blog-single .content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 16px 24px;
    background: rgba(10, 132, 255, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

/* =============================================
   17. CONTACT FORM
   ============================================= */

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    transition: all var(--transition-speed) ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
}

.contact-form .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form .form-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =============================================
   18. UTILITIES
   ============================================= */

/* Text utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--text-secondary);
}

.text-muted-custom {
    color: var(--text-muted);
}

/* Background utilities */
.bg-dark-custom {
    background: var(--dark-bg);
}

.bg-surface {
    background: var(--dark-surface);
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Border utilities */
.border-custom {
    border-color: var(--border-color);
}

.border-primary-custom {
    border-color: rgba(10, 132, 255, 0.2);
}

/* Spacing utilities */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

/* Shadow utilities */
.shadow-primary {
    box-shadow: 0 8px 30px var(--shadow-color);
}

.shadow-glow {
    box-shadow: 0 0 50px rgba(10, 132, 255, 0.1);
}

/* =============================================
   19. ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    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 zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-down {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-zoom {
    animation: zoomIn 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}
.animate-delay-2 {
    animation-delay: 0.2s;
}
.animate-delay-3 {
    animation-delay: 0.3s;
}
.animate-delay-4 {
    animation-delay: 0.4s;
}
.animate-delay-5 {
    animation-delay: 0.5s;
}

/* =============================================
   RESPONSIVE OVERRIDES (base layer)
   ============================================= */

@media (max-width: 1200px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-padding-lg {
        padding: 90px 0;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-padding-lg {
        padding: 70px 0;
    }
    .stat-box .number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-padding-lg {
        padding: 60px 0;
    }
    .section-padding-sm {
        padding: 30px 0;
    }
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .stat-box .number {
        font-size: 1.8rem;
    }
    .stat-box {
        padding: 20px;
    }
    .service-card .service-content {
        padding: 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero .typed-text {
        font-size: 1rem;
    }
    .btn-glow {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .btn-glow.btn-lg {
        padding: 12px 28px;
        font-size: 1rem;
    }
    .stat-box .number {
        font-size: 1.6rem;
    }
    .service-content h4 {
        font-size: 1rem;
    }
}
/* Zenithora permanent polish */

.animated-bg{position:fixed;inset:0;z-index:-4;overflow:hidden;pointer-events:none;background:radial-gradient(circle at 20% 15%,rgba(10,132,255,.18),transparent 30%),radial-gradient(circle at 80% 20%,rgba(122,46,255,.14),transparent 35%),linear-gradient(135deg,#05070d,#061527 55%,#05070d)}
.animated-orb{position:absolute;border-radius:50%;filter:blur(18px);opacity:.5;animation:zenFloat 12s ease-in-out infinite alternate}.orb-one{width:220px;height:220px;background:#0A84FF;left:8%;top:18%}.orb-two{width:260px;height:260px;background:#7A2EFF;right:8%;top:30%;animation-delay:2s}.orb-three{width:190px;height:190px;background:#00E0FF;left:45%;bottom:10%;animation-delay:4s}@keyframes zenFloat{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(30px,-35px,0) scale(1.12)}}
.zen-text-animated{animation:zenTextIn .85s ease both}.zen-fade-up{animation:zenFadeUp .75s ease both}@keyframes zenTextIn{from{opacity:0;transform:translateY(18px);filter:blur(6px)}to{opacity:1;transform:none;filter:blur(0)}}@keyframes zenFadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
section{position:relative}.py-5{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.compact-hero{padding-top:7rem!important;padding-bottom:3.5rem!important}.min-vh-100{min-height:calc(100vh - 20px)!important}.text-light-50{color:rgba(255,255,255,.72)!important}.gradient-text{background:linear-gradient(135deg,#0A84FF,#00E0FF,#7A2EFF);-webkit-background-clip:text;background-clip:text;color:transparent}.btn-glow{box-shadow:0 12px 30px rgba(10,132,255,.28)}
@media(max-width:768px){.display-3{font-size:2.35rem}.display-5{font-size:1.85rem}.py-5{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.min-vh-100{min-height:auto!important;padding-top:7rem;padding-bottom:3rem}.hero .row{min-height:auto!important}.hero-image-wrapper{margin-top:2rem}.footer{text-align:center}}

.footer-links{list-style:none;padding-left:0}.footer-links a,.footer-contact a,.footer-bottom-links a{color:rgba(255,255,255,.72);text-decoration:none}.footer-links a:hover,.footer-contact a:hover{color:#0A84FF}.footer-bottom-links{list-style:none;display:flex;gap:18px;justify-content:flex-end;margin:0;padding:0}.service-card,.portfolio-card,.glass-card,.table-panel,.quick-panel{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:22px;padding:24px;backdrop-filter:blur(12px)}


/* === Zenithora v8 Dynamic Upgrade Styling === */
.hero-stats-grid{display:grid;grid-template-columns:repeat(3,minmax(120px,1fr));gap:14px;max-width:720px}
.hero-stat-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px 16px;backdrop-filter:blur(14px);box-shadow:0 18px 45px rgba(0,0,0,.16)}
.hero-stat-card strong{display:block;font-size:1.85rem;line-height:1;color:#0A84FF;font-weight:800}
.hero-stat-card span{display:block;color:rgba(255,255,255,.82);font-size:.9rem;margin-top:6px}
.typed-headline{display:inline-block;min-height:1.05em;color:#0A84FF;text-shadow:0 0 24px rgba(10,132,255,.35)}
.zen-timeline{max-width:920px;margin:auto;display:grid;gap:18px;position:relative}
.timeline-item{display:grid;grid-template-columns:110px 1fr;gap:18px;align-items:start;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px}
.timeline-item span{font-size:1.4rem;font-weight:800;color:#0A84FF}
.timeline-item p{margin:0;color:rgba(255,255,255,.78)}
.content-section,.services-section,.portfolio-section,.team-section,.blog-section,.downloads-section{padding-top:70px!important;padding-bottom:70px!important}
.card,.service-card,.portfolio-card,.blog-card,.team-card{overflow:hidden}
.card img,.service-card img,.portfolio-card img,.blog-card img,.team-card img{object-fit:cover}
body .py-5{padding-top:4rem!important;padding-bottom:4rem!important}
@media(max-width:768px){
 .hero-stats-grid{grid-template-columns:1fr;gap:10px}
 .hero-stat-card{padding:15px}
 .timeline-item{grid-template-columns:1fr;gap:8px}
 .display-3{font-size:2.35rem}
 .display-4{font-size:2.05rem}
 .display-5{font-size:1.85rem}
 body .py-5{padding-top:2.5rem!important;padding-bottom:2.5rem!important}
}


/* === Zenithora seamless polish === */
.compact-section{padding:64px 0}.page-header{padding-top:115px!important;padding-bottom:45px!important}.hero .min-vh-100{min-height:86vh!important}.hero-stats-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.hero-stat-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:18px;text-align:center}.hero-stat-card strong{display:block;font-size:1.7rem;color:#0A84FF}.hero-stat-card span{font-size:.85rem;color:rgba(255,255,255,.72)}section{position:relative}.service-card,.portfolio-card,.blog-card,.team-card,.testimonial-card,.industry-card,.glass{backdrop-filter:blur(14px)}.service-card img,.portfolio-card img,.blog-card img{width:100%;height:190px;object-fit:cover;border-radius:16px;margin-bottom:14px}.navbar{min-height:64px}.footer{margin-top:20px}.section-tight{padding:50px 0}@media(max-width:991px){.compact-section{padding:48px 0}.hero .min-vh-100{min-height:auto!important;padding:110px 0 60px}.display-3{font-size:2.4rem}.display-4{font-size:2.1rem}.display-5{font-size:1.85rem}.hero-stats-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:575px){.compact-section{padding:38px 0}.page-header{padding-top:95px!important}.hero-stats-grid{grid-template-columns:1fr;gap:10px}.navbar-brand span{font-size:1rem}.glass-nav{padding-left:12px!important;padding-right:12px!important}.service-card,.portfolio-card,.glass{padding:18px!important}.service-card img,.portfolio-card img,.blog-card img{height:165px}}

/* =========================================================
   Zenithora v12 Professional Background + Hero Animation
   Inspired by previous Zenithora site, rebuilt cleaner.
   ========================================================= */
:root{
  --zen-bg:#050810;
  --zen-panel:rgba(8,18,30,.82);
  --zen-blue:#00AAFF;
  --zen-cyan:#00E0FF;
  --zen-deep:#0066CC;
  --zen-purple:#7A2EFF;
  --zen-line:rgba(0,170,255,.26);
  --zen-text-soft:rgba(232,242,255,.78);
}
html{scroll-behavior:smooth;}
body{
  background:#050810!important;
  color:#fff;
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-5;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,170,255,.23), transparent 42%),
    radial-gradient(circle at 82% 26%, rgba(0,224,255,.14), transparent 48%),
    radial-gradient(circle at 50% 82%, rgba(0,100,255,.18), transparent 54%),
    linear-gradient(135deg,#050810 0%,#081221 48%,#050810 100%);
}
body::after{
  content:"";
  position:fixed;
  inset:-45%;
  pointer-events:none;
  z-index:-4;
  background:
    linear-gradient(120deg, transparent 0%, rgba(0,170,255,.075) 45%, rgba(0,224,255,.09) 50%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(0,170,255,.055) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(0,170,255,.045) 0 1px, transparent 1px 90px);
  transform:translate3d(-10%,-10%,0);
  animation:zenSweep 18s linear infinite;
  opacity:.85;
}
@keyframes zenSweep{
  0%{transform:translate3d(-15%,-15%,0) rotate(0deg)}
  100%{transform:translate3d(15%,15%,0) rotate(.001deg)}
}
#particles-js{
  position:fixed!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  opacity:.42!important;
  z-index:-3!important;
  pointer-events:none!important;
}
.animated-bg{display:none!important;}
/* Professional glass navigation */
.glass-nav,.navbar.glass-nav{
  background:linear-gradient(135deg,rgba(0,0,0,.94),rgba(5,10,25,.90))!important;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,170,255,.34)!important;
  box-shadow:0 14px 35px rgba(0,0,0,.22);
  min-height:68px;
  padding-top:.55rem!important;
  padding-bottom:.55rem!important;
}
.glass-nav.scrolled{background:rgba(3,7,15,.96)!important;box-shadow:0 14px 42px rgba(0,0,0,.4)}
.navbar-brand img{filter:drop-shadow(0 0 12px rgba(0,170,255,.55));}
.navbar-brand span,.navbar-brand .brand-text{
  background:linear-gradient(135deg,#00AAFF,#00E0FF,#3A6EFF);
  -webkit-background-clip:text;background-clip:text;color:transparent!important;
  font-weight:800!important;
}
.glass-nav .nav-link{border-radius:999px;transition:all .25s ease;}
.glass-nav .nav-link:hover,.glass-nav .nav-link.active{background:rgba(0,170,255,.13);color:#fff!important;}
/* Hero background copied in spirit, improved for CMS */
.hero{
  position:relative;
  overflow:hidden;
  min-height:92vh!important;
  padding-top:92px;
  padding-bottom:42px;
  isolation:isolate;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(90deg,rgba(5,8,16,.88),rgba(5,8,16,.58),rgba(5,8,16,.86)),
    radial-gradient(circle at 72% 42%, rgba(0,170,255,.28), transparent 42%),
    radial-gradient(circle at 28% 38%, rgba(122,46,255,.15), transparent 45%),
    linear-gradient(135deg,rgba(0,170,255,.10),transparent 55%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.32;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(0,170,255,.20) 49%, transparent 55%),
    repeating-linear-gradient(90deg,rgba(0,170,255,.10) 0 1px,transparent 1px 85px),
    repeating-linear-gradient(0deg,rgba(0,170,255,.08) 0 1px,transparent 1px 85px);
  mask-image:linear-gradient(to bottom,black,black 72%,transparent);
  animation:heroMatrix 16s linear infinite;
}
@keyframes heroMatrix{from{transform:translate3d(-5%,-5%,0)}to{transform:translate3d(5%,5%,0)}}
.hero .container{position:relative;z-index:2;}
.hero-bg-layer{
  position:absolute!important;
  inset:0!important;
  z-index:0!important;
  opacity:.42!important;
  background:
    radial-gradient(circle at 72% 46%,rgba(0,170,255,.28),transparent 34%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 900 600"><g fill="none" stroke="%2300AAFF" stroke-opacity="0.18"><path d="M90 440L230 340L350 380L510 210L690 250L820 120"/><path d="M160 130L310 250L480 160L650 340L790 290"/><circle cx="90" cy="440" r="5"/><circle cx="230" cy="340" r="5"/><circle cx="350" cy="380" r="5"/><circle cx="510" cy="210" r="5"/><circle cx="690" cy="250" r="5"/><circle cx="820" cy="120" r="5"/></g></svg>') center/cover no-repeat;
}
.hero-orb{
  position:absolute!important;
  width:min(42vw,440px)!important;
  height:min(42vw,440px)!important;
  right:8%!important;
  top:42%!important;
  left:auto!important;
  bottom:auto!important;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,170,255,.34),rgba(0,102,204,.18) 42%,transparent 72%)!important;
  filter:blur(72px)!important;
  animation:zenOrbPulse 6.5s ease-in-out infinite!important;
  z-index:1!important;
  opacity:.95!important;
}
@keyframes zenOrbPulse{0%,100%{transform:scale(1);opacity:.56}50%{transform:scale(1.16);opacity:.9}}
.hero .row,.hero .min-vh-100{min-height:calc(92vh - 80px)!important;}
.hero .badge,.hero-kicker{
  display:inline-flex;align-items:center;gap:.45rem;
  width:max-content;
  color:#bfeeff!important;
  background:rgba(0,170,255,.12)!important;
  border:1px solid rgba(0,170,255,.35)!important;
  border-radius:999px;
  padding:.55rem .9rem;
  font-size:.86rem;
  font-weight:700;
  box-shadow:0 12px 35px rgba(0,170,255,.12);
}
.hero-title-pro,.hero h1{
  max-width:980px;
  color:#fff!important;
  background:linear-gradient(135deg,#ffffff 0%,#eaf7ff 42%,#00AAFF 76%,#00E0FF 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
  letter-spacing:-.055em;
  line-height:1.03;
  text-shadow:none;
}
.hero-type-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.65rem;
  min-height:2.2rem;
  font-size:clamp(1.05rem,2vw,1.4rem);
  color:var(--zen-text-soft);
  font-weight:600;
}
.type-label{color:rgba(255,255,255,.78)}
.typed-headline{
  display:inline-block;
  min-height:1.25em;
  color:#00AAFF!important;
  text-shadow:0 0 22px rgba(0,170,255,.36);
  font-weight:800;
  letter-spacing:-.02em;
  position:relative;
}
.typed-headline::after{
  content:"";
  display:inline-block;
  width:2px;
  height:1.05em;
  margin-left:5px;
  transform:translateY(3px);
  background:#00E0FF;
  box-shadow:0 0 12px rgba(0,224,255,.75);
  animation:zenCaret .85s steps(1) infinite;
}
@keyframes zenCaret{50%{opacity:0}}
.hero-subtitle-pro{font-weight:600;color:rgba(235,246,255,.86)!important;}
.hero-desc-pro{max-width:760px;color:rgba(232,242,255,.75)!important;font-size:1.02rem;}
.hero-image-wrapper{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  border-radius:34px;
  background:linear-gradient(145deg,rgba(0,170,255,.15),rgba(255,255,255,.035));
  border:1px solid rgba(0,170,255,.24);
  box-shadow:0 30px 90px rgba(0,0,0,.35), inset 0 0 50px rgba(0,170,255,.08);
  backdrop-filter:blur(14px);
}
.floating-logo{animation:zenLogoFloat 4.4s ease-in-out infinite;filter:drop-shadow(0 0 28px rgba(0,170,255,.45));}
@keyframes zenLogoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero-stats-grid{margin-top:2rem!important;}
.hero-stat-card{
  background:rgba(8,18,30,.72)!important;
  border:1px solid rgba(0,170,255,.30)!important;
  box-shadow:0 18px 44px rgba(0,0,0,.20);
  backdrop-filter:blur(12px);
  transition:transform .3s ease,background .3s ease,border-color .3s ease;
}
.hero-stat-card:hover{transform:translateY(-4px);background:rgba(0,100,200,.20)!important;border-color:rgba(0,224,255,.45)!important;}
.hero-stat-card strong{background:linear-gradient(135deg,#00AAFF,#00E0FF);-webkit-background-clip:text;background-clip:text;color:transparent!important;}
/* Keep sections compact and professional */
section.py-5,.services-section,.portfolio-section,.about-section,.team-section,.blog-section,.downloads-section{padding-top:64px!important;padding-bottom:64px!important;}
.service-card,.portfolio-card,.blog-card,.team-card,.testimonial-card,.industry-card,.glass,.glass-card,.stat-box,.contact-card{
  background:rgba(8,18,30,.80)!important;
  border:1px solid rgba(0,170,255,.22)!important;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  backdrop-filter:blur(13px);
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.service-card:hover,.portfolio-card:hover,.blog-card:hover,.team-card:hover,.testimonial-card:hover,.industry-card:hover,.glass-card:hover,.stat-box:hover{
  transform:translateY(-5px);
  border-color:rgba(0,224,255,.44)!important;
  box-shadow:0 24px 70px rgba(0,170,255,.16);
}
.btn-primary,.btn-glow{background:linear-gradient(135deg,#00AAFF,#0066CC)!important;border:none!important;box-shadow:0 0 24px rgba(0,170,255,.28)!important;}
.btn-outline-light{border-color:rgba(0,170,255,.55)!important;background:rgba(0,0,0,.22)!important;}
/* Better reveal animation than random text animation */
.zen-reveal,.zen-fade-up,.zen-text-animated{opacity:0;transform:translateY(22px);filter:none;animation:none!important;}
.zen-reveal.zen-visible,.zen-fade-up.zen-visible,.zen-text-animated.zen-visible{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease;}
@media(max-width:991px){
  .hero{min-height:auto!important;padding-top:104px;padding-bottom:48px;}
  .hero .row,.hero .min-vh-100{min-height:auto!important;}
  .hero-title-pro,.hero h1{font-size:clamp(2.15rem,7vw,3rem)!important;}
  .hero-type-line{font-size:1.05rem;}
  .hero-image-wrapper{margin-top:2rem;padding:22px;}
  section.py-5,.services-section,.portfolio-section,.about-section,.team-section,.blog-section,.downloads-section{padding-top:46px!important;padding-bottom:46px!important;}
}
@media(max-width:575px){
  .glass-nav,.navbar.glass-nav{min-height:62px;padding-top:.45rem!important;padding-bottom:.45rem!important;}
  .navbar-brand img{height:40px!important;}
  .navbar-brand span{font-size:1rem!important;}
  .hero{padding-top:92px;padding-bottom:36px;}
  .hero-title-pro,.hero h1{font-size:2rem!important;line-height:1.08;}
  .hero-type-line{display:block;min-height:3.1rem;}
  .type-label{display:block;margin-bottom:.15rem;}
  .hero-desc-pro{font-size:.95rem;}
  .hero-stats-grid{grid-template-columns:1fr!important;}
  .hero-stat-card{padding:14px!important;}
  .hero-image-wrapper{padding:18px;border-radius:24px;}
  .floating-logo{max-width:190px!important;}
}
.progress-container{position:fixed;top:0;left:0;width:100%;height:3px;background:transparent;z-index:10000;pointer-events:none}.progress-bar{height:3px;background:linear-gradient(90deg,#00AAFF,#00E0FF,#7A2EFF);width:0%;transition:width .1s ease;box-shadow:0 0 12px rgba(0,170,255,.7)}


/* =========================================================
   Zenithora v12 Transparent Logo + Responsive Header Fix
   Uses no_bg.png so the hero/about logo blends into the animated system.
   ========================================================= */
.hero-image-wrapper,
.about-image-wrapper,
.about-logo-stage{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.zenithora-transparent-logo{
    display: block;
    width: min(100%, 430px);
    max-width: 430px;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 22px rgba(0,170,255,.36))
        drop-shadow(0 26px 48px rgba(0,0,0,.42));
}

.hero .zenithora-transparent-logo{
    width: clamp(230px, 32vw, 430px);
    animation: zenLogoFloat 4.8s ease-in-out infinite;
}

.about-section .zenithora-transparent-logo,
.about-logo-stage .zenithora-transparent-logo{
    width: clamp(210px, 30vw, 380px);
}

.about-logo-stage{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-logo-stage::before,
.about-image-wrapper::before{
    content: "";
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,.20), transparent 68%);
    filter: blur(18px);
    z-index: -1;
}

/* Prevent page headings from hiding behind the fixed navbar */
body{
    scroll-padding-top: 86px;
}

main,
#main-content{
    padding-top: 0 !important;
}

.page-header,
.page-hero,
.compact-hero{
    padding-top: clamp(82px, 9vw, 112px) !important;
    padding-bottom: clamp(32px, 5vw, 54px) !important;
}

.compact-section:first-of-type:not(.hero):not(.page-header){
    padding-top: clamp(82px, 9vw, 108px) !important;
}

/* Hero remains close to the navbar but not covered by it */
.hero{
    padding-top: clamp(86px, 8vw, 105px) !important;
    padding-bottom: clamp(34px, 5vw, 56px) !important;
}

.hero .row,
.hero .min-vh-100{
    min-height: auto !important;
}

/* Make the hero logo sit naturally on smaller screens */
@media (max-width: 991.98px){
    .hero .zenithora-transparent-logo{
        width: clamp(210px, 54vw, 340px);
        margin-top: 1.5rem;
    }

    .about-section .zenithora-transparent-logo,
    .about-logo-stage .zenithora-transparent-logo{
        width: clamp(200px, 58vw, 320px);
    }

    .about-logo-stage{
        min-height: 230px;
        margin-top: 1rem;
    }

    .page-header,
    .page-hero,
    .compact-hero{
        padding-top: 88px !important;
        padding-bottom: 38px !important;
    }

    .compact-section:first-of-type:not(.hero):not(.page-header){
        padding-top: 84px !important;
    }
}

@media (max-width: 575.98px){
    .hero{
        padding-top: 82px !important;
        padding-bottom: 30px !important;
    }

    .hero .zenithora-transparent-logo{
        width: min(72vw, 245px);
        margin-top: 1rem;
    }

    .about-section .zenithora-transparent-logo,
    .about-logo-stage .zenithora-transparent-logo{
        width: min(74vw, 250px);
    }

    .page-header,
    .page-hero,
    .compact-hero{
        padding-top: 78px !important;
        padding-bottom: 30px !important;
    }

    .compact-section:first-of-type:not(.hero):not(.page-header){
        padding-top: 78px !important;
    }

    .navbar{
        min-height: 62px !important;
    }
}
