.windows-server-animate {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.windows-server-animate:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.patterns-7, .patterns-8 {
  transition: all 0.5s ease-in-out;
}
.patterns-7:hover, .patterns-8:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.pricing-card {
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tab-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.tab-content.show {
  opacity: 1;
  transform: translateY(0);
}
.btn-white {
  background-color: white;
  color: black; 
  border: 1px solid #ccc; 
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.5s ease;
}
.popup-content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4d4f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 1001;
}
.close-btn:hover {
  background: #ff7875;
}
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}























@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

.section {
  background: #0c0f1a;
  padding: 80px 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background-image: url('../assets/bg/dark-grid.png');
  background-size: cover;
  background-position: center;
  border-top: 4px solid #00ffee;
  box-shadow: inset 0 0 60px rgba(0, 255, 255, 0.1);
}

.heading-section {
  text-align: center;
  margin-bottom: 50px;
}

.heading-section img {
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.heading-title {
  font-size: 40px;
  font-weight: 700;
  color: #00ffee;
  text-shadow: 0 0 15px #00ffee;
  letter-spacing: 1px;
}

.heading-description {
  color: #b0b0b0;
  font-size: 18px;
  margin-top: 10px;
}

/* --- Cards --- */
.pricing-card {
  background: #121623;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  transition: 0.3s ease all;
  overflow: hidden;
  border: 2px solid #00ffee55;
  position: relative;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  border-color: #00ffee;
}

.pricing-card h4 {
  color: #00ffee;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #00ffee;
}

.pricing-card p {
  color: #999;
  font-size: 15px;
  margin-bottom: 20px;
}

.pricing-card h6 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.pricing-card .btn {
  background: linear-gradient(90deg, #00ffee, #00ffaa);
  border: none;
  color: #0c0f1a;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 0 10px #00ffaa80;
}

.pricing-card .btn:hover {
  background: linear-gradient(90deg, #00ffaa, #00ffee);
  box-shadow: 0 0 20px #00ffaa;
  transform: translateY(-3px);
}

.list-item {
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.list-item span {
  margin-left: 8px;
}

.list-item i,
.bi-check-circle {
  color: #00ffee;
  font-size: 18px;
}

/* --- Animations --- */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}