
@charset "UTF-8";
  /* Parallax background */
  .pricing-section {
      position: relative;
      background: url('../images/backgrounds/photo-datacenter-plan-bg.jpeg?auto=format&fit=crop&w=1400&q=80') no-repeat center center fixed;
      background-size: cover;
      padding: 60px 20px;
      color: #fff;
      text-align: center;
  }

      .pricing-section .overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0,0,0,0.6);
          z-index: 1;
      }

      .pricing-section .container {
          position: relative;
          z-index: 2;
      }

  .section-title {
      font-size: 36px;
      margin-bottom: 10px;
      font-weight: bold;
      color: #edecb4;
  }

  .section-subtitle {
      font-size: 18px;
      margin-bottom: 50px;
      opacity: 0.9;
  }

  /* Pricing cards */
  .pricing-cards {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .card {
      background: #fff;
      color: #333;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      transition: transform 0.3s, box-shadow 0.3s;
      width: 300px;
      overflow: hidden;
  }

      .card:hover {
          transform: translateY(-10px);
          box-shadow: 0 12px 30px rgba(0,0,0,0.3);
      }

  .card-header {
      background: linear-gradient(135deg, #4facfe, #00f2fe);
      padding: 30px 20px;
      color: #fff;
  }

      .card-header i {
          font-size: 30px;
          margin-bottom: 10px;
      }

      .card-header h3 {
          margin: 0;
      }

  .card-body {
      padding: 20px;
  }

      .card-body .price {
          font-size: 28px;
          font-weight: bold;
          margin: 15px 0;
      }

          .card-body .price span {
              color: #4facfe;
          }

      .card-body ul {
          list-style: none;
          padding: 0;
          margin: 20px 0;
      }

          .card-body ul li {
              padding: 5px 0;
              border-bottom: 1px solid #eee;
          }

      .card-body .btn {
          background: #4facfe;
          color: #fff;
          border: none;
          padding: 12px 20px;
          border-radius: 8px;
          cursor: pointer;
          transition: background 0.3s;
      }

          .card-body .btn:hover {
              background: #00c6ff;
          }

  /* Featured card */
  .featured {
      transform: scale(1.05);
      border: 2px solid #4facfe;
  }
  
  .btn-gradient {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    transition: 0.3s;
}

    .btn-gradient:hover {
        opacity: 0.9;
    }