/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent layout shifts during font loading */
html {
    font-display: swap;
}

/* Ensure stable layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: #0a0a0a;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ff00;
    z-index: 1000;
    padding: 1rem 0;
    min-height: 70px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    min-width: 120px;
    margin-left: 10px;
}

.logo i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #00ff00;
    color: #000;
}

.lang-btn.active {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: -2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.glitch {
    position: relative;
    animation: glitch 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #0000ff;
    z-index: -2;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2rem;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: 2px solid #00ff00;
    background: transparent;
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
}

.btn-primary {
    background: #00ff00;
    color: #000;
}

.btn-primary:hover {
    background: #00cc00;
    border-color: #00cc00;
    box-shadow: 0 0 20px #00ff00;
}

.btn-secondary:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px #00ff00;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, #00ff00 50%, transparent 100%);
    opacity: 0.1;
    animation: matrix 3s infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icons i {
    font-size: 3rem;
    color: #00ff00;
    margin: 0 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icons i:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-icons i:nth-child(3) {
    animation-delay: 1s;
}

.floating-icons i:nth-child(4) {
    animation-delay: 1.5s;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Special styling for phishing service (5th card) */
.service-card:nth-child(5) {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1a0d 100%);
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.service-card:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.15), transparent);
    transition: left 0.5s;
}

.service-card:nth-child(5):hover::before {
    left: 100%;
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    padding: 1rem;
    display: inline-block;
}

.service-card:nth-child(5):hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.4);
}

.service-icon {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-details {
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-details h4 {
    color: #00ff00;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-size: 0.8rem;
}

.contact-note {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    color: #00ff00;
    font-weight: 500;
    text-align: center;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: #00ff00;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}





/* Landing Example Section */
.landing-example {
    padding: 5rem 2rem;
    background: #111;
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.landing-preview {
    display: flex;
    justify-content: center;
}

.mobile-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.mobile-header {
    background: #0a0a0a;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.browser-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.7rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    padding: 8px 12px;
    border-radius: 8px;
    color: #ccc;
    font-size: 0.7rem;
}

.app-showcase {
    text-align: center;
    padding: 20px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: #00ff00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #000;
}

.app-name {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.app-developer {
    color: #00ff00;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.app-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 0.8rem;
}

.reviews {
    color: #ccc;
    font-size: 0.7rem;
}

.install-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: #00cc00;
    transform: scale(1.05);
}

.download-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    z-index: 10;
}

.popup-content h4 {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.cancel-btn, .download-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.cancel-btn {
    background: #666;
    color: #fff;
}

.download-btn {
    background: #00ff00;
    color: #000;
}

.cancel-btn:hover, .download-btn:hover {
    transform: scale(1.05);
}

.landing-info h3 {
    color: #00ff00;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #00ff00;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.landing-features {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
}

.landing-features h4 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.landing-features ul {
    list-style: none;
    padding: 0;
}

.landing-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 10px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: #00ff00;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #ccc;
}

.contact-item a {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
}



/* Footer */
.footer {
    background: #111;
    border-top: 1px solid #00ff00;
    padding: 2rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #00ff00;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #00ff00;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

@keyframes matrix {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services,
    .landing-example,
    .contact {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 80px 1rem 1rem;
    }
    
    .footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .language-switcher {
        display: flex;
        gap: 0.3rem;
        margin-right: 5px;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.4rem;
        min-width: 110px;
        margin-left: 5px;
    }
    
    .logo i {
        font-size: 1.8rem;
    }
    
    .header {
        min-height: 70px;
        padding: 1rem 0;
    }
    
    .contact-item {
        min-width: auto;
        width: 90%;
        padding: 1.5rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-frame {
        width: 250px;
        height: 500px;
    }
    
    .landing-info h3 {
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .service-details {
        text-align: center;
    }
    
    .service-details li {
        text-align: left;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card:nth-child(5) {
        background: linear-gradient(135deg, #1a1a1a 0%, #0d1a0d 100%);
        border: 1px solid #00ff00;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    }
    
    .service-card:nth-child(5) .service-icon {
        background: linear-gradient(45deg, #00ff00, #00cc00);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        padding: 0.8rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-details li {
        font-size: 0.8rem;
    }
    
    /* Prevent content jumping on mobile */
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 100px);
    }
    
    .services {
        padding-top: 3rem;
    }
    
    .landing-example {
        padding-top: 3rem;
    }
    
    .contact {
        padding-top: 3rem;
    }
    
    /* Improve header stability */
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Better spacing for mobile */
    .hero-text {
        padding: 0 1rem;
    }
    
    .hero-description {
        margin: 1rem 0;
    }
    
    .cta-buttons {
        margin-top: 2rem;
    }
    
    /* Additional mobile stability */
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Prevent horizontal scrolling */
    .service-card {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-details li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better button sizing */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
} 