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

:root {
    --primary: #0a0a0a;
    --secondary: #ffffff;
    --accent: #FF3EEC;
    --accent2: #00F0FF;
    --accent3: #FFDE59;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--secondary);
    background: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    mix-blend-mode: difference;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

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

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    z-index: 1001;
}

.logo span {
    color: var(--accent);
}

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

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5vw;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
    opacity: 0.8;
}

.hero h1 span {
    display: inline-block;
}

.accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.accent2 {
    color: var(--accent2);
}

.accent3 {
    color: var(--accent3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 14px;
}

.btn:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn.accent-btn {
    border-color: var(--accent);
    color: var(--accent);
    /*border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);*/
}

.btn.accent-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5vw;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-title p {
    /*max-width: 600px;*/
    /*font-size: 1.2rem;*/
    font-size: 2.2rem;
    color: #ccc;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Portfolio */
.portfolio {
    background: #050505;
    position: relative;
}

.portfolio:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent) 0%, transparent 70%);
    opacity: 0.03;
    pointer-events: none;
}

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

.portfolio-item {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 2px 4px #222;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.15);
}

.portfolio-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.portfolio-overlay p {
    color: var(--accent2);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    border: 3px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text:before, .testimonial-text:after {
    content: "";
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -30px;
    left: -20px;
}

.testimonial-text:after {
    content: '"';
    bottom: -60px;
    right: -20px;
}

.client-name {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.client-title {
    font-size: 1rem;
    color: #999;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), transparent);
}

.step {
    text-align: center;
    position: relative;
    width: 250px;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    border: 3px solid var(--accent);
    position: relative;
    z-index: 2;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 180px 0;
    position: relative;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5vw;
    margin-bottom: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

.cta p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Footer */
footer {
    background: #050505;
    padding: 100px 0 40px;
    position: relative;
}

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

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent);
    text-transform: uppercase;
}

.footer-column p, .footer-column li {
    color: #999;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.footer-column ul li:hover {
    color: var(--accent);
}

.footer-column ul li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.social-links i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 7rem;
    }
    
    .section-title h2 {
        font-size: 4.5rem;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        width: 50%;
        margin-bottom: 60px;
    }
    
    .process-steps:before {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 5.5rem;
    }
    
    .section-title h2 {
        font-size: 3.5rem;
    }
    
    .step {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .service-card, .portfolio-item, .testimonial {
        padding: 30px 20px;
    }
    
    .cta h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}





h1 {
      font-size: 4rem;
      font-family: 'Arial Black', sans-serif;
      color: white;
      text-transform: uppercase;
      text-shadow: 0 0 15px rgba(255,255,255,0.8),
                   0 0 30px rgba(102,98,255,0.6),
                   0 0 50px rgba(102,98,255,0.4);
      opacity: 0;
      filter: blur(8px);
      animation: projectOn 3s forwards;
    }

    @keyframes projectOn {
      0% { opacity: 0; filter: blur(15px); }
      30% { opacity: 1; filter: blur(6px); }
      60% { opacity: 1; filter: blur(3px); }
      100% { opacity: 1; filter: blur(0px); }
    }

    /* Flicker effect for realism */
    h1::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(255,255,255,0.05);
      mix-blend-mode: overlay;
      animation: flicker 0.15s infinite;
    }

    @keyframes flicker {
      0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 0.05; }
      20%, 22%, 24%, 55% { opacity: 0.3; }
    }




    