

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #fff;
    overflow-x: hidden;
}

nav .fa-bars {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

/* Mobile menu active */
nav .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 200px;
    padding: 20px 10px;
    border-radius: 5px 0 0 5px;
    z-index: 1100;
    box-shadow: -5px 10px 40px rgba(99, 102, 241, 0.4);
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOutIntro 0.8s ease 4.5s forwards;
}

@keyframes fadeOutIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.camera-container {
    position: relative;
    animation: cameraZoomFromTop 1.8s ease 0.5s forwards;
}

@keyframes cameraZoomFromTop {
    0% {
        transform: translateY(-200px) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateY(0) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.camera {
    font-size: 120px;
    position: relative;
    animation: cameraShake 0.3s ease 2.8s;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

@keyframes cameraShake {
    0%,
    100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-15px) rotate(-2deg);
    }
    75% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300vw;
    height: 300vh;
    background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.8) 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: flashEffect 0.8s ease 2.8s;
    pointer-events: none;
}

@keyframes flashEffect {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.shutter-sound {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: clickSound 0.6s ease 2.8s;
    color: #6366f1;
    font-weight: bold;
}

@keyframes clickSound {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.main-content {
    opacity: 0;
    animation: fadeInContent 1s ease 4.5s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

nav {
    position: fixed;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero p {
    font-size: 16px;
    letter-spacing: 3px;
    color: #aaa;
    margin-bottom: 40px;
    animation: slideUp 1s ease 0.2s backwards;
}

.hero-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease 0.4s backwards;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    transition: left 0.4s;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.about {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    transition: transform 0.5s;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(168, 85, 247, 0.4);
}

.portfolio {
    padding: 120px 50px;
    background: #0a0a0a;
}

.portfolio h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    text-align: center;
    color: #666;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    height: 450px;
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}

.stats {
    padding: 120px 50px;
    background: #000;
}

.stats h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
}

.services {
    padding: 120px 50px;
    background: #0a0a0a;
}

.services h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    text-align: center;
    color: #666;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 5px;
    transition: all 0.4s;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    background: linear-gradient(135deg, #334155, #475569);
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: #888;
    line-height: 1.7;
    font-size: 14px;
}

.testimonials {
    padding: 120px 50px;
    background: #000;
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 50px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 5px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(135deg, #6366f1, #a855f7, #ec4899) 1;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    background: linear-gradient(135deg, #334155, #475569);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.contact {
    padding: 120px 50px;
    text-align: center;
    background: #0a0a0a;
}

.contact h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.contact p {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

footer {
    padding: 60px 50px;
    background: #000;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
        letter-spacing: 6px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image {
        height: 350px;
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    nav .nav-links {
        display: none;
    }

    nav .fa-bars {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .about-image {
        height: 250px;
        font-size: 50px;
    }

    .hero-btn {
        padding: 12px 40px;
        font-size: 11px;
    }

    .contact-btn {
        padding: 12px 40px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .about-content h2,
    .portfolio h2,
    .stats h2,
    .services h2,
    .testimonials h2,
    .contact h2 {
        font-size: 36px;
    }

    .about-image {
        height: 180px;
        font-size: 40px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 12px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .contact {
        padding: 80px 20px;
    }

    .footer-logo {
        font-size: 18px;
    }
}
