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

.vps-linux-section .heading-title {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

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

.vps-linux-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  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);
  color: #000;
  box-shadow: 0 0 10px #00ffd5;
}

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

@media (max-width: 768px) {
  .vps-linux-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;
}


    .faq-discordjs {
      padding: 80px 20px;
      font-family: 'Poppins', sans-serif;
    }

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

    .faq-discordjs .heading-subtitle span {
      color: #7289da;
      font-size: 18px;
      font-weight: 600;
    }

    .faq-discordjs .heading-title {
      font-size: 36px;
      font-weight: bold;
      margin-top: 10px;
    }

    .faq-discordjs .heading-title span {
      color: #7289da;
    }

    .faq-discordjs .heading-description {
      font-size: 16px;
      color: #aaa;
      margin-top: 15px;
    }

    .faq-discordjs .accordion-button {
      background-color: #1e1b38;
      color: #fff;
      border: none;
    }

    .faq-discordjs .accordion-button:not(.collapsed) {
      background-color: #2f2b4f;
      color: #7289da;
    }

    .faq-discordjs .accordion-item {
      background-color: #1a1830;
      border: none;
      margin-bottom: 15px;
      border-radius: 6px;
      overflow: hidden;
    }

    .faq-discordjs .accordion-body {
      background-color: #151328;
      color: #ddd;
      padding: 20px;
    }











  .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-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-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);
    }
  
    .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);
    }
   
    .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); }
    }




