/* Terminal Black & Green Theme */
:root {
  --primary-dark: #000000;
  --secondary-dark: #0d1117;
  --accent-green: #00ff00;
  --accent-blue: #00ff00;
  --card-dark: #111111;
  --text-light: #00ff00;
  --text-muted: #008000;
}

/* Terminal Background */
body {
  background: #000000;
  color: #00ff00;
  min-height: 100vh;
  font-family: 'Courier New', monospace;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 0, 0.03) 2px,
      rgba(0, 255, 0, 0.03) 4px
    );
  pointer-events: none;
  z-index: -1;
}

/* Floating Glass Navigation */
.navbar-custom {
  background: rgba(10, 15, 28, 0.1) !important;
  backdrop-filter: blur(20px);


  width: calc(100% - 40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar-custom:hover {
  background: rgba(10, 15, 28, 0.2) !important;
  border-color: rgba(57, 255, 20, 0.2);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.1);
}

.nav-sticky.navbar-custom {
  background: rgba(10, 15, 28, 0.15) !important;
}

/* Terminal Hero Section */
.home-6 {
  background: #000000;
  position: relative;
  overflow: hidden;
}

.home-6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.home-6 .container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #32d912 100%);
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #32d912 0%, var(--accent-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

/* Cards and Components */
.feature-card, .card {
  background: var(--card-dark) !important;
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 8px 32px rgba(57, 255, 20, 0.2);
  transform: translateY(-5px);
}

/* Text Colors */
.text-primary {
  color: var(--accent-green) !important;
}

.text-warning {
  color: var(--accent-blue) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Sections */
.section {
  background: transparent;
}

/* Pricing Cards */
.pricing-box {
  background: var(--card-dark);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-box:hover {
  border-color: var(--accent-green);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.2);
}

.pricing-box .card {
  background: transparent !important;
}

/* Modal */
.modal-content {
  background: var(--card-dark);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 16px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f172a 100%);
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

/* Accordion */
.accordion-item {
  background: var(--card-dark);
  border: 1px solid rgba(57, 255, 20, 0.1);
  margin-bottom: 8px;
  border-radius: 8px;
}

.accordion-button {
  background: var(--card-dark) !important;
  color: var(--text-light) !important;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--card-dark) !important;
  color: var(--accent-green) !important;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.reviews-box .card {
  background: var(--card-dark) !important;
  border: 1px solid rgba(57, 255, 20, 0.1);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.team-card {
  background: var(--card-dark) !important;
  border: 1px solid rgba(57, 255, 20, 0.1);
}

/* Contact Section */
.contact .form-control {
  background: var(--card-dark);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--text-light);
}

.contact .form-control:focus {
  background: var(--card-dark);
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.2rem rgba(57, 255, 20, 0.25);
  color: var(--text-light);
}

/* Glowing Effects */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.1), transparent);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
  opacity: 1;
}

/* Animated Background Elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

/* IT Company Decorations */
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: grid-move 15s linear infinite;
  z-index: 1;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.tech-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(0, 255, 0, 0.5);
  animation: float-tech 6s ease-in-out infinite;
  text-shadow: 0 0 10px #00ff00;
}

@keyframes float-tech {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.particle-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.8), transparent);
  height: 2px;
  box-shadow: 0 0 5px #00ff00;
}

.line-1 {
  top: 20%;
  width: 100%;
  animation: line-move-1 8s linear infinite;
}

.line-2 {
  top: 50%;
  width: 100%;
  animation: line-move-2 10s linear infinite reverse;
}

.line-3 {
  top: 80%;
  width: 100%;
  animation: line-move-3 12s linear infinite;
}

@keyframes line-move-1 {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes line-move-2 {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes line-move-3 {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.tech-stats .stat-item {
  padding: 20px;
  background: rgba(37, 45, 49, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(57, 255, 20, 0.1);
  transition: all 0.3s ease;
}

.tech-stats .stat-item:hover {
  background: rgba(37, 45, 49, 0.5);
  border-color: rgba(57, 255, 20, 0.3);
  transform: translateY(-5px);
}

.tech-stats h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-green) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #32d912;
}

/* Enhanced Feature Cards */
.feature .feature-card {
  background: var(--card-dark) !important;
  border: 1px solid rgba(57, 255, 20, 0.1) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature .feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature .feature-card:hover::after {
  left: 100%;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%) !important;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

/* Enhanced Buttons */
.btn-outline-primary {
  border: 2px solid var(--accent-green) !important;
  color: var(--accent-green) !important;
  background: transparent !important;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-green);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  left: 0;
}

.btn-outline-primary:hover {
  color: var(--primary-dark) !important;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light) !important;
}

.heading {
  color: var(--text-light) !important;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

/* Particle Background Enhancement */
#particles-js {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Enhanced Contact Form */
.contact .form-control::placeholder {
  color: var(--text-muted);
}

.contact .input-group-text {
  background: linear-gradient(135deg, var(--accent-green) 0%, #32d912 100%) !important;
  border: none !important;
  color: var(--primary-dark) !important;
}

/* Glowing Text Effect */
.glow-text {
  text-shadow: 0 0 10px var(--accent-green), 0 0 20px var(--accent-green), 0 0 30px var(--accent-green);
}

/* Enhanced Navigation */
.navbar-custom .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: var(--accent-green) !important;
  background: rgba(57, 255, 20, 0.1);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.navbar-custom .navbar-nav .nav-link.active {
  color: var(--accent-green) !important;
  background: rgba(57, 255, 20, 0.15);
}

/* Remove underline from active nav link */
.navbar-custom .navbar-nav .nav-link.active::before {
  display: none !important;
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Enhanced Shadows */
.enhanced-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(57, 255, 20, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Services Section Styles */
.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 0, 0.1) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 20px #00ff00;
}

.service-icon i {
    transition: all 0.3s ease;
}
/* Fixed Background Elements */
body .tech-grid,
body .floating-icons,
body .particle-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Content scrolls over fixed background */
.overflow-hidden-x {
    position: relative;
    z-index: 10;
    background: transparent;
}

.navbar,
.section,
.footer-alt {
    position: relative;
    z-index: 10;
    background: transparent;
}
/* Technology Stack Styles */
.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 0, 0.1) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.tech-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 20px #00ff00;
}
/* Team Section Styles */
.team-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 0, 0.1) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.team-card:hover .team-avatar i {
    transform: scale(1.1);
    text-shadow: 0 0 20px #00ff00;
}

.social-links a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px #00ff00;
}
/* Contact Section Styles */
.contact-form .form-control:focus {
    background: rgba(0, 255, 0, 0.1) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.25);
    color: #fff !important;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 0, 0.1) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}
/* Fixed Navbar Styles */
.navbar-custom {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
/* Interactive Matrix Hand Team Section */
.matrix-hand-web svg {
    animation: matrix-pulse 3s infinite;
}

@keyframes matrix-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px #00ff00) drop-shadow(0 0 40px #00ff00);
    }
    50% { 
        filter: drop-shadow(0 0 30px #00ff00) drop-shadow(0 0 60px #00ff00);
    }
}

.finger {
    transition: all 0.3s ease;
    border-radius: 50px;
}

.finger:hover {
    background: rgba(0, 255, 0, 0.2) !important;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.palm-display {
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.web-pattern {
    animation: web-flow 10s linear infinite;
}

@keyframes web-flow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(30px); }
}
/* Wireframe Holographic Hand Animation */
.wireframe-hand {
    animation: hologram-pulse 2s infinite;
}

@keyframes hologram-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px #00ff00) drop-shadow(0 0 20px #00ffff);
        opacity: 0.9;
    }
    50% { 
        filter: drop-shadow(0 0 20px #00ff00) drop-shadow(0 0 40px #00ffff);
        opacity: 1;
    }
}

.finger-wire:hover {
    stroke-width: 3;
    filter: drop-shadow(0 0 15px #00ff00);
}
/* Hand Image Team Section */
.hand-image {
    transition: all 0.3s ease;
    animation: hand-glow 3s infinite;
}

@keyframes hand-glow {
    0%, 100% { 
        filter: sepia(100%) hue-rotate(90deg) saturate(200%) brightness(1.2) drop-shadow(0 0 10px #00ff00);
    }
    50% { 
        filter: sepia(100%) hue-rotate(90deg) saturate(200%) brightness(1.4) drop-shadow(0 0 20px #00ff00);
    }
}

.finger {
    transition: all 0.3s ease;
    border-radius: 50%;
}

.member-card {
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}