
/* Futuristic Speciality Section */
.futuristic-speciality {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0f0f15 100%);
    overflow: hidden;
    padding: 100px 0;
}

.holographic-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 247, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    animation: hologram-pulse 6s infinite alternate;
}

.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 30s linear infinite;
}

.neon-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Cyber Badge */
.cyber-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 30px;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f7ff, #00ffaa);
    filter: blur(10px);
    opacity: 0.3;
    border-radius: 6px;
    z-index: -1;
}

/* Holographic Heading */
.holographic-heading-wrapper {
    position: relative;
    margin: 40px 0;
}

.cyber-heading {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hologram-text {
    display: block;
    background: linear-gradient(90deg, #00f7ff, #00ffaa, #00f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: hologram-shift 4s linear infinite;
}

.glitch-text {
    position: relative;
    display: block;
    color: #ff00ff;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.5),
        0 0 20px rgba(255, 0, 255, 0.3);
    animation: glitch 3s infinite;
}

.heading-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 247, 255, 0.1) 0%,
        rgba(0, 247, 255, 0.05) 40%,
        transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Cyber Subtitle */
.cyber-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.subtitle-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00ffaa;
}

.scan-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #00ffaa 20%, 
        #00ffaa 80%, 
        transparent);
    animation: scan 3s linear infinite;
}

.scan-line.reverse {
    animation-direction: reverse;
}

/* Quantum Grid Container */
.quantum-grid-container {
    position: relative;
    margin: 60px 0;
    padding: 40px 20px;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 247, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.02) 1px, transparent 1px);
    background-size: 
        50px 50px,
        50px 50px,
        100px 100px,
        100px 100px;
    animation: grid-3d-rotate 20s linear infinite;
}

/* Industry Cards Wrapper */
.industry-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Quantum Industry Card */
.quantum-card {
    position: relative;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.quantum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 247, 255, 0.1) 0%,
        rgba(255, 0, 255, 0.05) 50%,
        rgba(0, 247, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantum-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ffaa;
    box-shadow: 
        0 20px 40px rgba(0, 247, 255, 0.2),
        0 0 60px rgba(0, 247, 255, 0.1),
        inset 0 0 30px rgba(0, 247, 255, 0.05);
}

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

/* Card Hologram Effect */
.card-hologram {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hologram-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: linear-gradient(to top, 
        rgba(0, 247, 255, 0.3), 
        rgba(0, 247, 255, 0.1));
    filter: blur(20px);
    border-radius: 50%;
}

.hologram-projector {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
}

.projector-core {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #00ffaa;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffaa;
}

.projector-beam {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 255, 170, 0.8), 
        rgba(0, 255, 170, 0.2));
    filter: blur(1px);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

/* Icon Orb */
.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.icon-orb {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 20px rgba(0, 247, 255, 0.2),
        0 0 30px rgba(0, 247, 255, 0.1);
}

.icon-aura {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    animation: pulse-aura 2s infinite alternate;
}

.quantum-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px currentColor);
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, 
        transparent, 
        rgba(0, 255, 170, 0.6), 
        transparent);
    transform-origin: center;
    animation: stream-rotate 4s linear infinite;
}

.stream:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.stream:nth-child(2) { transform: translate(-50%, -50%) rotate(120deg); }
.stream:nth-child(3) { transform: translate(-50%, -50%) rotate(240deg); }

/* Card Title */
.card-link {
    text-decoration: none;
    color: inherit;
}

.title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.cyber-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.title-text {
    display: block;
    background: linear-gradient(90deg, #fff, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-card:hover .title-glitch {
    opacity: 0.5;
    animation: glitch-slide 0.5s linear infinite;
}

.title-underline {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #00ffaa);
    margin: 10px auto;
    transition: width 0.3s ease;
}

.quantum-card:hover .title-underline {
    width: 100px;
}

/* Quantum Number */
.quantum-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}

.number-display {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffaa;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 170, 0.3);
}

.digit {
    display: inline-block;
    animation: digit-flip 2s infinite alternate;
}

.number-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(0, 255, 170, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

/* Card Stats */
.card-stats {
    margin-top: 20px;
}

.stat {
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00f7ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-bar {
    height: 6px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f7ff, #00ffaa);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

/* Card Particles */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.card-refraction {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 247, 255, 0.05) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantum-card:hover .card-refraction {
    opacity: 1;
}

/* Quantum Orbits */
.quantum-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    animation: orbit-rotate linear infinite;
}

.orbit-ring:nth-child(1) { 
    width: 400px; 
    height: 400px; 
    animation-duration: 40s; 
}
.orbit-ring:nth-child(2) { 
    width: 500px; 
    height: 500px; 
    animation-duration: 60s; 
    animation-direction: reverse; 
}
.orbit-ring:nth-child(3) { 
    width: 600px; 
    height: 600px; 
    animation-duration: 80s; 
}

.quantum-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #00ffaa;
    border-radius: 50%;
    filter: blur(1px);
    animation: particle-orbit 10s linear infinite;
}

/* Quantum Button */
.cyber-load-more {
    margin-top: 60px;
    position: relative;
}

.quantum-btn {
    position: relative;
    padding: 20px 50px;
    background: linear-gradient(45deg, 
        rgba(0, 247, 255, 0.1), 
        rgba(0, 255, 170, 0.1));
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 8px;
    color: #00ffaa;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quantum-btn:hover {
    background: linear-gradient(45deg, 
        rgba(0, 247, 255, 0.2), 
        rgba(0, 255, 170, 0.2));
    border-color: #00ffaa;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 247, 255, 0.3),
        0 0 50px rgba(0, 247, 255, 0.1);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 247, 255, 0.3), 
        rgba(0, 255, 170, 0.3));
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-btn:hover .btn-glow {
    opacity: 0.6;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffaa;
    border-radius: 50%;
    filter: blur(1px);
    animation: particle-float 3s linear infinite;
}

.btn-particles .particle:nth-child(1) { 
    top: 10%; left: 20%; animation-delay: 0s; 
}
.btn-particles .particle:nth-child(2) { 
    top: 30%; left: 80%; animation-delay: 1s; 
}
.btn-particles .particle:nth-child(3) { 
    top: 70%; left: 40%; animation-delay: 2s; 
}

/* Cyber Counter */
.cyber-counter {
    margin-top: 20px;
    text-align: center;
}

.counter-text {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #00f7ff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.counter-progress {
    width: 200px;
    height: 4px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, #00f7ff, #00ffaa);
    border-radius: 2px;
    animation: progress-pulse 2s infinite alternate;
}

/* Animations */
@keyframes hologram-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

@keyframes grid-3d-rotate {
    0% { transform: perspective(1000px) rotateX(60deg) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateX(60deg) rotateY(360deg); }
}

@keyframes hologram-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    2% { transform: translate(-2px, 2px); }
    4% { transform: translate(2px, -2px); }
    6% { transform: translate(-2px, -2px); }
    8% { transform: translate(2px, 2px); }
}

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

@keyframes pulse-aura {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes stream-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glitch-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes digit-flip {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particle-orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(300px) rotate(-360deg); }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0; 
    }
    10%, 90% { 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-20px) scale(1.5); 
    }
}

@keyframes progress-pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industry-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cyber-heading {
        font-size: 2.5rem;
    }
    
    .industry-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quantum-orbits {
        width: 400px;
        height: 400px;
    }
    
    .orbit-ring:nth-child(1) { width: 300px; height: 300px; }
    .orbit-ring:nth-child(2) { width: 350px; height: 350px; }
    .orbit-ring:nth-child(3) { width: 400px; height: 400px; }
}

@media (max-width: 480px) {
    .cyber-heading {
        font-size: 2rem;
    }
    
    .cyber-title {
        font-size: 1.3rem;
    }
    
    .quantum-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

/* Futuristic Base Styles MAIN HEREO SECTION*/
.futuristic-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.holographic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 247, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 200, 0.06) 0%, transparent 50%);
    animation: hologram-pulse 8s infinite alternate;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

/* Holographic Heading */
.holographic-heading {
    margin-bottom: 40px;
}

.hologram-text {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, 
        #00f7ff, 
        #00ffaa, 
        #00f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 15px rgba(0, 247, 255, 0.5),
        0 0 30px rgba(0, 247, 255, 0.3);
    animation: hologram-flicker 3s infinite alternate;
}

.cyber-type {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, 
        #ff00ff, 
        #00ffaa, 
        #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.5),
        0 0 20px rgba(255, 0, 255, 0.3);
    position: relative;
}

.cyber-type::after {
    content: '_';
    animation: cursor-blink 1s infinite;
    color: #00ffaa;
}

/* Cyber Taglines */
.cyber-taglines {
    margin: 30px 0;
}

.tagline-container {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 5px;
    background: rgba(0, 247, 255, 0.05);
    backdrop-filter: blur(10px);
}

.tagline-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.glitch {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: glitch-anim 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00f7ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite alternate-reverse;
}

.hologram-dot {
    width: 10px;
    height: 10px;
    background: #00ffaa;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffaa, 0 0 20px #00ffaa;
    animation: pulse-dot 2s infinite;
}

.cyber-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.subtitle-text {
    font-size: 1.2rem;
    color: #00f7ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scan-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
    animation: scan 3s linear infinite;
}

/* Cyber Description */
.cyber-description {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    background: rgba(0, 247, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cyber-description .desc {
    font-size: 1.1rem;
    color: #b0e0ff;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 1px;
}

.corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #00ffaa;
}

.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* Cyber Button */
.cyber-btn-container {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.cyber-btn {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #00f7ff, #00ffaa);
    border: none;
    border-radius: 2px;
    color: #0a0a1a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 247, 255, 0.4),
        0 0 50px rgba(0, 247, 255, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00f7ff, #00ffaa);
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
    animation: glow-pulse 2s infinite alternate;
}

.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.3);
    animation: pulse-ring 2s infinite;
}

.signal-bars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 15px;
    height: 20px;
}

.signal-bars .bar {
    width: 4px;
    background: #00ffaa;
    animation: signal-bars 1.5s infinite;
}

.signal-bars .bar:nth-child(1) { animation-delay: 0s; height: 5px; }
.signal-bars .bar:nth-child(2) { animation-delay: 0.1s; height: 10px; }
.signal-bars .bar:nth-child(3) { animation-delay: 0.2s; height: 15px; }
.signal-bars .bar:nth-child(4) { animation-delay: 0.3s; height: 10px; }
.signal-bars .bar:nth-child(5) { animation-delay: 0.4s; height: 5px; }

/* Futuristic Holographic Carousel */
.holographic-carousel {
    position: relative;
    height: 500px;
    perspective: 1500px;
    margin-bottom: 40px;
}

.carousel-holosphere {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.holo-platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 20px;
    background: linear-gradient(90deg, #00f7ff, #00ffaa);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.5;
}

.holo-images-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    transform-style: preserve-3d;
}

/* Holographic Images */
.holo-image {
    position: absolute;
    width: 250px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.3));
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.holo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(1.1);
}

.hologram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 247, 255, 0.1) 0%,
        rgba(255, 0, 255, 0.1) 50%,
        rgba(0, 247, 255, 0.1) 100%);
    mix-blend-mode: overlay;
}

/* Main Center Image */
.main-holo {
    z-index: 10;
    transform: translateZ(0) rotateY(0);
    width: 300px;
    height: 350px;
}

.main-holo .image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00f7ff, #00ffaa, #ff00ff);
    border-radius: 15px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    animation: border-glow 3s infinite alternate;
}

/* Side Images (partially visible) */
.side-holo {
    z-index: 5;
    width: 200px;
    height: 250px;
    opacity: 0.8;
    filter: brightness(0.7) blur(1px);
}

.left-holo {
    transform: translateX(-180px) translateZ(-100px) rotateY(30deg);
}

.right-holo {
    transform: translateX(180px) translateZ(-100px) rotateY(-30deg);
}

/* Back Images (barely visible) */
.back-holo {
    z-index: 1;
    width: 150px;
    height: 200px;
    opacity: 0.3;
    filter: brightness(0.5) blur(2px);
}

.far-left {
    transform: translateX(-300px) translateZ(-200px) rotateY(45deg);
}

.far-right {
    transform: translateX(300px) translateZ(-200px) rotateY(-45deg);
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stream-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00ffaa, transparent);
    animation: stream-flow 3s linear infinite;
}

.stream-line:nth-child(1) { left: 20%; animation-delay: 0s; }
.stream-line:nth-child(2) { left: 50%; animation-delay: 1s; }
.stream-line:nth-child(3) { left: 80%; animation-delay: 2s; }

/* Image Label */
.image-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffaa;
    border-radius: 3px;
    z-index: 20;
}

.label-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 170, 0.1) 50%,
        transparent 100%);
    animation: label-scan 3s infinite;
}

.label-text {
    position: relative;
    color: #00ffaa;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.label-barcode {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 10px;
    background: repeating-linear-gradient(90deg, 
        #00ffaa 0px, #00ffaa 2px, 
        transparent 2px, transparent 4px);
}

/* Holographic Interface */
.holo-interface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.interface-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    background-image: 
        radial-gradient(circle at center, transparent 70%, rgba(0, 247, 255, 0.05) 100%),
        linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffaa;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px #00ffaa);
    animation: data-point-float 4s infinite;
}

.data-point:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.data-point:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.data-point:nth-child(3) { top: 80%; left: 40%; animation-delay: 2s; }
.data-point:nth-child(4) { top: 40%; left: 60%; animation-delay: 3s; }

/* Holographic Navigation */
.holo-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-orbits {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 50%;
    animation: orbit-rotate linear infinite;
}

.orbit-ring:nth-child(1) { width: 200px; height: 200px; animation-duration: 20s; }
.orbit-ring:nth-child(2) { width: 150px; height: 150px; animation-duration: 15s; animation-direction: reverse; }
.orbit-ring:nth-child(3) { width: 100px; height: 100px; animation-duration: 10s; }

.nav-indicators {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.5s ease;
}

.nav-orb[data-index="0"] { transform: translate(-50%, -50%) rotate(0deg) translateY(-100px); }
.nav-orb[data-index="1"] { transform: translate(-50%, -50%) rotate(90deg) translateY(-100px); }
.nav-orb[data-index="2"] { transform: translate(-50%, -50%) rotate(180deg) translateY(-100px); }
.nav-orb[data-index="3"] { transform: translate(-50%, -50%) rotate(270deg) translateY(-100px); }

.orb-core {
    width: 12px;
    height: 12px;
    background: #00ffaa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #00ffaa;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-orb.active .orb-core {
    width: 20px;
    height: 20px;
    background: #00f7ff;
    box-shadow: 0 0 15px #00f7ff;
}

.nav-orb.active .orb-glow {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    filter: blur(10px);
}

/* Holographic Stats */
.holo-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    padding: 20px;
    background: rgba(0, 247, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 5px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00ffaa;
    box-shadow: 0 10px 20px rgba(0, 255, 170, 0.1);
}

.stat-graph {
    position: relative;
    width: 40px;
    height: 80px;
}

.graph-bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to top, #00f7ff, #00ffaa);
    border-radius: 2px;
    animation: graph-pulse 2s infinite alternate;
}

.stat-item:nth-child(1) .graph-bar { height: 90%; animation-delay: 0s; }
.stat-item:nth-child(2) .graph-bar { height: 70%; animation-delay: 0.2s; }
.stat-item:nth-child(3) .graph-bar { height: 60%; animation-delay: 0.4s; }

.graph-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ffaa;
    animation: graph-scan 2s infinite;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffaa;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #00f7ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Animations */
@keyframes hologram-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes hologram-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    60% { opacity: 0.9; }
    70% { opacity: 0.7; }
}

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

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

@keyframes glitch-anim-1 {
    0% { clip: rect(10px, 450px, 20px, 0); }
    5% { clip: rect(30px, 450px, 40px, 0); }
    10% { clip: rect(50px, 450px, 60px, 0); }
    15% { clip: rect(70px, 450px, 80px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(80px, 450px, 90px, 0); }
    5% { clip: rect(60px, 450px, 70px, 0); }
    10% { clip: rect(40px, 450px, 50px, 0); }
    15% { clip: rect(20px, 450px, 30px, 0); }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

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

@keyframes glow-pulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

@keyframes pulse-ring {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes signal-bars {
    0%, 100% { height: 5px; }
    50% { height: 20px; }
}

@keyframes border-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes stream-flow {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes label-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes data-point-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes graph-pulse {
    0% { height: 50%; opacity: 0.7; }
    100% { height: 90%; opacity: 1; }
}

@keyframes graph-scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hologram-text { font-size: 2.8rem; }
    .cyber-type { font-size: 2rem; }
    .holo-images-container { width: 350px; height: 250px; }
    .main-holo { width: 250px; height: 300px; }
    .side-holo { width: 180px; height: 230px; }
    .back-holo { width: 130px; height: 180px; }
}

@media (max-width: 768px) {
    .hologram-text { font-size: 2.2rem; letter-spacing: 2px; }
    .cyber-type { font-size: 1.6rem; }
    .tagline-line { flex-direction: column; gap: 15px; }
    .holo-images-container { width: 300px; height: 200px; }
    .holographic-carousel { height: 400px; }
    .holo-stats { flex-direction: column; }
    .nav-orbits { transform: scale(0.8); }
}

 .alert {
    display: none; /* Hidden by default */
    padding: 15px;
    margin: 10px 0; /* Spacing between the alert box and other elements */
    border: 1px solid transparent;
    border-radius: 4px;
    max-width: 100%; /* Ensures it doesn't overflow */
    box-sizing: border-box;
    font-size: 16px; /* Adjust font size for readability */
    width: 100%; /* Full width of the container */
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@media (max-width: 600px) {
    .alert {
        font-size: 14px; /* Slightly smaller font on mobile */
        padding: 10px;
    }
}



 