:root {
    --primary: #FF00FF;
    --primary-glow: rgba(255, 0, 255, 0.4);
    --secondary: #d90082;
    --bg-dark: #000000;
    --bg-card: rgba(17, 17, 17, 0.7);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --prism-gradient: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 50%, rgba(255, 0, 255, 0.1) 100%);
}

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

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

/* Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a001a 0%, #000000 100%);
    z-index: -2;
    animation: bgPulse 15s infinite alternate ease-in-out;
}

@keyframes bgPulse {
    0% { background: radial-gradient(circle at 20% 30%, #1a001a 0%, #000000 100%); }
    50% { background: radial-gradient(circle at 80% 70%, #2b002b 0%, #000000 100%); }
    100% { background: radial-gradient(circle at 40% 90%, #1a001a 0%, #000000 100%); }
}

/* Prism & Noise Effects */
.prism-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 50%, rgba(255, 0, 255, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
    filter: blur(100px);
    animation: prismMove 20s infinite linear;
}

/* Page Transitions */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition-overlay.active {
    transform: translateY(-100%);
}

.page-transition-overlay.exit {
    transform: translateY(0);
}

@keyframes prismMove {
    0% { transform: scale(1.2) rotate(0deg); }
    50% { transform: scale(1.5) rotate(10deg); }
    100% { transform: scale(1.2) rotate(0deg); }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    z-index: 1000;
    pointer-events: none;
}

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

/* Glassmorphism Utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.sound-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.sound-wave span {
    width: 3px;
    background: var(--primary);
    border-radius: 10px;
    animation: wave 1s infinite ease-in-out;
}

.sound-wave.right span {
    background: #0088ff; /* As in the original logo */
}

.sound-wave span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.sound-wave span:nth-child(3) { height: 12px; animation-delay: 0.3s; }
.sound-wave span:nth-child(4) { height: 20px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.social-links a {
    color: var(--text-main);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn.primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05) translateY(-5px);
}

/* Services */
.services {
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary);
}

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

.service-card {
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.1);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 15px;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
}

.contact-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.contact-details {
    display: inline-flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    margin: 0 auto;
}

.contact-details .item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-details .item a:hover {
    color: var(--primary) !important;
}

.contact-details i {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -1.5rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary);
}

.full-width {
    width: 100%;
}

.text-left {
    text-align: left;
}

/* Bio Section */
.bio {
    padding: 8rem 0;
}

.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bio-img {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.bio-img img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bio-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat .label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 255, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.gallery-item .overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* Blog Section */
.blog {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Mobile Adjustments for new sections */
@media (max-width: 992px) {
    .bio-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .bio-stats { gap: 1.5rem; }
    .stat .number { font-size: 2rem; }
}

/* Subpage Hero */
.subpage-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 0, 255, 0.05), transparent);
}

.subpage-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.subpage-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Services Detail */
.services-detail {
    padding: 4rem 0 8rem;
}

.detail-grid {
    display: grid;
    gap: 4rem;
}

.detail-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.detail-item img {
    width: 100%;
    border-radius: 20px;
    height: 350px;
    object-fit: cover;
}

.detail-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.detail-text ul {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.detail-text ul i {
    color: var(--primary);
}

/* Bio Detail & Timeline */
.bio-detail {
    padding: 4rem 0 8rem;
}

.bio-long-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.bio-main-img img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.bio-text-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.bio-text-content h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

.timeline {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.timeline-item {
    padding: 2rem;
    position: relative;
}

.timeline-item .year {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Gallery & Blog Full Grid */
.gallery-grid.full, .blog-grid.full {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobile Subpage Adjustments */
@media (max-width: 992px) {
    .detail-item, .bio-long-wrapper { grid-template-columns: 1fr; padding: 2rem; }
    .detail-item img { height: 250px; }
    .detail-text ul { grid-template-columns: 1fr; }
    .subpage-hero h1 { font-size: 3rem; }
}

/* Navbar Active State */
.nav-links a.active {
    color: var(--primary);
    font-weight: 800;
}

    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.footer-bottom .created-by {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay { transition: all 0.8s ease-out; transition-delay: 0.2s; opacity: 0; transform: translateY(30px); }
.reveal-delay-2 { transition: all 0.8s ease-out; transition-delay: 0.4s; opacity: 0; transform: translateY(30px); }
.reveal-delay-3 { transition: all 0.8s ease-out; transition-delay: 0.6s; opacity: 0; transform: translateY(30px); }

.reveal-delay.active, .reveal-delay-2.active, .reveal-delay-3.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .contact-wrapper { padding: 2.5rem 1.5rem; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 99;
        gap: 3rem;
    }

    .nav-links.mobile-active {
        right: 0;
    }

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

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 101;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 2px;
        background: white;
        transition: 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .social-links { display: none; }
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 600px) {
    .navbar { padding: 0.8rem 1rem; }
    .logo-text { font-size: 1.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
}

/* Testimonials & References */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.testimonial-card .stars {
    color: #FFD700;
    display: flex;
    gap: 5px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Partners Carousel */
.partners-carousel {
    padding: 3rem;
    overflow: hidden;
}

.partners-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.5;
    filter: grayscale(1) invert(1);
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0) invert(0);
    color: var(--primary);
}

@media (max-width: 768px) {
    .partners-track {
        gap: 2rem;
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Technika Page Styles */
.tech-content {
    padding: 4rem 0 8rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.tech-category {
    padding: 3rem;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cat-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.cat-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tech-group h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-group ul li {
    color: var(--text-muted);
}

.simple-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.simple-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.simple-list i {
    color: var(--primary);
}

/* Setup Cards */
.setup-section {
    margin-top: 6rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -3rem auto 5rem;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.setup-card {
    padding: 3rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.setup-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.setup-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.setup-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.setup-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-block h4 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

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

.setup-note {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .tech-grid { grid-template-columns: 1fr; }
    .tech-list { grid-template-columns: 1fr; gap: 2rem; }
}

/* Lightbox Style */
.lightbox-overlay {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: var(--font-main);
    letter-spacing: 1px;
}


