:root {
    --primary: #00f2ff;
    --primary-soft: rgba(0, 242, 255, 0.1);
    --secondary: #ffffff;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Outfit',
        sans-serif;
    --glass-border: rgba(255, 255, 255, 0.08);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 10001;
    transition: width 0.1s;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent 80%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


body::before {
    display: none;
    /* Remove the heavy gradient overlay */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 242, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

.pulse-anim {
    animation: pulse 1.5s infinite;
}


@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 60px;
    width: auto;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-3deg);
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.5));
}

.logo-img-large {
    height: 180px;
    width: auto;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.4));
    animation: pulse 2.5s infinite ease-in-out;
}




.logo-dot {
    display: none;
    /* Removed as per new logo style */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    gap: 5%;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 5s ease;
}

.hero:hover .hero-img {
    transform: scale(1.1);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
}

.hero-visual {
    opacity: 0;
    transform: scale(0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s 2s forwards;
    opacity: 0;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.btn-primary {
    background: rgba(0, 242, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(0, 242, 255, 0.25);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 1rem;
    border: 1px solid var(--glass-border);
    color: white;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--bg-card);
}

/* Services Section */
.services {
    padding: 100px 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    animation: shine 1.5s infinite;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* IoT Showcase */
.iot-showcase {
    padding: 100px 10%;
    background: radial-gradient(circle at 100% 0%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
}

.iot-showcase .container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.iot-content {
    flex: 1;
}

.iot-visual {
    flex: 1.2;
}

.dashboard-mockup {
    position: relative;
    border-radius: 20px;
    background: #111;
    padding: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.dashboard-img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.iot-features {
    list-style: none;
    margin-top: 2rem;
}

.iot-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.iot-features i {
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 100px 10%;
}

.contact-container {
    display: flex;
    gap: 4rem;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

/* Footer */
.footer {
    padding: 4rem 10% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-white);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .iot-showcase .container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
        padding: 2rem;
    }
}

/* Welcome Screen */
#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

#welcome-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.welcome-logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
    cursor: pointer;
    animation: fadeInScale 2s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.logo-img-welcome {
    height: 220px;
    width: auto;
    filter:
        drop-shadow(0 0 20px rgba(0, 242, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 242, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 242, 255, 0.2));
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter:
            drop-shadow(0 0 20px rgba(0, 242, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 242, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 242, 255, 0.2));
        transform: scale(1);
    }

    50% {
        filter:
            drop-shadow(0 0 35px rgba(0, 242, 255, 0.7)) drop-shadow(0 0 70px rgba(0, 242, 255, 0.5)) drop-shadow(0 0 100px rgba(0, 242, 255, 0.3));
        transform: scale(1.02);
    }
}

.welcome-logo-container:hover .logo-img-welcome {
    transform: scale(1.08);
    filter:
        drop-shadow(0 0 40px rgba(0, 242, 255, 0.8)) drop-shadow(0 0 80px rgba(0, 242, 255, 0.6)) drop-shadow(0 0 120px rgba(0, 242, 255, 0.4));
}


.click-hint {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 600;
    animation: hintFade 2.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

@keyframes hintFade {

    0%,
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-8px);
    }
}




.circuit-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 0.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawCircuit 3s ease-out forwards;
}

.welcome-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
}

.welcome-content h1 {
    margin-bottom: 3rem;
    animation: titleReveal 1s 0.3s ease-out backwards;
}

.welcome-content button {
    animation: buttonReveal 1s 0.6s ease-out backwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 20px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 5px;
    }
}

@keyframes buttonReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.welcome-content::before,
.welcome-content::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.welcome-content::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.welcome-content::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.glitch {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    position: relative;
    letter-spacing: 5px;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}


.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.system-status {
    color: var(--text-gray);
    font-family: 'Space Mono', monospace;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.status-blink {
    animation: blink 1s infinite;
    color: var(--primary);
}

#enter-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1.2rem 4rem;
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

#enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    transition: left 0.5s;
}

#enter-btn:hover::before {
    left: 100%;
}

#enter-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.5);
    border-color: var(--primary);
}


@keyframes drawCircuit {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(72px, 9999px, 12px, 0);
    }

    5% {
        clip: rect(85px, 9999px, 66px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 89px, 0);
    }

    15% {
        clip: rect(32px, 9999px, 11px, 0);
    }

    20% {
        clip: rect(50px, 9999px, 86px, 0);
    }

    25% {
        clip: rect(2px, 9999px, 1px, 0);
    }

    30% {
        clip: rect(25px, 9999px, 98px, 0);
    }

    35% {
        clip: rect(59px, 9999px, 94px, 0);
    }

    40% {
        clip: rect(12px, 9999px, 20px, 0);
    }

    45% {
        clip: rect(29px, 9999px, 59px, 0);
    }

    50% {
        clip: rect(98px, 9999px, 5px, 0);
    }

    55% {
        clip: rect(13px, 9999px, 49px, 0);
    }

    60% {
        clip: rect(66px, 9999px, 32px, 0);
    }

    65% {
        clip: rect(1px, 9999px, 68px, 0);
    }

    70% {
        clip: rect(89px, 9999px, 3px, 0);
    }

    75% {
        clip: rect(10px, 9999px, 99px, 0);
    }

    80% {
        clip: rect(53px, 9999px, 44px, 0);
    }

    85% {
        clip: rect(23px, 9999px, 13px, 0);
    }

    90% {
        clip: rect(64px, 9999px, 86px, 0);
    }

    95% {
        clip: rect(30px, 9999px, 5px, 0);
    }

    100% {
        clip: rect(75px, 9999px, 64px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    100% {
        clip: rect(5px, 9999px, 84px, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2rem;
    }

    gap: 3rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -12px rgba(0, 242, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 2rem;
}

.project-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.project-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .welcome-logo {
        top: 20px;
        left: 20px;
        transform: scale(0.8);
    }
}

/ *   P a r t i c l e   C a n v a s   * /     # p a r t i c l e - c a n v a s    {
                 p o s i t i o n :    f i x e d ;
                 t o p :    0 ;
                 l e f t :    0 ;
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    1 0 0 % ;
                 z - i n d e x :    - 3 ;
                 p o i n t e r - e v e n t s :    n o n e ;
         
}

         / *   S t a t s   S e c t i o n   * /     . s t a t s - s e c t i o n    {
                 p a d d i n g :    8 0 p x   1 0 % ;
                 b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 8 0 d e g ,    v a r ( - - b g - d a r k )   0 % ,    r g b a ( 0 ,    1 5 ,    2 5 ,    0 . 5 )   1 0 0 % ) ;
                 p o s i t i o n :    r e l a t i v e ;
         
}

         . s t a t s - c o n t a i n e r    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( a u t o - f i t ,    m i n m a x ( 2 0 0 p x ,    1 f r ) ) ;
                 g a p :    3 r e m ;
                 m a x - w i d t h :    1 2 0 0 p x ;
                 m a r g i n :    0   a u t o ;
         
}

         . s t a t - i t e m    {
                 t e x t - a l i g n :    c e n t e r ;
                 p a d d i n g :    2 r e m ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 0 2 ) ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o r d e r :    1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;
                 t r a n s i t i o n :    a l l   0 . 4 s   e a s e ;
         
}

         . s t a t - i t e m : h o v e r    {
                 t r a n s f o r m :    t r a n s l a t e Y ( - 1 0 p x ) ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 0 5 ) ;
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y ) ;
                 b o x - s h a d o w :    0   1 0 p x   3 0 p x   r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 2 ) ;
         
}

         . s t a t - n u m b e r    {
                 f o n t - s i z e :    4 r e m ;
                 f o n t - w e i g h t :    8 0 0 ;
                 c o l o r :    v a r ( - - p r i m a r y ) ;
                 m a r g i n - b o t t o m :    0 . 5 r e m ;
                 f o n t - f a m i l y :    ' S y n c o p a t e '  ,    s a n s - s e r i f ;
                 t e x t - s h a d o w :    0   0   2 0 p x   r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 5 ) ;
         
}

         . s t a t - l a b e l    {
                 f o n t - s i z e :    1 r e m ;
                 c o l o r :    v a r ( - - t e x t - g r a y ) ;
                 t e x t - t r a n s f o r m :    u p p e r c a s e ;
                 l e t t e r - s p a c i n g :    2 p x ;
         
}

         / *   T e c h   S t a c k   S e c t i o n   * /     . t e c h - s t a c k    {
                 p a d d i n g :    1 0 0 p x   1 0 % ;
                 b a c k g r o u n d :    r a d i a l - g r a d i e n t ( c i r c l e   a t   5 0 %   5 0 % ,    r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 0 3 )   0 % ,    t r a n s p a r e n t   7 0 % ) ;
         
}

         . t e c h - g r i d    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( a u t o - f i t ,    m i n m a x ( 1 5 0 p x ,    1 f r ) ) ;
                 g a p :    2 r e m ;
                 m a x - w i d t h :    1 0 0 0 p x ;
                 m a r g i n :    0   a u t o ;
         
}

         . t e c h - i t e m    {
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    1 r e m ;
                 p a d d i n g :    2 r e m   1 . 5 r e m ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 0 2 ) ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o r d e r :    1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;
                 t r a n s i t i o n :    a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,    0 . 8 8 5 ,    0 . 3 2 ,    1 . 2 7 5 ) ;
                 c u r s o r :    p o i n t e r ;
         
}

         . t e c h - i t e m : h o v e r    {
                 t r a n s f o r m :    t r a n s l a t e Y ( - 1 5 p x )   s c a l e ( 1 . 0 5 ) ;
                 b a c k g r o u n d :    r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 0 5 ) ;
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y ) ;
                 b o x - s h a d o w :    0   1 5 p x   4 0 p x   r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 3 ) ;
         
}

         . t e c h - i c o n    {
                 f o n t - s i z e :    3 r e m ;
                 f i l t e r :    g r a y s c a l e ( 1 0 0 % ) ;
                 t r a n s i t i o n :    a l l   0 . 4 s   e a s e ;
         
}

         . t e c h - i t e m : h o v e r   . t e c h - i c o n    {
                 f i l t e r :    g r a y s c a l e ( 0 % )   d r o p - s h a d o w ( 0   0   1 0 p x   r g b a ( 0 ,    2 4 2 ,    2 5 5 ,    0 . 6 ) ) ;
                 t r a n s f o r m :    s c a l e ( 1 . 2 )   r o t a t e ( 5 d e g ) ;
         
}

         . t e c h - i t e m   s p a n    {
                 f o n t - s i z e :    0 . 9 5 r e m ;
                 f o n t - w e i g h t :    6 0 0 ;
                 c o l o r :    v a r ( - - t e x t - g r a y ) ;
                 t e x t - t r a n s f o r m :    u p p e r c a s e ;
                 l e t t e r - s p a c i n g :    1 p x ;
                 t r a n s i t i o n :    c o l o r   0 . 3 s ;
         
}

         . t e c h - i t e m : h o v e r   s p a n    {
                 c o l o r :    v a r ( - - p r i m a r y ) ;
         
}

         / *   S e r v i c e   C a r d   F l i p   E n h a n c e m e n t   * /     . s e r v i c e - c a r d    {
                 p o s i t i o n :    r e l a t i v e ;
                 t r a n s f o r m - s t y l e :    p r e s e r v e - 3 d ;
                 p e r s p e c t i v e :    1 0 0 0 p x ;
         
}

         . s e r v i c e - c a r d   . s e r v i c e - i c o n    {
                 t r a n s i t i o n :    a l l   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,    0 . 8 8 5 ,    0 . 3 2 ,    1 . 2 7 5 ) ;
         
}

         . s e r v i c e - c a r d : h o v e r   . s e r v i c e - i c o n    {
                 t r a n s f o r m :    r o t a t e Y ( 3 6 0 d e g )   s c a l e ( 1 . 1 ) ;
         
}

         / *   R e s p o n s i v e   * /     @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
                 . s t a t s - c o n t a i n e r    {
                             g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 2 ,    1 f r ) ;
                             g a p :    1 . 5 r e m ;
                     
    }

                     . s t a t - n u m b e r    {
                             f o n t - s i z e :    3 r e m ;
                     
    }

                     . t e c h - g r i d    {
                             g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 2 ,    1 f r ) ;
                             g a p :    1 . 5 r e m ;
                     
    }

                     . t e c h - i c o n    {
                             f o n t - s i z e :    2 . 5 r e m ;
                     
    }

         
}

     