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

:root {
    color-scheme: dark;
    --bg-color: #0b0c10;
    --bg-primary: #0b0c10;
    --bg-secondary: #12141a;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-light: #6b7280;
    --text-white: #ffffff;

    --primary-color: #10b981;
    --secondary-color: #3b82f6;
    --accent-color: #f43f5e;
    
    --gradient-primary: linear-gradient(90deg, #10b981, #3b82f6);
    --gradient-secondary: linear-gradient(90deg, #fcd34d, #f43f5e);
    --glow-rainbow: linear-gradient(90deg, #fcd34d, #10b981, #3b82f6, #c084fc, #f43f5e);

    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --card-padding: 2.5rem;
    
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 3;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    position: relative; /* ensure marquee content appears above particles */
    z-index: 2;
}

/* Particles layer for marquee */
.marquee-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Preloader */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999; transition: opacity 0.5s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.loader { display: flex; gap: 0.25rem; }
.loader-square {
    width: 0.75rem; height: 2.5rem;
    background: var(--glow-rainbow);
    border-radius: 0.25rem;
    animation: loader 1.2s infinite ease-in-out;
}
.loader-square:nth-child(1) { animation-delay: 0s; }
.loader-square:nth-child(2) { animation-delay: 0.1s; }
.loader-square:nth-child(3) { animation-delay: 0.2s; }
.loader-square:nth-child(4) { animation-delay: 0.3s; }
.loader-square:nth-child(5) { animation-delay: 0.4s; }
@keyframes loader {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; }
.brand-name { font-weight: 700; font-size: 1.2rem; color: var(--text-primary); letter-spacing: 1px; }

.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
    color: var(--text-secondary);
    font-weight: 500; font-size: 0.95rem;
    position: relative; transition: color var(--transition-normal);
}
.nav-link:hover, .nav-link.active { color: var(--text-white); }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--gradient-primary); transition: width var(--transition-normal);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; cursor: pointer; gap: 0.3rem; }
.nav-toggle span { width: 1.5rem; height: 2px; background: var(--text-primary); transition: all 0.3s; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 2rem; border: none; border-radius: 30px;
    font-weight: 700; text-decoration: none; cursor: pointer;
    transition: all 0.3s; position: relative; z-index: 1; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn i { margin-right: 0.5rem; }

.btn-primary {
    background: #fff; color: #000;
}
.btn-primary::before {
    content: ''; position: absolute; top: -3px; right: -3px; bottom: -3px; left: -3px;
    background: linear-gradient(90deg, #10b981, #fff, #3b82f6);
    border-radius: 34px; z-index: -1; filter: blur(12px); opacity: 0.6; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; filter: blur(16px); }

.btn-outline, .btn-secondary {
    background: rgba(255, 255, 255, 0.05); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-outline:hover, .btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }

.btn-success { background: #10b981; color: #fff; border-radius: 30px; }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 100px;
    background: radial-gradient(circle at 50% 0%, #1a1a2e 0%, var(--bg-color) 70%); text-align: center;
}
.particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 1; }
.particle {
    position: absolute; width: 2px; height: 2px; background: rgba(255, 255, 255, 0.7); border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-block; padding: 6px 16px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; font-size: 0.85rem; font-weight: 500; margin-bottom: 2.5rem; color: #10b981;
}
.hero-title { font-size: 5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.05; letter-spacing: -2px; }
.hero-description { font-size: 1.25rem; margin-bottom: 3rem; color: var(--text-secondary); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 4rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; letter-spacing: -1px; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;}
.scroll-btn {
    display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; color: var(--text-white);
    animation: bounce 2s infinite; background: rgba(255,255,255,0.05);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections Base */
section { padding: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
    display: inline-block; padding: 4px 12px; background: rgba(255, 255, 255, 0.05);
    color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px;
}
.section-title { font-size: 3rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.section-description { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Dealers Marquee */
.dealers-section {
    padding: 0.1rem 0;
    background: var(--bg-primary);
}

.dealers-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

/* Narrow the visible marquee strip without changing logo sizes (logos will be vertically centered and clipped if taller) */
.marquee {
    height: 140px;
    display: flex;
    align-items: center;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

/* ensure logos are vertically centered inside the fixed-height marquee */
.marquee-content, .marquee-content .dealer-item { align-items: center; }

.dealer-item {
    width: 300px;
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
}

.dealer-logo {
    width: 180px;
    height: 110px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1) opacity(0.25); 
    transition: all 0.3s ease;
}

/* Individual dealer-item width overrides (controls left/right spacing, NOT logo size) */
.logo-hp      { width: 180px; }   /* reduced gap around HP logo */
.logo-samsung { width: 420px; }   /* slightly reduced gap around Samsung */
.logo-xerox   { width: 300px; }   /* slightly reduced gap around Xerox */
.logo-intel   { width: 280px; }   /* slightly increased gap around Intel */
.logo-lenevo  { width: 470px; }
/* Left-side only spacing overrides */
.logo-xerox .dealer-logo  { margin-left: 40px; }   /* reduce left offset for Xerox */
.logo-intel .dealer-logo  { margin-left: -20px; }  /* soften Intel pull-left */

/* Individual logo size overrides */
.logo-lenevo .dealer-logo  { width: 470px; height: 210px; }
.logo-hp .dealer-logo      { width: 110px; height: 110px; }
.logo-dell .dealer-logo    { width: 130px; height: 110px; }
.logo-asus .dealer-logo    { width: 290px; height: 190px; }
.logo-acer .dealer-logo    { width: 290px; height: 190px; }
.logo-canon .dealer-logo   { width: 170px; height: 110px; }
.logo-brother .dealer-logo { width: 400px; height: 230px; }
.logo-epson .dealer-logo   { width: 300px; height: 170px; }
.logo-samsung .dealer-logo { width: 400px; height: 230px; }
.logo-kyocera .dealer-logo { width: 190px; height: 105px; } /* increased Kyocera size */
.logo-kayocera .dealer-logo{ width: 200px; height: 120px; }
.logo-xerox .dealer-logo   { width: 160px; height: 110px; }
.logo-intel .dealer-logo   { width: 140px; height: 110px; }
.logo-amd .dealer-logo     { width: 380px; height: 210px; }

.dealer-name {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);

    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: all 0.3s ease;
    text-align: center;
}

.dealer-item:hover {
    transform: scale(1.08);
}

.dealer-item:hover .dealer-logo {
    filter: brightness(0) invert(1) opacity(1);
}

.dealer-item:hover .dealer-name {
    color: #ffffff;
}

@keyframes marquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}
/* remove the thin divider above the dealers section (was hero's border-bottom) */
.hero { border-bottom: none; }

/* shiny / twinkling particles for marquee */
.marquee-particles .particle {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 6px rgba(255,255,255,0.12);
    opacity: 0.75;
    transform: translateY(0);
    animation: floatMarquee 8s ease-in-out infinite, twinkle 2.5s linear infinite;
}

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

@keyframes twinkle {
    0% { opacity: 0.5; box-shadow: 0 0 4px rgba(255,255,255,0.05); }
    50% { opacity: 1; box-shadow: 0 0 14px rgba(255,255,255,0.5); }
    100% { opacity: 0.5; box-shadow: 0 0 4px rgba(255,255,255,0.05); }
}
/* About Carousel */
.about { background: var(--bg-secondary); }
.carousel-container { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; padding: 2rem 0; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; padding: 0 1rem; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.about-text strong { color: #fff; }
.highlight-quote {
    background: rgba(255,255,255,0.05); padding: 1.5rem; border-left: 4px solid #10b981;
    font-style: italic; font-weight: 500; margin-top: 2rem; border-radius: 0 8px 8px 0;
}
.image-wrapper { border-radius: var(--border-radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.1); }
.image-wrapper img { width: 100%; display: block; transition: transform var(--transition-slow); }
.image-wrapper:hover img { transform: scale(1.05); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card {
    position: relative;
    /* glass base (no dim overlay) */
    background: rgba(255,255,255,0.02);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.35s ease, border-color 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

/* decorative glow that appears on hover (uses brand green) */
.feature-card::after {
    /* outer glow element (appears on hover) */
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(16,185,129,0);
    transition: box-shadow 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

/* inner gradient (bottom-origin) - hidden until hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    /* bottom-centered radial gradient (originates from below) */
    background: radial-gradient(circle at 50% 100%, rgba(16,185,129,0.5) 0%, rgba(16,185,129,0.22) 20%, rgba(16,185,129,0.12) 40%, transparent 65%);
    filter: blur(10px);
    opacity: 0; /* hidden by default; will appear on hover */
    transition: opacity 0.22s ease, filter 0.22s ease;
    mix-blend-mode: screen;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16,185,129,0.45);
    /* stronger outer glow + inner (inset) glow on hover */
    box-shadow: 0 16px 56px rgba(16,185,129,0.22), inset 0 -30px 60px rgba(16,185,129,0.14);
}

.feature-card:hover::after {
    opacity: 1;
    box-shadow: 0 18px 56px rgba(16,185,129,0.26), 0 0 36px rgba(16,185,129,0.18);
}

.feature-card:hover::before {
    opacity: 0.95;
    filter: blur(6px);
}
.feature-icon { width: 4rem; height: 4rem; background: rgba(16, 185, 129, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #10b981; font-size: 1.5rem; }
.feature-card h3 { color: #fff; font-size: 1.1rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.carousel-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.carousel-btn:hover { background: #fff; color: #000; }

/* Products Grid */
.products { background: var(--bg-primary); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.product-card {
    background: var(--bg-card); border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s; position: relative;
    backdrop-filter: blur(10px);
}
.product-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.product-card:nth-child(1):hover { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.5); }
.product-card:nth-child(2):hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.5); }
.product-card:nth-child(3):hover { box-shadow: 0 20px 40px rgba(244, 63, 94, 0.15); border-color: rgba(244, 63, 94, 0.5); }
.product-card:nth-child(4):hover { box-shadow: 0 20px 40px rgba(252, 211, 77, 0.15); border-color: rgba(252, 211, 77, 0.5); }
.product-card:nth-child(5):hover { box-shadow: 0 20px 40px rgba(192, 132, 252, 0.15); border-color: rgba(192, 132, 252, 0.5); }
.product-card:nth-child(6):hover { box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.5); }

.product-image { height: 220px; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.8); }
.product-card:hover .product-image img { transform: scale(1.05); filter: brightness(1); }

.product-badge { position: absolute; top: 1rem; right: 1rem; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; color: #fff; z-index: 1; text-transform: uppercase; letter-spacing: 1px; }
.product-badge.new { background: #10b981; color: #000; }
.product-badge.bestseller { background: #3b82f6; }
.product-badge.popular { background: #f43f5e; }
.product-badge.value { background: #f59e0b; color: #000; }
.product-badge.enterprise { background: #8b5cf6; }
.product-badge.security { background: #06b6d4; color: #000; }

.product-content { padding: 2rem; }
.product-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.product-rating i { color: #f59e0b; font-size: 0.85rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.product-price { font-weight: 700; color: #fff; font-size: 1.1rem; }

/* Services Grid */
.services { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.service-card {
    background: var(--bg-card); padding: 3rem 2rem; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s; position: relative;
    text-align: center; backdrop-filter: blur(10px);
}
.service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.service-card:hover { transform: translateY(-10px); }
.service-card:nth-child(odd):hover { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.4); }
.service-card:nth-child(even):hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.4); }

/* add bottom-origin hover gradient for services (hidden by default) */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle at 50% 100%, rgba(16,185,129,0.0) 0%, rgba(16,185,129,0.18) 12%, rgba(16,185,129,0.06) 30%, transparent 65%);
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.22s ease, filter 0.22s ease;
    mix-blend-mode: screen;
}
.service-card:nth-child(odd):hover::after {
    opacity: 0.95;
    filter: blur(8px);
}
.service-card:nth-child(even):hover::after {
    background: radial-gradient(circle at 50% 100%, rgba(59,130,246,0.0) 0%, rgba(59,130,246,0.18) 12%, rgba(59,130,246,0.06) 30%, transparent 65%);
    opacity: 0.95;
    filter: blur(8px);
}

.service-icon {
    width: 5rem; height: 5rem; background: rgba(255,255,255,0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem;
    font-size: 2rem; color: #fff; transition: all 0.4s; border: 1px solid rgba(255,255,255,0.1);
}
.service-card:hover .service-icon { background: var(--gradient-primary); border-color: transparent; transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.service-features { list-style: none; margin: 2rem 0; text-align: left; }
.service-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #10b981; font-size: 0.8rem; }

/* Testimonials */
.testimonials { background: var(--bg-primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: var(--bg-card); padding: 3rem 2.5rem; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05); position: relative; backdrop-filter: blur(10px);
}
.testimonial-card::after {
    content: '\f10e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 2rem; right: 2.5rem; font-size: 3rem; color: rgba(255,255,255,0.05);
}
.testimonial-rating { color: #f59e0b; margin-bottom: 1.5rem; font-size: 0.9rem; }
.testimonial-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem; font-style: italic; }
.author-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.author-info span { font-size: 0.85rem; color: #10b981; text-transform: uppercase; letter-spacing: 1px; }

/* Contact Section */
.contact { background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.15) 0%, var(--bg-primary) 60%); }
.contact-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: stretch; }
.contact-card, .contact-form-card {
    background: var(--bg-card); padding: 3rem; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
}
.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-icon { width: 3.5rem; height: 3.5rem; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #3b82f6; font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1); }
.contact-details h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-details p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 1rem; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #fff; font-family: inherit; transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }
.form-group select option { background: #12141a; }

/* Footer */
.footer { background: #000; padding: 5rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.footer-brand img { height: 40px; }
.footer-description { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.6; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.social-link:hover { background: #fff; color: #000; }
.footer-section h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--text-secondary); transition: all 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: #10b981; padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; }
.footer-contact-item i { color: #3b82f6; margin-top: 5px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 3.5rem; height: 3.5rem; background: #fff; color: #000; border: none; border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(255,255,255,0.2); }

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.8rem; letter-spacing: -1.5px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .section-title { font-size: 2.6rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .contact-content { gap: 2rem; }
    .about-content { gap: 2.5rem; }

    /* Marquee: slightly smaller logos on tablet */
    .marquee { height: 110px; }
    .logo-lenevo .dealer-logo { width: 340px; height: 160px; }
    .logo-brother .dealer-logo { width: 300px; height: 175px; }
    .logo-samsung .dealer-logo { width: 310px; height: 175px; }
    .logo-asus .dealer-logo { width: 220px; height: 145px; }
    .logo-acer .dealer-logo { width: 220px; height: 145px; }
    .logo-amd .dealer-logo { width: 290px; height: 160px; }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navbar */
    .nav-menu {
        position: fixed; top: 76px; left: -100%; width: 100vw; max-width: 100%; height: calc(100vh - 76px);
        background: rgba(11, 12, 16, 0.98); backdrop-filter: blur(10px); flex-direction: column;
        padding: 3rem 2rem; transition: left 0.3s; overflow-y: auto; overflow-x: hidden; gap: 1.5rem;
        box-sizing: border-box;
    }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .brand-name { font-size: 1rem; letter-spacing: 0.5px; }

    /* Hero */
    .hero { padding-top: 80px; }
    .hero-title { font-size: 2.8rem; letter-spacing: -1px; }
    .hero-description { font-size: 1.05rem; margin-bottom: 2rem; }
    .hero-buttons { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 100%; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }

    /* Sections */
    .section-title { font-size: 2rem; }
    .section-description { font-size: 1.05rem; }
    section { padding: 20px; }

    /* About */
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .carousel-container { padding: 1rem 0; }

    /* Products */
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
    .footer-description { max-width: 100%; }

    /* Marquee */
    .marquee { height: 90px; }
    .dealer-item { width: 200px; }
    .dealer-logo { width: 110px; height: 65px; }
    .logo-lenevo { width: 320px; }
    .logo-hp { width: 140px; }
    .logo-samsung { width: 300px; }
    .logo-xerox { width: 220px; }
    .logo-intel { width: 200px; }
    .logo-lenevo .dealer-logo { width: 220px; height: 100px; }
    .logo-hp .dealer-logo { width: 75px; height: 65px; }
    .logo-dell .dealer-logo { width: 95px; height: 65px; }
    .logo-asus .dealer-logo { width: 200px; height: 130px; }
    .logo-acer .dealer-logo { width: 200px; height: 130px; }
    .logo-canon .dealer-logo { width: 120px; height: 65px; }
    .logo-brother .dealer-logo { width: 260px; height: 150px; }
    .logo-epson .dealer-logo { width: 210px; height: 120px; }
    .logo-samsung .dealer-logo { width: 270px; height: 150px; }
    .logo-kayocera .dealer-logo { width: 140px; height: 80px; }
    .logo-xerox .dealer-logo { width: 110px; height: 65px; }
    .logo-intel .dealer-logo { width: 100px; height: 65px; }
    .logo-amd .dealer-logo { width: 260px; height: 140px; }
    .logo-xerox .dealer-logo { margin-left: 20px; }
    .logo-intel .dealer-logo { margin-left: -10px; }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    /* Navbar */
    .brand-name { font-size: 0.85rem; letter-spacing: 0; }

    /* Hero */
    .hero { padding-top: 76px; }
    .hero-title { font-size: 2rem; letter-spacing: -0.5px; line-height: 1.1; }
    .hero-badge { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 1.5rem; }
    .hero-description { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
    .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.72rem; letter-spacing: 0.5px; }

    /* Sections */
    .section-title { font-size: 1.75rem; letter-spacing: -0.5px; }
    .section-description { font-size: 0.95rem; }
    .section-header { margin-bottom: 2rem; }
    section { padding: 12px; }

    /* About */
    .about-text p { font-size: 0.95rem; }
    .highlight-quote { padding: 1rem; font-size: 0.9rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-icon { width: 3rem; height: 3rem; font-size: 1.2rem; margin-bottom: 1rem; }
    .feature-card h3 { font-size: 0.95rem; }
    .feature-card p { font-size: 0.82rem; }

    /* Products */
    .products-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .product-image { height: 180px; }
    .product-content { padding: 1.5rem; }
    .product-content h3 { font-size: 1.1rem; }
    .product-footer { flex-wrap: wrap; gap: 0.75rem; }
    .product-price { font-size: 1rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 2rem 1.25rem; }
    .service-icon { width: 4rem; height: 4rem; font-size: 1.6rem; margin-bottom: 1.25rem; }
    .service-card h3 { font-size: 1.1rem; }

    /* Testimonials */
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-text { font-size: 0.95rem; }

    /* Contact */
    .contact-card, .contact-form-card { padding: 1.5rem 1.25rem; }
    .contact-item { gap: 1rem; }
    .contact-icon { width: 3rem; height: 3rem; font-size: 1rem; flex-shrink: 0; }
    .contact-details h4 { font-size: 1rem; }
    .contact-details p { font-size: 0.9rem; }

    /* Footer */
    .footer { padding: 3rem 0 1.5rem; }
    .footer-content { gap: 1.5rem; margin-bottom: 2rem; }
    .footer-section h3 { font-size: 1rem; margin-bottom: 1rem; }
    .footer-links a { font-size: 0.9rem; }
    .footer-contact-item { font-size: 0.9rem; }
    .footer-bottom { font-size: 0.8rem; padding-top: 1.5rem; }

    /* Back to top */
    .back-to-top { width: 2.8rem; height: 2.8rem; bottom: 1.2rem; right: 1.2rem; font-size: 1rem; }

    /* Marquee */
    .marquee { height: 75px; }
    .dealer-item { width: 150px; }
    .dealer-logo { width: 85px; height: 50px; }
    .logo-lenevo { width: 250px; }
    .logo-hp { width: 100px; }
    .logo-samsung { width: 240px; }
    .logo-xerox { width: 170px; }
    .logo-intel { width: 160px; }
    .logo-lenevo .dealer-logo { width: 170px; height: 78px; }
    .logo-hp .dealer-logo { width: 58px; height: 50px; }
    .logo-dell .dealer-logo { width: 72px; height: 50px; }
    .logo-asus .dealer-logo { width: 155px; height: 100px; }
    .logo-acer .dealer-logo { width: 155px; height: 100px; }
    .logo-canon .dealer-logo { width: 90px; height: 50px; }
    .logo-brother .dealer-logo { width: 190px; height: 115px; }
    .logo-epson .dealer-logo { width: 155px; height: 88px; }
    .logo-samsung .dealer-logo { width: 200px; height: 115px; }
    .logo-kayocera .dealer-logo { width: 105px; height: 60px; }
    .logo-xerox .dealer-logo { width: 82px; height: 50px; margin-left: 10px; }
    .logo-intel .dealer-logo { width: 76px; height: 50px; margin-left: -5px; }
    .logo-amd .dealer-logo { width: 195px; height: 105px; }

    /* Carousel about */
    .carousel-slide { padding: 0 0.5rem; }
    .about-content { gap: 1.5rem; }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-title { font-size: 1.65rem; }
    .section-title { font-size: 1.55rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat-number { font-size: 1.4rem; }
    .brand-name { display: none; }
}
