/* style.css */
:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #121212;
    --bg-glass: rgba(18, 18, 18, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --neon-green: #0cf883;
    --neon-green-glow: rgba(12, 248, 131, 0.5);
    --neon-green-hover: #0ad972;
    --dark-border: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: var(--font-secondary);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-neon {
    color: var(--neon-green);
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.btn-primary:hover {
    background-color: var(--neon-green-hover);
    box-shadow: 0 0 25px var(--neon-green-glow);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Glassmorphism & Cyber Elements */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}

.cyber-border {
    position: relative;
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.cyber-border:hover {
    border-color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(57, 255, 20, 0.1), 0 0 20px rgba(57, 255, 20, 0.1);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

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

.navbar .nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: var(--transition);
}

.navbar .nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 8px var(--neon-green-glow);
}

.navbar .nav-links a:hover {
    color: var(--neon-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.close-menu-btn:hover {
    color: var(--neon-green);
}

.mobile-nav-links {
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav-links a:hover {
    color: var(--neon-green);
}

.mobile-social {
    display: flex;
    gap: 1.5rem;
}

.mobile-social a {
    font-size: 1.8rem;
}

.mobile-social a:hover {
    color: var(--neon-green);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}

.hero-text {
    max-width: 800px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--dark-border);
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    color: var(--neon-green);
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-value-prop {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.service-value-prop p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-value-prop .highlight {
    color: #fff;
    font-weight: 600;
    font-family: var(--font-main);
    border-left: 2px solid var(--neon-green);
    padding-left: 1rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--bg-secondary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    min-height: 70px;
}

.service-card .subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.service-card i {
    margin-right: 0.5rem;
}

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

.detail-group:last-child {
    margin-bottom: 0;
}

.detail-group h4 {
    font-size: 0.9rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-group p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.services-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.services-footer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

/* Portfolio Section */
.dark-bg {
    background-color: #050505;
    position: relative;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portfolio-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.portfolio-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.portfolio-mockup {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    height: 30px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.view-project-btn {
    background: var(--neon-green);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-wrapper:hover .view-project-btn {
    transform: translateY(0);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.cyber-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.1);
}

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

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 0;
    overflow: hidden;
}

.contact-info {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(10,10,10,0.9));
    border-right: 1px solid var(--dark-border);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method i {
    width: 50px;
    height: 50px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.method span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-container {
    padding: 4rem 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
}

.grayscale-logo {
    height: 40px;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.grayscale-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #222;
}

.footer-social a:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--dark-border);
    }
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 55px;
    }
    
    .navbar {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}
