.vps-windows-section {
  background-color: #0e0c1f;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  text-align: center;
}

.vps-windows-section .heading-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.vps-windows-section .heading-description {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-bottom: 60px;
}

.vps-windows-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.vps-windows-container.bottom-row {
  justify-content: center;
}

.vps-card {
  background: #1b1a2e;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  width: 310px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
}

.vps-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6);
}

.vps-card img {
  width: 80px;
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

.vps-card h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.vps-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #00ffd5;
  margin-bottom: 20px;
}

.vps-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.vps-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #eeeeee;
}

.vps-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #00ffd5;
  font-weight: bold;
}

.vps-card .btn-order {
  background: linear-gradient(to right, #00ffd5, #00bfff);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  display: inline-block;
}

.vps-card .btn-order:hover {
  background: linear-gradient(to right, #00bfff, #00ffd5);
  box-shadow: 0 0 10px #00ffd5;
}

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

.rotate-animation {
  animation: rotate 5s infinite linear;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1200px) {
  .vps-windows-container {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .vps-windows-container {
    flex-direction: column;
    align-items: center;
  }
}



.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.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;
}
/* Popup Styles */
.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); }
}
/* Pricing Cards */
.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);
}
/* Cartes Caractéristiques */
.card-hover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.card-hover .card-body {
  position: relative;
  z-index: 1;
}
.card-hover .card-body .back-content {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
  background-color: transparent;
  color: inherit;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}
.card-hover:hover .card-body .default-content {
  opacity: 0;
  transform: translateY(-20px);
}
.card-hover:hover .card-body .back-content {
  opacity: 1;
  transform: translateY(0);
}
.card-hover:hover {
  transform: scale(1.05);
}
/* Animations supplémentaires */
.pulse-animation {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.rotate-animation {
  animation: rotate 5s infinite linear;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

