/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 60px;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item:hover i,
.bottom-nav-item.active i {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    transform: scale(1.1);
}

.bottom-nav-item.active {
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 98%, #00ff41 100%);
    background-size: 3px 100%;
    animation: matrix 20s linear infinite;
    opacity: 0.1;
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #00ff41 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #0099ff 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: circuitMove 30s linear infinite;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    border: 1px solid #00ff41;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.hero-badge i {
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: slideInLeft 1s ease-out 0.1s both;
}

.text-glow {
    background: linear-gradient(45deg, #00ff41, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    animation: slideInLeft 1s ease-out 0.2s both;
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #25d366, #20b358);
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #20b358, #25d366);
}

.btn-secondary {
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    color: #00ff41;
    border-color: #00ff41;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.2), rgba(0, 153, 255, 0.2));
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.5);
    color: #fff;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-glow {
    left: 100%;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    animation: hologramSpin 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #00ff41, #0099ff, #ff0099, #00ff41);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.hologram-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: orbitRotate 15s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.2), rgba(0, 153, 255, 0.2));
    border: 2px solid #00ff41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.orbit-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { top: 25%; right: 0; transform: translateY(-50%); }
.orbit-item:nth-child(3) { bottom: 25%; right: 0; transform: translateY(50%); }
.orbit-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { bottom: 25%; left: 0; transform: translateY(50%); }
.orbit-item:nth-child(6) { top: 25%; left: 0; transform: translateY(-50%); }

.orbit-item:hover {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8);
    border-color: #0099ff;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.7);
    animation: centerPulse 2s ease-in-out infinite alternate;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 65, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 153, 255, 0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    position: relative;
    z-index: 2;
}

.title-icon {
    color: #00ff41;
    margin-right: 1rem;
    animation: rotate 3s linear infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.3);
    border-color: #00ff41;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: float 3s ease-in-out infinite;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 65, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 153, 255, 0.03) 25%, transparent 25%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}

.service-category {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title i {
    color: #00ff41;
    font-size: 1.8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid #00ff41;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff41, #0099ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ff41;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff41;
    font-weight: bold;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.3);
    border-color: #00ff41;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Other Services */
.other-services {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    font-size: 0.9rem;
}

.service-item span:first-child {
    color: rgba(255, 255, 255, 0.9);
}

.service-item .price {
    color: #00ff41;
    font-weight: 600;
    font-size: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
    border-color: #00ff41;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 65, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 153, 255, 0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-card {
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 255, 65, 0.4);
    border-color: #00ff41;
}

.portfolio-preview {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Desktop Screen Preview */
.preview-screen {
    width: 280px;
    height: 180px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #333;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screen-header {
    height: 25px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.screen-dots {
    display: flex;
    gap: 5px;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28ca42; }

.screen-content {
    height: calc(100% - 25px);
    padding: 8px;
}

/* E-commerce Layout */
.ecommerce .mock-navbar {
    height: 20px;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 4px;
    margin-bottom: 8px;
}

.ecommerce .mock-hero {
    height: 40px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 4px;
    margin-bottom: 8px;
}

.ecommerce .mock-products {
    display: flex;
    gap: 4px;
    height: 60px;
}

.ecommerce .product-card {
    flex: 1;
    background: rgba(0, 153, 255, 0.3);
    border-radius: 4px;
}

/* Business Dashboard Layout */
.business {
    display: flex;
    gap: 8px;
}

.business .mock-sidebar {
    width: 60px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 4px;
}

.business .mock-dashboard {
    flex: 1;
}

.business .dashboard-cards {
    display: flex;
    gap: 4px;
    height: 40px;
    margin-bottom: 8px;
}

.business .dash-card {
    flex: 1;
    background: rgba(0, 153, 255, 0.3);
    border-radius: 4px;
}

.business .dashboard-chart {
    height: 80px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 4px;
}

/* Landing Page Layout */
.landing .mock-hero-section {
    height: 80px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 8px;
}

.landing .hero-text {
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 8px;
}

.landing .hero-buttons {
    display: flex;
    gap: 4px;
}

.landing .btn-mock {
    width: 40px;
    height: 15px;
    background: #00ff41;
    border-radius: 2px;
}

.landing .mock-features {
    display: flex;
    gap: 4px;
    height: 40px;
}

.landing .feature-box {
    flex: 1;
    background: rgba(0, 153, 255, 0.3);
    border-radius: 4px;
}

/* Mobile Preview */
.preview-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-frame {
    width: 120px;
    height: 200px;
    background: #2d2d2d;
    border-radius: 20px;
    padding: 15px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.mobile-header {
    height: 25px;
    background: linear-gradient(45deg, #00ff41, #0099ff);
}

.mobile-content {
    padding: 15px 10px;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    margin: 0 auto 15px;
}

.app-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    height: 20px;
    background: rgba(0, 153, 255, 0.2);
    border-radius: 4px;
}

/* Portfolio Info */
.portfolio-info {
    padding: 2rem;
    text-align: center;
}

.project-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.view-project:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    background: linear-gradient(45deg, #0099ff, #00ff41);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 65, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 153, 255, 0.03) 25%, transparent 25%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.3);
    border-color: #00ff41;
}

.feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 255, 65, 0.2);
    line-height: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 65, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 153, 255, 0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.1), rgba(0, 153, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    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='%2300ff41' 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: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
    border: none;
}

.form-group select option:hover,
.form-group select option:checked {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ff41, #0099ff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.6);
    background: linear-gradient(45deg, #0099ff, #00ff41);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #00ff88;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Hi-Tech Animations */
@keyframes matrix {
    0% { background-position: 0 0; }
    100% { background-position: 0 100vh; }
}

@keyframes circuitMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.3); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 65, 0.8); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 30px rgba(0, 255, 65, 0.5); }
    100% { text-shadow: 0 0 50px rgba(0, 255, 65, 1); }
}

@keyframes hologramSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes centerPulse {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px rgba(0, 255, 65, 0.7);
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px rgba(0, 255, 65, 1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
        padding: 100px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hologram {
        width: 250px;
        height: 250px;
    }
    
    .tech-orbit {
        width: 200px;
        height: 200px;
    }
    
    .orbit-item {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .title-icon {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .features li {
        font-size: 0.85rem;
    }
    
    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-preview {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .preview-screen {
        width: 240px;
        height: 150px;
    }
    
    .mobile-frame {
        width: 100px;
        height: 160px;
        padding: 12px 6px;
    }
    
    .portfolio-info {
        padding: 1.5rem;
    }
    
    .tech-stack {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .tech-stack span {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        z-index: 1002;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .tech-item {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .about-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}
