/*
Theme Name: ShatarupaX AI Labs
Theme URI: https://shatarupax.com
Author: ShatarupaX AI Labs
Author URI: https://shatarupax.com
Description: Enterprise AI Solutions & Products - Official WordPress Theme for ShatarupaX AI Labs
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shatarupax
Tags: dark, ai, enterprise, technology, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ==========================================
   GLOBAL RESET & BASE
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7C3AED;
    --primary-light: #9D5FFF;
    --primary-dark: #5B21B6;
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --bg-dark: #050816;
    --bg-card: #0D1117;
    --bg-card2: #111827;
    --bg-section: #0a0f1e;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(124, 58, 237, 0.2);
    --border-light: rgba(255,255,255,0.08);
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    --gradient-bg: linear-gradient(180deg, #050816 0%, #0a0f1e 100%);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-body: 'DM Sans', 'Nunito', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 16px 0 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.08);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

#site-header.scrolled {
    background: rgba(5, 8, 22, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

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

.nav-link .caret {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-item:hover .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown a:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                var(--bg-dark);
}

/* Animated background particles */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatBg 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: floatBg 10s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .accent-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.ai-chip-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chip {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
    animation: pulse-chip 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-chip {
    0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 120px rgba(124, 58, 237, 0.6), 0 0 60px rgba(124, 58, 237, 0.4); }
}

/* Floating feature cards around chip */
.feature-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    animation: float 5s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}

.feature-card .fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-card:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.feature-card:nth-child(2) { top: 5%; right: 5%; animation-delay: 1s; }
.feature-card:nth-child(3) { bottom: 5%; left: 5%; animation-delay: 2s; }
.feature-card:nth-child(4) { bottom: 5%; right: 5%; animation-delay: 0.5s; }
.feature-card:nth-child(5) { top: 50%; left: -5%; transform: translateY(-50%); animation-delay: 1.5s; }
.feature-card:nth-child(6) { top: 50%; right: -5%; transform: translateY(-50%); animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.feature-card:nth-child(5),
.feature-card:nth-child(6) {
    animation: floatX 5s ease-in-out infinite;
}
@keyframes floatX {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-6px); }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124, 58, 237, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.4);
    transform: scale(1.1);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.service-feature::before {
    content: '';
    width: 16px;
    height: 16px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-6' stroke='%2306B6D4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.learn-more-link::after {
    content: '→';
    transition: var(--transition);
}

.learn-more-link:hover {
    color: var(--accent-light);
}

.learn-more-link:hover::after {
    transform: translateX(4px);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124, 58, 237, 0.15);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.af-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.af-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.af-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Stats grid in about */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.astat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.astat-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}

.astat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.astat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.astat-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.industry-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
    line-height: 1.15;
}

.cta-inner p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc, .hero-actions { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .primary-nav, .header-cta .btn:not(.btn-primary) { display: none; }
    .menu-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   WORDPRESS SPECIFIC
   ========================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.sticky { border-left: 3px solid var(--primary); }
.bypostauthor { }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item a { display: block; border-radius: 8px; overflow: hidden; }

/* Page & Post Content */
.entry-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.entry-content h1, .entry-content h2, .entry-content h3 {
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--primary-light); }
.entry-content a:hover { color: var(--accent-light); }
.entry-content ul, .entry-content ol { margin: 16px 0 20px 24px; }
.entry-content li { margin-bottom: 8px; list-style: disc; }
.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

.mobile-menu-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================
   HOSTINGER FIX PACK: LIGHT PROFESSIONAL THEME
   ========================================== */
:root{--primary:#2563eb;--primary-light:#4f46e5;--primary-dark:#1e3a8a;--accent:#06b6d4;--accent-light:#22c55e;--bg-dark:#f8fbff;--bg-card:#ffffff;--bg-card2:#ffffff;--bg-section:#f1f7ff;--text-primary:#071632;--text-secondary:#334155;--text-muted:#64748b;--border:rgba(37,99,235,.14);--border-light:rgba(37,99,235,.16);--gradient-primary:linear-gradient(135deg,#2563eb 0%,#7c3aed 56%,#22c55e 100%);--gradient-bg:linear-gradient(180deg,#ffffff 0%,#eef7ff 100%);--shadow-card:0 14px 40px rgba(15,23,42,.08);--shadow-glow:0 0 45px rgba(37,99,235,.18)}
body{background:#f8fbff;color:var(--text-primary)}
#site-header{background:rgba(255,255,255,.9);border-bottom:1px solid rgba(37,99,235,.12);box-shadow:0 8px 30px rgba(15,23,42,.06)}#site-header.scrolled{background:rgba(255,255,255,.97);box-shadow:0 10px 35px rgba(15,23,42,.1)}
.nav-link,.logo-name,.logo-tagline{color:var(--text-primary)}.btn-outline{color:var(--text-primary);border-color:rgba(15,23,42,.18);background:#fff}.btn-outline:hover{background:#eef4ff;color:#2563eb}.dropdown{background:#fff;border:1px solid rgba(37,99,235,.15);box-shadow:0 18px 45px rgba(15,23,42,.12)}.dropdown a{color:#0f172a}.mobile-menu{background:#fff}.mobile-nav-link{color:#0f172a}
.hero-section{background:linear-gradient(180deg,#f8fbff,#eef7ff);padding-top:120px}.hero-bg{background:radial-gradient(circle at 20% 20%,rgba(37,99,235,.16),transparent 35%),radial-gradient(circle at 85% 15%,rgba(124,58,237,.13),transparent 34%),radial-gradient(circle at 80% 85%,rgba(34,197,94,.10),transparent 32%)}.hero-title,.section-title,.service-name,.product-name{color:#071632}.hero-desc,.section-subtitle,.service-desc,.product-desc,.about-content p{color:#334155}.feature-card,.service-card,.product-card,.astat-card,.industry-card{background:rgba(255,255,255,.82);border:1px solid rgba(37,99,235,.12);box-shadow:var(--shadow-card);color:#071632}.ai-chip{box-shadow:0 18px 55px rgba(37,99,235,.24)}
.services-section,.products-section,.industries-section,.about-section{background:#f8fbff}.cta-section{background:linear-gradient(135deg,#eef7ff,#fff)}.footer-grid{border-top:1px solid rgba(37,99,235,.12)}#site-footer{background:#071632;color:#dbeafe}.footer-links a{color:#bfdbfe}.footer-col h4,.footer-brand p{color:#fff}
.sx-inner-page{padding-top:72px;background:#f8fbff}.sx-page-hero{padding:70px 0;background:linear-gradient(135deg,#eff6ff,#ffffff 52%,#f0fdf4);border-bottom:1px solid rgba(37,99,235,.12)}.sx-page-hero h1{font-size:clamp(2.2rem,4vw,4rem);max-width:850px;margin:18px 0 18px;color:#071632}.sx-page-hero p{font-size:1.18rem;max-width:780px;color:#334155}.sx-breadcrumb{font-size:.9rem;color:#2563eb;font-weight:700;margin-bottom:18px}.sx-hero-tags{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}.sx-hero-tags span{background:#fff;border:1px solid rgba(37,99,235,.15);padding:10px 16px;border-radius:999px;color:#1e3a8a;font-weight:700}.sx-content-section{padding:70px 0}.sx-two-col{display:grid;grid-template-columns:1.5fr .75fr;gap:28px}.sx-main-card,.sx-side-card,.sx-info-row,.sx-resource-card{background:#fff;border:1px solid rgba(37,99,235,.13);box-shadow:var(--shadow-card);border-radius:22px;padding:32px}.sx-main-card h2{font-size:1.8rem;margin:28px 0 16px;color:#071632}.sx-main-card p{font-size:1.05rem;color:#334155;margin-bottom:16px}.sx-side-card{height:max-content;position:sticky;top:100px}.sx-side-card h3{font-size:1.5rem;margin-bottom:14px}.sx-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:18px}.sx-mini-grid div,.sx-check-list li{background:#f1f7ff;border:1px solid rgba(37,99,235,.12);border-radius:14px;padding:14px;font-weight:700;color:#102044}.sx-about-layout{display:grid;grid-template-columns:1.25fr .85fr;gap:28px}.sx-info-row{margin-bottom:22px}.sx-info-row b{font-size:1.35rem;color:#071632}.sx-info-row p{margin-top:10px;color:#334155}.sx-check-list{display:grid;gap:12px}.sx-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:34px 0}.sx-stats-row div{background:#fff;border:1px solid rgba(37,99,235,.13);border-radius:20px;padding:24px;text-align:center;box-shadow:var(--shadow-card)}.sx-stats-row strong{display:block;font-size:2rem;color:#4f46e5}.sx-stats-row span{color:#334155;font-weight:700}.sx-mission{display:grid;grid-template-columns:1fr 1fr;gap:24px}.sx-mission>div{background:linear-gradient(135deg,#ffffff,#eff6ff);border:1px solid rgba(37,99,235,.13);border-radius:22px;padding:34px}.sx-contact-form{display:grid;gap:14px}.sx-contact-form input,.sx-contact-form select,.sx-contact-form textarea{width:100%;border:1px solid rgba(37,99,235,.18);border-radius:14px;padding:15px 16px;font:inherit;color:#071632;background:#fff}.sx-resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.sx-resource-card h3{font-size:1.35rem;margin:14px 0;color:#071632}.sx-resource-card p{color:#334155;margin-bottom:20px}
@media(max-width:1024px){.sx-two-col,.sx-about-layout,.sx-mission{grid-template-columns:1fr}.sx-resource-grid{grid-template-columns:repeat(2,1fr)}.sx-stats-row{grid-template-columns:repeat(2,1fr)}}@media(max-width:640px){.sx-resource-grid,.sx-mini-grid,.sx-stats-row{grid-template-columns:1fr}.sx-page-hero{padding:50px 0}.sx-main-card,.sx-side-card{padding:24px}}

/* ==========================================
   VERIFIED FINAL: Hero motion video + 4 products + mobile polish
   ========================================== */
.hero-grid{grid-template-columns:minmax(0,.86fr) minmax(480px,1.14fr);align-items:center;gap:34px}.hero-title{font-size:clamp(2.5rem,5vw,4.8rem);line-height:1.05;font-weight:900}.accent-line{display:block;background:linear-gradient(90deg,#2563eb,#7c3aed,#22c55e);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.hero-video-visual{display:block}.hero-video-card{position:relative;border-radius:28px;overflow:hidden;min-height:420px;border:1px solid rgba(37,99,235,.18);background:#071632;box-shadow:0 24px 70px rgba(37,99,235,.22)}.hero-ai-video{width:100%;height:100%;min-height:420px;display:block;object-fit:cover;filter:saturate(1.16) contrast(1.04)}.hero-video-glow{position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,rgba(6,182,212,.06),transparent 45%),linear-gradient(90deg,rgba(255,255,255,.10),transparent 24%);pointer-events:none}.motion-label{position:absolute;padding:14px 18px;border-radius:16px;background:rgba(5,13,36,.74);border:1px solid rgba(125,211,252,.55);box-shadow:0 0 28px rgba(37,99,235,.35);color:#fff;font-size:1.04rem;line-height:1.22;text-align:center;backdrop-filter:blur(10px);animation:heroFloat 4.5s ease-in-out infinite}.motion-label strong{font-weight:900;text-shadow:0 2px 12px rgba(0,0,0,.55)}.label-workflow{left:5%;top:17%}.label-models{left:35%;top:7%;font-size:1.1rem}.label-accuracy{right:10%;top:15%}.label-scale{right:5%;top:41%}.label-innovation{left:7%;bottom:15%}.label-ready{right:11%;bottom:13%}@keyframes heroFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}.products-grid{grid-template-columns:repeat(4,minmax(0,1fr));max-width:1180px;margin:0 auto}.product-card{min-height:230px}.primary-nav .nav-item:nth-child(4) .dropdown a:nth-child(n+5){display:none}@media(max-width:1180px){.hero-grid{grid-template-columns:1fr}.hero-video-card{min-height:360px}.hero-ai-video{min-height:360px}.products-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.hero-section{padding-top:94px}.hero-title{font-size:clamp(2.2rem,12vw,3.3rem)}.hero-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.hero-video-card{min-height:280px;border-radius:22px}.hero-ai-video{min-height:280px}.motion-label{font-size:.76rem;padding:8px 10px;border-radius:12px}.label-workflow{left:4%;top:16%}.label-models{left:32%;top:6%}.label-accuracy{right:5%;top:15%}.label-scale{right:4%;top:42%}.label-innovation{left:5%;bottom:12%}.label-ready{right:6%;bottom:10%}.services-grid,.products-grid{grid-template-columns:1fr}.service-card,.product-card{min-height:auto}.header-cta{display:none}.primary-nav{display:none}.menu-toggle{display:flex}.hero-actions .btn{width:100%;justify-content:center}.container{padding-left:18px;padding-right:18px}}@media(max-width:420px){.hero-video-card{min-height:240px}.hero-ai-video{min-height:240px}.motion-label{font-size:.62rem;padding:7px 8px}.hero-stats{grid-template-columns:1fr}.hero-desc{font-size:1rem}.section-title{font-size:2rem}}
@media(max-width:1024px){.hero-video-visual{display:block!important}}

/* ==========================================
   FINAL REQUESTED UPDATE: Full-HD readability, visuals, footer/contact cleanup
   ========================================== */
html{font-size:18px}
body{
    background:
      radial-gradient(circle at 12% 10%, rgba(37,99,235,.14), transparent 32%),
      radial-gradient(circle at 88% 12%, rgba(124,58,237,.12), transparent 30%),
      radial-gradient(circle at 78% 86%, rgba(34,197,94,.10), transparent 34%),
      linear-gradient(180deg,#fbfdff 0%,#eef7ff 45%,#ffffff 100%);
}
.container{max-width:1580px;padding-left:40px;padding-right:40px}.container-wide{max-width:1720px}
#site-header .btn-primary{display:none!important}.header-inner{height:82px}.nav-link{font-size:1rem;font-weight:700}.dropdown a{font-size:.98rem}.logo-name{font-size:1.28rem}.logo-tagline{font-size:.8rem}.btn{font-size:1.02rem;padding:15px 28px;font-weight:800}
.hero-section{min-height:auto;padding:100px 0 56px;background:transparent}.hero-title{font-size:clamp(3.4rem,5.3vw,6.15rem);letter-spacing:-.055em}.hero-desc{font-size:1.28rem;line-height:1.76;max-width:680px}.hero-grid{grid-template-columns:minmax(0,.9fr) minmax(620px,1.1fr);gap:54px}.hero-video-card{min-height:560px;border-radius:36px}.hero-ai-video{min-height:560px}.motion-label{font-size:1.17rem;padding:16px 20px}.stat-number{font-size:1.55rem;font-weight:800;letter-spacing:-.01em}.stat-label{font-size:.82rem;color:#64748b;font-weight:500;letter-spacing:.02em;margin-top:4px}.section-title{font-size:clamp(2.75rem,3.8vw,4.4rem)}.section-subtitle{font-size:1.25rem;max-width:860px;line-height:1.75}.services-section,.products-section,.about-section,.industries-section{background:transparent;padding:70px 0}.services-section::before{display:none}.services-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:32px}.products-grid{max-width:1450px;gap:32px}.service-card,.product-card{padding:0;overflow:hidden;border-radius:28px;background:rgba(255,255,255,.90);backdrop-filter:blur(14px);box-shadow:0 18px 48px rgba(15,23,42,.10);border:1px solid rgba(37,99,235,.16)}.service-card:hover,.product-card:hover{box-shadow:0 26px 70px rgba(37,99,235,.16);border-color:rgba(124,58,237,.28)}.service-icon,.product-icon-wrap{margin:28px 28px 16px}.service-name,.service-desc,.service-features,.service-card .learn-more-link,.product-name,.product-desc,.product-card .learn-more-link{margin-left:28px;margin-right:28px}.service-name{font-size:1.34rem}.product-name{font-size:1.28rem}.service-desc,.product-desc{font-size:1.05rem;line-height:1.72;color:#334155}.service-feature{font-size:.96rem}.learn-more-link{font-size:1rem;margin-bottom:30px}.sx-card-visual{height:175px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#eff6ff,#f5f3ff 56%,#ecfdf5);border-bottom:1px solid rgba(37,99,235,.12)}.sx-card-visual::before{content:"";position:absolute;inset:24px;border-radius:28px;background:linear-gradient(135deg,rgba(37,99,235,.18),rgba(124,58,237,.16),rgba(34,197,94,.13));filter:blur(3px)}.sx-card-visual::after{content:"";position:absolute;width:150px;height:150px;border-radius:50%;border:2px solid rgba(37,99,235,.26);box-shadow:0 0 45px rgba(124,58,237,.18)}.sx-card-visual span{position:relative;z-index:2;font-size:4.1rem;background:#fff;border:1px solid rgba(37,99,235,.16);box-shadow:0 16px 36px rgba(15,23,42,.12);width:105px;height:105px;border-radius:30px;display:flex;align-items:center;justify-content:center}.service-visual-ai-training-data-annotation{background:linear-gradient(135deg,#dbeafe,#eef2ff,#f0fdf4)}.service-visual-llm-optimization-fine-tuning{background:linear-gradient(135deg,#ede9fe,#dbeafe,#ecfeff)}.service-visual-enterprise-ai-automation{background:linear-gradient(135deg,#e0f2fe,#f5f3ff,#dcfce7)}.service-visual-healthcare-ai-solutions{background:linear-gradient(135deg,#ecfeff,#eff6ff,#dcfce7)}.service-visual-hr-recruitment-ai-solutions{background:linear-gradient(135deg,#f5f3ff,#eff6ff,#fff7ed)}.service-visual-ai-service-desk-automation{background:linear-gradient(135deg,#e0f2fe,#eff6ff,#f0fdf4)}.product-visual-shatarupax-enterprise-ai-platform{background:linear-gradient(135deg,#eef2ff,#dbeafe,#ecfdf5)}.product-visual-deployai{background:linear-gradient(135deg,#dbeafe,#ecfeff,#dcfce7)}.product-visual-clinicalai{background:linear-gradient(135deg,#ecfeff,#eff6ff,#dcfce7)}.product-visual-docai{background:linear-gradient(135deg,#fff7ed,#eff6ff,#e0f2fe)}
.sx-page-hero{background:radial-gradient(circle at 16% 20%,rgba(37,99,235,.16),transparent 34%),radial-gradient(circle at 86% 18%,rgba(124,58,237,.14),transparent 32%),linear-gradient(135deg,#ffffff,#eff6ff 55%,#f0fdf4);padding:96px 0}.sx-page-hero h1{font-size:clamp(3rem,4.8vw,5.8rem);line-height:1.04;font-weight:900}.sx-page-hero p{font-size:1.28rem;line-height:1.72;max-width:920px}.sx-hero-visual-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.68fr);gap:48px;align-items:center}.sx-ai-illustration{min-height:360px;border-radius:34px;position:relative;overflow:hidden;background:linear-gradient(135deg,#0f172a,#1e1b4b 52%,#064e3b);box-shadow:0 30px 80px rgba(37,99,235,.22);border:1px solid rgba(37,99,235,.18);display:flex;align-items:center;justify-content:center}.sx-ai-illustration::before{content:"";position:absolute;inset:28px;border:1px solid rgba(255,255,255,.24);border-radius:28px;background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.04))}.sx-ai-illustration::after{content:"";position:absolute;width:300px;height:300px;border-radius:50%;border:2px solid rgba(34,197,94,.5);transform:rotateX(68deg);box-shadow:0 0 70px rgba(96,165,250,.26)}.sx-ai-orb{position:relative;z-index:2;min-width:168px;min-height:168px;border-radius:44px;background:radial-gradient(circle,#ffffff,#93c5fd 38%,#7c3aed 76%);display:flex;align-items:center;justify-content:center;text-align:center;color:#071632;font-size:2rem;font-weight:900;box-shadow:0 0 80px rgba(96,165,250,.65),0 0 130px rgba(124,58,237,.35);padding:24px}.sx-visual-label{position:absolute;left:28px;right:28px;bottom:28px;z-index:3;background:rgba(255,255,255,.88);color:#071632;border:1px solid rgba(255,255,255,.7);border-radius:18px;padding:16px 20px;font-weight:900;text-align:center;box-shadow:0 16px 38px rgba(0,0,0,.18)}.visual-annotation{background:linear-gradient(135deg,#0f172a,#1e40af,#065f46)}.visual-llm{background:linear-gradient(135deg,#1e1b4b,#6d28d9,#0e7490)}.visual-automation,.visual-platform{background:linear-gradient(135deg,#0f172a,#2563eb,#7c3aed)}.visual-healthcare{background:linear-gradient(135deg,#0f766e,#2563eb,#22c55e)}.visual-hr{background:linear-gradient(135deg,#7c3aed,#2563eb,#f97316)}.visual-desk,.visual-deploy{background:linear-gradient(135deg,#0f172a,#0891b2,#22c55e)}.visual-doc{background:linear-gradient(135deg,#1e3a8a,#f97316,#06b6d4)}
.sx-main-card,.sx-side-card,.sx-info-row,.sx-resource-card{border-radius:28px;padding:42px}.sx-main-card p{font-size:1.16rem;line-height:1.86}.sx-main-card h2{font-size:2.25rem}.sx-mini-grid div,.sx-check-list li{font-size:1.05rem}.sx-contact-form input,.sx-contact-form select,.sx-contact-form textarea{font-size:1.05rem;padding:18px 20px}.sx-side-card p{font-size:1.08rem;line-height:1.72;color:#334155}
#site-footer{background:linear-gradient(135deg,#06142e 0%,#10163e 52%,#042f2e 100%);padding:86px 0 38px;border-top:none;position:relative;overflow:hidden}#site-footer::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 14%,rgba(37,99,235,.26),transparent 30%),radial-gradient(circle at 84% 28%,rgba(124,58,237,.22),transparent 32%),radial-gradient(circle at 75% 88%,rgba(34,197,94,.16),transparent 30%);pointer-events:none}.footer-grid-final{position:relative;z-index:1;display:grid;grid-template-columns:1.55fr .9fr 1.12fr .9fr 1.35fr;gap:36px;margin-bottom:54px;border-top:0}.footer-brand-line{font-size:1.18rem!important;font-weight:900;color:#fff!important;margin-bottom:8px!important}.footer-brand p{font-size:1rem;max-width:400px;color:#dbeafe!important}.footer-col h4{font-size:1rem;color:#fff}.footer-links a{font-size:1rem;color:#dbeafe}.footer-contact-card{background:transparent;border:none;border-radius:0;padding:0}.footer-contact-list{display:grid;gap:14px}.footer-contact-list p{display:flex;gap:12px;align-items:flex-start;color:#dbeafe;line-height:1.55;font-size:1rem}.footer-contact-list a{color:#fff;font-weight:800}.footer-bottom{position:relative;z-index:1;color:#bfdbfe;border-color:rgba(255,255,255,.14)}.footer-bottom a{color:#fff}
@media(max-width:1280px){.container{padding-left:28px;padding-right:28px}.hero-grid{grid-template-columns:1fr}.hero-video-card,.hero-ai-video{min-height:430px}.sx-hero-visual-grid{grid-template-columns:1fr}.footer-grid-final{grid-template-columns:1fr 1fr}.footer-brand-final{grid-column:1/-1}.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){html{font-size:17px}.hero-video-visual{display:block!important}.hero-video-card,.hero-ai-video{min-height:320px}.sx-ai-illustration{min-height:300px}.products-grid{grid-template-columns:repeat(2,1fr)}.footer-grid-final{grid-template-columns:1fr}}
@media(max-width:640px){html{font-size:16px}.container{padding-left:18px;padding-right:18px}.hero-title{font-size:clamp(2.5rem,12vw,3.45rem)}.hero-desc,.section-subtitle,.sx-page-hero p{font-size:1.08rem}.services-grid,.products-grid{grid-template-columns:1fr}.sx-card-visual{height:150px}.sx-hero-visual-grid{gap:28px}.sx-ai-illustration{min-height:250px}.sx-ai-orb{min-width:126px;min-height:126px;font-size:1.55rem}.footer-contact-card{padding:20px}.sx-page-hero h1{font-size:clamp(2.25rem,12vw,3.2rem)}}

/* ==========================================
   FINAL SPACING & PROFESSIONAL POLISH PACK
   (Spacing tightened, hero stats refined,
    footer contact box flattened)
   ========================================== */
.section-header{margin-bottom:48px}
.cta-section{padding:70px 0}
.tech-section{padding:56px 0!important}
.hero-stats{padding-top:24px;gap:28px;border-top:1px solid rgba(37,99,235,.12)}
.hero-stats .stat-item{min-width:auto}

/* Tighten about-section internal spacing */
.about-grid{gap:56px}

@media(max-width:900px){
  .services-section,.products-section,.about-section,.industries-section{padding:56px 0!important}
  .cta-section,.tech-section{padding:48px 0!important}
  .section-header{margin-bottom:36px}
  .hero-section{padding:88px 0 40px!important}
  .stat-number{font-size:1.4rem!important}
  .stat-label{font-size:.78rem!important}
}

@media(max-width:640px){
  .services-section,.products-section,.about-section,.industries-section,.cta-section,.tech-section{padding:44px 0!important}
  .section-header{margin-bottom:28px}
  .hero-section{padding:80px 0 32px!important}
}

/* Ensure footer contact card stays flat (no padding) on mobile too */
@media(max-width:640px){
  .footer-contact-card{padding:0!important;background:transparent!important;border:none!important;box-shadow:none!important}
}

/* ==========================================
   CENTERED LAYOUT PACK
   Forces single-column, center-aligned content
   site-wide (matches the Products section style)
   ========================================== */

/* --- HERO: single column, centered text, visual stacks below --- */
.hero-grid{
  grid-template-columns:1fr!important;
  gap:48px;
  text-align:center;
  justify-items:center;
}
.hero-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  max-width:880px;
  margin:0 auto;
}
.hero-badge{
  margin-left:auto;
  margin-right:auto;
}
.hero-title{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.hero-desc{
  text-align:center;
  max-width:720px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.hero-actions{
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}
.hero-visual,
.hero-video-visual{
  margin:0 auto;
  max-width:920px;
  width:100%;
}
.hero-video-card{
  margin:0 auto;
}

/* --- ABOUT: collapse 2-col grid into single centered column --- */
.about-grid{
  grid-template-columns:1fr!important;
  gap:48px;
  text-align:center;
  justify-items:center;
}
.about-content{
  text-align:center;
  max-width:840px;
  margin:0 auto;
}
.about-content p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:760px;
}
.about-content .section-badge,
.about-content .section-title{
  margin-left:auto;
  margin-right:auto;
}
.about-features,
.about-stats-grid{
  margin:0 auto;
  justify-content:center;
  text-align:center;
}
.about-feature{
  text-align:center;
  justify-content:center;
}
.about-actions,
.about-content .btn,
.about-content a.btn{
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
}

/* --- TECH STACK / INTEGRATIONS: center its grid too --- */
.tech-section .section-header,
.tech-section .tech-grid,
.tech-section .integrations-grid{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  justify-items:center;
}

/* --- CTA section: already centered, just enforce --- */
.cta-inner{
  text-align:center;
  margin:0 auto;
}
.cta-actions{
  justify-content:center;
}

/* --- Make sure section-header is always centered everywhere --- */
.section-header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-header .section-badge,
.section-header .section-title,
.section-header .section-subtitle{
  margin-left:auto;
  margin-right:auto;
}

/* --- Cards: keep grid but center the row when there are fewer items --- */
.services-grid,
.products-grid,
.industries-grid{
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}

/* --- Mobile: keep everything centered (already is, but be explicit) --- */
@media(max-width:900px){
  .hero-content,
  .about-content{
    max-width:100%;
    padding:0 8px;
  }
  .hero-actions{
    flex-direction:column;
    width:100%;
    align-items:center;
  }
  .hero-actions .btn{
    width:100%;
    max-width:340px;
  }
}

/* ==========================================
   CENTERED LAYOUT — SIZE & WIDTH FIXES
   Fits hero title on 2 clean lines, widens
   content area, sizes the visual properly
   ========================================== */

/* --- Container: wider on big screens for the centered look --- */
.hero-section .container,
.hero-grid{
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

/* --- Hero title: smaller, fits "AI Solutions and Products" cleanly --- */
.hero-title{
  font-size:clamp(2.4rem,4.6vw,4rem)!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  max-width:980px;
  margin-left:auto!important;
  margin-right:auto!important;
}

/* The gradient "Built for the Future" line should sit on its own line */
.hero-title .accent-line{
  display:block;
  margin-top:.15em;
}

/* --- Hero description: wider for centered layout --- */
.hero-desc{
  font-size:clamp(1rem,1.2vw,1.18rem)!important;
  line-height:1.7!important;
  max-width:760px!important;
  margin:0 auto 36px!important;
}

/* --- Hero badge spacing --- */
.hero-badge{
  margin-bottom:20px;
}

/* --- Hero action buttons: nicely centered, not too wide --- */
.hero-actions{
  margin:0 auto 0!important;
  gap:14px;
}

/* --- Hero visual (AI graphic / video card) sizing --- */
.hero-visual,
.hero-video-visual{
  width:100%;
  max-width:1080px;
  margin:48px auto 0;
}
.hero-video-card{
  min-height:480px!important;
  max-width:100%;
  border-radius:32px;
  margin:0 auto;
}
.hero-ai-video{
  min-height:480px!important;
  width:100%;
}

/* --- Section titles: bring sizes in line with new hero scale --- */
.section-title{
  font-size:clamp(2rem,3.2vw,3.2rem)!important;
  line-height:1.15!important;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.section-subtitle{
  font-size:clamp(1rem,1.15vw,1.15rem)!important;
  line-height:1.7!important;
  max-width:720px!important;
  margin-left:auto;
  margin-right:auto;
}

/* --- Tablet / small desktop --- */
@media(max-width:1100px){
  .hero-title{font-size:clamp(2.2rem,5.2vw,3.4rem)!important}
  .hero-video-card,.hero-ai-video{min-height:380px!important}
}

/* --- Mobile --- */
@media(max-width:640px){
  .hero-title{
    font-size:clamp(2rem,8vw,2.6rem)!important;
    letter-spacing:-.02em!important;
  }
  .hero-desc{
    font-size:1rem!important;
    padding:0 4px;
  }
  .hero-video-card,.hero-ai-video{min-height:260px!important}
  .section-title{font-size:clamp(1.7rem,6.5vw,2.2rem)!important}
  .section-subtitle{font-size:1rem!important}
}

/* ==========================================
   HERO ↔ SECTION HEADER ALIGNMENT
   Match hero title/badge/desc sizing exactly
   to other section headers like "● SERVICES /
   End-to-End AI Solutions"
   ========================================== */

/* Hero badge: same size & style as section-badge */
.hero-badge,
.hero-badge .section-badge,
.hero-content > .section-badge{
  display:inline-block!important;
  background:rgba(124,58,237,.12)!important;
  color:#6d28d9!important;
  padding:7px 18px!important;
  border-radius:999px!important;
  font-size:.78rem!important;
  font-weight:700!important;
  letter-spacing:.08em!important;
  text-transform:uppercase;
  margin:0 auto 24px!important;
  border:none!important;
}

/* Hero title: same scale as section-title (slightly larger only on big screens) */
.hero-title{
  font-size:clamp(2rem,3.4vw,3.4rem)!important;
  line-height:1.12!important;
  font-weight:900!important;
  letter-spacing:-.03em!important;
  max-width:880px!important;
  margin:0 auto 20px!important;
  text-align:center!important;
}

/* Gradient accent line "Built for the Future" — same size, sits below as own line */
.hero-title .accent-line{
  display:block;
  margin-top:.18em;
  font-size:1em;
  line-height:1.12;
}

/* Hero description: identical sizing to section-subtitle */
.hero-desc{
  font-size:clamp(1rem,1.15vw,1.15rem)!important;
  line-height:1.7!important;
  color:#475569!important;
  max-width:720px!important;
  margin:0 auto 32px!important;
  text-align:center!important;
}

/* Tighten action button spacing */
.hero-actions{
  margin:0 auto 40px!important;
  gap:12px!important;
}

/* Hero visual sits below with breathing room */
.hero-visual,
.hero-video-visual{
  margin:24px auto 0!important;
}

/* Mobile: keep proportions matched */
@media(max-width:640px){
  .hero-title{
    font-size:clamp(1.85rem,7.5vw,2.4rem)!important;
    letter-spacing:-.02em!important;
  }
  .hero-desc{font-size:1rem!important}
  .hero-badge,
  .hero-badge .section-badge{
    font-size:.7rem!important;
    padding:6px 14px!important;
  }
}

/* ==========================================
   ALL PAGES — CENTERED LAYOUT PACK
   Applies the centered, single-column,
   section-header-style alignment to every
   inner page (About, Contact, Resources,
   Service/Product detail, Archives)
   ========================================== */

/* --- Inner page hero (.sx-page-hero) — same style as homepage hero --- */
.sx-page-hero{
  text-align:center!important;
  padding:88px 0 60px!important;
}
.sx-page-hero .container{
  text-align:center!important;
  max-width:880px!important;
  margin:0 auto!important;
}
.sx-page-hero .badge,
.sx-page-hero span.badge{
  display:inline-block!important;
  background:rgba(124,58,237,.12)!important;
  color:#6d28d9!important;
  padding:7px 18px!important;
  border-radius:999px!important;
  font-size:.78rem!important;
  font-weight:700!important;
  letter-spacing:.08em!important;
  text-transform:uppercase;
  margin:0 auto 22px!important;
  border:none!important;
}
.sx-page-hero h1{
  font-size:clamp(2rem,3.4vw,3.4rem)!important;
  line-height:1.12!important;
  font-weight:900!important;
  letter-spacing:-.03em!important;
  max-width:880px!important;
  margin:0 auto 18px!important;
  text-align:center!important;
  color:#071632!important;
}
.sx-page-hero p{
  font-size:clamp(1rem,1.15vw,1.15rem)!important;
  line-height:1.7!important;
  color:#475569!important;
  max-width:720px!important;
  margin:0 auto 24px!important;
  text-align:center!important;
}
.sx-breadcrumb{
  text-align:center!important;
  margin:0 auto 16px!important;
  font-size:.85rem!important;
}
.sx-hero-tags{
  justify-content:center!important;
  margin:24px auto 0!important;
}

/* --- Service/Product hero with visual: stack centered --- */
.sx-hero-visual-grid{
  grid-template-columns:1fr!important;
  gap:36px!important;
  text-align:center!important;
  justify-items:center!important;
}
.sx-hero-visual-grid > div{
  text-align:center!important;
  max-width:880px!important;
  margin:0 auto!important;
}
.sx-ai-illustration{
  width:100%!important;
  max-width:760px!important;
  margin:0 auto!important;
}

/* --- Two-column page layouts (Contact form, Service/Product detail) --- */
.sx-two-col{
  grid-template-columns:1fr!important;
  gap:32px!important;
  max-width:760px!important;
  margin:0 auto!important;
}

/* --- About page two-column layout --- */
.sx-about-layout{
  grid-template-columns:1fr!important;
  gap:28px!important;
  max-width:880px!important;
  margin:0 auto!important;
}

/* --- Card content centered inside --- */
.sx-main-card,
.sx-side-card,
.sx-info-row,
.sx-resource-card{
  text-align:center!important;
}
.sx-main-card h2,
.sx-main-card h3,
.sx-side-card h2,
.sx-side-card h3,
.sx-info-row b,
.sx-resource-card h3{
  text-align:center!important;
  display:block;
}
.sx-main-card p,
.sx-side-card p,
.sx-info-row p,
.sx-resource-card p{
  text-align:center!important;
  max-width:640px;
  margin-left:auto!important;
  margin-right:auto!important;
}
.sx-side-card{
  position:static!important;
}

/* --- Side card lists & buttons centered --- */
.sx-check-list{
  max-width:520px;
  margin:18px auto 0!important;
  justify-items:center;
}
.sx-check-list li{
  text-align:center!important;
}
.sx-side-card .btn,
.sx-main-card .btn,
.sx-info-row .btn,
.sx-resource-card .btn,
.sx-resource-card .learn-more-link,
.sx-side-card a{
  margin-left:auto!important;
  margin-right:auto!important;
}

/* --- Mini grid (features inside service page) --- */
.sx-mini-grid{
  max-width:640px;
  margin:24px auto 0!important;
  justify-content:center;
}

/* --- Contact form: center align fields --- */
.sx-contact-form{
  max-width:560px!important;
  margin:0 auto!important;
}
.sx-contact-form input,
.sx-contact-form select,
.sx-contact-form textarea{
  text-align:left!important; /* inputs stay left-aligned for readability */
}
.sx-contact-form .btn{
  margin-left:auto!important;
  margin-right:auto!important;
  display:inline-block!important;
}

/* --- About: stats row, mission/vision --- */
.sx-stats-row{
  max-width:1000px;
  margin:36px auto!important;
  justify-content:center;
}
.sx-mission{
  grid-template-columns:1fr!important;
  gap:24px!important;
  max-width:760px!important;
  margin:0 auto!important;
}
.sx-mission > div{
  text-align:center!important;
}
.sx-mission h2{
  text-align:center!important;
}

/* --- Resources grid: still a grid, but centered --- */
.sx-resource-grid{
  justify-content:center;
  margin-left:auto!important;
  margin-right:auto!important;
  max-width:1180px;
}

/* --- Archive page header (Services/Products listing) --- */
main .site-main .badge,
.sx-resource-card .badge,
.archive .badge{
  display:inline-block!important;
  background:rgba(124,58,237,.12)!important;
  color:#6d28d9!important;
  padding:6px 14px!important;
  border-radius:999px!important;
  font-size:.7rem!important;
  font-weight:700!important;
  letter-spacing:.08em!important;
  text-transform:uppercase;
  border:none!important;
}

/* --- Section content section padding consistency --- */
.sx-content-section{
  padding:64px 0!important;
}

/* --- Mobile tightening --- */
@media(max-width:900px){
  .sx-page-hero{padding:64px 0 44px!important}
  .sx-content-section{padding:44px 0!important}
  .sx-main-card,
  .sx-side-card,
  .sx-info-row,
  .sx-resource-card{padding:28px!important}
}
@media(max-width:640px){
  .sx-page-hero h1{font-size:clamp(1.85rem,7.5vw,2.4rem)!important}
  .sx-page-hero p{font-size:1rem!important}
  .sx-stats-row{grid-template-columns:repeat(2,1fr)!important}
  .sx-mini-grid{grid-template-columns:1fr!important}
}

/* ==========================================
   FINAL FIX — VERTICAL STACKED FEATURE ROWS
   About section (Our Journey / What We Do /
   Our Approach) now stacks icon → heading →
   description vertically, centered.
   ========================================== */

/* About features container — wider, more spacing between rows */
.about-features{
  display:flex!important;
  flex-direction:column!important;
  gap:36px!important;
  max-width:880px!important;
  margin:32px auto 36px!important;
  align-items:center!important;
}

/* Each feature row — stack vertically, center everything */
.about-feature{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  text-align:center!important;
  gap:14px!important;
  max-width:640px;
  width:100%;
}

/* Icon — centered, slightly larger for visual balance */
.about-feature .af-icon{
  width:52px!important;
  height:52px!important;
  margin:0 auto!important;
  font-size:1.4rem!important;
  border-radius:14px!important;
}

/* Content block — centered, takes full available width */
.about-feature .af-content{
  width:100%!important;
  text-align:center!important;
}
.about-feature .af-content h4{
  text-align:center!important;
  font-size:1.15rem!important;
  font-weight:800!important;
  margin:0 0 6px!important;
}
.about-feature .af-content p{
  text-align:center!important;
  font-size:.98rem!important;
  line-height:1.6!important;
  margin:0 auto!important;
  max-width:560px;
  color:#475569;
}

/* Optional: side-by-side on wide desktops as 3 columns (cleaner look) */
@media(min-width:980px){
  .about-features{
    flex-direction:row!important;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px!important;
    max-width:1100px!important;
  }
  .about-feature{
    flex:1 1 280px;
    max-width:340px;
  }
}

/* Mobile: keep single column */
@media(max-width:640px){
  .about-features{gap:28px!important}
  .about-feature .af-icon{width:46px!important;height:46px!important}
}

/* ==========================================
   CONTACT ICONS — blue SVG, vertically aligned
   ========================================== */
.contact-icon{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  margin-right:8px;
  vertical-align:middle;
  flex-shrink:0;
}
.contact-icon svg{
  width:18px;
  height:18px;
  display:block;
}

/* Footer contact items — nicely aligned rows */
.footer-contact-list p{
  display:flex!important;
  align-items:flex-start!important;
  gap:10px;
  margin-bottom:14px;
}
.footer-contact-list .contact-icon{
  margin-top:2px;
  margin-right:0;
}
.footer-contact-list strong,
.footer-contact-list a{
  flex:1;
  line-height:1.55;
}

/* Contact page side card — same treatment */
.sx-side-card p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
  text-align:left!important;
}
.sx-side-card .contact-icon{
  margin-top:3px;
  margin-right:0;
}

/* ==========================================
   CONTACT ICON COLOR LOCK
   Forces all contact icons in the footer
   and contact page to render in vivid blue.
   ========================================== */
.contact-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  margin-right:10px;
  vertical-align:middle;
  flex-shrink:0;
}
.contact-icon svg{
  width:18px;
  height:18px;
  fill:#3b82f6!important; /* vivid blue — matches reference */
  transition:transform .2s ease;
}
.contact-icon:hover svg{
  transform:scale(1.08);
}

/* Footer contact list — align icons & text nicely */
.footer-contact-list p,
.sx-side-card p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
  line-height:1.55;
}
.footer-contact-list p strong,
.footer-contact-list p a,
.sx-side-card p a{
  flex:1;
  word-break:break-word;
}

/* On contact page, contact icons get same blue treatment */
.sx-side-card .contact-icon svg{
  fill:#3b82f6!important;
}

/* ==========================================
   NEW LOGO — SHATARUPA AI LABS
   Eye + text logo. Sized for header (compact)
   and footer (slightly larger).
   ========================================== */
.site-logo-img{
  display:block;
  height:56px;
  width:auto;
  max-width:200px;
  object-fit:contain;
  transition:transform .2s ease;
}
.site-logo:hover .site-logo-img{
  transform:scale(1.03);
}

/* Footer version — a touch larger and brighter for dark background */
.site-logo-img-footer{
  height:80px;
  max-width:240px;
  /* Subtle white glow behind logo so dark navy logo strokes still pop */
  filter:drop-shadow(0 0 8px rgba(255,255,255,.15));
}

/* WordPress custom logo (if user sets one in Customizer) — same sizing */
.custom-logo{
  height:56px!important;
  width:auto!important;
  max-width:200px!important;
}
.footer-brand .custom-logo{
  height:80px!important;
  max-width:240px!important;
}

/* Header height tweak to accommodate logo */
#site-header .header-inner,
.header-inner{
  min-height:80px;
}

/* Mobile — smaller logo */
@media(max-width:900px){
  .site-logo-img{height:48px;max-width:170px}
  .site-logo-img-footer{height:64px;max-width:200px}
}
@media(max-width:640px){
  .site-logo-img{height:42px;max-width:150px}
  .site-logo-img-footer{height:60px;max-width:180px}
}

/* ==========================================
   NEW LANDSCAPE LOGO — SIZING FIX
   The new Shatarupax AI Labs logo has a wider
   (1.66:1) aspect ratio than the previous one,
   so it needs different sizing constraints.
   ========================================== */

/* Header logo — bigger, naturally wider */
.site-logo-img{
  display:block!important;
  height:60px!important;
  width:auto!important;
  max-width:240px!important;
  max-height:60px!important;
  object-fit:contain!important;
  transition:transform .2s ease;
}

/* Footer logo — substantial size for the brand column */
.site-logo-img-footer{
  height:90px!important;
  max-width:300px!important;
  max-height:90px!important;
  filter:drop-shadow(0 0 10px rgba(59,130,246,.18));
  margin-bottom:8px;
}

/* If WP custom logo is set, match the new sizing */
.custom-logo{
  height:60px!important;
  width:auto!important;
  max-width:240px!important;
  max-height:60px!important;
}
.footer-brand .custom-logo,
.footer-brand-final .custom-logo{
  height:90px!important;
  max-width:300px!important;
  max-height:90px!important;
}

/* Hide the old text-fallback elements if they ever appear next to the image */
.site-logo .logo-icon,
.site-logo .logo-text{
  display:none!important;
}

/* Header bar tall enough to comfortably hold the new logo */
#site-header .header-inner,
.header-inner{
  min-height:88px!important;
}

/* Tablet */
@media(max-width:900px){
  .site-logo-img{height:52px!important;max-width:200px!important;max-height:52px!important}
  .site-logo-img-footer{height:78px!important;max-width:240px!important;max-height:78px!important}
  #site-header .header-inner,.header-inner{min-height:76px!important}
}

/* Mobile */
@media(max-width:640px){
  .site-logo-img{height:46px!important;max-width:170px!important;max-height:46px!important}
  .site-logo-img-footer{height:68px!important;max-width:200px!important;max-height:68px!important}
  #site-header .header-inner,.header-inner{min-height:68px!important}
}

/* ==========================================
   SX BRAND MARK (inline SVG + text)
   Clean, compact, scales perfectly. Company
   name "Shatarupax" + "AI LABS" tagline.
   ========================================== */
.sx-brand{
  display:inline-flex!important;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex-shrink:0;
}
.sx-brand-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:34px;
  flex-shrink:0;
}
.sx-brand-icon svg{
  width:100%;
  height:100%;
  display:block;
}
.sx-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
  gap:3px;
}
.sx-brand-name{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  font-size:1.32rem;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-0.015em;
  line-height:1;
}
.sx-brand-sub{
  font-size:0.62rem;
  font-weight:800;
  color:#2563eb;
  letter-spacing:0.18em;
  line-height:1;
}

/* Hover */
.sx-brand:hover .sx-brand-icon svg{
  transform:scale(1.04);
  transition:transform .25s ease;
}

/* Footer version — slightly larger for brand column presence */
.sx-brand-footer .sx-brand-icon{
  width:62px;
  height:38px;
}
.sx-brand-footer .sx-brand-name{
  font-size:1.5rem;
}
.sx-brand-footer .sx-brand-sub{
  font-size:0.68rem;
}

/* Hide leftover image styles (don't apply to inline SVG mark) */
.sx-brand img.site-logo-img,
.sx-brand .site-logo-img{
  display:none!important;
}

/* Mobile sizing */
@media(max-width:900px){
  .sx-brand-icon{width:48px;height:30px}
  .sx-brand-name{font-size:1.2rem}
  .sx-brand-sub{font-size:0.58rem}
  .sx-brand-footer .sx-brand-icon{width:54px;height:34px}
  .sx-brand-footer .sx-brand-name{font-size:1.3rem}
}
@media(max-width:640px){
  .sx-brand{gap:9px}
  .sx-brand-icon{width:42px;height:26px}
  .sx-brand-name{font-size:1.08rem}
  .sx-brand-sub{font-size:0.55rem;letter-spacing:0.15em}
}

/* ==========================================
   FINAL LOGO IMAGE SIZING — FULL SHATARUPAX
   AI LABS LOGO (eye + name + tagline)
   This is the user's actual brand asset.
   Sized large enough for text to be readable.
   ========================================== */

/* Remove the earlier SVG-mark hide rule (no longer needed) */
.sx-brand img.site-logo-img,
.sx-brand .site-logo-img{
  display:block!important;
}

/* Header logo: tall enough that the wordmark inside the image is readable */
.site-logo-img{
  display:block!important;
  height:72px!important;
  width:auto!important;
  max-width:280px!important;
  max-height:72px!important;
  object-fit:contain!important;
  transition:transform .25s ease;
}
.site-logo:hover .site-logo-img{
  transform:scale(1.03);
}

/* Footer logo: bigger so the tagline is visible against the lavender bg */
.site-logo-img-footer{
  height:110px!important;
  max-width:320px!important;
  max-height:110px!important;
  filter:none!important;
  margin-bottom:10px;
}

/* WP custom logo (Customizer upload) follows the same sizing */
.custom-logo{
  height:72px!important;
  width:auto!important;
  max-width:280px!important;
  max-height:72px!important;
  object-fit:contain!important;
}
.footer-brand .custom-logo,
.footer-brand-final .custom-logo{
  height:110px!important;
  max-width:320px!important;
  max-height:110px!important;
}

/* Header bar tall enough to comfortably hold the larger logo */
#site-header .header-inner,
.header-inner{
  min-height:96px!important;
}

/* Logo container alignment */
.site-logo{
  display:inline-flex!important;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

/* Tablet */
@media(max-width:1100px){
  .site-logo-img{height:60px!important;max-width:220px!important;max-height:60px!important}
  .site-logo-img-footer{height:90px!important;max-width:260px!important;max-height:90px!important}
  #site-header .header-inner,.header-inner{min-height:84px!important}
}

/* Mobile */
@media(max-width:640px){
  .site-logo-img{height:48px!important;max-width:170px!important;max-height:48px!important}
  .site-logo-img-footer{height:74px!important;max-width:210px!important;max-height:74px!important}
  #site-header .header-inner,.header-inner{min-height:70px!important}
}

/* ==========================================
   FOOTER LOGO — WHITE VERSION ON DARK BG
   Uses the white logo asset so the brand
   is fully visible against the dark navy
   footer background.
   ========================================== */
.site-logo-img-footer{
  filter:drop-shadow(0 0 12px rgba(96,165,250,0.25))!important;
}
