:root {
    /* Core Colors */
    --bg-primary: #0a0b10;
    --bg-secondary: #13151f;
    --bg-accent: #1e2233;

    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    /* Neon Accents */
    --neon-cyan: #00f3ff;
    --neon-blue: #0d6efd;
    --neon-purple: #8b5cf6;

    /* Typography */
    --font-heading: 'Orbitron', 'Space Grotesk', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* UI Elements */
    --nav-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* =========================================
   NAVIGATION (GLASSMORPHISM)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 11, 16, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--text-main), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================
   BUTTONS
========================================= */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 0 0 var(--neon-cyan), 0 0 0 var(--neon-cyan);
}

.btn-primary:hover {
    color: var(--bg-primary);
    box-shadow: inset 0 0 20px 20px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

/* =========================================
   TYPEWRITER EFFECT CONTAINER
========================================= */
.typewriter-container {
    display: inline-block;
}

.typewriter-text {
    border-right: 3px solid var(--neon-cyan);
    animation: blink 0.75s step-end infinite;
    white-space: pre-wrap;
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--neon-cyan);
    }
}

/* =========================================
   3D TILT CARDS
========================================= */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.tilt-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-card-inner {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.1s ease, box-shadow var(--transition-smooth);
    will-change: transform;
}

.tilt-card:hover .tilt-card-inner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: translateZ(50px);
    /* 3D pop effect */
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    transform: translateZ(30px);
}

.card-desc {
    color: var(--text-muted);
    transform: translateZ(20px);
}

/* =========================================
   SECTIONS
========================================= */
.section-header {
    text-align: center;
    margin: 6rem 0 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--text-main);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* =========================================
   3D REDESIGN & GLASSMORPHISM EXTENSIONS
   ========================================= */

/* Glassmorphism Cyber Panel */
.glass-cyber-panel {
    background: rgba(10, 15, 28, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4),
                0 0 15px rgba(0, 243, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-cyber-panel:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5),
                0 0 25px rgba(0, 243, 255, 0.15);
}

/* 3D Tactile Buttons */
.btn-3d-tactile {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0px 6px 0px 0px #5b21b6,
                0px 6px 15px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(139, 92, 246, 0.4);
}

.btn-3d-tactile:hover {
    transform: translateY(2px);
    box-shadow: 0px 4px 0px 0px #5b21b6,
                0px 4px 10px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(139, 92, 246, 0.6);
}

.btn-3d-tactile:active {
    transform: translateY(6px);
    box-shadow: 0px 0px 0px 0px #5b21b6,
                0px 0px 5px rgba(0, 0, 0, 0.2);
}

/* Cyber Glow Text */
.text-neon-glow {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6),
                 0 0 20px rgba(0, 243, 255, 0.3);
}

/* Custom Neon Border Animation */
@keyframes neon-border-pulse {
    0%, 100% {
        border-color: rgba(0, 243, 255, 0.2);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.05);
    }
    50% {
        border-color: rgba(0, 243, 255, 0.6);
        box-shadow: 0 0 25px rgba(0, 243, 255, 0.25);
    }
}

.animated-neon-border {
    animation: neon-border-pulse 4s infinite ease-in-out;
}

/* =========================================
   FIREWALL SHOWCASE SCROLL SECTION STYLES
   ========================================= */

:root {
    --accent-sonicwall: #F7941D;
    --accent-sonicwall-secondary: #EE3124;
    --accent-sophos: #005DAA;
    --accent-sophos-dark: #00205B;
    --accent-fortigate: #DA291C;
}

/* Firewall Stage Transition System */
.firewall-stage {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.firewall-stage.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hardware Image Sticky Container & Parallax */
.firewall-img-wrap {
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.firewall-img {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    will-change: transform;
}

/* Brand Accent Glow Variants */
.firewall-brand-sonicwall {
    --brand-accent: var(--accent-sonicwall);
    --brand-accent-secondary: var(--accent-sonicwall-secondary);
}

.firewall-brand-sophos {
    --brand-accent: var(--accent-sophos);
    --brand-accent-secondary: var(--accent-sophos-dark);
}

.firewall-brand-fortigate {
    --brand-accent: var(--accent-fortigate);
    --brand-accent-secondary: #ff4d4d;
}

.firewall-panel-glow {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.firewall-brand-sonicwall .firewall-panel-glow {
    box-shadow: 0 10px 35px -10px rgba(247, 148, 29, 0.25);
}

.firewall-brand-sonicwall .firewall-panel-glow:hover {
    border-color: rgba(247, 148, 29, 0.5);
    box-shadow: 0 15px 45px -5px rgba(247, 148, 29, 0.4);
}

.firewall-brand-sophos .firewall-panel-glow {
    box-shadow: 0 10px 35px -10px rgba(0, 93, 170, 0.3);
}

.firewall-brand-sophos .firewall-panel-glow:hover {
    border-color: rgba(0, 93, 170, 0.6);
    box-shadow: 0 15px 45px -5px rgba(0, 93, 170, 0.45);
}

.firewall-brand-fortigate .firewall-panel-glow {
    box-shadow: 0 10px 35px -10px rgba(218, 41, 28, 0.3);
}

.firewall-brand-fortigate .firewall-panel-glow:hover {
    border-color: rgba(218, 41, 28, 0.6);
    box-shadow: 0 15px 45px -5px rgba(218, 41, 28, 0.45);
}

/* Progress Indicator Bar */
.firewall-progress-track {
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.firewall-progress-bar-fill {
    width: 100%;
    height: 0%;
    background: var(--brand-accent, #3b82f6);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--brand-accent, #3b82f6);
    transition: height 0.1s linear;
}

/* Reduced Motion Override for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .firewall-stage {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .firewall-img {
        transform: none !important;
        transition: none !important;
    }
    .firewall-progress-bar-fill {
        height: 100% !important;
    }
    .topo-particle {
        animation: none !important;
    }
}

/* =========================================
   ANIMATED NETWORK TOPOLOGY SECTION STYLES
   ========================================= */

@keyframes line-flow {
    0% {
        stroke-dashoffset: 40;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes node-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), inset 0 0 10px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 243, 255, 0.6), inset 0 0 15px rgba(0, 243, 255, 0.2);
    }
}

@keyframes particle-travel-down {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

.topo-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.topo-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.25);
}

.topo-flow-line {
    stroke-dasharray: 8 6;
    animation: line-flow 1.5s linear infinite;
}

.topo-badge-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Network Topology Scroll Camera Focus System */
.topo-level {
    opacity: 0.25;
    transform: scale(0.92) translateY(28px);
    filter: blur(2px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.5s ease,
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    will-change: opacity, transform, filter;
}

.topo-level.topo-revealed {
    opacity: 0.9;
    transform: scale(1) translateY(0);
    filter: blur(0px);
}

.topo-level.camera-focused {
    opacity: 1 !important;
    transform: scale(1.06) translateY(0) !important;
    filter: blur(0px) !important;
    border-color: rgba(0, 243, 255, 0.8) !important;
    box-shadow: 0 0 45px rgba(0, 243, 255, 0.4), inset 0 0 15px rgba(0, 243, 255, 0.2) !important;
}

/* Glowing Flow Cables when active */
.topo-level.camera-focused path.topo-flow-line,
.topo-level.topo-revealed path.topo-flow-line {
    stroke-dasharray: 8 6;
    animation: line-flow 1.2s linear infinite;
}

/* =========================================
   SKEUOMORPHIC NAVIGATION MENU STYLES
   ========================================= */

.nav-skeuo-bar {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.94) 0%, rgba(15, 23, 42, 0.97) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 0 rgba(0, 0, 0, 0.8),
                0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-skeuo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e2e8f0;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 0 rgba(0, 0, 0, 0.6);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.nav-skeuo-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.nav-skeuo-btn:active,
.nav-skeuo-btn.active {
    transform: translateY(1px);
    color: #38bdf8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.8),
                0 0 12px rgba(56, 189, 248, 0.4);
}

.nav-skeuo-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
}

.nav-skeuo-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(180deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    border: 1px solid #ffedd5;
    box-shadow: 0 4px 0 0 #9a3412,
                0 6px 15px rgba(249, 115, 22, 0.45),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
    transition: all 0.15s ease-out;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.nav-skeuo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #9a3412,
                0 8px 20px rgba(249, 115, 22, 0.6),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.nav-skeuo-cta:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 0 #9a3412,
                0 2px 6px rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* =========================================
   LIQUID GLASS CONTACT FORM & TRANSMISSION MODAL
   ========================================= */

.liquid-glass-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(59, 130, 246, 0.12) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.3),
                0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.liquid-glass-input {
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.liquid-glass-input:focus {
    border-color: rgba(0, 243, 255, 0.7) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 243, 255, 0.4) !important;
    outline: none !important;
}

/* Animated Transmission Checkmark Draw */
@keyframes checkmark-draw {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.animate-checkmark {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkmark-draw 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

/* Flying Envelope Transmission Path */
@keyframes envelope-fly {
    0% {
        transform: translateX(-100px) scale(0.7);
        opacity: 0.2;
    }
    50% {
        transform: translateX(0px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(100px) scale(0.7);
        opacity: 0.2;
    }
}

.animate-envelope-fly {
    animation: envelope-fly 1.8s ease-in-out infinite;
}

/* =========================================
   CINEMATIC DIGITAL MARKETING PROCESS STYLES
   ========================================= */

.dm-scene {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.dm-step-dot {
    transition: all 0.3s ease-out;
}

.dm-step-dot.active-dot {
    background-color: #00f3ff !important;
    border-color: #00f3ff !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.8) !important;
    transform: scale(1.25) !important;
}

.dm-scene-icon-wrap {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
}

@keyframes radar-scan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-radar-scan {
    animation: radar-scan 6s linear infinite;
}

/* Skeuomorphism Digital Marketing Process Cards */
.dm-skeuo-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 1px 0 rgba(0, 0, 0, 0.8),
                0 20px 45px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.dm-mockup-frame {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.dm-mockup-frame:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 243, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* =========================================
   DIGITAL MARKETING SOLUTIONS PATH STYLES
   ========================================= */

.dm-path-node {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
}

.dm-path-node.node-active {
    border-color: #00f3ff !important;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(59, 130, 246, 0.3) 100%) !important;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6), inset 0 0 10px rgba(0, 243, 255, 0.4) !important;
    transform: scale(1.15) !important;
}

.dm-path-node.node-active .dm-node-icon {
    color: #00f3ff !important;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.8));
}

.dm-path-panel {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.dm-path-panel.panel-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dm-deliverable-item {
    transition: all 0.25s ease-out;
}

.dm-deliverable-item:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* Animated 3D Circular Orbit Nodes & Badges */
.dm-orbit-ring {
    animation: radar-scan 6s linear infinite;
    pointer-events: none;
}

.dm-path-node.node-active .dm-orbit-ring {
    opacity: 1 !important;
}

.dm-path-node.node-active .dm-pulse-ring {
    opacity: 0.6 !important;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dm-circle-badge {
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(0, 243, 255, 0.4);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 0 15px rgba(0, 243, 255, 0.4);
}

/* =========================================
   3D CIRCULAR ROTARY WHEEL CAROUSEL STYLES
   ========================================= */

#dm-wheel-container {
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.dm-wheel-card {
    transition: transform 0.3s ease-out, opacity 0.4s ease-out, box-shadow 0.4s ease-out;
    will-change: transform, opacity;
}

.dm-wheel-card.active-wheel-card {
    border-color: #00f3ff !important;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%) !important;
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.12) !important;
}

@keyframes pulse-ring-glow {
    0% { transform: scale(0.95); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(0.95); opacity: 0.4; }
}

.animate-pulse-ring {
    animation: pulse-ring-glow 3s infinite ease-in-out;
}

/* =========================================
   5-STEP CIRCULAR ORBIT SCROLL WHEEL STYLES
   ========================================= */

.dm-orbit-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out, border-color 0.4s ease-out, box-shadow 0.4s ease-out;
    opacity: 0.45;
    will-change: transform, opacity;
}

.dm-orbit-card:hover {
    opacity: 0.85;
    transform: scale(1.08) !important;
}

.dm-orbit-card.dm-active-orbit-card {
    opacity: 1 !important;
    border-color: #00f3ff !important;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%) !important;
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.18) !important;
    z-index: 50 !important;
}

.dm-orbit-dot {
    transition: all 0.3s ease-out;
}

.dm-orbit-dot.active-dot {
    background-color: #00f3ff !important;
    border-color: #00f3ff !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.9) !important;
    transform: scale(1.4) !important;
}

/* =========================================
   NORTHSTAR INTEGRATED DIGITAL SOLUTIONS ORBIT ENGINE
   ========================================= */

.dm-stage {
    height: 675px;
    margin-top: 26px;
    position: relative;
    display: grid;
    place-items: center;
}

.dm-stage:before {
    content: "";
    position: absolute;
    width: min(605px, 88vw);
    height: min(605px, 88vw);
    border-radius: 50%;
    border: 1px solid rgba(122, 230, 235, .28);
    box-shadow: inset 0 0 80px rgba(115, 89, 255, .1), 0 0 105px rgba(58, 207, 211, .06);
}

.dm-stage:after {
    content: "";
    position: absolute;
    width: min(425px, 61vw);
    height: min(425px, 61vw);
    border-radius: 50%;
    border: 1px dashed rgba(195, 182, 255, .28);
    animation: dm-spin 29s linear infinite;
}

.dm-ring {
    position: absolute;
    width: min(535px, 80vw);
    height: min(535px, 80vw);
    z-index: 3;
    transition: transform .82s cubic-bezier(.2, .8, .2, 1);
}

.dm-arc-card, .dm-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    min-height: 140px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(22, 25, 48, 0.88);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 15px 36px rgba(0, 0, 0, .4);
    backdrop-filter: blur(16px);
    transition: opacity .5s ease-out, filter .5s ease-out, border .5s, box-shadow .5s, transform .4s ease-out;
    opacity: 0.12;
    filter: blur(1px) grayscale(0.8);
    cursor: pointer;
    z-index: 10;
}

.dm-arc-card:hover, .dm-card:hover {
    opacity: 0.85 !important;
    filter: none !important;
    border-color: rgba(107, 229, 224, .8);
}

.dm-arc-card.active, .dm-card.active {
    opacity: 1 !important;
    filter: none !important;
    background: linear-gradient(145deg, rgba(70, 78, 140, 0.9) 0%, rgba(20, 110, 130, 0.85) 100%) !important;
    border: 2px solid #6be9ed !important;
    box-shadow: 0 0 0 6px rgba(107, 229, 224, .25), 0 0 50px rgba(107, 229, 224, .6), 0 25px 50px rgba(0, 0, 0, .7) !important;
    z-index: 50 !important;
}

.dm-arc-card small, .dm-card small {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #6be9ed;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.dm-arc-card h3, .dm-card h3 {
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: -.5px;
    margin: 4px 0 6px;
    color: #ffffff;
    font-weight: 800;
}

.dm-arc-card p, .dm-card p {
    font-size: 11px;
    line-height: 1.45;
    color: #c4c6db;
    margin: 0;
}


.dm-card.active.flash {
    animation: dm-flash-pulse 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dm-center.flash, .dm-details.flash {
    animation: dm-center-flash 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dm-flash-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 229, 224, 1), 0 0 60px rgba(107, 229, 224, 0.9), 0 0 100px rgba(156, 121, 255, 0.8);
        border-color: #ffffff;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-262px) rotate(calc(var(--angle) * -1)) scale(1.22);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(107, 229, 224, 0.4), 0 0 75px rgba(156, 121, 255, 0.9);
        border-color: #6be9ed;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-262px) rotate(calc(var(--angle) * -1)) scale(1.15);
    }
    100% {
        box-shadow: 0 0 0 6px rgba(107, 229, 224, .25), 0 0 45px rgba(107, 229, 224, .5), 0 20px 47px rgba(0, 0, 0, .6);
        border-color: rgba(149, 247, 241, 1);
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-262px) rotate(calc(var(--angle) * -1)) scale(1.12);
    }
}

@keyframes dm-center-flash {
    0% {
        box-shadow: 0 0 0 25px rgba(107, 229, 224, 0.35), 0 0 90px rgba(116, 89, 255, 0.7);
        border-color: #ffffff;
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 18px rgba(106, 95, 234, .08), 0 0 80px rgba(116, 89, 255, .38);
        border-color: rgba(179, 236, 248, .4);
        transform: scale(1);
    }
}


.dm-card small {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #6be9ed;
}

.dm-card h3 {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -.7px;
    margin: 7px 0;
    color: #ffffff;
}

.dm-card p {
    font-size: 10px;
    line-height: 1.45;
    color: #b9bbcd;
    margin: 0;
}

.dm-center {
    position: relative;
    z-index: 2;
    width: 267px;
    min-height: 267px;
    padding: 30px 24px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle at 33% 25%, #373362, #17182c 71%);
    border: 1px solid rgba(179, 236, 248, .4);
    box-shadow: 0 0 0 18px rgba(106, 95, 234, .08), 0 0 80px rgba(116, 89, 255, .38);
}

.dm-center .count {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #6be9ed;
    letter-spacing: 1.4px;
}

.dm-center h3 {
    font-size: 22px;
    letter-spacing: -1px;
    margin: 7px 0;
    color: #ffffff;
}

.dm-center p {
    font-size: 11px;
    line-height: 1.55;
    color: #bec0d2;
    margin: 0;
}

.dm-hint {
    position: absolute;
    bottom: 0;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .5px;
    color: #9799b2;
}

.dm-hint b {
    color: #6be9ed;
    display: inline-block;
    animation: dm-bounce 1.2s infinite;
}

.dm-dots {
    position: absolute;
    bottom: -29px;
    display: flex;
    gap: 8px;
}

.dm-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3c3f5d;
    transition: .3s;
    cursor: pointer;
}

.dm-dots i.active {
    background: #6be9ed;
    box-shadow: 0 0 12px #6be9ed;
}

.dm-details {
    max-width: 880px;
    margin: 36px auto 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dm-details h3 {
    font-size: 18px;
    letter-spacing: -.7px;
    margin: 0 0 8px;
    color: #ffffff;
}

.dm-details p {
    font-size: 13px;
    line-height: 1.75;
    color: #c2c4d5;
    margin: 0;
}

.dm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dm-features span {
    font-size: 11px;
    color: #d0d1df;
    line-height: 1.5;
}

.dm-features span:before {
    content: '✓';
    color: #6be9ed;
    font-weight: 800;
    margin-right: 6px;
}

.dm-fit {
    grid-column: 1/-1;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    gap: 24px;
}

.dm-fit b {
    color: #6be9ed;
    font-size: 11px;
}

.dm-fit p {
    font-size: 12px;
    color: #c2c4d5;
    margin: 0;
}

@keyframes dm-spin {
    to { transform: rotate(360deg); }
}

@keyframes dm-bounce {
    50% { transform: translateY(4px); }
}

@media(max-width: 1024px) {
    .dm-stage {
        height: min(560px, 85vh);
    }
    .dm-arc-card, .dm-card {
        width: 165px;
        min-height: 115px;
        padding: 14px 16px;
        border-radius: 20px;
    }
    .dm-arc-card h3, .dm-card h3 {
        font-size: 14px;
    }
    .dm-arc-card p, .dm-card p {
        font-size: 10px;
    }
    .dm-center {
        width: 220px;
        min-height: 220px;
        padding: 22px;
    }
    .dm-center h3 {
        font-size: 18px;
    }
    .dm-center p {
        font-size: 10px;
    }
}

@media(max-width: 640px) {
    .dm-stage {
        height: min(480px, 80vh);
    }
    .dm-arc-card, .dm-card {
        width: 130px;
        min-height: 95px;
        padding: 10px 12px;
        border-radius: 16px;
    }
    .dm-arc-card small, .dm-card small {
        font-size: 9px;
        margin-bottom: 3px;
    }
    .dm-arc-card h3, .dm-card h3 {
        font-size: 12px;
        margin: 2px 0 4px;
    }
    .dm-arc-card p, .dm-card p {
        display: none;
    }
    .dm-center {
        width: 165px;
        min-height: 165px;
        padding: 15px;
    }
    .dm-center h3 {
        font-size: 15px;
        margin: 4px 0;
    }
    .dm-center p {
        font-size: 9.5px;
    }
    .dm-details {
        grid-template-columns: 1fr;
        padding: 18px;
        margin-top: 20px;
    }
    .dm-features {
        grid-template-columns: 1fr;
    }
    .dm-fit {
        display: block;
    }
    .dm-fit p {
        margin-top: 6px;
    }
}













