:root {
    --primary: #00f0ff;
    --secondary: #7b2dff;
    --dark: #0a0a1a;
    --light: #f0f0f0;
    --accent: #ff2d7b;
    --text: #e0e0e0;
    --bg-dark: #121225;
    --bg-light: #1e1e3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    touch-action: manipulation;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.neowise-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.neowise-logo span {
    display: inline-block;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    transform: translateY(0);
    animation: float 2s ease-in-out infinite;
    margin: 0 2px;
}

.neowise-logo .n {
    animation-delay: 0.1s;
}

.neowise-logo .e {
    animation-delay: 0.2s;
}

.neowise-logo .o {
    animation-delay: 0.3s;
}

.neowise-logo .w {
    animation-delay: 0.4s;
}

.neowise-logo .i {
    animation-delay: 0.5s;
}

.neowise-logo .s {
    animation-delay: 0.6s;
}

.neowise-logo .e2 {
    animation-delay: 0.7s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
}

.logo span:last-child {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.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 ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--light);
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.glitch {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--light);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    animation: glitch-effect 3s infinite;
    line-height: 1.2;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-effect {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 3px);
    }

    40% {
        transform: translate(-3px, -3px);
    }

    60% {
        transform: translate(3px, 3px);
    }

    80% {
        transform: translate(3px, -3px);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    10% {
        clip: rect(112px, 9999px, 76px, 0);
    }

    20% {
        clip: rect(85px, 9999px, 77px, 0);
    }

    30% {
        clip: rect(27px, 9999px, 97px, 0);
    }

    40% {
        clip: rect(64px, 9999px, 98px, 0);
    }

    50% {
        clip: rect(61px, 9999px, 85px, 0);
    }

    60% {
        clip: rect(99px, 9999px, 114px, 0);
    }

    70% {
        clip: rect(34px, 9999px, 115px, 0);
    }

    80% {
        clip: rect(98px, 9999px, 129px, 0);
    }

    90% {
        clip: rect(43px, 9999px, 96px, 0);
    }

    100% {
        clip: rect(82px, 9999px, 64px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 119px, 0);
    }

    10% {
        clip: rect(79px, 9999px, 66px, 0);
    }

    20% {
        clip: rect(30px, 9999px, 133px, 0);
    }

    30% {
        clip: rect(87px, 9999px, 82px, 0);
    }

    40% {
        clip: rect(23px, 9999px, 29px, 0);
    }

    50% {
        clip: rect(89px, 9999px, 103px, 0);
    }

    60% {
        clip: rect(38px, 9999px, 59px, 0);
    }

    70% {
        clip: rect(41px, 9999px, 78px, 0);
    }

    80% {
        clip: rect(55px, 9999px, 57px, 0);
    }

    90% {
        clip: rect(90px, 9999px, 83px, 0);
    }

    100% {
        clip: rect(5px, 9999px, 46px, 0);
    }
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-height: 50px;
    min-width: 180px;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

/* Globe Container */
#globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 1s infinite ease-in-out;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0.1s;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-dark);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0, 240, 255, 0.02)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card[data-service="automation"] {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.service-card[data-service="automation"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 45, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card[data-service="automation"]:hover::before {
    opacity: 1;
}

.service-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 45, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 240, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text);
    opacity: 0.8;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.service-card:hover .service-details {
    max-height: 200px;
}

.service-details ul {
    list-style: none;
}

.service-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-details li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-container {
    width: 350px;
    height: 350px;
    position: relative;
    perspective: 1000px;
}

.hologram {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(123, 45, 255, 0.1));
    border-radius: 50%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
}

.hologram::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
}

.hologram::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2300f0ff" stroke-width="1"/></svg>') center/cover no-repeat;
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes rotate {
    0% {
        transform: rotateY(0) rotateX(0);
    }

    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

/* Work Section */
.work-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.overlay p {
    margin-bottom: 1.5rem;
    color: var(--text);
    opacity: 0.8;
}

.view-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-height: 45px;
    min-width: 140px;
}

.view-button:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.contact-content {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text);
    opacity: 0.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    /* Changed from center to flex-start */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
    padding-top: 3px;
    /* Added for better vertical alignment */
}

.info-item p {
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
    }

    .info-item {
        align-items: center;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 5px;
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-dark);
    padding: 0 0.5rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 1;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
}

.submit-button i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-logo span:last-child {
    color: var(--primary);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.3rem 0;
}

.footer-links a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
}

.footer-links a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
    color: var(--text);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: var(--bg-light);
    border: none;
    border-radius: 5px 0 0 5px;
    color: var(--text);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 1rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.newsletter-form button:hover {
    background: var(--light);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 3rem;
    }

    .contact-info {
        margin-bottom: 3rem;
    }

    .glitch {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    #globe-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .neowise-logo {
        font-size: 2.5rem;
        flex-wrap: wrap;
    }

    .glitch {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hologram-container {
        width: 250px;
        height: 250px;
    }

    .service-card,
    .portfolio-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (hover: none) {
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .portfolio-item:hover {
        transform: none;
        box-shadow: none;
    }

    .portfolio-item:hover .portfolio-image img {
        transform: none;
    }

    .portfolio-item .overlay {
        opacity: 1;
    }

    .cta-button:hover,
    .view-button:hover,
    .submit-button:hover,
    .social-links a:hover {
        transform: none;
    }

    .service-card:hover::before {
        opacity: 0;
    }
}