/* 
 * TEGHRA TECHNOLOGIES - Global Style Sheet
 * Design Style: Minimal, Premium, Luxury, Clean, Modern, Subtly Glassmorphic
 */

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

:root {
    /* Color Palette */
    --primary: #0A4D34;
    --primary-rgb: 10, 77, 52;
    --accent: #F37021;
    --accent-rgb: 243, 112, 33;
    --accent-yellow: #FFCC00;
    --gradient-premium: linear-gradient(135deg, #F37021 0%, #FFCC00 100%);
    --gradient-premium-hover: linear-gradient(135deg, #FFCC00 0%, #F37021 100%);
    --gradient-green: linear-gradient(135deg, #0A4D34 0%, #15803D 100%);

    /* Theme defaults: Light Mode */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --border-glass: rgba(226, 232, 240, 0.5);
    
    --card-bg: #FFFFFF;
    --card-shadow: 0 12px 40px -12px rgba(10, 77, 52, 0.08);
    --card-shadow-hover: 0 20px 48px -10px rgba(10, 77, 52, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-blur: 12px;

    /* Spacing & Sizing */
    --radius-standard: 16px;
    --radius-pill: 100px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Overrides */
html[data-theme='dark'] {
    --bg-primary: #0F172A;
    --bg-secondary: #0A0F1D;
    --bg-tertiary: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --border: #1E293B;
    --border-glass: rgba(255, 255, 255, 0.06);

    --card-bg: #1E293B;
    --card-shadow: 0 12px 40px -15px rgba(0, 0, 0, 0.5);
    --card-shadow-hover: 0 20px 48px -8px rgba(0, 0, 0, 0.7);

    --glass-bg: rgba(15, 23, 42, 0.75);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.section-padding {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.container-custom {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gradient text utility */
.text-gradient-premium {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Transparent Header & Top Bar styling */
.top-contact-bar {
    background: #063524; /* Darker green matching mockup reference */
    color: #FFFFFF;
    font-size: 13.5px;
    height: 46px;
    display: flex;
    align-items: center;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.top-contact-bar.scrolled-past {
    transform: translateY(-46px);
}

.topbar-phone, .topbar-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}
.topbar-phone:hover, .topbar-email:hover {
    color: var(--accent) !important;
}
.topbar-phone i, .topbar-email i {
    color: var(--accent); /* Brand Orange */
    font-size: 14px;
}

/* Megaphone Capsule */
.topbar-announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 3px 16px 3px 4px;
    height: 32px;
}
.announcement-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    background: var(--accent); /* Brand Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 11px;
}
.announcement-pulse-dot {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 7px;
    height: 7px;
    background-color: #10B981; /* Glowing emerald green */
    border-radius: 50%;
    border: 1px solid #063524;
}
.announcement-pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #10B981;
    animation: topbarDotPulse 1.5s infinite ease-in-out;
}
@keyframes topbarDotPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.announcement-text {
    font-size: 12.5px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.1px;
}
.announcement-text .star-accent {
    color: var(--accent);
    margin: 0 2px;
}

/* Social icons with semi-transparents */
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.topbar-social-link:hover {
    background: var(--accent);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.topbar-separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 4px;
}

/* Support Dropdown */
.topbar-support-dropdown {
    position: relative;
    display: inline-block;
}
.topbar-support-btn {
    background: linear-gradient(135deg, #FFDE17 0%, #FFB800 100%); /* Gold-yellow premium gradient */
    color: #0A4D34 !important; /* Bold forest green text */
    border: 1px solid rgba(255, 255, 255, 0.25);
    outline: none;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 10px rgba(255, 222, 23, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.topbar-support-btn i {
    font-size: 12px;
    animation: supportIconPulse 1.8s infinite ease-in-out;
}
@keyframes supportIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
.topbar-support-btn:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FFDE17 100%);
    color: #0A4D34 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 222, 23, 0.5);
}

.topbar-support-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    width: 230px;
    padding: 8px;
    display: none;
    z-index: 1002;
    border: 1px solid #E2E8F0;
    animation: topbarFadeIn 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes topbarFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.topbar-support-dropdown:hover .topbar-support-menu {
    display: block;
}
.support-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.support-menu-item:hover {
    background: #F1F5F9;
    color: #0A4D34;
}
.support-menu-item i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(10, 77, 52, 0.06);
    color: #0A4D34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}
.support-menu-item:hover i {
    background: #0A4D34;
    color: #FFFFFF;
}

.main-header {
    position: fixed;
    top: 46px; /* offset by new topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.main-header.header-always-solid {
    background: #FFFFFF !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}
@media (max-width: 991px) {
    .top-contact-bar { display: none; }
    .main-header { top: 0 !important; }
}

.main-header.scrolled-past {
    top: 0;
}

.main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Premium Subpage Hero (Mint Green to Cream/Peach soft linear gradient) */
.subpage-hero {
    background: linear-gradient(135deg, #EDF4F0 0%, #FAF8F6 50%, #F9ECE0 100%) !important;
    padding: 160px 0 100px 0 !important;
    color: var(--text-primary) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.subpage-hero h1 {
    color: var(--primary) !important; /* Bold forest green text */
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}
.subpage-hero p {
    color: var(--text-secondary) !important;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.subpage-hero h5 {
    color: var(--accent) !important; /* Brand Orange */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: var(--transition-smooth);
}
.main-header.scrolled .navbar-container {
    padding: 12px 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 1024px) {
    .nav-menu { display: none; }
}

/* Scroll progress indicator */
.scroll-progress-bar {
    position: absolute;
    top: 0; /* Positioned at the very top edge of the header */
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #F37021, #FFCC00);
    z-index: 1000;
    transition: width 0.05s ease-out;
    pointer-events: none;
}

/* Base style for mobile actions inside menu */
.mobile-menu-actions {
    display: none;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after {
    width: 100%;
}

/* Mega Menu Styles */
.has-megamenu {
    position: static;
}
.megamenu {
    position: absolute;
    top: 100%;
    left: 5%;
    width: 90%;
    background: var(--card-bg);
    border-radius: var(--radius-standard);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-column h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}
.megamenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
}
.megamenu-item:hover {
    background: rgba(var(--accent-rgb), 0.08);
}
.megamenu-item i {
    font-size: 18px;
    color: var(--primary);
}
.megamenu-item div strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}
.megamenu-item div span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Standard Dropdown styles */
.has-dropdown {
    position: relative;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(10, 77, 52, 0.15);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.dropdown-item:hover {
    background: rgba(10, 77, 52, 0.05);
    color: var(--primary);
    padding-left: 26px;
}
.dropdown-item i {
    font-size: 13.5px;
    color: var(--accent);
}

/* Theme Switcher */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}
.theme-toggle-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* Premium Buttons */
.btn-premium {
    background: var(--primary);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
}
.btn-premium-accent {
    background: var(--gradient-premium);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.2);
}
.btn-premium-accent:hover {
    background: var(--gradient-premium-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}
.btn-premium-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: none;
}
.btn-premium-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #FFFFFF;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 220px 0 120px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}
.hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 77, 52, 0.14) 0%, rgba(10, 77, 52, 0.03) 60%, transparent 100%);
    top: -150px;
    right: -100px;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.08) 0%, rgba(243, 112, 33, 0.02) 60%, transparent 100%);
    bottom: -100px;
    left: -100px;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}
.hero-pill-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(243, 112, 33, 0.08); /* Accent transparent orange */
    border: 1px solid rgba(243, 112, 33, 0.15);
    border-radius: 100px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.hero-pill-subtitle .pill-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
    animation: pillPulse 2s infinite alternate;
}
@keyframes pillPulse {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 38px; }
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}
@media (max-width: 991px) {
    .hero-content p { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
    display: flex;
    gap: 16px;
}
@media (max-width: 991px) {
    .hero-ctas { justify-content: center; }
}

/* Floating UI Cards & Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-illustration-img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-illustration-img:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 0 25px 60px rgba(10, 77, 52, 0.12), 0 0 20px rgba(243, 112, 33, 0.05);
}

.floating-ui-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAnim 4s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-ui-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    z-index: 20;
}
.floating-ui-card.c1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}
.floating-ui-card.c2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}
.floating-ui-card.c3 {
    bottom: -5%;
    left: 10%;
    animation-delay: 3s;
}
.floating-ui-card i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.floating-ui-card strong {
    font-size: 14px;
    color: var(--text-primary);
}
.floating-ui-card span {
    font-size: 11px;
    color: var(--text-secondary);
}

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

@media (max-width: 576px) {
    .floating-ui-card {
        display: none !important; /* Hide floating cards on mobile screens to keep layout clean */
    }
}

/* Trusted By Section */
.trusted-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.trusted-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.logo-item {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

/* General Card Design */
.premium-card {
    background: var(--card-bg);
    border-radius: var(--radius-standard);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.card-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.premium-card:hover .card-icon-container {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
}

/* Custom Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 991px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Timeline Components */
.timeline-track {
    position: relative;
    padding: 40px 0;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--border);
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .timeline-track::before { left: 30px; }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    text-align: left;
}
@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 0;
    }
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: 4px solid var(--bg-primary);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(243,112,33,0.4);
    z-index: 10;
}
.timeline-item.left .timeline-dot {
    right: -12px;
}
.timeline-item.right .timeline-dot {
    left: -12px;
}
@media (max-width: 768px) {
    .timeline-dot { left: 18px !important; }
}

.timeline-content {
    background: var(--card-bg);
    border-radius: var(--radius-standard);
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

/* Technologies list */
/* Technologies list & Interactive Matrix */
.tech-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}
.tech-filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tech-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.tech-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(10, 77, 52, 0.2);
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.tech-pill {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}
.tech-pill:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.1);
}
.tech-pill.active {
    border-color: var(--accent);
    background: rgba(243, 112, 33, 0.05);
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.08);
    transform: translateY(-2px);
}

/* Details Box styling */
.tech-details-wrapper {
    max-width: 850px;
    margin: 30px auto 0 auto;
}
.tech-details-box {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-standard);
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    animation: fadeInTech 0.5s ease-out;
}
.tech-details-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.tech-details-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.tech-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 768px) {
    .tech-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.tech-details-col strong {
    display: block;
    font-size: 14.5px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tech-details-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
@keyframes fadeInTech {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Responsive Vanilla JS Slider Styles */
.custom-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}
.custom-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
}
@media (min-width: 768px) {
    .custom-slider-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
}
@media (min-width: 1024px) {
    .custom-slider-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}
.slider-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* Pricing cards */
.pricing-card {
    border: 1px solid var(--border);
}
.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}
.pricing-card.featured .pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-premium);
    color: #FFFFFF;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-standard);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-header {
    padding: 24px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.faq-item.active .faq-content {
    max-height: 500px;
    padding-bottom: 24px;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}
.faq-icon {
    font-size: 20px;
    color: var(--accent);
    transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Modals General Style (Cost calculator, Consultant booking, Client dashboard) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 77, 52, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    transform: scale(0.9) translateY(30px);
    transition: var(--transition-smooth);
    position: relative;
}
.modal-overlay.active .modal-window {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.modal-close-btn:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

/* Forms general styling */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}
.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--bg-primary);
    box-shadow: 0 0 10px rgba(10, 77, 52, 0.1);
}

/* Step calculator design inside modal */
.calc-step {
    display: none;
}
.calc-step.active {
    display: block;
}
.calc-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}
@media (max-width: 600px) {
    .calc-option-grid { grid-template-columns: 1fr; }
}

.calc-option-card {
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.calc-option-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}
.calc-option-card.selected {
    border-color: var(--accent);
    background: rgba(243, 112, 33, 0.05);
}
.calc-option-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}
.calc-option-card strong {
    display: block;
    font-size: 15px;
}

/* Premium Footer style matching scscomputer.com (Dark Green Theme) */
.teghra-footer {
    background: #0B3C26; /* Solid rich dark forest green matching scscomputer.com */
    color: #E2E8F0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}
.footer-top {
    padding: 80px 0 50px 0;
}
.footer-grid-custom {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr;
    gap: 40px;
}
@media (max-width: 991px) {
    .footer-grid-custom {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 576px) {
    .footer-grid-custom {
        grid-template-columns: 1fr;
    }
}
.footer-logo-card {
    background: #FFFFFF;
    padding: 14px 20px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    margin-bottom: 24px;
}
.footer-heading {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #F37021; /* Accent orange */
    border-radius: 2px;
}

.footer-links-list li {
    list-style: none;
    margin-bottom: 12px;
}
.footer-links-list a {
    color: #CBD5E1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.footer-links-list a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}
.footer-links-list i {
    color: #F37021; /* Accent orange arrows */
    font-size: 13px;
    transition: var(--transition-smooth);
}

/* Contact box styling matching scscomputer.com */
.footer-contact-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(11, 60, 38, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-smooth);
}
.footer-contact-box:hover {
    border-color: rgba(243, 112, 33, 0.2);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}
.footer-contact-item:last-child {
    margin-bottom: 0;
}
.footer-contact-item:hover {
    transform: translateX(6px);
}
.footer-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px; /* Rounded rectangle instead of circle */
    background: rgba(0, 0, 0, 0.3);
    color: #F37021; /* Accent orange */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(243, 112, 33, 0.35);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.footer-contact-item:hover .footer-contact-icon {
    background: #F37021;
    color: #FFFFFF;
    border-color: #F37021;
    box-shadow: 0 0 15px rgba(243, 112, 33, 0.45);
    transform: scale(1.05);
}
.footer-contact-details strong {
    display: block;
    color: #94A3B8; /* Muted slate/gray */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}
.footer-contact-details span {
    font-size: 14px;
    color: #E2E8F0;
    line-height: 1.5;
    transition: var(--transition-smooth);
}
.footer-contact-details a {
    color: inherit;
    transition: var(--transition-smooth);
}
.footer-contact-item:hover .footer-contact-details span,
.footer-contact-item:hover .footer-contact-details a {
    color: #FFFFFF;
}

/* Disclaimer Ribbon styling */
.footer-disclaimer-ribbon {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 10px 30px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    margin-top: 40px;
    font-size: 13px;
    color: #E2E8F0;
}
.footer-disclaimer-ribbon strong {
    color: #F37021; /* Saffron/Orange highlight */
}

/* Bottom Bar and Animating Divider Line */
.footer-bottom-bar {
    background: #052216; /* Extremely dark forest green */
    padding: 24px 0;
    font-size: 13.5px;
    position: relative;
}

.footer-bottom-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.04); /* Dim base outline */
    overflow: visible;
    animation: containerFadeCycle 10s infinite;
}

@keyframes containerFadeCycle {
    0% { opacity: 0; }
    6% { opacity: 1; } /* Dhire-dhire fade in during drawing */
    75% { opacity: 1; }
    90% { opacity: 0; } /* Dhire-dhire fade out */
    100% { opacity: 0; }
}

/* Animating lines drawing from left and right towards the center */
.footer-bottom-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, #FFB300 70%, #FFE066 100%);
    animation: drawLeftLine 10s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-bottom-divider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(270deg, transparent, #FFB300 70%, #FFE066 100%);
    animation: drawRightLine 10s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes drawLeftLine {
    0% { width: 0; }
    20% { width: 50%; }
    90% { width: 50%; }
    95%, 100% { width: 0; } /* Reset width while container is invisible */
}

@keyframes drawRightLine {
    0% { width: 0; }
    20% { width: 50%; }
    90% { width: 50%; }
    95%, 100% { width: 0; } /* Reset width while container is invisible */
}

/* Sun Shine center anchor appearing exactly when the lines meet in the center (white core with golden rays) */
.footer-glow-dot {
    position: absolute;
    top: -4px; /* Centered vertically on the 1px line */
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFFFFF 35%, #FFF099 70%, #FFB300 100%); /* Radiant sun core */
    border-radius: 50%;
    box-shadow: 0 0 8px #FFCC00, 0 0 16px #FF9900, 0 0 24px rgba(255, 204, 0, 0.6);
    opacity: 0;
    z-index: 10;
    animation: glowDotCycle 10s infinite ease-in-out;
}

/* Thin golden circular ring of solar light radiating/pulsing continuously */
.footer-glow-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 204, 0, 0.75); /* Golden ring */
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
    animation: ringPulseCycle 10s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
    opacity: 0;
    z-index: -1;
}

/* One-time big solar circle ripple wave that triggers when the lines collide in the center */
.footer-glow-ripple {
    position: absolute;
    top: -5px; /* Centered vertically on the 1px line */
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid rgba(255, 204, 0, 0.85); /* Golden ripple border */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    opacity: 0;
    z-index: 9;
    pointer-events: none;
    animation: bigRippleCycle 10s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes glowDotCycle {
    0%, 19% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
    23% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #FFCC00, 0 0 16px #FF9900, 0 0 24px rgba(255, 204, 0, 0.6);
    }
    38% {
        transform: translateX(-50%) scale(1.2); /* Sun flare-up */
        opacity: 1;
        box-shadow: 0 0 14px #FFCC00, 0 0 28px #FF9900, 0 0 45px rgba(255, 204, 0, 0.9);
    }
    53% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #FFCC00, 0 0 16px #FF9900, 0 0 24px rgba(255, 204, 0, 0.6);
    }
    68% {
        transform: translateX(-50%) scale(1.2);
        opacity: 1;
        box-shadow: 0 0 14px #FFCC00, 0 0 28px #FF9900, 0 0 45px rgba(255, 204, 0, 0.9);
    }
    75%, 100% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
}

@keyframes ringPulseCycle {
    0%, 23% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0;
    }
    /* Ripple 1 */
    25% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.9;
        border-color: rgba(255, 204, 0, 0.8);
    }
    40% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
        border-color: rgba(255, 204, 0, 0);
    }
    /* Ripple 2 */
    43% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.9;
        border-color: rgba(255, 204, 0, 0.8);
    }
    58% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
        border-color: rgba(255, 204, 0, 0);
    }
    /* Ripple 3 */
    60% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.9;
        border-color: rgba(255, 204, 0, 0.8);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
        border-color: rgba(255, 204, 0, 0);
    }
    76%, 100% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0;
    }
}

/* One-time big collision ripple keyframe */
@keyframes bigRippleCycle {
    0%, 19% {
        transform: translateX(-50%) scale(0.5);
        opacity: 0;
        border-width: 3px;
        border-color: rgba(255, 204, 0, 0.85);
    }
    20% {
        transform: translateX(-50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
        border-color: rgba(255, 204, 0, 0.85);
    }
    35% {
        transform: translateX(-50%) scale(6.5); /* Big solar flare ripple (around 65px wide) */
        opacity: 0;
        border-width: 1px;
        border-color: rgba(255, 204, 0, 0);
        box-shadow: 0 0 30px rgba(255, 204, 0, 0);
    }
    100% {
        transform: translateX(-50%) scale(6.5);
        opacity: 0;
    }
}

/* Centered Flag Wrapper (Absolute positioned) */
.footer-flag-center-wrap {
    position: absolute;
    left: 50%;
    top: 18px; /* Positioned directly below the glowing dot at top: 0 */
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transition: var(--transition-smooth);
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94A3B8;
}
.footer-bottom-grid a {
    color: #E2E8F0;
    transition: var(--transition-smooth);
}
.footer-bottom-grid a:hover {
    color: #F37021;
}

@media (max-width: 768px) {
    .footer-bottom-grid {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-glow-dot, .footer-glow-ripple {
        display: none; /* Hide glow elements on mobile */
    }
    .footer-flag-center-wrap {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 10px auto;
    }
}

/* Indian flag badge */
.indian-flag-badge {
    display: flex;
    flex-direction: column;
    width: 36px;
    height: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}
.indian-flag-badge .stripe {
    flex: 1;
}
.indian-flag-badge .stripe.saffron { background: #FF9933; }
.indian-flag-badge .stripe.white { 
    background: #FFFFFF; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.indian-flag-badge .stripe.green { background: #138808; }
.indian-flag-badge .stripe.white .ashoka-wheel {
    width: 6px;
    height: 6px;
    border: 1px solid #000080;
    border-radius: 50%;
    position: relative;
}

/* Floating AI Chatbot Widget & WhatsApp Widget */
.floating-widgets-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.widget-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
}
.widget-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.widget-btn.whatsapp {
    background: #25D366;
}
.widget-btn.ai-chatbot {
    background: var(--gradient-premium);
}

.chatbot-window {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 380px;
    height: 500px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
}
.chatbot-window.active {
    display: flex;
}
.chatbot-header {
    background: var(--primary);
    color: #FFFFFF;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chatbot-message {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    max-width: 80%;
}
.chatbot-message.bot {
    background: var(--card-bg);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.chatbot-message.user {
    background: var(--accent);
    color: #FFFFFF;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.chatbot-chip {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.chatbot-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.chatbot-input-row {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--card-bg);
}
.chatbot-input-row input {
    flex: 1;
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.chatbot-input-row button {
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Client Dashboard Specific UI components */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}
@media (max-width: 768px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

.dashboard-sidebar {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.dashboard-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}
.dashboard-menu-item:hover, .dashboard-menu-item.active {
    background: var(--primary);
    color: #FFFFFF;
}

.dashboard-card-stat {
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

/* Walkthrough grid for active tracker */
.dashboard-tracker-list {
    position: relative;
    padding-left: 24px;
}
.dashboard-tracker-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border);
}
.tracker-step {
    position: relative;
    margin-bottom: 24px;
}
.tracker-step::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg-primary);
}
.tracker-step.completed::before {
    background: var(--primary);
}
.tracker-step.current::before {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(243,112,33,0.5);
}

/* Service Package Card */
.service-package-card {
    border: 1px solid var(--border);
}
.service-package-card.highlight {
    border-color: var(--accent);
    background: rgba(243,112,33,0.02);
}

/* Glowing Pulsating Dot Animation */
@keyframes pulse-ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}
.ping-animation {
    animation: pulse-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Mobile Menu Hamburger Button & Layout */
.menu-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.menu-toggle-btn:hover {
    background: rgba(10, 77, 52, 0.06);
}
.main-header:not(.scrolled):not(.header-always-solid) .menu-toggle-btn {
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .menu-toggle-btn {
        display: flex;
        color: var(--text-primary) !important; /* Adapt to both light and dark themes on mobile */
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg); /* Use theme card background for dark mode support */
        border-top: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-actions {
        display: block;
        width: 100%;
        padding-top: 15px;
        margin-top: 5px;
        border-top: 1px solid var(--border);
    }
    .header-portal-btn, .header-consult-btn {
        display: none !important; /* Hide desktop action buttons to prevent logo overlap */
    }
    .nav-link {
        width: 100%;
        color: var(--text-primary) !important;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-link::after {
        display: none !important; /* Disable underline hover animation on mobile */
    }
    
    /* Mega Menu adaptation on Mobile */
    .has-megamenu {
        width: 100%;
    }
    .has-megamenu > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .megamenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 10px 0 !important;
        display: none;
        grid-template-columns: 1fr !important;
        gap: 10px;
        border: none !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        background: transparent !important;
    }
    .has-megamenu.active .megamenu {
        display: grid;
    }
    .megamenu-column {
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
    }
    .megamenu-column h6 {
        font-size: 13px;
        color: var(--accent);
        margin: 10px 0 5px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .megamenu-item {
        padding: 8px 10px !important;
        background: rgba(0,0,0,0.01) !important;
        border-radius: 6px;
        margin-bottom: 4px;
    }
    
    /* Dropdown adaptation on Mobile */
    .has-dropdown {
        width: 100%;
    }
    .has-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 5px 0 5px 15px !important;
        display: none;
        border: none !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        background: transparent !important;
    }
    .has-dropdown.active .nav-dropdown {
        display: flex;
        flex-direction: column;
    }
    .dropdown-item {
        padding: 8px 10px;
        font-size: 13.5px;
        color: var(--text-secondary);
    }
}

@media (max-width: 576px) {
    .navbar-container .btn-premium {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Scale normalization for high-resolution desktop monitors (e.g. 1920x1080 at 100% scale) */
@media screen and (min-width: 1900px) {
    body {
        zoom: 1.25;
    }
}

/* ==========================================================================
   INTRO ABOUT SECTION (MOCKUP ALIGNMENT)
   ========================================================================== */
.intro-about-section {
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.intro-about-grid {
    align-items: center;
    gap: 60px;
}

/* Left Column: Media Styling */
.intro-media-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.intro-bg-circle {
    position: absolute;
    top: 0;
    left: -10px;
    width: 140px;
    height: 140px;
    background: #F37021; /* Brand Orange */
    border-radius: 50%;
    z-index: 1;
    opacity: 0.85;
}

.intro-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.intro-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.intro-image-container:hover .intro-main-img {
    transform: scale(1.03);
}

.intro-floating-card {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background-color: var(--primary); /* Forest Green */
    color: #FFFFFF;
    padding: 22px 28px;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(10, 77, 52, 0.25);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    animation: introFloat 4s ease-in-out infinite alternate;
}

@keyframes introFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.intro-floating-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-yellow); /* Bright Yellow */
}

.intro-floating-card-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Column: Content Styling */
.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13.5px;
}

.intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.intro-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Features Grid */
.intro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 10px 0;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.intro-feature-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(243, 112, 33, 0.08);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.intro-feature-text-wrapper {
    display: flex;
    flex-direction: column;
}

.intro-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.intro-feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Vision Capsule */
.intro-vision-capsule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.intro-vision-content {
    flex-grow: 1;
    padding-right: 20px;
}

.intro-vision-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 15px;
}

.intro-vision-icon {
    color: var(--accent);
}

.intro-vision-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Glowing Chat Icon */
.intro-vision-chat-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.intro-vision-chat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F37021 0%, #FFCC00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
    z-index: 2;
    position: relative;
}

.intro-vision-chat-ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #F37021;
    z-index: 1;
    animation: chatIconPing 1.8s infinite ease-in-out;
}

@keyframes chatIconPing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .intro-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .intro-media-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .intro-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .intro-vision-capsule {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .intro-vision-content {
        padding-right: 0;
    }
    .intro-vision-chat-icon-wrapper {
        align-self: flex-end;
    }
}

/* ==========================================================================
   ENTERPRISE SLA CALL TO ACTION (MOCKUP ALIGNMENT)
   ========================================================================== */
.sla-cta-section {
    background-color: var(--bg-primary);
    padding: 80px 0;
}

.sla-cta-banner {
    background-color: #0B3C26; /* Solid deep forest green */
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 20px 45px rgba(11, 60, 38, 0.12);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.sla-icon-box {
    width: 76px;
    height: 76px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #F37021; /* Accent orange */
    box-shadow: inset 0 2px 8px rgba(255,255,255,0.02);
    flex-shrink: 0;
}

.sla-content-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #FFFFFF;
    text-align: left;
}

.sla-subtitle {
    color: #F37021; /* Accent orange */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sla-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
}

.sla-desc {
    font-size: 14.5px;
    color: #CBD5E1;
    line-height: 1.6;
    max-width: 680px;
}

/* Features Row */
.sla-features-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.sla-feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #E2E8F0;
    font-weight: 600;
}

.sla-feature-pill i {
    color: #F37021; /* Accent orange */
    font-size: 12px;
}

/* Button & Status Block */
.sla-action-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.sla-btn {
    background-color: #F37021; /* Accent orange */
    color: #0B3C26 !important; /* Rich dark green text inside orange button */
    padding: 14px 28px;
    border-radius: 8px; /* Slightly rounded corners matching the button shape in the image */
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.25);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.sla-btn:hover {
    background-color: #E05F12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.sla-status-text {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .sla-cta-banner {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
        text-align: center;
    }
    .sla-icon-box {
        margin: 0 auto;
    }
    .sla-subtitle {
        justify-content: center;
    }
    .sla-features-row {
        justify-content: center;
    }
    .sla-desc {
        margin: 0 auto;
    }
}

/* ==========================================================================
   HEADER LOGO ANIMATIONS & CONTINUOUS SHINE GLOW
   ========================================================================== */
.header-logo-card {
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Glossy shimmer sweep running continuously every 7 seconds */
.header-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 5;
    animation: logo-shine-beam 7s infinite cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

@keyframes logo-shine-beam {
    0% {
        left: -150%;
    }
    35% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.teghra-logo-img {
    transition: var(--transition-smooth);
    animation: logoEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center left;
}

/* Hover lift and glow effects */
.header-logo-card:hover {
    transform: translateY(-2px);
}

.header-logo-card:hover .teghra-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(10, 77, 52, 0.18)) brightness(1.03);
}

/* Dark mode hover adaptation */
html[data-theme='dark'] .header-logo-card:hover .teghra-logo-img {
    filter: drop-shadow(0 6px 15px rgba(255, 255, 255, 0.12)) brightness(1.1) invert(1);
}

/* Page load entry keyframe */
@keyframes logoEntry {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(5px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Onboarding Wizard Stepper Styles */
.wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    background: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.wizard-step .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.wizard-step .step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.wizard-step.active .step-num {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(243, 112, 33, 0.4);
}
.wizard-step.active .step-label {
    color: var(--accent);
}
.wizard-step.completed .step-num {
    background: var(--primary);
    color: #FFFFFF;
}
.wizard-step.completed .step-label {
    color: var(--primary);
}
.step-divider {
    flex-grow: 1;
    height: 2px;
    background: var(--border);
    margin: 0 10px;
    margin-bottom: 20px; /* offset for label text height alignment */
}

/* Wizard Panes */
.wizard-pane {
    display: none;
    animation: slidePane 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.wizard-pane.active {
    display: block;
}
.wizard-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.wizard-subtitle {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Option Cards Grid */
.wizard-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 576px) {
    .wizard-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.wizard-card-option {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}
.wizard-card-option:hover {
    border-color: var(--accent);
    background: rgba(243, 112, 33, 0.02);
}
.wizard-card-option.active {
    border-color: var(--accent) !important;
    background: rgba(243, 112, 33, 0.05) !important;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.06);
}
.wizard-card-option i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.wizard-card-option.active i {
    color: var(--accent);
}
.wizard-card-option strong {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.wizard-card-option span {
    font-size: 11.5px;
    color: var(--text-secondary);
}

@keyframes slidePane {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Footer SLA Dashboard Styles */
.footer-sla-dashboard {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.sla-status-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}
.sla-status-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.sla-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.sla-status-indicator.uptime {
    background-color: #10B981; /* Green */
    box-shadow: 0 0 8px #10B981;
    animation: pulseUptime 1.6s infinite alternate;
}
.sla-status-indicator.response {
    background-color: #F37021; /* Orange */
    box-shadow: 0 0 8px #F37021;
    animation: pulseResponse 1.6s infinite alternate;
}
.sla-status-indicator.nodes {
    background-color: #3B82F6; /* Blue */
    box-shadow: 0 0 8px #3B82F6;
    animation: pulseNodes 1.6s infinite alternate;
}
.sla-status-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.sla-status-text strong {
    font-size: 13.5px;
    color: var(--text-primary);
    font-weight: 700;
}
.sla-status-text span {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

@keyframes pulseUptime {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px #10B981, 0 0 20px rgba(16, 185, 129, 0.4); }
}
@keyframes pulseResponse {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px #F37021, 0 0 20px rgba(243, 112, 33, 0.4); }
}
@keyframes pulseNodes {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px #3B82F6, 0 0 20px rgba(59, 130, 246, 0.4); }
}

/* First-Time Promo Modal Styles */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.promo-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.promo-modal-content {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: visible;
}
.promo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
}
.promo-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}
.promo-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #FF8533;
}
