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

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

:root {
    --neon-cyan: #00f0ff;
    --electric-teal: #00d9ff;
    --deep-purple: #6b2aff;
    --vibrant-violet: #a855f7;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-bg);
    color: #fff;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--vibrant-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--deep-purple));
    border-radius: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 42, 255, 0.3), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.2), transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-teal), var(--vibrant-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(0, 240, 255, 0.8);
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8)); }
}

.tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--deep-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.8);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--vibrant-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.glass-panel:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

/* About Section */
.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-badge {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(107, 42, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
}

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

.service-card {
    text-align: center;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    padding: 0;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(107, 42, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.placeholder-img {
    font-size: 80px;
}

.portfolio-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin: 0 30px 15px;
    color: var(--neon-cyan);
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 30px 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin: 0 30px 30px;
}

.portfolio-tags span {
    padding: 5px 15px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: var(--neon-cyan);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Hire Section */
.hire-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 60px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
