:root {
    --bg-dark: #050b14;
    --bg-darker: #02050a;
    --primary-color: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.6);
    --secondary-color: #3a7bd5;
    --text-main: #f0f4f8;
    --text-muted: #a0aec0;
    --glass-bg: rgba(16, 24, 43, 0.6);
    --glass-border: rgba(0, 210, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Background Effects */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,210,255,0.15) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58,123,213,0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-glow {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

@media (min-width: 769px) {
    .nobr-desktop {
        white-space: nowrap;
    }
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem !important; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.pt-6 { padding-top: 3rem !important; }
.pb-6 { padding-bottom: 3rem !important; }
.pt-8 { padding-top: 4rem !important; }
.pb-8 { padding-bottom: 4rem !important; }
.pt-10 { padding-top: 5rem !important; }
.pb-10 { padding-bottom: 5rem !important; }
.pt-150 { padding-top: 150px; }
.text-center { text-align: center; }
.relative { position: relative; }

/* Grid System */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.align-center { align-items: center; }
.gap-4 { gap: 32px; }

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 40px 0 rgba(0, 210, 255, 0.1);
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: none;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 15px var(--primary-glow) inset;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(16, 24, 43, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    background: rgba(16, 24, 43, 0.6);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(2, 5, 10, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(2, 5, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

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

.logo-img-footer {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
    opacity: 0.85;
}

.nav-links a:not(.btn):hover, 
.nav-links a.active {
    opacity: 1;
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-glow);
}


/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    transform-origin: top center;
    width: 260px;
    background: rgba(10, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0, 210, 255, 0.05);
    z-index: 1000;
}

/* Invisible bridge hover area */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateX(-50%) translateY(5px) scale(1);
}

.dropdown-menu li {
    margin-bottom: 4px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    transition: var(--transition);
    background: transparent;
    border: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 210, 255, 0.08) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px);
    padding-left: 14px !important;
}

.nav-links a.active {
    color: var(--primary-color) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}


/* Sections */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    text-align: center;
}

.bg-hero {
    background-image: url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bg-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 0.8) 120px, transparent 100%),
                linear-gradient(to right, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 0.7) 50%, rgba(2, 5, 10, 0.2) 100%);
    z-index: -1;
}

.breadcrumb-banner {
    background-image: url('assets/breadcrumb_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 140px 0 70px 0;
    border-bottom: 1px solid rgba(0, 210, 255, 0.2);
    margin-bottom: 40px;
}

.breadcrumb-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 5, 10, 0.95) 0%, rgba(2, 5, 10, 0.75) 60%, rgba(2, 5, 10, 0.9) 100%);
    z-index: -1;
}

.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--service-glow, rgba(0, 210, 255, 0.1)) 0%, transparent 100%);
    z-index: -1;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .hologram-visual {
    width: 100%;
    max-width: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--service-color, var(--primary-color));
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Overview Section Visual */
.visual-card {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hologram-visual {
    width: 100%;
    height: 100%;
    background-image: url('assets/ai_brain.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: floating-img 6s ease-in-out infinite;
}

@keyframes floating-img {
    0% { transform: translateY(0); filter: drop-shadow(0 0 10px rgba(0,210,255,0.4)); }
    50% { transform: translateY(-15px); filter: drop-shadow(0 0 25px rgba(0,210,255,0.8)); }
    100% { transform: translateY(0); filter: drop-shadow(0 0 10px rgba(0,210,255,0.4)); }
}

/* Icons */
.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Industries */
.industry-card {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

a.industry-card {
    color: inherit;
    text-decoration: none;
}

.industry-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--industry-color, var(--primary-color));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.industry-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition);
}

/* Hover effects */
.industry-card:hover {
    border-color: var(--industry-color, var(--primary-color)) !important;
    box-shadow: 0 10px 30px 0 var(--industry-glow, rgba(0, 210, 255, 0.15)) !important;
    transform: translateY(-5px);
}

.industry-card:hover .icon-wrap {
    background: var(--industry-glow, rgba(0, 210, 255, 0.1));
    border-color: var(--industry-color, var(--primary-color));
    box-shadow: 0 0 20px var(--industry-glow, rgba(0, 210, 255, 0.3));
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover h4 {
    color: var(--industry-color, var(--primary-color));
    text-shadow: 0 0 8px var(--industry-glow, rgba(0, 210, 255, 0.3));
}

/* Innovation & Technology */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tech-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.tech-item:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,210,255,0.2);
}

.tech-icon {
    color: var(--primary-color);
}

/* Why Us Features */
.feature-box {
    padding: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,210,255,0.2), rgba(58,123,213,0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.feature-box h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-box p {
    color: var(--text-muted);
}

/* Global Presence */
.global-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.global-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.global-list li i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-container {
    background-image: url('assets/cta_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 210, 255, 0.3);
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(16,24,43,0.9) 0%, rgba(2,5,10,0.95) 100%);
    z-index: -1;
}

.cta-headline {
    font-size: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modern Footer */
.footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, rgba(171, 157, 242, 0) 0%, rgba(171, 157, 242, 0.4) 50%, rgba(171, 157, 242, 0) 100%) 1;
    padding: 100px 0 30px 0;
    background: radial-gradient(circle at 50% 0%, rgba(171, 157, 242, 0.06) 0%, rgba(2, 5, 10, 0.99) 60%, #030610 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(171, 157, 242, 0.03) 0%, rgba(0,0,0,0) 70%);
    transform: translate(-50%, 0);
    z-index: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

/* Footer Newsletter */
.footer-newsletter {
    background: radial-gradient(circle at 0% 0%, rgba(171, 157, 242, 0.08) 0%, rgba(16, 24, 43, 0.4) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(171, 157, 242, 0.2);
    border-radius: 24px;
    padding: 40px 50px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(171, 157, 242, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-action {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.newsletter-form-premium {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(2, 5, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    transition: var(--transition);
    width: 100%;
}

.newsletter-input-group:focus-within {
    border-color: #ab9df2;
    box-shadow: 0 0 20px rgba(171, 157, 242, 0.3);
}

.newsletter-input-group i {
    color: var(--text-muted);
    margin-left: 18px;
    margin-right: 4px;
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.8);
    transform: translateY(-1px);
}

.newsletter-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-left: 16px;
}

.newsletter-trust span {
    opacity: 0.85;
}


.brand-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.zentronix-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zentronix-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.zentronix-socials a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zentronix-socials a:hover::before {
    opacity: 1;
}

.zentronix-socials a:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.08);
}

/* Individual Brand Glows */
.zentronix-socials a.social-twitter:hover,
.zentronix-socials a.social-x:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.zentronix-socials a.social-linkedin:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: #0077b5;
    color: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.zentronix-socials a.social-github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.zentronix-socials a.social-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #e1306c;
    color: #e1306c;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
}

.zentronix-socials a.social-youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: #ff0000;
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.zentronix-socials a.social-discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865f2;
    color: #5865f2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.zentronix-socials a.social-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877f2;
    color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.zentronix-socials a i,
.zentronix-socials a svg {
    width: 16px;
    height: 16px;
    color: currentColor;
    z-index: 2;
    transition: transform 0.3s ease;
}

.zentronix-socials a:hover i,
.zentronix-socials a:hover svg {
    transform: rotate(8deg);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #ab9df2;
    box-shadow: 0 0 8px rgba(171, 157, 242, 0.8);
    border-radius: 2px;
}

/* Iframe Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 5, 10, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    height: 90%;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

.footer-col ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ab9df2;
    box-shadow: 0 0 8px rgba(171, 157, 242, 0.8);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 0px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ab9df2;
    text-shadow: 0 0 10px rgba(171, 157, 242, 0.5);
    transform: translateX(4px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
    margin-right: 8px;
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(16, 24, 43, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px 0 0 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-headline { font-size: 3rem; }
    .cta-headline { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 5, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .has-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 8px;
        margin-top: 8px;
    }

    .has-dropdown .dropdown-menu.active {
        display: block;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 30px;
        gap: 30px;
    }

    .newsletter-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-content p {
        max-width: 100%;
    }

    .newsletter-action {
        max-width: 100%;
    }

    .newsletter-input-group {
        border-radius: 50px;
    }

    @media (max-width: 480px) {
        .newsletter-input-group {
            border-radius: 16px;
            flex-direction: column;
            align-items: stretch;
            padding: 12px;
            gap: 12px;
        }
        .newsletter-input-group i {
            display: none;
        }
        .newsletter-input-group input {
            padding: 8px 6px;
            text-align: center;
        }
        .newsletter-input-group button {
            border-radius: 8px;
            padding: 12px;
            width: 100%;
        }
        .newsletter-trust {
            justify-content: center;
            margin-left: 0;
        }
    }

    .hero-headline { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    
    .section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

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

@media (min-width: 769px) and (max-width: 1150px) {
    .nav-links {
        gap: 16px;
    }
    .nav-links a:not(.btn) {
        font-size: 0.9rem;
    }
    .btn-sm {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Homepage Hero Slider & Vision/Mission Extensions */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .hero-slider-container {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 250px;
    }
}

/* Vision & Mission attractive design styling */
.vision-card, .mission-card {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.vision-card {
    border-left: 4px solid var(--primary-color) !important;
}

.mission-card {
    border-left: 4px solid #ab9df2 !important;
}

.vision-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 12px 40px rgba(0, 210, 255, 0.25) !important;
}

.mission-card:hover {
    border-color: #ab9df2 !important;
    box-shadow: 0 12px 40px rgba(171, 157, 242, 0.25) !important;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.vm-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.vision-card .vm-list li i {
    color: var(--primary-color);
}

.mission-card .vm-list li i {
    color: #ab9df2;
}

.vm-list li strong {
    color: var(--text-main);
}

/* Responsive adjustments for spacing utilities and visual cards */
@media (max-width: 768px) {
    .pt-6 { padding-top: 2rem !important; }
    .pb-6 { padding-bottom: 2rem !important; }
    .pt-8 { padding-top: 2.5rem !important; }
    .pb-8 { padding-bottom: 2.5rem !important; }
    .pt-10 { padding-top: 3rem !important; }
    .pb-10 { padding-bottom: 3rem !important; }
    
    .visual-card {
        height: 280px !important;
    }
}

/* Homepage Blog Slider Showcase */
.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-slider-container {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.blog-slide-card {
    flex: 0 0 calc(33.333% - 16px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.blog-slide-card:hover {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 40px 0 rgba(0, 210, 255, 0.1);
    transform: translateY(-5px);
}

.blog-thumbnail {
    transition: var(--transition);
}

.blog-slide-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .blog-slide-card {
        flex: 0 0 calc(50% - 12px) !important;
    }
}

@media (max-width: 768px) {
    .blog-slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-slider-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .blog-slider-container::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.02);
        border-radius: 3px;
    }
    
    .blog-slider-container::-webkit-scrollbar-thumb {
        background: rgba(0, 210, 255, 0.2);
        border-radius: 3px;
    }
    
    .blog-slider-container::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 210, 255, 0.4);
    }
    
    .blog-slide-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   HOMEPAGE EXPANDED RESPONSIVE STYLING (Replacing Inline Overrides)
   ========================================================================== */

/* Hero Layout */
.home-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Cybergrid background effect for hero */
.home-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 210, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-hero-content {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.home-hero-badge {
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% { border-color: rgba(0, 210, 255, 0.3); box-shadow: 0 0 10px rgba(0, 210, 255, 0.15); }
    50% { border-color: rgba(0, 210, 255, 0.6); box-shadow: 0 0 20px rgba(0, 210, 255, 0.3); }
}

.home-hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important;
    font-weight: 800;
}

.home-hero-subheadline {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
    margin-bottom: 36px !important;
    color: var(--text-muted);
    line-height: 1.7;
}

.home-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Premium Visual Elements */
.home-hero-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 210, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.25);
    transition: var(--transition);
}

.home-hero-slider-container:hover {
    border-color: rgba(0, 210, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 210, 255, 0.25);
}

/* Dot Navigation Style */
.home-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.home-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.home-hero-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-hero-content {
        text-align: center !important;
    }
    
    .home-hero-headline {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        text-align: center !important;
    }
    
    .home-hero-subheadline {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    .home-hero-cta {
        justify-content: center !important;
    }
    
    .home-hero-slider-container {
        height: 380px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .home-hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .home-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .home-hero-cta .btn {
        width: 100%;
    }
    
    .home-hero-slider-container {
        height: 260px;
    }
}

/* Slider dot styles */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Careers Page Styles */
.job-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: var(--job-color);
    box-shadow: 0 15px 40px var(--job-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.job-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--job-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.job-card:hover::after {
    opacity: 0.3;
}

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

.job-skills-graphic {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: background 0.3s ease;
}

.job-card:hover .job-skills-graphic {
    background: rgba(0, 0, 0, 0.35);
}

.skill-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
    position: relative;
}

.skill-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
}

.job-card:hover .skill-progress-fill {
    filter: brightness(1.2);
}

.job-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Form Modal Styles */
.modal-content-form {
    width: 95% !important;
    max-width: 550px !important;
    height: auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    border-radius: 20px !important;
    background: rgba(10, 15, 30, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid var(--job-theme-color, rgba(255, 255, 255, 0.1)) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
    padding: 40px !important;
}

.modal-content-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-content-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-content-form .form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.modal-content-form .form-control:focus {
    border-color: var(--job-theme-color, var(--primary-color));
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.modal-content-form input[type="file"]::file-selector-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 12px;
    transition: var(--transition);
}

.modal-content-form input[type="file"]::file-selector-button:hover {
    background: var(--job-theme-color, var(--primary-color));
    color: white;
}


