/* Cyber Sections CSS - Futuristički, minimalistički cyber stilovi za sekcije */

/* ===== ZAJEDNIČKE CYBER KOMPONENTE ===== */
/* Cyber Grid Background */
.about-cyber-grid, .skills-cyber-grid, .services-cyber-grid, 
.projects-cyber-grid, .testimonials-cyber-grid, .promo-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    animation: gridPulse 8s infinite alternate;
}

@keyframes gridPulse {
    0% {
        background-size: 20px 20px;
        opacity: 0.1;
    }
    100% {
        background-size: 22px 22px;
        opacity: 0.2;
    }
}

/* Glowing Orbs */
.about-glow, .skills-glow, .services-glow, 
.projects-glow, .testimonials-glow, .promo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 6s infinite alternate, glowMove 30s infinite linear;
    z-index: 0;
}

.about-glow:nth-child(1), .skills-glow:nth-child(1), .services-glow:nth-child(1),
.projects-glow:nth-child(1), .testimonials-glow:nth-child(1), .promo-glow:nth-child(1) {
    top: -50px;
    left: 10%;
}

.about-glow:nth-child(2), .skills-glow:nth-child(2), .services-glow:nth-child(2),
.projects-glow:nth-child(2), .testimonials-glow:nth-child(2), .promo-glow:nth-child(2) {
    top: 30%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.12), transparent 70%);
    animation: glowPulse 7s infinite alternate, glowMove 25s infinite linear reverse;
}

.about-glow:nth-child(3), .skills-glow:nth-child(3), .services-glow:nth-child(3),
.projects-glow:nth-child(3), .testimonials-glow:nth-child(3), .promo-glow:nth-child(3) {
    bottom: -30px;
    left: 40%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08), transparent 70%);
    animation: glowPulse 5s infinite alternate, glowMove 20s infinite linear;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes glowMove {
    0% { transform: translateX(-30px) translateY(0); }
    25% { transform: translateX(-15px) translateY(-15px); }
    50% { transform: translateX(0) translateY(-30px); }
    75% { transform: translateX(15px) translateY(-15px); }
    100% { transform: translateX(30px) translateY(0); }
}

/* Data Blocks */
.about-data-blocks, .skills-data-blocks, .services-data-blocks,
.projects-data-blocks, .testimonials-data-blocks, .promo-data-blocks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: space-around;
    z-index: 1;
}

.about-data-block, .skills-data-block, .services-data-block,
.projects-data-block, .testimonials-data-block, .promo-data-block {
    width: calc(100% / 15);
    height: 100%;
    background-color: rgba(0, 255, 255, 0.2);
    animation: dataPulse 1.5s infinite alternate;
}

@keyframes dataPulse {
    0% {
        height: 5px;
        opacity: 0.2;
    }
    100% {
        height: 15px;
        opacity: 0.5;
    }
}

/* Applying animation delays to data blocks */
.about-data-block:nth-child(1), .skills-data-block:nth-child(1), .services-data-block:nth-child(1),
.projects-data-block:nth-child(1), .testimonials-data-block:nth-child(1), .promo-data-block:nth-child(1) { animation-delay: 0.1s; }
.about-data-block:nth-child(2), .skills-data-block:nth-child(2), .services-data-block:nth-child(2),
.projects-data-block:nth-child(2), .testimonials-data-block:nth-child(2), .promo-data-block:nth-child(2) { animation-delay: 0.2s; }
.about-data-block:nth-child(3), .skills-data-block:nth-child(3), .services-data-block:nth-child(3),
.projects-data-block:nth-child(3), .testimonials-data-block:nth-child(3), .promo-data-block:nth-child(3) { animation-delay: 0.3s; }
.about-data-block:nth-child(4), .skills-data-block:nth-child(4), .services-data-block:nth-child(4),
.projects-data-block:nth-child(4), .testimonials-data-block:nth-child(4), .promo-data-block:nth-child(4) { animation-delay: 0.4s; }
.about-data-block:nth-child(5), .skills-data-block:nth-child(5), .services-data-block:nth-child(5),
.projects-data-block:nth-child(5), .testimonials-data-block:nth-child(5), .promo-data-block:nth-child(5) { animation-delay: 0.5s; }
.about-data-block:nth-child(6), .skills-data-block:nth-child(6), .services-data-block:nth-child(6),
.projects-data-block:nth-child(6), .testimonials-data-block:nth-child(6), .promo-data-block:nth-child(6) { animation-delay: 0.6s; }
.about-data-block:nth-child(7), .skills-data-block:nth-child(7), .services-data-block:nth-child(7),
.projects-data-block:nth-child(7), .testimonials-data-block:nth-child(7), .promo-data-block:nth-child(7) { animation-delay: 0.7s; }
.about-data-block:nth-child(8), .skills-data-block:nth-child(8), .services-data-block:nth-child(8),
.projects-data-block:nth-child(8), .testimonials-data-block:nth-child(8), .promo-data-block:nth-child(8) { animation-delay: 0.8s; }
.about-data-block:nth-child(9), .skills-data-block:nth-child(9), .services-data-block:nth-child(9),
.projects-data-block:nth-child(9), .testimonials-data-block:nth-child(9), .promo-data-block:nth-child(9) { animation-delay: 0.9s; }
.about-data-block:nth-child(10), .skills-data-block:nth-child(10), .services-data-block:nth-child(10),
.projects-data-block:nth-child(10), .testimonials-data-block:nth-child(10), .promo-data-block:nth-child(10) { animation-delay: 1.0s; }

/* Diagonal Lines */
.about-diagonal-lines, .skills-diagonal-lines, .services-diagonal-lines,
.projects-diagonal-lines, .testimonials-diagonal-lines, .promo-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    z-index: 0;
    opacity: 0.5;
}

/* Hologram */
.about-hologram, .skills-hologram, .services-hologram,
.projects-hologram, .testimonials-hologram, .promo-hologram {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: none;
}

.hologram-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: none;
    display: none;
}

.hologram-ring {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: none;
    display: none;
}

/* Cyber Check Icon */
.cyber-check-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
}

.cyber-check-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 2px solid #00e5ff;
    border-bottom: 2px solid #00e5ff;
    transform: rotate(-45deg);
    top: 40%;
    left: 25%;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.8);
}

/* Section Headers */
.about-header, .skills-header, .services-header,
.projects-header, .testimonials-header, .promo-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* Cyber Title */
.cyber-title {
    font-size: 32px;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    margin: 0;
    position: relative;
    text-align: center;
}

.cyber-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    transition: width 0.3s ease;
}

/* Skills Subtitle */
.skills-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===== SPECIFIC SECTION STYLES ===== */

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
}

.cyber-image-frame {
    position: relative;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.cyber-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.cyber-image-frame:hover img {
    transform: scale(1.03);
}

.cyber-frame-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(0, 255, 255, 0.7);
    border-left: 2px solid rgba(0, 255, 255, 0.7);
    top: 0;
    left: 0;
}

.cyber-frame-decoration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.7);
    border-right: 2px solid rgba(0, 255, 255, 0.7);
    bottom: -22px;
    right: -22px;
}

.cyber-info-container {
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    background-color: rgba(0, 255, 255, 0.03);
}

.about-info {
    padding: 0;
    list-style-type: none;
    width: 100%;
}

.about-info li {
    display: flex;
    margin-bottom: 10px;
    text-align: left;
}

.about-info li strong {
    min-width: 150px;
    display: inline-block;
}

.about-info li span {
    flex: 1;
}

.skill-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 5px 12px;
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Skills Section */
.skills-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.skill-card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.skill-card-inner {
    position: relative;
    z-index: 1;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.skill-card:hover::before {
    opacity: 1;
}

.cyber-skill-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.skill-card h3 {
    font-size: 18px;
    color: #00e5ff;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.skill-decoration {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    margin-top: 8px;
}

.skill-details {
    font-size: 14px;
    color: #fff;
}

.projects-count {
    display: block;
    margin-top: 10px;
}

.projects-count strong {
    font-size: 22px;
    color: #00e5ff;
    margin-right: 5px;
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.cyber-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.cyber-icon-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

.service-card:hover .cyber-icon-container {
    background-color: rgba(0, 255, 255, 0.1);
    transform: scale(1.1);
}

.service-content {
    flex-grow: 1;
}

.service-content h3 {
    font-size: 18px;
    color: #00e5ff;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #ccc;
}

.service-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.5);
    border-right: 2px solid rgba(0, 255, 255, 0.5);
}

/* Projects Section */
.projects-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.project-card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 350px;
}

.project-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
}

.project-view-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.project-view-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00e5ff;
    transition: width 0.3s ease;
}

.project-card:hover .project-view-text::after {
    width: 100%;
}

.project-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category-badge {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00e5ff;
    margin-bottom: 10px;
    align-self: flex-start;
}

.project-content h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.project-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.testimonial-inner {
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.quote-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
}

.quote-icon::before,
.quote-icon::after {
    content: '"';
    position: absolute;
    font-size: 30px;
    color: #00e5ff;
    top: -8px;
    left: 10px;
    font-family: serif;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.cyber-avatar-frame {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.cyber-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cyber-avatar-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.8) 0%, transparent 50%, rgba(0, 255, 255, 0.8) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .cyber-avatar-frame::before {
    opacity: 1;
}

.author-info {
    margin-left: 15px;
}

.author-info h4 {
    font-size: 16px;
    color: #fff;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 12px;
    color: #00e5ff;
    margin: 0;
}

.testimonial-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.5);
    border-right: 2px solid rgba(0, 255, 255, 0.5);
}

/* Promo Section */
.promo-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.promo-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cyber-alert {
    background-color: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-left: 4px solid #00e5ff;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.cyber-alert p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.cyber-alert strong {
    color: #00e5ff;
}

.cyber-features-container {
    margin: 30px 0;
    text-align: left;
}

.promo-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.promo-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
    background-color: rgba(0, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.promo-features li:hover {
    transform: translateY(-3px);
    background-color: rgba(0, 255, 255, 0.1);
}

.promo-btn {
    margin-top: 20px;
}

/* Cyber Button */
.cyber-btn {
    display: inline-block;
    position: relative;
    padding: 10px 25px;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 20px 0;
}

.cyber-btn .btn-content {
    position: relative;
    z-index: 2;
}

.cyber-btn .btn-glitch {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 255, 0.3);
    z-index: 1;
    opacity: 0;
}

.cyber-btn .btn-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cyber-btn .btn-decoration-1,
.cyber-btn .btn-decoration-2 {
    position: absolute;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.cyber-btn .btn-decoration-1 {
    top: 0;
    left: 0;
    border-top: 1px solid #00e5ff;
    border-left: 1px solid #00e5ff;
}

.cyber-btn .btn-decoration-2 {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #00e5ff;
    border-right: 1px solid #00e5ff;
}

.cyber-btn:hover {
    background-color: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cyber-btn:hover .btn-glitch {
    display: block;
    animation: glitchEffect 0.3s ease;
}

.cyber-btn:hover .btn-decoration-1,
.cyber-btn:hover .btn-decoration-2 {
    width: 15px;
    height: 15px;
}

@keyframes glitchEffect {
    0% { opacity: 1; transform: translate(0); }
    20% { opacity: 1; transform: translate(-2px, 2px); }
    40% { opacity: 1; transform: translate(-2px, -2px); }
    60% { opacity: 1; transform: translate(2px, 2px); }
    80% { opacity: 1; transform: translate(2px, -2px); }
    100% { opacity: 0; transform: translate(0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .projects-container, .testimonials-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .cyber-title {
        font-size: 26px;
    }
    
    .services-container, .skills-container {
        grid-template-columns: 1fr;
    }
    
    .projects-container, .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .promo-features {
        grid-template-columns: 1fr;
    }
    
    .cyber-alert p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cyber-title {
        font-size: 22px;
    }
    
    .about-section, .skills-section, .services-section,
    .projects-section, .testimonials-section, .promo-section {
        padding: 60px 15px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .cyber-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Cyber Sekcije - Svaka sekcija je drugačija i priča za sebe */

/* =================== CYBER HOLO SEKCIJA =================== */
.cyber-holo-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--cyber-bg-darker);
  overflow: hidden;
  z-index: 1;
}

/* Pozadinski efekti */
.cyber-holo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cyber-holo-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
}

.cyber-holo-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cyber-holo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.2);
  opacity: 0.5;
  z-index: 0;
}

.cyber-holo-circle:nth-child(1) {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-color: rgba(0, 255, 255, 0.2);
  animation: rotateSlow 20s linear infinite;
}

.cyber-holo-circle:nth-child(2) {
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-color: rgba(176, 19, 254, 0.2);
  animation: rotateSlow 25s linear infinite reverse;
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cyber-holo-glow {
  position: absolute;
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.cyber-holo-glow-1 {
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
  animation: pulse 10s infinite alternate;
}

.cyber-holo-glow-2 {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 19, 254, 0.15) 0%, transparent 70%);
  animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

/* Hologram efekat */
.cyber-holo-projection {
  position: relative;
  border: 1px solid var(--cyber-neon);
  background-color: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  padding: 40px;
  overflow: hidden;
}

.cyber-holo-projection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: holoScan 6s infinite linear;
  z-index: 0;
}

@keyframes holoScan {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.cyber-holo-content {
  position: relative;
  z-index: 1;
}

.cyber-holo-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cyber-neon);
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.cyber-holo-title::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 2px;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyber-neon);
  opacity: 0.5;
  z-index: -1;
}

.cyber-holo-text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* =================== CYBER MATRIX SEKCIJA =================== */
.cyber-matrix-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--cyber-bg-dark);
  overflow: hidden;
  z-index: 1;
}

.cyber-matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.cyber-matrix-column {
  position: absolute;
  top: -100%;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  color: var(--cyber-neon);
  text-shadow: 0 0 5px var(--cyber-glow);
  white-space: nowrap;
  animation: matrixRain linear infinite;
  opacity: 0.5;
}

@keyframes matrixRain {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

.cyber-matrix-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 255, 255, 0.05);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: matrixGlitch 5s infinite;
}

@keyframes matrixGlitch {
  0%, 90%, 100% {
    opacity: 0;
  }
  92%, 94%, 96% {
    opacity: 0.1;
    transform: translate(5px, 0);
  }
  93%, 95%, 97% {
    opacity: 0.2;
    transform: translate(-5px, 0);
  }
}

.cyber-matrix-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--cyber-neon);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.cyber-matrix-terminal {
  font-family: var(--font-mono);
  color: var(--cyber-neon);
  line-height: 1.8;
}

.cyber-matrix-prompt {
  color: var(--cyber-green);
}

.cyber-matrix-command {
  color: white;
}

.cyber-matrix-cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-color: var(--cyber-neon);
  vertical-align: middle;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* =================== CYBER CIRCUIT SEKCIJA =================== */
.cyber-circuit-section {
  position: relative;
  padding: 150px 0;
  background-color: var(--cyber-bg-darker);
  overflow: hidden;
  z-index: 1;
}

.cyber-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--cyber-bg-darker);
}

.cyber-circuit-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M20 20h160v160h-160z' fill='none' stroke='%230ff' stroke-width='0.5' opacity='0.2'/%3E%3Cpath d='M50 20v50h100v80h-100' fill='none' stroke='%230ff' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  opacity: 0.1;
}

.cyber-circuit-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cyber-circuit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--cyber-neon);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 8px var(--cyber-neon);
  animation: nodeGlow 3s infinite alternate;
}

@keyframes nodeGlow {
  0% {
    opacity: 0.3;
    box-shadow: 0 0 5px var(--cyber-neon);
  }
  100% {
    opacity: 0.8;
    box-shadow: 0 0 12px var(--cyber-neon);
  }
}

.cyber-circuit-traces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cyber-circuit-trace {
  position: absolute;
  background-color: var(--cyber-neon);
  height: 1px;
  opacity: 0.3;
  animation: traceFlow 4s linear infinite;
}

@keyframes traceFlow {
  0% {
    width: 0;
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

.cyber-circuit-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cyber-circuit-card {
  position: relative;
  background-color: rgba(10, 10, 22, 0.7);
  border: 1px solid var(--cyber-neon);
  padding: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-circuit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--cyber-gradient-1);
}

.cyber-circuit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.cyber-circuit-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.cyber-circuit-card-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* =================== CYBER NEON SEKCIJA =================== */
.cyber-neon-section {
  position: relative;
  padding: 130px 0;
  background-color: var(--cyber-bg-darker);
  overflow: hidden;
  z-index: 1;
}

.cyber-neon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--cyber-bg-darker);
}

.cyber-neon-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.cyber-neon-stripe {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--cyber-neon);
  opacity: 0.2;
  transform: rotate(-45deg) translateX(-50%);
}

.cyber-neon-stripe:nth-child(1) {
  top: 20%;
  animation: neonPulse 3s infinite alternate;
}

.cyber-neon-stripe:nth-child(2) {
  top: 40%;
  animation: neonPulse 5s infinite alternate-reverse;
}

.cyber-neon-stripe:nth-child(3) {
  top: 60%;
  animation: neonPulse 4s infinite alternate;
}

.cyber-neon-stripe:nth-child(4) {
  top: 80%;
  animation: neonPulse 6s infinite alternate-reverse;
}

@keyframes neonPulse {
  0% {
    opacity: 0.1;
    box-shadow: 0 0 5px var(--cyber-neon);
  }
  100% {
    opacity: 0.3;
    box-shadow: 0 0 15px var(--cyber-neon), 0 0 30px var(--cyber-neon);
  }
}

.cyber-neon-text {
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cyber-neon-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px var(--cyber-neon), 0 0 20px var(--cyber-neon);
}

.cyber-neon-description {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cyber-neon-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyber-neon);
  background-color: transparent;
  border: 2px solid var(--cyber-neon);
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--cyber-neon), inset 0 0 10px var(--cyber-neon);
  text-shadow: 0 0 5px var(--cyber-neon);
}

.cyber-neon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-neon-btn:hover {
  box-shadow: 0 0 20px var(--cyber-neon), inset 0 0 20px var(--cyber-neon);
  text-shadow: 0 0 10px var(--cyber-neon);
  transform: translateY(-5px);
}

.cyber-neon-btn:hover::before {
  left: 100%;
}

/* =================== CYBER DYSTOPIAN SEKCIJA =================== */
.cyber-dystopian-section {
  position: relative;
  padding: 140px 0;
  background-color: var(--cyber-bg-dark);
  overflow: hidden;
  z-index: 1;
}

.cyber-dystopian-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--cyber-bg-dark);
}

.cyber-dystopian-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 100 100'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: -1;
}

.cyber-dystopian-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 255, 255, 0.5), 
    transparent
  );
  opacity: 0.5;
  z-index: 1;
  animation: dystopianScan 3s linear infinite;
}

@keyframes dystopianScan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.cyber-dystopian-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  animation: dystopianGlitch 10s infinite;
  background-color: rgba(255, 0, 117, 0.05);
  pointer-events: none;
}

@keyframes dystopianGlitch {
  0%, 90%, 100% {
    opacity: 0;
  }
  92%, 98% {
    opacity: 0.1;
    transform: translate(5px, 0);
  }
  94%, 96% {
    opacity: 0.2;
    transform: translate(-5px, 0);
  }
}

.cyber-dystopian-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  padding: 0 20px;
}

.cyber-dystopian-image {
  flex: 1;
  position: relative;
}

.cyber-dystopian-image-container {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 117, 0.5);
  height: 100%;
}

.cyber-dystopian-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: grayscale(50%) contrast(120%);
}

.cyber-dystopian-image-container:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(110%);
}

.cyber-dystopian-image-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 117, 0.2), transparent);
  mix-blend-mode: overlay;
  animation: imageGlitch 5s infinite;
}

@keyframes imageGlitch {
  0%, 100% {
    opacity: 0;
  }
  92%, 94%, 96%, 98% {
    opacity: 1;
    transform: translate(5px, 0);
  }
  93%, 95%, 97%, 99% {
    opacity: 1;
    transform: translate(-5px, 0);
  }
}

.cyber-dystopian-content {
  flex: 1;
  position: relative;
}

.cyber-dystopian-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}

.cyber-dystopian-title::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 2px;
  color: var(--cyber-red);
  opacity: 0.5;
  z-index: -1;
}

.cyber-dystopian-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.cyber-dystopian-features {
  margin-top: 30px;
}

.cyber-dystopian-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cyber-dystopian-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cyber-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}

.cyber-dystopian-feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 117, 0.3), transparent);
  animation: featureIconScan 3s infinite linear;
}

@keyframes featureIconScan {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.cyber-dystopian-feature-icon i {
  color: var(--cyber-red);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.cyber-dystopian-feature-text {
  flex: 1;
}

.cyber-dystopian-feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 5px;
}

.cyber-dystopian-feature-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Responsive Stilovi */
@media (max-width: 992px) {
  .cyber-circuit-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cyber-dystopian-container {
    flex-direction: column;
  }
  
  .cyber-dystopian-image {
    margin-bottom: 40px;
  }
  
  .cyber-neon-title {
    font-size: 3rem;
  }
  
  .cyber-holo-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cyber-circuit-container {
    grid-template-columns: 1fr;
  }
  
  .cyber-matrix-content,
  .cyber-holo-projection {
    padding: 30px;
  }
  
  .cyber-neon-title {
    font-size: 2.5rem;
  }
  
  .cyber-neon-description {
    font-size: 1rem;
  }
  
  .cyber-dystopian-title {
    font-size: 2.2rem;
  }
  
  .cyber-holo-title {
    font-size: 2rem;
  }
  
  .cyber-holo-section,
  .cyber-matrix-section,
  .cyber-circuit-section,
  .cyber-neon-section,
  .cyber-dystopian-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .cyber-neon-title {
    font-size: 2rem;
  }
  
  .cyber-neon-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .cyber-dystopian-title {
    font-size: 1.8rem;
  }
  
  .cyber-dystopian-description {
    font-size: 1rem;
  }
  
  .cyber-holo-title {
    font-size: 1.8rem;
  }
  
  .cyber-matrix-terminal {
    font-size: 0.9rem;
  }
  
  .cyber-matrix-content,
  .cyber-holo-projection {
    padding: 20px;
  }
  
  .cyber-holo-section,
  .cyber-matrix-section,
  .cyber-circuit-section,
  .cyber-neon-section,
  .cyber-dystopian-section {
    padding: 60px 0;
  }
}

/* Kontakt i FAQ sekcija - Dodajem stilove za centriranje naslova */
.contact-header, .faq-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.faq-description, .contact-subtitle, .services-description, .projects-description, .skills-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Pozadina za FAQ sekciju - ista kao i za ostale sekcije */
.faq-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    animation: gridPulse 8s infinite alternate;
}

.faq-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 6s infinite alternate, glowMove 30s infinite linear;
    z-index: 0;
}

.faq-glow:nth-child(1) {
    top: -50px;
    left: 10%;
}

.faq-glow:nth-child(2) {
    top: 30%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.12), transparent 70%);
    animation: glowPulse 7s infinite alternate, glowMove 25s infinite linear reverse;
}

.faq-glow:nth-child(3) {
    bottom: -30px;
    left: 40%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08), transparent 70%);
    animation: glowPulse 5s infinite alternate, glowMove 20s infinite linear;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes glowMove {
    0% { transform: translateX(-30px) translateY(0); }
    25% { transform: translateX(-15px) translateY(-15px); }
    50% { transform: translateX(0) translateY(-30px); }
    75% { transform: translateX(15px) translateY(-15px); }
    100% { transform: translateX(30px) translateY(0); }
}

/* Data Blocks za FAQ sekciju */
.faq-data-blocks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: space-around;
    z-index: 1;
}

.faq-data-block {
    width: calc(100% / 15);
    height: 100%;
    background-color: rgba(0, 255, 255, 0.2);
    animation: dataPulse 1.5s infinite alternate;
}

/* Animation delays za FAQ data blocks */
.faq-data-block:nth-child(1) { animation-delay: 0.1s; }
.faq-data-block:nth-child(2) { animation-delay: 0.2s; }
.faq-data-block:nth-child(3) { animation-delay: 0.3s; }
.faq-data-block:nth-child(4) { animation-delay: 0.4s; }
.faq-data-block:nth-child(5) { animation-delay: 0.5s; }
.faq-data-block:nth-child(6) { animation-delay: 0.6s; }
.faq-data-block:nth-child(7) { animation-delay: 0.7s; }
.faq-data-block:nth-child(8) { animation-delay: 0.8s; }
.faq-data-block:nth-child(9) { animation-delay: 0.9s; }
.faq-data-block:nth-child(10) { animation-delay: 1.0s; }

/* Diagonal Lines za FAQ sekciju */
.faq-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    z-index: 0;
    opacity: 0.5;
} 