@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Logo Brand Colors updated to user's specifications */
    --primary: #2563EB;
    /* 1st color: Primary Blue */
    --secondary: #FF6B00;
    /* Secondary color: Orange */
    --accent: #10B981;
    /* Emerald Green */

    --primary-glow: rgba(37, 99, 235, 0.12);
    --secondary-glow: rgba(255, 107, 0, 0.08);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Force global font family on all elements */
body,
input,
button,
select,
textarea,
a {
    font-family: var(--font-body);
    text-decoration: none !important;
    /* Remove all underlines globally */
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 181px;
    /* Height offset for header: 36px + 75px + 70px = 181px */
}

body.no-scroll {
    overflow: hidden !important;
}

/* Header Container */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    /* border-bottom: 1px solid var(--border-color); */
}

/* Row 1: Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    /* Theme Blue (Used More) */
    border-bottom: none;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-animation 35s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ticker-item strong {
    font-weight: 700;
    color: #ffffff;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Row 2: Main Navigation */
.navbar-row-2 {
    height: 75px;
    /* border-bottom: 1px solid var(--border-color); */
    background: var(--bg-white);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.logo-wrap img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Menu Links */
.menu-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    list-style: none;
    margin: 0 1.5rem 0 1rem;
}

.menu-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111111;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.menu-link-idx {
    display: none;
}

.menu-link:hover,
.menu-link.active {
    color: var(--primary);
    /* Hover active link blue */
}

/* Search Form Bar */
.search-form {
    flex-grow: 1;
    max-width: 480px;
    position: relative;
    margin-right: 1.5rem;
}

.search-input {
    width: 100%;
    background: #f1f3f5;
    border: none;
    outline: none;
    border-radius: 9999px;
    /* Pill Search shape */
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    font-size: 0.88rem;
    color: #111111;
    transition: var(--transition-smooth);
}

.search-input:focus {
    background: #e9ecef;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #6c757d;
    pointer-events: none;
}

/* Actions Group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.action-btn-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111111;
    transition: var(--transition-smooth);
    padding: 0.5rem 0.2rem;
}

.action-btn-text:hover {
    color: var(--secondary);
}

.action-btn-fill {
    background: var(--primary);
    /* Blue Be Pro button */
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: 9999px;
    /* Pill shape */
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.action-btn-fill:hover {
    background: #0f3cb3;
    box-shadow: 0 4px 12px rgba(22, 76, 226, 0.2);
}

.action-btn-outline {
    border: 1px solid var(--secondary);
    /* Orange Outline */
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: 9999px;
    /* Pill shape */
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.action-btn-outline:hover {
    background: rgba(255, 100, 24, 0.05);
}

/* Row 3: Sub-navigation / Pills */
.navbar-row-3 {
    height: 70px;
    background: #ffffff;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid var(--border-color); */
    padding: 0 50px;
}

.navbar-row-3 .nav-container {
    background: #f1f3f5;
    /* Grey pill wrapper */
    border-radius: 9999px;
    padding: 0.4rem 0.8rem 0.4rem 0.6rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.filters-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    background: var(--primary);
    /* Blue pills by default */
    border: none;
    border-radius: 9999px;
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--secondary);
    /* Hover/active turns it orange */
    color: #ffffff;
}

.badge-counter {
    background: var(--primary);
    /* Blue badge */
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-filters {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444444;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.reset-filters:hover {
    color: var(--secondary);
}

.reset-separator {
    width: 1px;
    height: 16px;
    background-color: #cccccc;
    margin-left: 0.4rem;
}

/* General Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Hero Section */
.hero {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
    background: #f8fafc;
    /* Very soft blue-grey background */
    overflow: hidden;
    /* min-height: 90vh; */
}

/* Glowing background blur circles */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-blue {
    top: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: var(--primary);
}

.glow-orange {
    bottom: 5%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
}

/* Grid pattern overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}


.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    width: 100%;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    /* margin-bottom: 1.5rem; */
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.hero-br {
    display: none;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-title span.highlight {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-title span.highlight-orange {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    /* margin-bottom: 2rem; */
    justify-content: center;
}

/* Service Chips */
.hero-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    justify-content: center;
}

.chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Trust Cards Grid */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    /* margin: 2.2rem 0; */
    width: 100%;
}

@media (max-width: 768px) {
    .hero-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile instead of stacking */
        gap: 0.6rem;
    }

    .trust-card {
        padding: 0.6rem 0.8rem;
        font-size: 0.78rem;
    }
}

.trust-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.05);
}

.trust-card-icon {
    font-size: 1.1rem;
}

/* Statistics Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
    border-top: 1px dashed #e2e8f0;
    padding-top: 2rem;
    width: 100%;
}

@media (max-width: 576px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    /* Pill buttons */
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: var(--text-light);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--secondary);
    /* Border turns orange on hover */
    color: var(--secondary);
    /* Text turns orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 107, 0, 0.1);
}

.section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Cards styling */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #bbbbbb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.card-icon {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Custom Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: #bbbbbb;
    background: var(--bg-white);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-card {
    background: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    font-size: 1.5rem;
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--text-muted);
}

/* Footer styling */
footer {
    background: #090e1a;
    color: #94a3b8;
    padding: 90px 0 45px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-badge:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-link {
    margin-bottom: 0.9rem;
    transition: transform 0.2s ease;
}

.footer-link:hover {
    transform: translateX(6px);
}

.footer-link a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-link a:hover {
    color: var(--secondary);
}

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

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-contact-info li i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.footer-contact-info li a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-contact-info li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
}

.footer-heart i {
    color: #ef4444;
    margin: 0 3px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile responsive menu hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.7rem;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.mobile-drawer-actions,
.mobile-services-menu {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-top: 111px;
    }

    .navbar-row-2 {
        height: 65px;
    }

    .navbar-row-3 {
        display: none !important;
        /* Hide subnav filter pills row on mobile/tablet */
    }

    .search-form {
        display: none;
    }

    .header-actions {
        display: none !important;
        /* Hide actions from main header to avoid overlap */
    }

    .mobile-drawer-actions {
        display: block !important;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-links {
        position: fixed;
        top: 101px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 101px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        /* Left-align items */
        padding: 2.5rem 1.75rem !important;
        overflow-y: auto;
        box-sizing: border-box;
        gap: 1.25rem;
        /* Tighter gap for better vertical layout */
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        margin: 0;
    }

    .header-container.scrolled .menu-links {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .menu-links li {
        width: 100%;
        list-style: none;
    }

    .menu-links .menu-link {
        font-size: 1.35rem;
        font-weight: 800;
        color: #0f172a;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-family: var(--font-heading);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .menu-links .menu-link:hover,
    .menu-links .menu-link.active {
        color: var(--primary);
        padding-left: 6px;
    }

    .menu-link-idx {
        display: inline-block;
        font-family: monospace;
        font-size: 0.85rem;
        color: var(--secondary);
        /* Theme Orange color for number index */
        margin-right: 0.6rem;
        font-weight: 700;
    }

    /* Premium card for mobile actions inside drawer */
    .mobile-drawer-card {
        background: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: 18px;
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        margin-top: 1rem;
        text-align: left;
    }

    .mobile-drawer-card h5 {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 0.35rem 0;
    }

    .mobile-drawer-card p {
        font-size: 0.8rem;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0 0 1.25rem 0;
    }

    .mobile-drawer-btns {
        display: flex;
        gap: 0.75rem;
        width: 100%;
    }

    .mobile-drawer-btns .action-btn-fill,
    .mobile-drawer-btns .action-btn-outline {
        flex: 1;
        text-align: center;
        padding: 0.75rem 1rem !important;
        font-size: 0.84rem !important;
        font-weight: 700;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
        box-sizing: border-box;
    }

    .mobile-services-menu {
        display: block !important;
        margin-bottom: 0.5rem;
    }

    .drawer-service-btn:hover {
        background: rgba(37, 99, 235, 0.05) !important;
        color: var(--primary) !important;
        border-color: rgba(37, 99, 235, 0.1) !important;
    }

    .menu-links.active {
        left: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 8fr 2fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.welcome-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.welcome-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Beautiful 2x2 Feature Cards Grid */
.welcome-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (max-width: 576px) {
    .welcome-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.welcome-feat-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.welcome-feat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.feat-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-icon-blue {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.bg-icon-orange {
    background: rgba(255, 107, 0, 0.08);
    color: var(--secondary);
}

.bg-icon-green {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.bg-icon-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.feat-card-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.feat-card-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Action CTA Buttons */
.welcome-action-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    align-items: center;
}

@media (max-width: 576px) {
    .welcome-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.btn-gradient-blue {
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.btn-outline-play {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-outline-play:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    color: #1e293b;
}

.play-icon-symbol {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Trust Badge Row */
.welcome-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid #f1f5f9;
}

.trust-badge-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-icon-check {
    color: #10b981;
    font-weight: bold;
}

.badge-icon-star {
    color: #eab308;
}

.badge-icon-excellence {
    color: var(--secondary);
}

/* Text Underline Highlight */
.highlight-blue-underline {
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .highlight-blue-underline {
        white-space: normal;
    }
}

.highlight-blue-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 2px;
    z-index: -1;
}

/* Floating Terminal Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: floating-anim 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.badge-code {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    left: -24px;
    top: 55%;
    transform: translateY(-50%);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    font-family: monospace;
}

.badge-bolt {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    right: 25px;
    top: -22px;
    color: var(--secondary);
    font-size: 1.25rem;
    animation-delay: -2s;
}

.badge-graph {
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
    right: -24px;
    bottom: 45px;
    animation-delay: -4s;
}

.mini-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 26px;
}

.mini-bar {
    width: 6px;
    background: #e2e8f0;
    border-radius: 2px;
}

.mini-bar.h-40 {
    height: 45%;
    background: #38bdf8;
}

.mini-bar.h-60 {
    height: 65%;
    background: #0284c7;
}

.mini-bar.h-80 {
    height: 95%;
    background: #0369a1;
}

@keyframes floating-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* System Monitor Dashboard Styles */
.system-monitor-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

/* Beautiful soft glow behind the terminal card */
.system-monitor-container::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(219, 39, 119, 0.12) 50%, transparent 80%);
    filter: blur(45px);
    z-index: 1;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        transform: scale(0.9) translate(-5%, -5%);
    }

    100% {
        transform: scale(1.1) translate(5%, 5%);
    }
}

.monitor-card {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #0b0f19;
    /* Deeper slate black for premium contrast */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 576px) {
    .monitor-card {
        width: 420px;
    }
}

.monitor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Header */
.monitor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.win-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.win-dot.red {
    background-color: #ff5f56;
}

.win-dot.yellow {
    background-color: #ffbd2e;
}

.win-dot.green {
    background-color: #27c93f;
}

.monitor-tab {
    font-family: monospace;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
}

.pulse-indicator {
    width: 7px;
    height: 7px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: indicator-pulse 1.6s infinite;
}

@keyframes indicator-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

/* Body */
.monitor-body {
    padding: 1.6rem;
}

/* Metrics Row */
.monitor-metrics-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.performance-ring-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 9;
}

.ring-bar {
    fill: none;
    stroke: var(--primary);
    /* Blue */
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 3.14;
    /* 99% progress */
    filter: drop-shadow(0 0 4px rgba(37, 99, 235, 0.5));
    animation: fill-ring 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fill-ring {
    from {
        stroke-dashoffset: 314;
    }

    to {
        stroke-dashoffset: 3.14;
    }
}

.ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.ring-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.ring-lbl {
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 3px;
}

.sys-info-grid {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.info-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.info-value {
    font-size: 0.85rem;
    font-weight: 700;
}

.info-value.text-green {
    color: #34d399;
}

.info-value.text-blue {
    color: #38bdf8;
}

.monitor-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1.4rem 0;
}

/* Console Logs */
.terminal-console {
    font-family: monospace;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.console-line {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    line-height: 1.4;
}

.console-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 6px;
    min-width: 65px;
    text-align: center;
}

.tag-success {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
}

.tag-info {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
}

.tag-warn {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

.console-text {
    color: #cbd5e1;
}

.console-prompt {
    color: #38bdf8;
    font-weight: 700;
}

.console-input-text {
    color: #ffffff;
}

.cursor-blink {
    color: #38bdf8;
    font-weight: 700;
    animation: cursor-blink 1.2s infinite;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Bottom Spanning Stats Bar */
.welcome-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1.8rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

@media (max-width: 991px) {
    .welcome-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .welcome-stats-bar {
        grid-template-columns: 1fr;
    }
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-bar-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-bar-icon-wrapper.icon-blue {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.stat-bar-icon-wrapper.icon-green {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.stat-bar-icon-wrapper.icon-orange {
    background: rgba(255, 107, 0, 0.08);
    color: var(--secondary);
}

.stat-bar-icon-wrapper.icon-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.stat-bar-content {
    display: flex;
    flex-direction: column;
}

.stat-bar-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-bar-desc {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Welcome Live Services Console (Glassmorphism UI) */
.live-console-container {
    position: relative;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing background blobs */
.glow-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.blob-blue {
    background: #164ce2;
    top: 5%;
    left: 10%;
    animation: float-blob-1 12s ease-in-out infinite alternate;
}

.blob-orange {
    background: #ff6418;
    bottom: 5%;
    right: 10%;
    animation: float-blob-2 12s ease-in-out infinite alternate-reverse;
}

@keyframes float-blob-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.2);
    }
}

@keyframes float-blob-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -40px) scale(1.2);
    }
}

/* Console Card (Glassmorphism design) */
.console-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    background: rgba(11, 15, 25, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(22, 76, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

/* .console-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(22, 76, 226, 0.2),
                0 0 40px rgba(255, 100, 24, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
} */

/* Header styling */
.console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.console-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 600;
}

.engine-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #34d399;
}

.engine-status .pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: indicator-pulse 1.6s infinite;
}

.status-lbl {
    font-size: 0.72rem;
    color: #94a3b8;
}

.live-counter {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff6418;
    background: rgba(255, 100, 24, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 100, 24, 0.15);
}

/* Services Scrolling Container */
.console-scroll-container {
    height: 350px;
    /* 3 cards visible: 76px * 3 + 12px * 2 = 252px + 12px padding = 264px */
    overflow: hidden;
    position: relative;
    padding: 12px;
}

/* Mask overlay at top and bottom of scroll area for depth */
.console-scroll-container::before,
.console-scroll-container::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 3;
    pointer-events: none;
}

.console-scroll-container::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.8), transparent);
}

.console-scroll-container::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.8), transparent);
}

.console-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scroll-services 25s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

/* Service Cards Styling */
.service-console-card {
    height: 76px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-console-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.service-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.15));
}

.service-details h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.15rem 0;
}

.service-details p {
    font-size: 0.7rem;
    color: #94a3b8;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.service-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

/* Badges */
.status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.active-badge,
.running-badge,
.online-badge,
.live-badge,
.healthy-badge,
.protected-badge {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.completed-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.optimizing-badge,
.developing-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.15);
}

/* Mini Progress Bar */
.progress-bar-mini {
    width: 48px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #164ce2, #ff6418);
    border-radius: 99px;
}

.fill-90 {
    width: 90%;
}

.fill-80 {
    width: 80%;
}

.fill-95 {
    width: 95%;
}

.fill-85 {
    width: 85%;
}

.fill-100 {
    width: 100%;
}

.fill-75 {
    width: 75%;
}

.fill-70 {
    width: 70%;
}

.fill-99 {
    width: 99%;
}

.fill-65 {
    width: 65%;
}

/* Live Terminal at the bottom */
.console-terminal {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1.4rem;
    font-family: monospace;
}

.terminal-header {
    margin-bottom: 0.4rem;
}

.terminal-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
}

.terminal-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.72rem;
    color: #cbd5e1;
}

.terminal-line {
    line-height: 1.4;
}

.terminal-line .prompt {
    color: #ff6418;
    font-weight: 700;
    margin-right: 4px;
}

.terminal-line.indent {
    padding-left: 0.8rem;
}

.green-text {
    color: #34d399;
}

.yellow-text {
    color: #fbbf24;
}

/* Service Scrolling Infinite Loop Keyframes (10 steps) */
@keyframes scroll-services {

    /* Step 0: translate(0) for 2s */
    0%,
    8% {
        transform: translateY(0);
        filter: blur(0);
    }

    /* Transition to Step 1 */
    9.5%,
    10% {
        transform: translateY(-88px);
    }

    18% {
        transform: translateY(-88px);
    }

    /* Transition to Step 2 */
    19.5%,
    20% {
        transform: translateY(-176px);
    }

    28% {
        transform: translateY(-176px);
    }

    /* Transition to Step 3 */
    29.5%,
    30% {
        transform: translateY(-264px);
    }

    38% {
        transform: translateY(-264px);
    }

    /* Transition to Step 4 */
    39.5%,
    40% {
        transform: translateY(-352px);
    }

    48% {
        transform: translateY(-352px);
    }

    /* Transition to Step 5 */
    49.5%,
    50% {
        transform: translateY(-440px);
    }

    58% {
        transform: translateY(-440px);
    }

    /* Transition to Step 6 */
    59.5%,
    60% {
        transform: translateY(-528px);
    }

    68% {
        transform: translateY(-528px);
    }

    /* Transition to Step 7 */
    69.5%,
    70% {
        transform: translateY(-616px);
    }

    78% {
        transform: translateY(-616px);
    }

    /* Transition to Step 8 */
    79.5%,
    80% {
        transform: translateY(-704px);
    }

    88% {
        transform: translateY(-704px);
    }

    /* Transition to Step 9 */
    89.5%,
    90% {
        transform: translateY(-792px);
    }

    98% {
        transform: translateY(-792px);
    }

    /* Loop reset at 100% to 0 */
    99.5%,
    100% {
        transform: translateY(-880px);
    }
}

/* Rotated Welcome Section Logo Styles */
.welcome-logo-container {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.welcome-logo-rotated {
    width: 500px;
    height: auto;
    display: block;
    position: absolute;
    transform: rotate(90deg);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.welcome-logo-rotated:hover {
    filter: drop-shadow(0 20px 45px rgba(22, 76, 226, 0.2));
    transform: rotate(90deg) scale(1.03);
}

@media (max-width: 991px) {
    .welcome-logo-container {
        display: none !important;
        /* Hide rotated logo container on mobile/tablet */
    }
}

/* Premium Bento Grid Services Layout */
.premium-services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.bento-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.bento-wide {
    grid-column: span 2;
}

/* Card inner content layouts */
.bento-content-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

.bento-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

/* Icons styling */
.bento-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon-box {
    transform: scale(1.1) rotate(3deg);
}

/* Text & Headings */
.bento-text-box {
    z-index: 2;
    flex-grow: 1;
}

.bento-text-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.4rem 0;
}

.bento-text-box p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 0.8rem 0;
}

/* Links */
.bento-link {
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.bento-card:hover .bento-link {
    transform: translateX(4px);
}

/* Color schemes and glow paths */
.bento-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.02;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.bento-card:hover .bento-glow {
    opacity: 0.12;
    transform: scale(1.3);
}

/* Color Accent styles */
.card-blue .bento-glow {
    background: #164ce2;
}

.card-orange .bento-glow {
    background: #ff6418;
}

.card-green .bento-glow {
    background: #10b981;
}

.card-purple .bento-glow {
    background: #8b5cf6;
}

.card-pink .bento-glow {
    background: #ec4899;
}

.card-blue2 .bento-glow {
    background: #0ea5e9;
}

/* Hover states */
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.card-blue:hover {
    border-color: rgba(22, 76, 226, 0.25);
}

.card-orange:hover {
    border-color: rgba(255, 100, 24, 0.25);
}

.card-green:hover {
    border-color: rgba(16, 185, 129, 0.25);
}

.card-purple:hover {
    border-color: rgba(139, 92, 246, 0.25);
}

.card-pink:hover {
    border-color: rgba(236, 72, 153, 0.25);
}

.card-blue2:hover {
    border-color: rgba(14, 165, 233, 0.25);
}

.link-blue {
    color: #164ce2;
}

.link-orange {
    color: #ff6418;
}

.link-green {
    color: #10b981;
}

.link-purple {
    color: #8b5cf6;
}

.link-pink {
    color: #ec4899;
}

.link-blue2 {
    color: #0ea5e9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .premium-services-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .premium-services-bento {
        grid-template-columns: 1fr;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .bento-content-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* About JSNJ Infomedia Sticky scroll panels */
.about-jsnj-scroll-wrapper {
    height: 300vh;
    position: relative;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-jsnj-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background Glowing Blobs inside About Section */
.about-glow-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-glow-blob.blob-blue {
    background: #164ce2;
    top: 10%;
    left: 5%;
}

.about-glow-blob.blob-orange {
    background: #ff6418;
    bottom: 10%;
    right: 5%;
}

/* Watermarks */
.about-watermark {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 16vw;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.025);
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    z-index: 1;
    transition: color 0.8s ease, transform 0.8s ease;
}

.watermark-left {
    left: 2%;
    top: 10%;
    transform: rotate(-5deg);
}

.watermark-right {
    right: 2%;
    bottom: 10%;
    transform: rotate(5deg);
    color: rgba(255, 107, 0, 0.02);
}

.about-panels-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-panel-inner {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-panel.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.about-panel.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.about-panel.next {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Staggered entry transitions when active */
.about-panel .about-jsnj-title,
.about-panel .about-jsnj-desc,
.about-panel .about-jsnj-actions,
.about-panel .about-cards-grid,
.about-panel .about-dashboard-layout,
.about-panel .about-pillars-grid,
.about-panel .welcome-badge {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-panel.active .welcome-badge {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.about-panel.active .about-jsnj-title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.about-panel.active .about-jsnj-desc {
    transform: translateY(0);
    opacity: 1;
}

.about-panel.active .about-jsnj-desc:nth-of-type(1) {
    transition-delay: 0.3s;
}

.about-panel.active .about-jsnj-desc:nth-of-type(2) {
    transition-delay: 0.4s;
}

.about-panel.active .about-pillars-grid {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.about-panel.active .about-jsnj-actions,
.about-panel.active .about-cards-grid,
.about-panel.active .about-dashboard-layout {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.6s;
}

/* Story Styling */
.about-jsnj-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.about-jsnj-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 850px;
    transition: color 0.8s ease;
}

.about-jsnj-actions {
    margin-top: 1.5rem;
}

/* Pillars grid in Panel 1 */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 2rem 0;
    text-align: left;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.25rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pillar-item:hover {
    border-color: rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.pillar-icon {
    font-size: 1.6rem;
    background: var(--primary-glow);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-item:nth-child(2) .pillar-icon {
    background: var(--secondary-glow);
    color: var(--secondary);
}

.pillar-item:nth-child(3) .pillar-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.pillar-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.pillar-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Colors & Highlights */
.highlight-blue {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 2px;
}

.highlight-blue-text {
    color: var(--primary);
    font-weight: 600;
}

.highlight-orange-text {
    color: var(--secondary);
    font-weight: 600;
}

/* Dynamic active state themes */

/* Slide 1 - White theme */
.about-jsnj-scroll-wrapper[data-active-slide="0"] {
    background-color: #ffffff;
}

.about-jsnj-scroll-wrapper[data-active-slide="0"] .about-jsnj-sticky {
    background-color: #ffffff;
}

/* Slide 2 - Dark Space theme */
.about-jsnj-scroll-wrapper[data-active-slide="1"] {
    background-color: #0b0f19;
}

.about-jsnj-scroll-wrapper[data-active-slide="1"] .about-jsnj-sticky {
    background-color: #0b0f19;
}

.about-jsnj-scroll-wrapper[data-active-slide="1"] .about-glow-blob {
    opacity: 0.15;
}

.about-jsnj-scroll-wrapper[data-active-slide="1"] .about-watermark {
    color: rgba(255, 255, 255, 0.02);
}

.about-jsnj-scroll-wrapper[data-active-slide="1"] .about-progress-indicator .dot {
    background: rgba(255, 255, 255, 0.15);
}

.about-jsnj-scroll-wrapper[data-active-slide="1"] .about-progress-indicator .dot.active {
    background: var(--primary);
}

/* Dark mode badges & text */
.badge-dark {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #e2e8f0 !important;
}

.title-dark {
    color: #ffffff !important;
}

/* Slide 3 - Warm light gray theme */
.about-jsnj-scroll-wrapper[data-active-slide="2"] {
    background-color: #f8fafc;
}

.about-jsnj-scroll-wrapper[data-active-slide="2"] .about-jsnj-sticky {
    background-color: #f8fafc;
}

.about-jsnj-scroll-wrapper[data-active-slide="2"] .about-watermark {
    color: rgba(37, 99, 235, 0.015);
}

/* Panel 2 Cards Grid (Space Mode styling on hover & default) */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 2.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.about-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.about-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-card-bullets li {
    font-size: 0.82rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card-bullets li::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.75rem;
}

.about-card.card-orange .about-card-bullets li::before {
    color: var(--secondary);
}

.about-card.card-green .about-card-bullets li::before {
    color: var(--accent);
}

.about-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card.card-blue:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.about-card.card-orange:hover {
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.about-card.card-green:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.about-card-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 1.2rem;
    opacity: 0.25;
    font-family: var(--font-heading);
    transition: opacity 0.3s ease;
}

.about-card:hover .about-card-num {
    opacity: 0.6;
}

.about-card.card-blue .about-card-num {
    color: var(--primary);
}

.about-card.card-orange .about-card-num {
    color: var(--secondary);
}

.about-card.card-green .about-card-num {
    color: var(--accent);
}

/* Panel 3 Dashboard Layout styling */
.about-dashboard-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    width: 100%;
    margin-top: 2.5rem;
    align-items: center;
}

.dashboard-metrics-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03), inset 0 1px 0 #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-metrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.dashboard-metrics-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.35rem 0;
    font-family: var(--font-heading);
}

.dashboard-metrics-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
}

.metric-progress-item {
    margin-bottom: 1.75rem;
}

.metric-progress-item:last-child {
    margin-bottom: 0;
}

.metric-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    margin-bottom: 0.6rem;
}

.metric-progress-label span {
    color: #334155;
    font-weight: 700;
}

.metric-progress-label strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
}

.metric-progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.fill-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Panel 3 Stats Box */
.about-stats-grid-wrapper {
    width: 100%;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.about-stat-box {
    background: #ffffff;
    padding: 2.2rem 1.8rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
}

.about-stat-box.border-blue {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(37, 99, 235, 0.08);
}

.about-stat-box.border-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

.about-stat-box.border-orange {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
    border-color: rgba(255, 107, 0, 0.08);
}

.about-stat-box.border-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--secondary);
    border-radius: 0 0 3px 3px;
}

.about-stat-box.border-green {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-color: rgba(34, 197, 94, 0.08);
}

.about-stat-box.border-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
}

.about-stat-box.border-purple {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    border-color: rgba(139, 92, 246, 0.08);
}

.about-stat-box.border-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: #8b5cf6;
    border-radius: 0 0 3px 3px;
}

.about-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
}

.about-stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #0f172a;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.about-stat-box .stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-box .stat-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Progress Indicator Dot styling */
.about-progress-indicator {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.about-progress-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.about-progress-indicator .dot.active {
    width: 28px;
    border-radius: 99px;
    background: var(--primary);
}

/* Panel 3 SaaS Dashboard Sub Elements */
.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.live-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 99px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.live-pulse-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: indicator-pulse 1.6s infinite;
}

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

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

.text-green {
    color: var(--accent);
}

.bg-blue-grad {
    background: linear-gradient(90deg, var(--primary), #3b82f6);
}

.bg-orange-grad {
    background: linear-gradient(90deg, var(--secondary), #f97316);
}

.bg-green-grad {
    background: linear-gradient(90deg, var(--accent), #34d399);
}

.dashboard-card-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.footer-stat {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Stat card 1: Timeline nodes */
.stat-timeline {
    display: flex;
    align-items: center;
    margin: 0.75rem 0;
    width: 100%;
}

.timeline-dot {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    white-space: nowrap;
}

.timeline-line {
    flex-grow: 1;
    height: 1px;
    background: var(--border-color);
    margin: 0 0.25rem;
}

/* Stat card 2: Category Badges */
.stat-categories-pills {
    display: flex;
    gap: 0.4rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.pill-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--secondary-glow);
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 107, 0, 0.12);
}

/* Stat card 3: Stacked Avatars */
.client-avatar-group {
    display: flex;
    align-items: center;
    margin: 0.75rem 0;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-right: -8px;
}

.avatar-circle-more {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Stat card 4: Rating stars */
.stat-stars-breakdown {
    display: flex;
    gap: 0.2rem;
    margin: 0.75rem 0;
    color: #eab308;
    font-size: 1.1rem;
}

.star-filled {
    animation: pulse 2s infinite ease-in-out alternate;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .about-jsnj-scroll-wrapper {
        height: auto;
    }

    .about-jsnj-sticky {
        position: relative;
        height: auto;
        padding: 5rem 0;
    }

    .about-panels-container {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .about-panel {
        position: relative;
        height: auto;
        transform: none !important;
        opacity: 1 !important;
        padding: 0 1.5rem;
    }

    /* Reset panel styles for dark mode panel when stacked on tablet/mobile */
    #aboutPanel1 {
        background: #0b0f19;
        padding: 4rem 2rem;
        border-radius: 24px;
        box-sizing: border-box;
    }

    .about-panel .about-jsnj-title,
    .about-panel .about-jsnj-desc,
    .about-panel .about-jsnj-actions,
    .about-panel .about-cards-grid,
    .about-panel .about-dashboard-layout,
    .about-panel .about-pillars-grid,
    .about-panel .welcome-badge {
        transform: none !important;
        opacity: 1 !important;
    }

    .about-progress-indicator {
        display: none;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-jsnj-title {
        font-size: 2.2rem;
    }

    .about-watermark {
        font-size: 24vw;
        display: none;
    }
}

@media (max-width: 576px) {
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .about-stat-box {
        padding: 1.25rem 1rem !important;
        border-radius: 18px !important;
    }

    .about-stat-box .stat-number {
        font-size: 2.1rem !important;
    }

    .about-stat-box .stat-label {
        font-size: 0.72rem !important;
        margin-bottom: 0.35rem !important;
    }

    .about-stat-box .stat-desc {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }

    #aboutPanel1 {
        width: 100%;
        left: 0;
        transform: none !important;
        border-radius: 20px;
    }
}

/* Tech Stack Grid Styles */
.tech-filter-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tech-filter-pill {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-filter-pill.active,
.tech-filter-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.tech-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.tech-card-inner {
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tech-logo {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-logo {
    transform: scale(1.1) rotate(5deg);
}

.tech-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.tech-type-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Card Glow Hover Effects */
.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover::before {
    opacity: 0.04;
}

.tech-card:hover {
    transform: translateY(-6px);
}

.card-glow-blue:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.card-glow-blue:hover::before {
    background: radial-gradient(circle, #2563eb 0%, transparent 60%);
}

.card-glow-dark:hover {
    border-color: rgba(15, 23, 42, 0.4);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.card-glow-dark:hover::before {
    background: radial-gradient(circle, #0f172a 0%, transparent 60%);
}

.card-glow-green:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12);
}

.card-glow-green:hover::before {
    background: radial-gradient(circle, #10b981 0%, transparent 60%);
}

.card-glow-green2:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.12);
}

.card-glow-green2:hover::before {
    background: radial-gradient(circle, #22c55e 0%, transparent 60%);
}

.card-glow-purple:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
}

.card-glow-purple:hover::before {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 60%);
}

.card-glow-green3:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12);
}

.card-glow-green3:hover::before {
    background: radial-gradient(circle, #10b981 0%, transparent 60%);
}

.card-glow-orange:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
}

.card-glow-orange:hover::before {
    background: radial-gradient(circle, #f97316 0%, transparent 60%);
}

.card-glow-pink:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12);
}

.card-glow-pink:hover::before {
    background: radial-gradient(circle, #ec4899 0%, transparent 60%);
}

.card-glow-yellow:hover {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.12);
}

.card-glow-yellow:hover::before {
    background: radial-gradient(circle, #eab308 0%, transparent 60%);
}

.card-glow-blue2:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.12);
}

.card-glow-blue2:hover::before {
    background: radial-gradient(circle, #0ea5e9 0%, transparent 60%);
}


@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .tech-filter-row {
        margin-bottom: 2rem !important;
        gap: 0.6rem !important;
    }

    .tech-card-inner {
        padding: 1.6rem 1.25rem !important;
    }

    .tech-logo {
        margin-bottom: 0.8rem !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tech-filter-row {
        margin-bottom: 1.5rem !important;
        gap: 0.5rem !important;
    }

    .tech-filter-pill {
        padding: 0.45rem 1rem !important;
        font-size: 0.82rem !important;
    }

    .tech-card-inner {
        padding: 1.25rem 1rem !important;
    }
}

/* Bento Asymmetric Blog Layout */
.blogs-bento-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.blog-featured-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

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

.featured-img-wrap {
    height: 60%;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-featured-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-right-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-small-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    height: calc(50% - 0.75rem);
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.blog-small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.25);
}

.blog-small-card:hover .small-img-wrap img {
    transform: scale(1.06);
}

.small-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #e2e8f0;
}

.small-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-small-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-pill-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 99px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.badge-cat-blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.badge-cat-orange {
    background: rgba(255, 107, 0, 0.1);
    color: var(--secondary);
}

.badge-cat-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

@media (max-width: 991px) {
    .blogs-bento-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-featured-card {
        height: auto;
        min-height: 480px;
    }

    .featured-img-wrap {
        height: 250px;
    }

    .blog-small-card {
        height: auto;
    }
}

@media (max-width: 576px) {
    .blog-small-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .small-img-wrap {
        width: 100%;
        height: 180px;
    }
}

/* Futuristic Projects Showcase (Dark Mode Gallery) */
.projects-dark-section {
    background: #0b0f19;
    color: #ffffff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.projects-dark-section .welcome-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.projects-dark-section .section-title {
    color: #ffffff;
}

.projects-dark-section .section-subtitle {
    color: #94a3b8;
}

.projects-dark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-glow-card {
    position: relative;
    border-radius: 20px;
    height: 240px;
    overflow: hidden;
    background: #131a26;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.project-glow-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.project-glow-card:hover .project-card-image img {
    transform: scale(1.08);
    opacity: 0.25;
}

.project-glow-card:hover .project-overlay-details {
    opacity: 1;
    transform: translateY(0);
}

.project-card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.project-overlay-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    z-index: 2;
    background: linear-gradient(0deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.6) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 85%;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.project-overlay-details h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.project-overlay-details p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.project-tag-badge {
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 99px;
    width: fit-content;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.project-action-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-project-action {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-project-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-project-live {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff !important;
}

.btn-project-live:hover {
    background: #e05e00;
    border-color: #e05e00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
    .project-overlay-details {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.4) 60%, rgba(11, 15, 25, 0) 100%);
        height: 100%;
        justify-content: flex-end;
    }

    .project-glow-card .project-card-image img {
        opacity: 0.65;
    }
}

/* Bento Services Layout Styles for index and services pages */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-glow-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-glow-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-glow-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-glow-panel:hover::before {
    opacity: 1;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-12 {
    grid-column: span 12;
}

.service-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-panel-icon {
    font-size: 2.8rem;
    background: #f1f5f9;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-glow-panel:hover .service-panel-icon {
    background: var(--primary-glow);
    transform: rotate(5deg) scale(1.05);
}

.service-panel-title {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.service-panel-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.deliverables-list li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.deliverables-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.1rem;
}

.tech-badges-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
    margin-top: auto;
}

.tech-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.service-glow-panel:hover .tech-badge {
    background: #e2e8f0;
    color: var(--text-main);
}

.service-expertise-bar {
    margin-top: 1.5rem;
}

.expertise-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expertise-progress {
    height: 6px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.expertise-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 99px;
}

@media (max-width: 991px) {

    .col-span-8,
    .col-span-4 {
        grid-column: span 12;
    }
}

/* Testimonials Section Styling */
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.rating-stars {
    font-size: 0.82rem;
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.quote-icon-bg {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.05);
    pointer-events: none;
}

/* Creative Review Spotlight Slider */
.review-spotlight-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.review-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.spotlight-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-glow);
    font-family: Georgia, serif;
    margin-bottom: -1rem;
    display: block;
}

.spotlight-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.spotlight-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.spotlight-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
    margin-bottom: 0.5rem;
}

.spotlight-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.spotlight-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Slider Navigation Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-slider-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.btn-slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 99px;
}

/* Unified Split-Panel Quote Form Styling (Full-Width Edge to Edge) */
.home-quote-section {
    background: #ffffff;
    padding: 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.unified-quote-card {
    display: flex;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.unified-quote-left {
    width: 42%;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    padding: 6rem 4rem 6rem calc((100vw - 1200px) / 2 + 2rem);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.unified-quote-left::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.unified-quote-left h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
}

.unified-quote-left p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.unified-benefits-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0 0;
}

.unified-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.unified-benefits-list li i {
    color: #38bdf8;
    font-size: 1.1rem;
}

.unified-quote-right {
    width: 58%;
    padding: 6rem calc((100vw - 1200px) / 2 + 2rem) 6rem 5rem;
    background: #ffffff;
}

.unified-quote-right h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.unified-quote-right p.form-subtitle {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 2.5rem;
}

/* Service Pills Select */
.service-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.service-pill-btn {
    padding: 0.45rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-pill-btn:hover {
    border-color: rgba(15, 23, 42, 0.2);
    color: #0f172a;
}

.service-pill-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Form inputs layout */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field-group {
    position: relative;
}

.form-field-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-field-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #0f172a;
    transition: all 0.3s ease;
}

.form-field-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
}

.quote-submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    font-weight: 700;
    padding: 1rem 1.5rem;
    font-size: 0.98rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.quote-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1200px) {
    .unified-quote-left {
        padding: 5rem 3rem;
    }

    .unified-quote-right {
        padding: 5rem 3rem;
    }
}

@media (max-width: 991px) {
    .unified-quote-card {
        flex-direction: column;
    }

    .unified-quote-left,
    .unified-quote-right {
        width: 100%;
        padding: 4rem 2rem;
    }
}

@media (max-width: 767px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Scroll Header Toggle Animations */
.ticker-wrap,
.navbar-row-3 {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.header-container.scrolled {
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-container.scrolled .ticker-wrap {
    height: 0 !important;
    min-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    border: none !important;
    pointer-events: none;
}

.header-container.scrolled .navbar-row-3 {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    border: none !important;
    pointer-events: none;
}



/* About Us Page Custom Premium Styling */
.about-hero {
    padding: 160px 0 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-family: var(--font-heading);
}

.about-hero-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 3.5rem;
}

/* Stats Counter grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.about-stat-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.stat-label {
    display: block;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bento values cards grid */
.about-values-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.bento-card {
    background: #f8fafc;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
    border-color: var(--secondary);
}

.bento-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.bento-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Agency dark interactive workflow section */
.about-workflow-section {
    padding: 100px 0;
    background: #090e1a;
    color: #ffffff;
    position: relative;
}

.about-workflow-section .section-title {
    color: #ffffff;
}

.about-workflow-section .section-subtitle {
    color: #94a3b8;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 4.5rem;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.workflow-step:hover .step-num {
    color: var(--secondary);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.workflow-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
}

.workflow-step p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-bento-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Split About Section with Browser Code Mockup */
.home-about-split-section {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.browser-mockup {
    background: #0b0f19;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 40px 80px rgba(9, 14, 26, 0.22);
    overflow: hidden;
    position: relative;
}

.browser-topbar {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: 8px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.browser-code-area {
    padding: 2.5rem;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #94a3b8;
}

.code-keyword {
    color: #f43f5e;
}

.code-string {
    color: #10b981;
}

.code-number {
    color: #f59e0b;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-ident {
    color: #38bdf8;
}

.about-split-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0 0;
}

.about-split-list-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.item-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 107, 0, 0.07);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.item-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.item-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* Responsive Fixes & Dynamic Alignments for About Page */
.about-hero-title {
    font-size: 3.2rem;
}

.about-panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
}

@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-panel-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .welcome-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.85rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 0 1rem !important;
        line-height: 1.25 !important;
    }

    .hero-br {
        display: block !important;
    }

    .hero-badge {
        margin-left: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-action-buttons {
        gap: 0.8rem;
    }

    .btn-gradient-blue,
    .btn-outline-play {
        padding: 0.8rem 1.2rem;
        font-size: 0.88rem;
    }

    /* Make Row 3 navigation pills scroll nicely on small devices */
    .navbar-row-3 .nav-container {
        border-radius: 12px;
        height: auto;
        padding: 0.5rem;
    }

    .filters-wrapper {
        width: 100%;
        padding: 2px 0;
    }

    /* 2x2 grid for stats cards on mobile */
    .welcome-stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem 1rem !important;
        padding: 1.25rem 1rem !important;
    }

    .stat-bar-item {
        gap: 0.6rem !important;
    }

    .stat-bar-icon-wrapper {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
    }

    .stat-bar-number {
        font-size: 1.15rem !important;
    }

    .stat-bar-desc {
        font-size: 0.72rem !important;
    }

    /* Clean spacing for trust badges on mobile */
    .welcome-trust-row {
        gap: 0.75rem 1rem !important;
        justify-content: flex-start !important;
        padding-top: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    .trust-badge-item {
        font-size: 0.78rem !important;
    }
}

/* Optimize paddings on mobile to maximize content width and prevent squishing */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
        /* Reduce padding from 2rem to 1rem */
    }

    .hero-subtitle,
    .section-subtitle {
        padding: 0 1rem !important;
        font-size: 0.92rem !important;
    }

    .service-glow-panel {
        padding: 1.5rem !important;
        /* Reduce card padding from 2.5rem to 1.5rem */
    }

    .bento-card {
        padding: 2rem 1.5rem !important;
    }

    .workflow-step {
        padding: 2rem 1.5rem !important;
    }

    .services-bento-grid {
        gap: 1.25rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    /* Left-align hero elements on mobile */
    .hero-grid {
        justify-items: flex-start !important;
        text-align: left !important;
    }

    .hero-left-content {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-left-content .hero-subtitle {
        text-align: left !important;
    }

    .hero-buttons {
        justify-content: flex-start !important;
        width: 100%;
    }

    .hero-chips {
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem !important;
    }

    .service-glow-panel {
        padding: 1.25rem 1rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.88rem !important;
    }
}

/* Reusable Sidebar Component Styling */
.service-sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.sidebar-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.02);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-link .arrow {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.1);
}

.sidebar-link:hover .arrow {
    transform: translateX(4px);
}

.sidebar-link.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.sidebar-link.active .arrow {
    color: #ffffff;
}

/* Sidebar Support spotlight card */
.sidebar-support-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 1.75rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.sidebar-support-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.support-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.sidebar-support-card h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.sidebar-support-card p {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--secondary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.support-btn:hover {
    background: #ff5500;
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 9999;
}

.whatsapp-btn,
.call-btn,
.quote-floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary);
    text-decoration: none;
}

.quote-floating-btn {
    background: var(--secondary);
    outline: none;
}

.whatsapp-btn:hover,
.call-btn:hover,
.quote-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn svg,
.call-btn svg,
.quote-floating-btn i {
    width: 26px;
    height: 26px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom WhatsApp Modal transitions */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 330px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Service Sidebar and Timeline responsive overrides */
@media (max-width: 991px) {
    .service-sidebar-wrapper {
        display: none !important;
    }
    .process-ribbon-section {
        display: none !important;
    }
    .vertical-timeline-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .vertical-timeline-container > div:first-child {
        position: static !important;
        height: auto !important;
    }
    .capabilities-split-container > div:first-child {
        position: static !important;
        height: auto !important;
    }
    .timeline-track-line {
        left: 23px !important;
    }
    .roadmap-step-circle {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.1rem !important;
    }
}

/* Global Horizontal Process Ribbon and Capabilities responsive overrides */
@media (max-width: 768px) {
    .horizontal-process-ribbon {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .capabilities-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .capability-card {
        padding: 1.5rem !important;
    }
    /* Typography optimizations for mobile screens */
    .detail-hero h1, 
    h1.hero-title {
        font-size: 2rem !important;
    }
    .section h2, 
    .section h3,
    section h2,
    section h3 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
    }
    .subnav-products-wrapper {
        display: none !important;
    }
}

.subnav-prod-link:hover {
    transform: scale(1.18);
}

@media (max-width: 480px) {
    .horizontal-process-ribbon {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .ribbon-card {
        padding: 1.25rem !important;
    }
    .ribbon-node {
        margin-bottom: 0.75rem !important;
    }
}

/* FAQ Accordion 3-Column Multilingual Grid Layout */
.faq-accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .faq-accordion-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-accordion-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}