/*
Theme Name: Navoris Tech
Theme URI: https://navoristech.com/
Author: Antigravity AI
Author URI: https://navoristech.com/
Description: A premium, modern, and dark-mode WordPress theme for IT equipment reselling and data center solutions. Inspired by global industry standards.
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: navoris-tech
*/

/* 
 * NOVARYS TECH DESIGN SYSTEM
 * -------------------------
 */

:root {
    /* Colors */
    --navy-darkest: #020c1b;
    --navy-darker: #0a192f;
    --navy-dark: #112240;
    --navy-light: #233554;
    --navy-lighter: #ccd6f6;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --lightest-slate: #ccd6f6;
    --white: #e6f1ff;
    --cyan: #64ffda;
    --cyan-tint: rgba(100, 255, 218, 0.1);
    
    /* Gradients */
    --surface-gradient: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy-dark) 100%);
    --card-gradient: linear-gradient(135deg, rgba(35, 53, 84, 0.4) 0%, rgba(17, 34, 64, 0.4) 100%);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* Effects */
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --glass-blur: blur(10px);
    --shadow-sm: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

/* Base Normalize & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--navy-darker);
    color: var(--slate);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--lightest-slate);
    font-weight: 600;
    margin-bottom: var(--space-m);
    line-height: 1.1;
}

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

a:hover {
    color: var(--cyan);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-l);
}

/* Glassmorphism Utilities */
.glass {
    background: var(--card-gradient);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
}

.glass-header {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.05);
}

/* Global Navigation */
.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-logo {
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: var(--space-l);
}

.nav-link {
    color: var(--lightest-slate);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--cyan);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 48, 143, 0.05) 0%, rgba(2, 12, 27, 0) 90.2%);
}

.hero-content {
    max-width: 700px;
}

.hero-label {
    color: var(--cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: var(--space-s);
    display: block;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: var(--space-m);
}

.hero-subtitle {
    font-size: clamp(30px, 4vw, 50px);
    color: var(--slate);
    margin-bottom: var(--space-l);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 1.75rem;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--cyan-tint);
}

/* Section Common */
.section {
    padding: var(--space-xxl) 0;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-label {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: var(--space-s);
    display: block;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-l);
}

.service-card {
    padding: var(--space-l);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
}

.service-icon {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: var(--space-m);
}

/* Service & Solutions Grid (8 Categories) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-l);
}

.solution-card {
    position: relative;
    padding: var(--space-l);
    border: 1px solid rgba(100, 255, 218, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}

/* Deep Navy Overlay for Text Legibility over localized images */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 12, 27, 0.3) 0%, rgba(10, 25, 47, 0.95) 100%);
    z-index: -1;
    transition: var(--transition);
}

.solution-card:hover::before {
    background: linear-gradient(to bottom, rgba(2, 12, 27, 0.1) 0%, rgba(10, 25, 47, 0.98) 100%);
}

.solution-card .service-icon {
    margin-bottom: var(--space-m);
    color: var(--cyan);
}

.solution-card .service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.solution-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--slate);
}

.solution-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Partner Logo Marquee (Slider) */
.marquee-container {
    overflow: hidden;
    padding: var(--space-xl) 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(100, 255, 218, 0.05);
    border-bottom: 1px solid rgba(100, 255, 218, 0.05);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-logo {
    display: inline-block;
    padding: 0 4rem;
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Approach Timeline */
.approach-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: var(--space-xl) 0;
}

.approach-steps::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(100, 255, 218, 0.1);
    z-index: -1;
}

.step-item {
    text-align: center;
    background: var(--navy-darker);
    padding: 0 1rem;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-m);
}

.industry-card {
    padding: var(--space-m);
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .section {
        padding: var(--space-xl) 0;
    }
    .approach-steps {
        flex-direction: column;
        gap: var(--space-l);
    }
    .approach-steps::after {
        display: none;
    }
}
