

.website-types-section {
    padding: 80px 0;
    background-color: #f8fafc;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  }
  
  .card-title {
    color: #2d3748;
    font-size: 1.25rem;
    margin-top: 1rem;
  }
  
  @media (max-width: 768px) {
    .website-types-section {
        padding: 60px 0;
    }
    
    .card-img-top {
        height: 150px !important;
    }
    
    .card-img-top img {
        max-height: 120px !important;
    }
  }


  .web-creation-section {
    position: relative;
    overflow: hidden;
  }
  .titre-part{
    color: #5e2ced;
  }
  
  .definition-box {
    border-left: 4px solid #5e2ced;
  }
  
  .feature-list i {
    min-width: 24px;
  }
  
  .visual-container {
    perspective: 1000px;
  }
  
  .visual-container img {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
  }
  
  .visual-container:hover img {
    transform: rotateY(-5deg) rotateX(2deg);
  }
  
  .stats-box {
    animation: pulse 2s infinite;
  }
  

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
  }
  
  @media (max-width: 768px) {
    .stats-box {
      position: relative !important;
      bottom: 0 !important;
      right: 0 !important;
      margin-top: 20px;
    }
  }

