/*

================================================================

INTELYNEX - PREMIUM POWER BI CONSULTING WEBSITE

Styling System: Modern Electric Blue & Platinum Silver Theme

Created by: Elite Senior UI/UX Designer & SaaS Frontend Architect

================================================================

*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Tokens (Aligned with the Intelynex Custom Logo) */
    --var-brand-version: "Intelynex-Blue-Silver-Theme";
    --color-navy-deep: #071B2A;
    --color-navy-dark: #04101A;
    --color-navy-light: #0D2D44;
    --color-electric-blue: #0066FF;
    --color-platinum: #CFD6DF;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F7FA;
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    --color-bg-glass-dark: rgba(7, 27, 42, 0.7);
    --color-muted: rgba(255, 255, 255, 0.7);
    --color-text-dark: #071B2A;
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #0066FF, #00C6FF);
    --gradient-glow: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(7, 27, 42, 0) 70%);
    --gradient-dark-mesh: radial-gradient(at 0% 0%, #071b2a 0px, transparent 50%),
    radial-gradient(at 50% 0%, #0d2d44 0px, transparent 50%),
    radial-gradient(at 100% 0%, #04101a 0px, transparent 50%);
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Layout Variables */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
    --box-shadow-glow: 0 0 30px rgba(0, 102, 255, 0.25);
}

/* ==========================================

RESET & FOUNDATION

========================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
}

p {
    font-weight: 300;
    color: var(--color-muted);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-navy-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-electric-blue);
}

/* Selection */

::selection {
    background-color: var(--color-electric-blue);
    color: var(--color-white);
}

/* ==========================================

GLOBAL UTILITY CLASSES

========================================== */

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-dark-mesh {
    background-color: var(--color-navy-dark);
    background-image: var(--gradient-dark-mesh);
    background-attachment: fixed;
}

.glass-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
    transform: translateY(-8px);
}

/* Section Styling */

.section-padding {
    padding: 100px 0;
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-electric-blue);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 700px;
}

/* Light Mode Override Helper */

.bg-light-premium {
    background-color: var(--color-light-gray);
    color: var(--color-text-dark);
}

.bg-light-premium h2,

.bg-light-premium h3,

.bg-light-premium h4,

.bg-light-premium p {
    color: var(--color-text-dark);
}

.bg-light-premium p {
    color: rgba(7, 27, 42, 0.7);
}

.bg-light-premium .glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bg-light-premium .glass-card:hover {
    background: var(--color-white);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

/* ==========================================

BUTTONS

========================================== */

.btn-premium {
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-premium-gradient {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--box-shadow-glow);
    font-weight: 700;
}

.btn-premium-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00C6FF, #0066FF);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-premium-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
    color: var(--color-white);
}

.btn-premium-gradient:hover::after {
    opacity: 1;
}

.btn-premium-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-electric-blue);
    color: var(--color-electric-blue);
    transform: translateY(-3px);
}

/* ==========================================

NAVBAR (STICKY & GLASSMORPHISM)

========================================== */

.navbar-premium {
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar-premium.sticky {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: rgba(7, 27, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.5s ease-out;
}

.navbar-premium .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-premium .navbar-brand img,

.navbar-premium .navbar-brand svg {
    height: 38px;
    width: auto;
}

.navbar-premium .nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px !important;
    position: relative;
}

.navbar-premium .nav-link:hover,

.navbar-premium .nav-link.active {
    color: var(--color-electric-blue) !important;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 16px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover::after,

.navbar-premium .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-premium .navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-premium .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-premium .navbar-toggler-icon-custom {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.navbar-premium .navbar-toggler-icon-custom span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-premium .navbar-toggler-icon-custom span:nth-child(1) { top: 0; }

.navbar-premium .navbar-toggler-icon-custom span:nth-child(2) { top: 8px; }

.navbar-premium .navbar-toggler-icon-custom span:nth-child(3) { top: 16px; }

.navbar-premium .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================

HERO SECTION & DECORATIVE GRADIENTS

========================================== */

.hero-wrapper {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-navy-dark);
}

/* Glowing Aura Orbs */

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-electric-blue);
    top: -100px;
    right: -100px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: #00C6FF;
    bottom: -100px;
    left: -100px;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: #FF007A;
    top: 50%;
    left: 40%;
    opacity: 0.03;
}

/* Hero Content Styling */

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media(max-width: 991px) {
.hero-content h1 {
    font-size: 2.8rem;
}

}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--color-muted);
}

/* Responsive Grid Adjustments */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Telemetry Graphic (Visual Showcase) */

.hero-graphic-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-dashboard-mockup {
    width: 100%;
    max-width: 500px;
    height: 320px;
    background: rgba(7, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1.5px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    padding: 24px;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

/* Floating Card Telemetry Element */

.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    padding: 16px;
    z-index: 10;
    animation: floatAnimation 6s ease-in-out infinite;
}

.widget-1 {
    top: 20px;
    left: -40px;
    width: 160px;
    animation-delay: 0s;
}

.widget-2 {
    bottom: 30px;
    right: -30px;
    width: 180px;
    animation-delay: 2s;
}

.widget-3 {
    top: -20px;
    right: 20px;
    width: 140px;
    animation-delay: 4s;
}

/* ==========================================

TRUSTED LOGOS STRIP

========================================== */

.trusted-logos-section {
    background-color: #051420;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: relative;
    z-index: 10;
}

.trusted-logo-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.logo-item i {
    font-size: 1.4rem;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================

SERVICES CARDS

========================================== */

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-electric-blue);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover .service-icon-box {
    background: var(--gradient-accent);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-electric-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================

WHY INTELYNEX & STATS

========================================== */

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.15);
    color: var(--color-electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.why-feature-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

/* Dynamic Analytics Stats */

.stat-counter-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}

/* ==========================================

PROCESS TIMELINE PIPELINE

========================================== */

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    top: 10%;
    left: 30px;
}

@media(min-width: 768px) {
.process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
}

}

.process-step {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.process-step-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-navy-light);
    border: 2px solid var(--color-border-glass);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    top: 0;
    transition: var(--transition-smooth);
}

.process-step:hover .process-step-badge {
    background: var(--gradient-accent);
    border-color: var(--color-electric-blue);
    color: var(--color-white);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.5);
    transform: scale(1.1);
}

@media(min-width: 768px) {
.process-step-badge {
    left: 50%;
    transform: translateX(-50%);
}

.process-step-content {
    width: 45%;
    margin-left: 0;
}

.process-step:nth-child(even) .process-step-content {
    margin-left: 55%;
}

.process-step:nth-child(odd) {
    text-align: right;
}

}

@media(max-width: 767px) {
.process-step-content {
    margin-left: 80px;
}

}

.process-step-card {
    padding: 30px;
}

/* ==========================================

INTERACTIVE SHOWCASE BOARD

========================================== */

.showcase-tab-btn {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    color: var(--color-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.showcase-tab-btn i {
    font-size: 1.3rem;
    color: var(--color-electric-blue);
    transition: var(--transition-smooth);
}

.showcase-tab-btn.active,

.showcase-tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-electric-blue);
    color: var(--color-white);
}

.showcase-tab-btn.active i {
    transform: scale(1.2);
    color: var(--color-electric-blue);
}

.showcase-canvas-board {
    height: 480px;
    background: rgba(7, 27, 42, 0.5);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
    overflow: hidden;
    position: relative;
    padding: 30px;
}

/* Custom interactive UI SVGs */

.canvas-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    pointer-events: none;
}

/* ==========================================

TESTIMONIALS (GLASS CAROUSEL)

========================================== */

.testimonial-card {
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-size: 3.5rem;
    color: rgba(0, 102, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-rating {
    color: #FFB800;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.client-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* ==========================================

FINAL HIGH-IMPACT CTA SECTION

========================================== */

.cta-premium-banner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 80px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, rgba(7, 27, 42, 0.9) 0%, rgba(13, 45, 68, 0.9) 100%);
    border: 1px solid var(--color-border-glass);
}

.cta-premium-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, rgba(7, 27, 42, 0) 70%);
    pointer-events: none;
}

/* ==========================================

PREMIUM ENTERPRISE FOOTER

========================================== */

.footer-premium {
    background-color: #030C13;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    position: relative;
    z-index: 10;
}

.footer-premium .footer-brand-logo {
    height: 34px;
    width: auto;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background: var(--gradient-accent);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-3px) rotate(8deg);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    bottom: 0;
    left: 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-electric-blue);
    padding-left: 6px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.footer-contact-info i {
    color: var(--color-electric-blue);
    margin-top: 4px;
}

.footer-newsletter-form {
    position: relative;
}

.footer-newsletter-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.footer-newsletter-input:focus {
    border-color: var(--color-electric-blue);
    background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #00C6FF, #0066FF);
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--color-electric-blue);
}

/* ==========================================

SUB-PAGE IMMERSIVE HERO BANNERS

========================================== */

.sub-hero-wrapper {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--color-navy-deep);
    background-image: var(--gradient-dark-mesh);
    overflow: hidden;
    text-align: center;
}

.sub-hero-wrapper .breadcrumb {
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.sub-hero-wrapper .breadcrumb-item,

.sub-hero-wrapper .breadcrumb-item a {
    color: var(--color-muted);
}

.sub-hero-wrapper .breadcrumb-item a:hover {
    color: var(--color-electric-blue);
}

.sub-hero-wrapper .breadcrumb-item.active {
    color: var(--color-white);
}

/* ==========================================

CONTACT FORM / GENERAL INPUTS

========================================== */

.form-group-premium {
    margin-bottom: 24px;
}

.form-label-premium {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    color: var(--color-white);
}

.form-control-premium {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-white);
    outline: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.form-control-premium:focus {
    border-color: var(--color-electric-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.15);
}

textarea.form-control-premium {
    resize: none;
    min-height: 120px;
}

/* ==========================================

CAREERS PAGE SPECIALS

========================================== */

.career-perk-card {
    padding: 30px;
    text-align: center;
}

.career-perk-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-electric-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.job-listing-card {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width: 767px) {
.job-listing-card {
    flex-direction: column;
    align-items: flex-start;
}

}

.job-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Careers Modal */

.modal-premium {
    backdrop-filter: blur(20px);
}

.modal-premium .modal-content {
    background: rgba(7, 27, 42, 0.95);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    color: var(--color-white);
}

.modal-premium .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 24px 30px;
}

.modal-premium .modal-body {
    padding: 30px;
}

.modal-premium .btn-close {
    filter: invert(1);
}

/* ==========================================

SOLUTIONS PAGE INTEGRATIONS

========================================== */

.integration-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    margin-bottom: 10px;
    color: var(--color-muted);
}

/* ==========================================

KEYFRAME ANIMATIONS

========================================== */

@keyframes slideDown {
    from { transform: translateY(-100%); }

    to { transform: translateY(0); }

}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }

    50% { transform: translateY(-15px) rotate(1deg); }

    100% { transform: translateY(0px) rotate(0deg); }

}

@keyframes spinSlow {
    from { transform: rotate(0deg); }

    to { transform: rotate(360deg); }

}

/* Custom telemetry pulse classes */

.node-pulse {
    animation: nodePulse 2s infinite alternate;
}

@keyframes nodePulse {
    0% { r: 4px; opacity: 0.6; }

    100% { r: 8px; opacity: 1; }

}

/* Responsive Overrides */

@media(max-width: 768px) {
.section-title {
    font-size: 2rem;
}

.section-padding {
    padding: 60px 0;
}

}

/* ==========================================

LIGHT / DARK THEME SYSTEM OVERRIDES

========================================== */

body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

.glass-card, .theme-toggle-btn, .navbar-premium, h1, h2, h3, h4, h5, h6, p, span, i, a {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Core Light Mode Variable Overrides */

body.light-mode {
    --color-navy-deep: #F0F4F8;
    --color-navy-dark: #FFFFFF;
    --color-navy-light: #E1E8F0;
    --color-white: #071B2A;
    --color-muted: #4A5D6E;
    --color-border-glass: rgba(7, 27, 42, 0.08);
    --color-bg-glass: rgba(7, 27, 42, 0.02);
    --color-bg-glass-dark: rgba(255, 255, 255, 0.9);
    --gradient-dark-mesh: radial-gradient(at 0% 0%, #f0f4f8 0px, transparent 50%),
    radial-gradient(at 50% 0%, #e1e8f0 0px, transparent 50%),
    radial-gradient(at 100% 0%, #ffffff 0px, transparent 50%);
}

/* Light Mode Toggle Button Styles */

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-electric-blue);
    transform: scale(1.05);
}

body.light-mode .theme-toggle-btn {
    background: rgba(7, 27, 42, 0.05);
    border-color: rgba(7, 27, 42, 0.08);
    color: #071B2A;
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(7, 27, 42, 0.1);
    color: var(--color-electric-blue);
}

/* Logo Color Tweaks in Light Mode */

body.light-mode svg text tspan:nth-child(2) {
    fill: #071B2A !important;
}

body.light-mode svg text:nth-of-type(2) {
    fill: rgba(7, 27, 42, 0.6) !important;
}

/* Sticky Navbar Overrides for Light Mode */

body.light-mode .navbar-premium.sticky {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(7, 27, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .navbar-premium .nav-link {
    color: rgba(7, 27, 42, 0.8);
}

body.light-mode .navbar-premium .nav-link:hover,

body.light-mode .navbar-premium .nav-link.active {
    color: var(--color-electric-blue) !important;
}

body.light-mode .navbar-premium .navbar-toggler-icon-custom span {
    background: #071B2A;
}

/* Trusted Logos Overrides */

body.light-mode .trusted-logos-section {
    background-color: #ECEFF3;
}

body.light-mode .logo-item {
    color: rgba(7, 27, 42, 0.4);
}

body.light-mode .logo-item:hover {
    color: rgba(7, 27, 42, 0.85);
}

/* Cards & Components Hover Overrides in Light Mode */

body.light-mode .glass-card:hover {
    background: var(--color-white);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.06);
}

/* Custom Hero Mockup and Floating Widgets high-contrast transitions in Light Mode */

body.light-mode .floating-widget {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(7, 27, 42, 0.12) !important;
    box-shadow: 0 15px 35px rgba(7, 27, 42, 0.08) !important;
}

body.light-mode .hero-dashboard-mockup {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(7, 27, 42, 0.12) !important;
    box-shadow: 0 30px 60px rgba(7, 27, 42, 0.12) !important;
}

body.light-mode .floating-widget {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(7, 27, 42, 0.12) !important;
    box-shadow: 0 15px 35px rgba(7, 27, 42, 0.08) !important;
}

body.light-mode .hero-dashboard-mockup .progress {
    background: rgba(7, 27, 42, 0.08) !important;
}

body.light-mode .hero-dashboard-mockup .bg-white-5 {
    background: rgba(7, 27, 42, 0.03) !important;
    border-color: rgba(7, 27, 42, 0.08) !important;
}

body.light-mode .btn-premium-outline {
    border-color: rgba(7, 27, 42, 0.2) !important;
    color: #071B2A !important;
}

body.light-mode .btn-premium-outline:hover {
    background: rgba(7, 27, 42, 0.05) !important;
    border-color: var(--color-electric-blue) !important;
    color: var(--color-electric-blue) !important;
}

body.light-mode .why-feature-item p {
    color: rgba(7, 27, 42, 0.6) !important;
}

body.light-mode .testimonial-rating {
    color: #FF9900 !important;
}

/* ==========================================

WHATSAPP FLOATING WIDGET STYLING

========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: #FFF;
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }

    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }

    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }

}

/* ==========================================

SUBPAGE FIXED NAV BAR STYLING

========================================== */

.navbar-premium.navbar-subpage {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: rgba(7, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

body.light-mode .navbar-premium.navbar-subpage {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(7, 27, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================

PORTFOLIO LIVE TAB STYLING

========================================== */

.portfolio-tab {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: rgba(7, 27, 42, 0.03);
    border: 1px solid rgba(7, 27, 42, 0.08);
    border-radius: var(--border-radius-md);
    color: #071B2A;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-tab i {
    font-size: 1.1rem;
    color: var(--color-electric-blue);
}

.portfolio-tab:hover,

.portfolio-tab.active {
    background: #071B2A;
    border-color: #071B2A;
    color: #FFFFFF;
}

.portfolio-tab.active i {
    color: #0066FF;
}

body.light-mode .portfolio-tab {
    background: rgba(7, 27, 42, 0.02);
}

body.light-mode .portfolio-tab:hover,

body.light-mode .portfolio-tab.active {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    color: #FFFFFF;
}

/* ==========================================

METRICS CONTRAST IMPROVEMENTS

========================================== */

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white) !important;
    opacity: 0.8;
}

body.light-mode .stat-label {
    color: #071B2A !important;
    opacity: 0.85;
}

/* ==========================================

RESPONSIVE HERO OVERLAPS RESOLUTION

========================================== */

/* ==========================================

LIGHT MODE TYPOGRAPHY BLANK FIXES

========================================== */

body.light-mode .showcase-tab-btn .text-white {
    color: #071B2A !important;
}

body.light-mode .showcase-tab-btn .text-white-50 {
    color: rgba(7, 27, 42, 0.65) !important;
}

body.light-mode .showcase-tab-btn {
    border-color: rgba(7, 27, 42, 0.08);
}

body.light-mode .showcase-tab-btn.active,

body.light-mode .showcase-tab-btn:hover {
    background: rgba(7, 27, 42, 0.04);
    border-color: var(--color-electric-blue);
}

/* ==========================================

PORTFOLIO DUAL-MODE CONTRAST FIXES

========================================== */

.portfolio-tab {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--border-radius-md);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    outline: none;
}

.portfolio-tab i {
    font-size: 1.1rem;
    color: var(--color-electric-blue) !important;
}

.portfolio-tab:hover,

.portfolio-tab.active {
    background: var(--gradient-accent) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
}

.portfolio-tab.active i {
    color: #FFFFFF !important;
}

body.light-mode .portfolio-tab {
    background: rgba(7, 27, 42, 0.03) !important;
    border: 1px solid rgba(7, 27, 42, 0.08) !important;
    color: #071B2A !important;
}

body.light-mode .portfolio-tab:hover,

body.light-mode .portfolio-tab.active {
    background: #071B2A !important;
    border-color: #071B2A !important;
    color: #FFFFFF !important;
}

/* ==========================================

RESPONSIVE HERO OVERLAPS RESOLUTION (MEDIUM DESKTOPS)

========================================== */

/* ==========================================

LIGHT MODE MASTERCLASS TYPOGRAPHY & CONTRAST FIXES

========================================== */

body.light-mode .showcase-tab-btn .text-white,

body.light-mode .showcase-tab-btn h1,

body.light-mode .showcase-tab-btn h2,

body.light-mode .showcase-tab-btn h3,

body.light-mode .showcase-tab-btn h4 {
    color: #071B2A !important;
}

body.light-mode .showcase-tab-btn .text-white-50 {
    color: rgba(7, 27, 42, 0.65) !important;
}

body.light-mode .showcase-tab-btn {
    border-color: rgba(7, 27, 42, 0.08);
}

body.light-mode .showcase-tab-btn.active,

body.light-mode .showcase-tab-btn:hover {
    background: rgba(7, 27, 42, 0.04);
    border-color: var(--color-electric-blue);
}

/* Global Light Mode Contrast Fixes for White-on-White Hardcoded Classes */

body.light-mode .text-white {
    color: #071B2A !important;
}

body.light-mode .text-white-50 {
    color: #4A5D6E !important;
}

body.light-mode h1,

body.light-mode h2,

body.light-mode h3,

body.light-mode h4,

body.light-mode h5,

body.light-mode h6,

body.light-mode strong {
    color: #071B2A !important;
}

body.light-mode p,

body.light-mode li,

body.light-mode span,

body.light-mode i:not(.fa-whatsapp):not(.fa-star):not(.fa-calendar-alt):not(.fa-arrow-right):not(.fa-chevron-right) {
    color: #4A5D6E !important;
}

/* Revert text colors back to white/light for explicitly dark sections and forms */

body.light-mode .footer-premium .text-white,

body.light-mode .modal-content .text-white,

body.light-mode .cta-premium-banner .text-white,

body.light-mode [style*="background: #051420"] .text-white,

body.light-mode [style*="background:#051420"] .text-white,

body.light-mode [style*="background: rgba(7, 27, 42"] .text-white,

body.light-mode [style*="background:rgba(7, 27, 42"] .text-white,

body.light-mode .footer-premium h1, body.light-mode .footer-premium h2, body.light-mode .footer-premium h3, body.light-mode .footer-premium h4, body.light-mode .footer-premium h5, body.light-mode .footer-premium h6,

body.light-mode .modal-content h1, body.light-mode .modal-content h2, body.light-mode .modal-content h3, body.light-mode .modal-content h4, body.light-mode .modal-content h5, body.light-mode .modal-content h6,

body.light-mode .cta-premium-banner h1, body.light-mode .cta-premium-banner h2, body.light-mode .cta-premium-banner h3, body.light-mode .cta-premium-banner h4, body.light-mode .cta-premium-banner h5, body.light-mode .cta-premium-banner h6,

body.light-mode [style*="background: #051420"] h1, body.light-mode [style*="background: #051420"] h2, body.light-mode [style*="background: #051420"] h3, body.light-mode [style*="background: #051420"] h4, body.light-mode [style*="background: #051420"] h5, body.light-mode [style*="background: #051420"] h6,

body.light-mode [style*="background:#051420"] h1, body.light-mode [style*="background:#051420"] h2, body.light-mode [style*="background:#051420"] h3, body.light-mode [style*="background:#051420"] h4, body.light-mode [style*="background:#051420"] h5, body.light-mode [style*="background:#051420"] h6,

body.light-mode [style*="background: rgba(7, 27, 42"] h1, body.light-mode [style*="background: rgba(7, 27, 42"] h2, body.light-mode [style*="background: rgba(7, 27, 42"] h3, body.light-mode [style*="background: rgba(7, 27, 42"] h4, body.light-mode [style*="background: rgba(7, 27, 42"] h5, body.light-mode [style*="background: rgba(7, 27, 42"] h6,

body.light-mode [style*="background:rgba(7, 27, 42"] h1, body.light-mode [style*="background:rgba(7, 27, 42"] h2, body.light-mode [style*="background:rgba(7, 27, 42"] h3, body.light-mode [style*="background:rgba(7, 27, 42"] h4, body.light-mode [style*="background:rgba(7, 27, 42"] h5, body.light-mode [style*="background:rgba(7, 27, 42"] h6,

body.light-mode .footer-premium strong,

body.light-mode .modal-content strong,

body.light-mode .cta-premium-banner strong,

body.light-mode [style*="background: #051420"] strong,

body.light-mode [style*="background:#051420"] strong,

body.light-mode [style*="background: rgba(7, 27, 42"] strong,

body.light-mode [style*="background:rgba(7, 27, 42"] strong {
    color: #FFFFFF !important;
}

body.light-mode .footer-premium .text-white-50,

body.light-mode .modal-content .text-white-50,

body.light-mode .cta-premium-banner .text-white-50,

body.light-mode [style*="background: #051420"] .text-white-50,

body.light-mode [style*="background:#051420"] .text-white-50,

body.light-mode [style*="background: rgba(7, 27, 42"] .text-white-50,

body.light-mode [style*="background:rgba(7, 27, 42"] .text-white-50,

body.light-mode .footer-premium p, body.light-mode .footer-premium li, body.light-mode .footer-premium span, body.light-mode .footer-premium i,

body.light-mode .modal-content p, body.light-mode .modal-content li, body.light-mode .modal-content span, body.light-mode .modal-content i,

body.light-mode .cta-premium-banner p, body.light-mode .cta-premium-banner li, body.light-mode .cta-premium-banner span, body.light-mode .cta-premium-banner i,

body.light-mode [style*="background: #051420"] p, body.light-mode [style*="background: #051420"] li, body.light-mode [style*="background: #051420"] span, body.light-mode [style*="background: #051420"] i,

body.light-mode [style*="background:#051420"] p, body.light-mode [style*="background:#051420"] li, body.light-mode [style*="background:#051420"] span, body.light-mode [style*="background:#051420"] i,

body.light-mode [style*="background: rgba(7, 27, 42"] p, body.light-mode [style*="background: rgba(7, 27, 42"] li, body.light-mode [style*="background: rgba(7, 27, 42"] span, body.light-mode [style*="background: rgba(7, 27, 42"] i,

body.light-mode [style*="background:rgba(7, 27, 42"] p, body.light-mode [style*="background:rgba(7, 27, 42"] li, body.light-mode [style*="background:rgba(7, 27, 42"] span, body.light-mode [style*="background:rgba(7, 27, 42"] i {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Modal text contrast fix */

body.light-mode .modal-content h5,

body.light-mode .modal-content label {
    color: #FFFFFF !important;
}

body.light-mode .modal-content p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Breadcrumbs in subpages in light mode */

body.light-mode .breadcrumb-item a {
    color: rgba(7, 27, 42, 0.6) !important;
}

body.light-mode .breadcrumb-item.active {
    color: #071B2A !important;
}

/* Form inputs styling in light mode */

body.light-mode .form-control-premium {
    background: rgba(7, 27, 42, 0.04) !important;
    border: 1px solid rgba(7, 27, 42, 0.15) !important;
    color: #071B2A !important;
}

body.light-mode .form-control-premium:focus {
    border-color: var(--color-electric-blue) !important;
    background: rgba(7, 27, 42, 0.06) !important;
}

body.light-mode .form-control-premium::placeholder {
    color: rgba(7, 27, 42, 0.45) !important;
}

body.light-mode .form-label-premium {
    color: #071B2A !important;
}

/* Explicit select dropdown options styling to prevent white-on-white text in Chrome/Edge */

.form-control-premium option {
    background-color: #071B2A !important;
    color: #FFFFFF !important;
}

body.light-mode .form-control-premium option {
    background-color: #FFFFFF !important;
    color: #071B2A !important;
}

/* ProcessTimeline nodes in light mode */

body.light-mode .process-step-badge {
    background: #E1E8F0 !important;
    border-color: rgba(7, 27, 42, 0.15) !important;
    color: #071B2A !important;
}

body.light-mode .process-step:hover .process-step-badge {
    background: var(--gradient-accent) !important;
    border-color: var(--color-electric-blue) !important;
    color: #FFFFFF !important;
}

/* Integration and Badge tweaks in light mode */

body.light-mode .integration-badge {
    background: rgba(7, 27, 42, 0.05) !important;
    border: 1px solid rgba(7, 27, 42, 0.1) !important;
    color: #4A5D6E !important;
}

/* CTA Premium Banner text visibility in light mode */

body.light-mode .cta-premium-banner h2 {
    color: #FFFFFF !important;
}

body.light-mode .cta-premium-banner p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Testimonial adjustments */

body.light-mode .testimonial-card .client-avatar {
    color: #FFFFFF !important;
}

body.light-mode .testimonial-rating i {
    color: #FFB800 !important;
}

/* Homepage stats counter adjustments */

body.light-mode .stat-number {
    background: var(--gradient-accent) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

body.light-mode .stat-label {
    color: #071B2A !important;
    opacity: 0.85 !important;
}

/* ==========================================

   RESPONSIVE TELEMETRY OVERLAPS PROTECTION

   ========================================== */

@media (max-width: 991px) {
    .hero-graphic-container {
        height: auto !important;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-dashboard-mockup {
        position: relative !important;
        transform: none !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .floating-widget {
        position: static !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 10px auto !important;
        transform: none !important;
        animation: none !important;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    .widget-1 {
        left: -10px !important;
        top: -30px !important;
        transform: scale(0.85) !important;
    }

    .widget-2 {
        right: -10px !important;
        bottom: -30px !important;
        transform: scale(0.85) !important;
    }

    .hero-dashboard-mockup {
        transform: scale(0.9) !important;
    }

}
